[
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\ninsert_final_newline = true\nindent_style = tab\nindent_size = 4\ntrim_trailing_whitespace = true\n\n[*.md]\ntrim_trailing_whitespace = false\n"
  },
  {
    "path": ".gitignore",
    "content": ".buildpath\n.settings/\n.project\n.idea/\n.git/\nvendor/\n.phpintel/\n.DS_Store\n/vendor\n.env\n/runtime\n"
  },
  {
    "path": ".php_cs",
    "content": "<?php\n\n/**\n * 使用说明\n *\n * 基于 php-cs-fixer 插件，请先使用composer安装此插件\n *\n * 1、Preferences -> Tools -> External Tools 添加工具\n * 2、添加 php-cs-fixer 工具，参如如下：\n *      Name: php-fixer\n *      Description: php-fixer\n *      Program: /{项目根目录}/vendor/friendsofphp/php-cs-fixer/php-cs-fixer\n *      Arguments: --config=$ProjectFileDir$/.php_cs --verbose fix \"$FileDir$/$FileName$\"\n *      Working directory: 同Program\n * 3、Keymap -> External Tools -> php-fixer 设置快捷键 Alt+f\n * 4、打开要格式化的文件，按 Alt+f 保存即可\n */\n\n\ndefine('SOFT_NAME', 'WeEngine Document System');\n\n$finder = PhpCsFixer\\Finder::create()\n\t->files()\n\t->name('*.php')\n\t->exclude('vendor')\n\t->in(__DIR__)\n\t->ignoreDotFiles(true)\n\t->ignoreVCS(true);\n\n$fixers = array(\n\t'@PSR2'                                      => true,\n\t'single_quote'                               => true, //简单字符串应该使用单引号代替双引号；\n\t'no_unused_imports'                          => true, //删除没用到的use\n\t'no_singleline_whitespace_before_semicolons' => true, //禁止只有单行空格和分号的写法；\n\t'no_empty_statement'                         => true, //多余的分号\n\t'no_extra_consecutive_blank_lines'           => true, //多余空白行\n\t'no_blank_lines_after_class_opening'         => true, //类开始标签后不应该有空白行；\n\t'include'                                    => true, //include 和文件路径之间需要有一个空格，文件路径不需要用括号括起来；\n\t'no_trailing_comma_in_list_call'             => true, //删除 list 语句中多余的逗号；\n\t'no_leading_namespace_whitespace'            => true, //命名空间前面不应该有空格；\n\t'standardize_not_equals'                     => true, //使用 <> 代替 !=；\n\t'blank_line_after_opening_tag'               => true, //PHP开始标记后换行\n\t'indentation_type'                           => true,\n\t'no_multiline_whitespace_around_double_arrow' => true, //去掉数组=>多余的空格\n\t'object_operator_without_whitespace' => true, //去掉->间的空格\n\t'ternary_operator_spaces' => true, //标准化三元运算符\n\t'binary_operator_spaces' => true, //操作符间的空格\n\t'header_comment' => [\n\t    'comment_type' => 'PHPDoc',\n\t    'header' => SOFT_NAME . \" \\r\\n\\r\\n(c) We7Team 2019 <https://www.w7.cc> \\r\\n\\r\\nThis is not a free software \\r\\nUsing it under the license terms\\r\\nvisited https://www.w7.cc for more details\",\n\t],\n\t//'braces'                                     => ['position_after_anonymous_constructs' => 'same'], //设置大括号换行，暂时根本Psr\n\t//'binary_operator_spaces'                     => ['default' => 'align_single_space'], //等号对齐、数字箭头符号对齐\n);\nreturn PhpCsFixer\\Config::create()\n\t->setRules($fixers)\n\t->setFinder($finder)\n\t->setIndent(\"\\t\")\n\t->setUsingCache(false);\n"
  },
  {
    "path": "LICENSE",
    "content": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and\ndistribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright\nowner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities\nthat control, are controlled by, or are under common control with that entity.\nFor the purposes of this definition, \"control\" means (i) the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\npermissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including\nbut not limited to software source code, documentation source, and configuration\nfiles.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or\ntranslation of a Source form, including but not limited to compiled object code,\ngenerated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made\navailable under the License, as indicated by a copyright notice that is included\nin or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that\nis based on (or derived from) the Work and for which the editorial revisions,\nannotations, elaborations, or other modifications represent, as a whole, an\noriginal work of authorship. For the purposes of this License, Derivative Works\nshall not include works that remain separable from, or merely link (or bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version\nof the Work and any modifications or additions to that Work or Derivative Works\nthereof, that is intentionally submitted to Licensor for inclusion in the Work\nby the copyright owner or by an individual or Legal Entity authorized to submit\non behalf of the copyright owner. For the purposes of this definition,\n\"submitted\" means any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems, and\nissue tracking systems that are managed by, or on behalf of, the Licensor for\nthe purpose of discussing and improving the Work, but excluding communication\nthat is conspicuously marked or otherwise designated in writing by the copyright\nowner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution has been received by Licensor and subsequently\nincorporated within the Work.\n\n2. Grant of Copyright License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable copyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the Work and such\nDerivative Works in Source or Object form.\n\n3. Grant of Patent License.\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable (except as stated in this section) patent license to make, have\nmade, use, offer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such Contributor\nthat are necessarily infringed by their Contribution(s) alone or by combination\nof their Contribution(s) with the Work to which such Contribution(s) was\nsubmitted. If You institute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work or a\nContribution incorporated within the Work constitutes direct or contributory\npatent infringement, then any patent licenses granted to You under this License\nfor that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution.\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof\nin any medium, with or without modifications, and in Source or Object form,\nprovided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of\nthis License; and\nYou must cause any modified files to carry prominent notices stating that You\nchanged the files; and\nYou must retain, in the Source form of any Derivative Works that You distribute,\nall copyright, patent, trademark, and attribution notices from the Source form\nof the Work, excluding those notices that do not pertain to any part of the\nDerivative Works; and\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any\nDerivative Works that You distribute must include a readable copy of the\nattribution notices contained within such NOTICE file, excluding those notices\nthat do not pertain to any part of the Derivative Works, in at least one of the\nfollowing places: within a NOTICE text file distributed as part of the\nDerivative Works; within the Source form or documentation, if provided along\nwith the Derivative Works; or, within a display generated by the Derivative\nWorks, if and wherever such third-party notices normally appear. The contents of\nthe NOTICE file are for informational purposes only and do not modify the\nLicense. You may add Your own attribution notices within Derivative Works that\nYou distribute, alongside or as an addendum to the NOTICE text from the Work,\nprovided that such additional attribution notices cannot be construed as\nmodifying the License.\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of the Work otherwise complies\nwith the conditions stated in this License.\n\n5. Submission of Contributions.\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\nconditions of this License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify the terms of\nany separate license agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n6. Trademarks.\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty.\n\nUnless required by applicable law or agreed to in writing, Licensor provides the\nWork (and each Contributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\nincluding, without limitation, any warranties or conditions of TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for determining the appropriateness of using or\nredistributing the Work and assume any risks associated with Your exercise of\npermissions under this License.\n\n8. Limitation of Liability.\n\nIn no event and under no legal theory, whether in tort (including negligence),\ncontract, or otherwise, unless required by applicable law (such as deliberate\nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental,\nor consequential damages of any character arising as a result of this License or\nout of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or malfunction, or\nany and all other commercial damages or losses), even if such Contributor has\nbeen advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability.\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity, or\nother liability obligations and/or rights consistent with this License. However,\nin accepting such obligations, You may act only on Your own behalf and on Your\nsole responsibility, not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason of your\naccepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work\n\nTo apply the Apache License to your work, attach the following boilerplate\nnotice, with the fields enclosed by brackets \"{}\" replaced with your own\nidentifying information. (Don't include the brackets!) The text should be\nenclosed in the appropriate comment syntax for the file format. We also\nrecommend that a file or class name and description of purpose be included on\nthe same \"printed page\" as the copyright notice for easier identification within\nthird-party archives.\n\n   Copyright 2018 微擎团队\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."
  },
  {
    "path": "README.md",
    "content": "### 简介\n\n一款基于软擎框架（[https://www.rangine.com/](https://www.rangine.com/)）的开源Markdown文档系统。\n\n常驻内存，不依赖传统的 Nginx/Apache 和 PHP-FPM，全异步非阻塞、协程实现。\n\n### 环境要求\n\n  * PHP > 7.2.0\n  * PHP Swoole 扩展 >= 4.3.0\n  * PHP Mbstring 扩展\n  * PHP Pdo MySql 扩展\n  * PHP Redis 扩展\n\n### 安装\n\n#### 下载安装包\n\nhttps://github.com/we7coreteam/w7-rangine-project-document/releases/ 下载最新版的文档系统源码\n\n#### 解压文件\n\n下载源码后，解压到服务器目录（如：/home/wwwroot）\n\n进入文档系统源码目录，```cd /home/wwwroot/w7-rangine-project-document```\n\n#### 安装扩展包\n\n```\ncomposer install\n```\n\n#### 运行系统\n\n> 如果您的99端口被其他应用占用，您需要手动修改config/server文件中的 SERVER_HTTP_PORT 默认端口号\n\n项目根目录下执行命令\n```\nbin/server start\n```\n#### 安装系统\n\n访问根目录/install,按照页面提示进行安装\n安装完成后重启服务\n\n重启服务：项目根目录下执行命令\n```\nsh restart.sh\n```\n\n执行数据迁移命令：项目根目录下执行命令\n```\nbin/gerent migrate:migrate --force\n```\n\n如需重新安装\n请手动删除 runtime/install.lock 与.env文件 并且重启服务\n\n\n\n\n\n\n"
  },
  {
    "path": "app/Command/Document/CleanUpRecordsCommand.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Command\\Document;\n\nuse W7\\App\\Model\\Entity\\Document\\ChapterContent;\nuse W7\\Console\\Command\\CommandAbstract;\n\nclass CleanUpRecordsCommand extends CommandAbstract\n{\n\tprotected $description = '清理API文档缓存';\n\n\tprotected function configure()\n\t{\n\t\t$this->setName('todo:clean_up_records');\n\t}\n\n\tprotected function handle($options)\n\t{\n\t\tgo(function () {\n\t\t\t$this->clean();\n\t\t});\n\t}\n\n\t/*\n\t * 本操作用于，更改API文档markdown结构，手动清理缓存生效\n\t * */\n\tpublic function clean()\n\t{\n\t\ttry {\n\t\t\tChapterContent::query()->where('layout', 1)->update(['content' => '']);\n\t\t\t$this->output->success('API文档缓存已清理');\n\t\t} catch (\\Exception $e) {\n\t\t\t$this->output->error($e->getMessage());\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "app/Command/Install/InitCommand.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Command\\Install;\n\nuse W7\\App\\Model\\Logic\\UserLogic;\nuse W7\\Console\\Command\\CommandAbstract;\nuse W7\\Core\\Exception\\CommandException;\n\nclass InitCommand extends CommandAbstract\n{\n\tprotected function handle($options)\n\t{\n\t\ttry {\n\t\t\t// 是否已安装\n\t\t\t$lockFile = RUNTIME_PATH . '/install.lock';\n\t\t\tif (file_exists($lockFile)) {\n\t\t\t\tthrow new CommandException('文档系统已经安装，如果需要重新安装请手动删除 runtime/install.lock 文件');\n\t\t\t}\n\n\t\t\t// 版本检查\n\t\t\t$this->checkExtension();\n\n\t\t\t// 生成配置文件\n\t\t\t$config = $this->installConfig();\n\t\t\t$this->generateConfig($config);\n\n\t\t\t// 初始化数据库\n\t\t\t$this->initDatabase($config);\n\n\t\t\t// 生成lock文件\n\t\t\tfile_put_contents($lockFile, 'success');\n\n\t\t\t$this->output->success('安装已完成！提示：请按照文档配置，启动相关服务');\n\t\t} catch (\\Exception $e) {\n\t\t\t$this->output->error($e->getMessage());\n\t\t}\n\t}\n\n\tprivate function generateConfig($config)\n\t{\n\t\t$env = file_get_contents(BASE_PATH . '/install/.env.template');\n\t\t// server\n\t\t$env = str_replace('{{SERVER_HTTP_PORT}}', $config['server_port'], $env);\n\t\t// db\n\t\t$env = str_replace('{{DATABASE_DEFAULT_DATABASE}}', $config['db_database'], $env);\n\t\t$env = str_replace('{{DATABASE_DEFAULT_HOST}}', $config['db_host'], $env);\n\t\t$env = str_replace('{{DATABASE_DEFAULT_PORT}}', $config['db_port'], $env);\n\t\t$env = str_replace('{{DATABASE_DEFAULT_USERNAME}}', $config['db_username'], $env);\n\t\t$env = str_replace('{{DATABASE_DEFAULT_PASSWORD}}', $config['db_password'], $env);\n\t\t$env = str_replace('{{DATABASE_DEFAULT_PREFIX}}', $config['db_prefix'], $env);\n\t\t// cache\n\t\t$env = str_replace('{{CACHE_DEFAULT_DRIVER}}', $config['cache_driver'], $env);\n\t\tif ($config['cache_driver'] == 'redis') {\n\t\t\t$env = str_replace('{{CACHE_DEFAULT_HOST}}', $config['cache_host'], $env);\n\t\t\t$env = str_replace('{{CACHE_DEFAULT_PORT}}', $config['cache_port'], $env);\n\t\t\t$env = str_replace('{{CACHE_DEFAULT_PASSWORD}}', '', $env);\n\t\t} else {\n\t\t\t$env = str_replace('{{CACHE_DEFAULT_HOST}}', '127.0.0.1', $env);\n\t\t\t$env = str_replace('{{CACHE_DEFAULT_PORT}}', '6379', $env);\n\t\t\t$env = str_replace('{{CACHE_DEFAULT_PASSWORD}}', '', $env);\n\t\t}\n\n\t\tif (file_put_contents(BASE_PATH . '/.env', $env) === false) {\n\t\t\tthrow new CommandException('配置文件写入失败！');\n\t\t}\n\t\t$this->output->success('配置文件已生成！');\n\t\t$this->segmentation();\n\t}\n\n\t/**\n\t * @param $config\n\t * @throws CommandException\n\t */\n\tprivate function initDatabase($config)\n\t{\n\t\t// 创建数据库\n\t\ttry {\n\t\t\t$connect = new \\PDO(\"mysql:host={$config['db_host']};port={$config['db_port']};charset=utf8\", $config['db_username'], $config['db_password']);\n\t\t\t$connect->setAttribute(\\PDO::ATTR_ERRMODE, \\PDO::ERRMODE_EXCEPTION);\n\t\t\t$sql = \"CREATE DATABASE IF NOT EXISTS {$config['db_database']} DEFAULT CHARSET utf8 COLLATE utf8_general_ci;\";\n\t\t\t$connect->exec($sql);\n\t\t\t$statement = $connect->query(\"SHOW DATABASES LIKE '{$config['db_database']}';\");\n\t\t\tif (empty($statement->fetch())) {\n\t\t\t\tthrow new CommandException('创建数据库失败！');\n\t\t\t}\n\n\t\t\t$connect->exec(\"USE {$config['db_database']};\");\n\t\t\t$statement = $connect->query(\"SHOW TABLES LIKE '{$config['db_prefix']}%';\");\n\t\t\tif (!empty($statement->fetch())) {\n\t\t\t\tthrow new CommandException('您的数据库不为空，请重新建立数据库或清空该数据库或更改表前缀！');\n\t\t\t}\n\n\t\t\t// 导入数据\n\t\t\t$importSql = file_get_contents(BASE_PATH . '/install/document.sql');\n\t\t\t$importSql = str_replace('ims_', $config['db_prefix'], $importSql);\n\t\t\t$connect->exec($importSql);\n\t\t\t$connect = null;\n\n\t\t\t// 创建系统管理员账号\n\t\t\t$this->createAdmin($config);\n\n\t\t\t$this->output->success('数据库初始化成功！');\n\t\t\t$this->segmentation();\n\t\t} catch (\\PDOException $e) {\n\t\t\tthrow new CommandException($e->getMessage());\n\t\t}\n\t}\n\n\t/**\n\t * @param $config\n\t * @throws CommandException\n\t */\n\tprivate function createAdmin($config)\n\t{\n\t\ttry {\n\t\t\t$connect = new \\PDO(\"mysql:host={$config['db_host']};port={$config['db_port']};dbname={$config['db_database']};charset=utf8mb4\", $config['db_username'], $config['db_password']);\n\t\t\t$username = $config['admin_username'];\n\t\t\t$password = UserLogic::instance()->userPwdEncryption($username, $config['admin_password']);\n\t\t\t$userTable = $config['db_prefix'] . 'user';\n\n\t\t\t$adminInsert = [\n\t\t\t\t'username' => $username,\n\t\t\t\t'userpass' => $password,\n\t\t\t\t'is_ban' => 0,\n\t\t\t\t'remark' => '超管',\n\t\t\t\t'group_id' => 1,\n\t\t\t\t'created_at' => time(),\n\t\t\t\t'updated_at' => time(),\n\t\t\t];\n\n\t\t\t$sql = \"INSERT INTO `{$userTable}` (`\" . implode('`,`', array_keys($adminInsert)) . \"`) VALUE ('\" . implode(\"','\", $adminInsert) . \"')\";\n\t\t\t$connect->exec($sql);\n\t\t\t$statement = $connect->query(\"SELECT * FROM {$userTable} WHERE username = '{$username}'\");\n\t\t\tif (empty($statement->fetch())) {\n\t\t\t\tthrow new CommandException('创建系统管理员失败！');\n\t\t\t}\n\t\t\t$connect = null;\n\t\t} catch (\\PDOException $e) {\n\t\t\tthrow new CommandException($e->getMessage());\n\t\t}\n\t}\n\n\tprivate function checkExtension()\n\t{\n\t\t$this->output->info('检查PHP扩展: ');\n\t\t$this->output->writeln('');\n\n\t\tif (version_compare(PHP_VERSION, '7.2.0', '<')) {\n\t\t\tthrow new CommandException('PHP 版本必须>= 7.2.0');\n\t\t}\n\n\t\t$extension = ['pdo_mysql', 'mbstring', 'swoole'];\n\t\tforeach ($extension as $ext) {\n\t\t\tif (!extension_loaded($ext)) {\n\t\t\t\tthrow new CommandException($ext . ' 扩展未安装');\n\t\t\t}\n\t\t}\n\n\t\tif (version_compare(swoole_version(), '4.3.0', '<')) {\n\t\t\tthrow new CommandException('swoole 版本必须>= 4.3.0');\n\t\t}\n\n\t\tif (is_writable(BASE_PATH) === false) {\n\t\t\tthrow new CommandException('请保证' . BASE_PATH . '目录有写权限！');\n\t\t}\n\n\t\tif (is_writable(RUNTIME_PATH) === false) {\n\t\t\tthrow new CommandException('请保证' . RUNTIME_PATH . '目录有写权限！');\n\t\t}\n\n\t\tif (!file_exists(BASE_PATH . '/composer.json')) {\n\t\t\tthrow new CommandException('请先执行 composer install --no-dev 安装扩展包');\n\t\t}\n\n\n\t\t$this->output->success('PHP扩展已检查完毕！');\n\t\t$this->segmentation();\n\t}\n\n\tprivate function installConfig()\n\t{\n\t\t// 验证规则\n\t\t$validate = [\n\t\t\t'host' => '/[\\w\\.]{5,64}/',\n\t\t\t'port' => '/[1-9]\\d{0,4}/'\n\t\t];\n\t\t$install = [\n\t\t\t'server' => [\n\t\t\t\t'option' => '服务',\n\t\t\t\t'value' => [\n\t\t\t\t\t'port' => [\n\t\t\t\t\t\t'name' => '端口',\n\t\t\t\t\t\t'default' => 80,\n\t\t\t\t\t\t'validate' => $validate['port']\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t],\n\t\t\t'db' => [\n\t\t\t\t'option' => '数据库',\n\t\t\t\t'value' => [\n\t\t\t\t\t'host' => [\n\t\t\t\t\t\t'name' => '地址',\n\t\t\t\t\t\t'default' => '127.0.0.1',\n\t\t\t\t\t\t'validate' => $validate['host']\n\t\t\t\t\t],\n\t\t\t\t\t'port' => [\n\t\t\t\t\t\t'name' => '端口',\n\t\t\t\t\t\t'default' => '3306',\n\t\t\t\t\t\t'validate' => $validate['port']\n\t\t\t\t\t],\n\t\t\t\t\t'database' => [\n\t\t\t\t\t\t'name' => '名称',\n\t\t\t\t\t\t'default' => 'we7_document',\n\t\t\t\t\t\t'validate' => '/[a-z_]{5,24}/'\n\t\t\t\t\t],\n\t\t\t\t\t'prefix' => [\n\t\t\t\t\t\t'name' => '表前缀',\n\t\t\t\t\t\t'default' => 'ims_',\n\t\t\t\t\t\t'validate' => '/[a-z][a-z_]{1,20}/'\n\t\t\t\t\t],\n\t\t\t\t\t'username' => [\n\t\t\t\t\t\t'name' => '用户名',\n\t\t\t\t\t\t'default' => 'root',\n\t\t\t\t\t\t'validate' => '/\\w{4,24}/'\n\t\t\t\t\t],\n\t\t\t\t\t'password' => [\n\t\t\t\t\t\t//'type' => 'hidden',\n\t\t\t\t\t\t'name' => '密码',\n\t\t\t\t\t\t'default' => '',\n\t\t\t\t\t\t'validate' => \"/[0-9A-Za-z`~!@#$%^&*()\\-_+<>?:\\\"{},.\\/;'[\\]|]{4,32}/\"\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t],\n\t\t\t'cache' => [\n\t\t\t\t'option' => '缓存',\n\t\t\t\t'value' => [\n\t\t\t\t\t'driver' => [\n\t\t\t\t\t\t'name' => '驱动, 只支持[db,redis]，系统已集成db缓存',\n\t\t\t\t\t\t'default' => 'db', // db, redis\n\t\t\t\t\t\t'validate' => '/(db|redis)/'\n\t\t\t\t\t],\n\t\t\t\t\t'host' => [\n\t\t\t\t\t\t'name' => '地址',\n\t\t\t\t\t\t'default' => '127.0.0.1',\n\t\t\t\t\t\t'validate' => $validate['host']\n\t\t\t\t\t],\n\t\t\t\t\t'port' => [\n\t\t\t\t\t\t'name' => '端口',\n\t\t\t\t\t\t'default' => 6379,\n\t\t\t\t\t\t'validate' => $validate['port']\n\t\t\t\t\t],\n\t\t\t\t]\n\t\t\t],\n\t\t\t'admin' => [\n\t\t\t\t'option' => '管理员',\n\t\t\t\t'value' => [\n\t\t\t\t\t'username' => [\n\t\t\t\t\t\t'name' => '用户名',\n\t\t\t\t\t\t'default' => 'admin',\n\t\t\t\t\t\t'validate' => '/\\w{4,24}/'\n\t\t\t\t\t],\n\t\t\t\t\t'password' => [\n\t\t\t\t\t\t//'type' => 'hidden',\n\t\t\t\t\t\t'name' => '密码',\n\t\t\t\t\t\t'default' => '',\n\t\t\t\t\t\t'validate' => '/\\w{6,32}/'\n\t\t\t\t\t],\n\t\t\t\t\t'passwordConfirm' => [\n\t\t\t\t\t\t//'type' => 'hidden',\n\t\t\t\t\t\t'name' => '确认密码',\n\t\t\t\t\t\t'default' => '',\n\t\t\t\t\t\t'validate' => 'reconfirm',\n\t\t\t\t\t\t'confirm' => 'password'\n\t\t\t\t\t],\n\t\t\t\t]\n\t\t\t]\n\t\t];\n\n\t\t$config = [];\n\t\tforeach ($install as $option => $value) {\n\t\t\t$this->output->info(\"请设置{$value['option']}相关信息: \");\n\t\t\tforeach ($value['value'] as $key => $item) {\n\t\t\t\tif (empty($item['name'])) {\n\t\t\t\t\tthrow new CommandException(\"{$value['option']}{$item['name']}不能为空\");\n\t\t\t\t}\n\n\t\t\t\t$configKey = $option . '_' . $key;\n\t\t\t\tif (isset($item['type']) && $item['type'] == 'hidden') {\n\t\t\t\t\t$config[$configKey] = $this->output->askHidden(\"请输入{$value['option']}{$item['name']}\");\n\t\t\t\t} else {\n\t\t\t\t\t$config[$configKey] = $this->output->ask(\"请输入{$value['option']}{$item['name']}\", $item['default']);\n\t\t\t\t}\n\n\t\t\t\t// 如果缓存不使用redis,直接跳过\n\t\t\t\tif ($option == 'cache' && $config[$configKey] == 'db') {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\t// 数据验证\n\t\t\t\t$reg = '/\\w+/';\n\t\t\t\tif (isset($item['validate']) && $item['validate']) {\n\t\t\t\t\t$reg = $item['validate'];\n\t\t\t\t}\n\t\t\t\tif ($reg == 'reconfirm') {\n\t\t\t\t\tif ($config[$configKey] != $config[$option . '_' . $item['confirm']]) {\n\t\t\t\t\t\tthrow new CommandException('两次输入的密码不一样！');\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tif (!preg_match($reg, $config[$configKey])) {\n\t\t\t\t\t\tthrow new CommandException(\"{$value['option']}{$item['name']}格式不正确！\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$this->segmentation();\n\t\t}\n\n\t\treturn $config;\n\t}\n\n\tprivate function segmentation()\n\t{\n\t\t$this->output->writeln('');\n\t}\n}\n"
  },
  {
    "path": "app/Command/Install/SyncDataCommand.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Command\\Install;\n\nuse W7\\Console\\Command\\CommandAbstract;\nuse W7\\Core\\Exception\\CommandException;\n\nclass SyncDataCommand extends CommandAbstract\n{\n\tprivate $userIds;\n\n\tprotected function handle($options)\n\t{\n\t\ttry {\n\t\t\t$get = [\n\t\t\t\t'host' => ienv('DATABASE_ORIGINAL_HOST'),\n\t\t\t\t'username' => ienv('DATABASE_ORIGINAL_USERNAME'),\n\t\t\t\t'password' => ienv('DATABASE_ORIGINAL_PASSWORD'),\n\t\t\t\t'database' => ienv('DATABASE_ORIGINAL_DATABASE'),\n\t\t\t];\n\n//\t\t\t获取用户 (商城数据库配置)\n\t\t\t$userDataBase = [\n\t\t\t\t'host' => ienv('DATABASE_MEMBER_HOST'),\n\t\t\t\t'username' => ienv('DATABASE_MEMBER_USERNAME'),\n\t\t\t\t'password' => ienv('DATABASE_MEMBER_PASSWORD'),\n\t\t\t\t'database' => ienv('DATABASE_MEMBER_DATABASE'),\n\t\t\t];\n\n//\t\t\t要获取数据的所有表名称\n\t\t\t$tables = [\n\t\t\t\t'ims_wiki',\n\t\t\t\t'ims_wiki_list',\n\t\t\t\t'ims_wiki_view',\n\t\t\t\t'ims_members',\n\t\t\t];\n\n//\t\t\t定义生成的sql文件\n\t\t\t$file = RUNTIME_PATH . '/document.sql';\n\t\t\tif (file_exists($file)) {\n\t\t\t\tunlink($file);\n\t\t\t}\n\n//\t\t\t拓展检查\n\t\t\t$this->checkExtension();\n\n//\t\t\t生成sql文件\n\t\t\t$this->insertData($get, $userDataBase, $tables, $file);\n\t\t} catch (\\Exception $e) {\n\t\t\t$this->output->error($e->getMessage());\n\t\t}\n\t}\n\n\tprivate function checkExtension()\n\t{\n\t\t$this->output->info('检查PHP扩展: ');\n\t\t$this->segmentation();\n\n\t\t$ext = 'mysqli';\n\t\tif (!extension_loaded($ext)) {\n\t\t\tthrow new CommandException($ext . ' 扩展未安装');\n\t\t}\n\n\t\tif (is_writable(BASE_PATH) === false) {\n\t\t\tthrow new CommandException('请检查' . BASE_PATH . '目录权限！');\n\t\t}\n\n\t\tif (is_writable(RUNTIME_PATH) === false) {\n\t\t\tthrow new CommandException('请检查' . RUNTIME_PATH . '目录权限！');\n\t\t}\n\n\t\t$this->output->writeln('PHP扩展已检查完毕!');\n\n\t\t$this->segmentation();\n\t}\n\n\tprivate function insertData($get, $userDataBase, $tables, $file)\n\t{\n\t\tif (!$get || !$userDataBase || !$tables || !$file) {\n\t\t\tthrow new CommandException('请检查数据配置！');\n\t\t}\n\n\t\tif ($get) {\n\t\t\t$this->checkDatabase($get);\n\t\t}\n\n\t\tif ($userDataBase) {\n\t\t\t$this->checkDatabase($userDataBase);\n\t\t}\n\n\t\t$sql = '';\n\n\t\t$dirChapters = [];\n\t\t$maxChapterId = 0;\n\t\t$handle = fopen($file, 'a');\n\t\tforeach ($tables as $key => $table) {\n\t\t\t$data = $this->getdata($table, $get, $userDataBase);\n\t\t\tif ($data) {\n\t\t\t\tif ($table == 'ims_wiki') {\n\t\t\t\t\t$i = 0;\n\t\t\t\t\tforeach ($data as $k => $v) {\n\t\t\t\t\t\t$this->userIds[$k] = $v['creator_id'];\n\n\t\t\t\t\t\t$sql .= 'INSERT INTO ims_document (id, name, description,creator_id,created_at,updated_at,is_public) VALUES( ';\n\t\t\t\t\t\t$sql .= \" '\".$v['id'].\"', '\".$v['name'].\"', '\".$v['description'].\"', '\".$v['creator_id'].\"', '\".$v['created_at'].\"','\".$v['updated_at'].\"', '\".$v['is_show'].\"' );\".PHP_EOL;\n\n\t\t\t\t\t\t$sql .= 'INSERT INTO ims_document_permission (id, user_id, document_id, permission, created_at,updated_at) VALUES( ';\n\t\t\t\t\t\t$sql .= \" '\".$v['id'].\"', '\".$v['creator_id'].\"', '\".$v['id'].\"', 1,'\".$v['created_at'].\"', '\".$v['updated_at'].\"' );\".PHP_EOL;\n\n\t\t\t\t\t\t$res = $this->setContent($i, count($data), $sql, $handle);\n\t\t\t\t\t\tif ($res) {\n\t\t\t\t\t\t\t$sql = '';\n\t\t\t\t\t\t}\n\t\t\t\t\t\t$i++;\n\t\t\t\t\t}\n\t\t\t\t} elseif ($table == 'ims_wiki_list') {\n\t\t\t\t\t$i = 0;\n\t\t\t\t\t$parentIds = array_column($data, 'parent_id');\n\t\t\t\t\tforeach ($data as $k => $v) {\n\t\t\t\t\t\t$isDir = 0;\n\t\t\t\t\t\t$maxChapterId = $v['id'] > $maxChapterId ? $v['id'] : $maxChapterId;\n\t\t\t\t\t\tif (in_array($v['id'], $parentIds)) {\n\t\t\t\t\t\t\t$isDir = 1;\n\t\t\t\t\t\t\t$dirChapters[$v['id']] = $v;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t$sql .= 'INSERT INTO ims_document_chapter (id, parent_id, name,document_id,sort,levels,is_dir, created_at,updated_at) VALUES( ';\n\t\t\t\t\t\t$sql .= \" '\".$v['id'].\"', '\".$v['parent_id'].\"', '\".$v['name'].\"', '\".$v['document_id'].\"', '\".$v['sort'].\"', '\".$v['levels'].\"', '\". $isDir .\"', '\".$v['created_at'].\"', '\".$v['updated_at'].\"' ); \".PHP_EOL;\n\n\t\t\t\t\t\t$res = $this->setContent($i, count($data), $sql, $handle);\n\t\t\t\t\t\tif ($res) {\n\t\t\t\t\t\t\t$sql = '';\n\t\t\t\t\t\t}\n\t\t\t\t\t\t$i++;\n\t\t\t\t\t}\n\t\t\t\t} elseif ($table == 'ims_wiki_view') {\n\t\t\t\t\t$i = 0;\n\t\t\t\t\t$chapterNum = count($data);\n\t\t\t\t\tforeach ($data as $k => $v) {\n\t\t\t\t\t\t//表示该章节是目录并且有内容，创建新的章节\n\t\t\t\t\t\tif (!empty($dirChapters[$v['chapter_id']])) {\n\t\t\t\t\t\t\t++$maxChapterId;\n\t\t\t\t\t\t\t++$chapterNum;\n\t\t\t\t\t\t\t$sql .= 'INSERT INTO ims_document_chapter (id, parent_id, name,document_id,sort,levels,is_dir, created_at,updated_at) VALUES( ';\n\t\t\t\t\t\t\t$sql .= \" '\".$maxChapterId.\"', '\".$v['chapter_id'].\"', '\".$dirChapters[$v['chapter_id']]['name'].\"', '\".$dirChapters[$v['chapter_id']]['document_id'].\"', '\".$dirChapters[$v['chapter_id']]['sort'].\"', '\".$dirChapters[$v['chapter_id']]['levels'].\"', '\". 0 .\"', '\".$dirChapters[$v['chapter_id']]['created_at'].\"', '\".$dirChapters[$v['chapter_id']]['updated_at'].\"' ); \".PHP_EOL;\n\t\t\t\t\t\t\t$v['chapter_id'] = $maxChapterId;\n\t\t\t\t\t\t\t$i++;\n\t\t\t\t\t\t\t$res = $this->setContent($i, $chapterNum, $sql, $handle);\n\t\t\t\t\t\t\tif ($res) {\n\t\t\t\t\t\t\t\t$sql = '';\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t$sql .= 'INSERT INTO ims_document_chapter_content (id, chapter_id, content,layout) VALUES( ';\n\t\t\t\t\t\t$content = htmlspecialchars_decode(html_entity_decode($v['content']));\n\t\t\t\t\t\t$content = str_replace('&#039;', \"'\", $content);\n\t\t\t\t\t\t$content = addslashes($content);\n\t\t\t\t\t\t$sql .= \" '\".$v['id'].\"', '\".$v['chapter_id'].\"', '\".$content.\"', '\".$v['layout'].\"' ); \".PHP_EOL;\n\t\t\t\t\t\t$res = $this->setContent($i, $chapterNum, $sql, $handle);\n\t\t\t\t\t\tif ($res) {\n\t\t\t\t\t\t\t$sql = '';\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t$i++;\n\t\t\t\t\t}\n\t\t\t\t} elseif ($table == 'ims_members') {\n\t\t\t\t\t$i = 0;\n\t\t\t\t\tforeach ($data as $k => $v) {\n\t\t\t\t\t\tif ($v['username'] != 'admin') {\n\t\t\t\t\t\t\t$sql .= 'INSERT INTO ims_user (id, username, is_ban, created_at, updated_at) VALUES( ';\n\t\t\t\t\t\t\t$sql .= \" '\".$v['id'].\"', '\".$v['username'].\"','\".$v['is_ban'].\"',\".$v['created_at'].\",\".$v['updated_at'].\"); \".PHP_EOL;\n\n\t\t\t\t\t\t\t$res = $this->setContent($i, count($data), $sql, $handle);\n\t\t\t\t\t\t\tif ($res) {\n\t\t\t\t\t\t\t\t$sql = '';\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t$i++;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfclose($handle);\n\n\t\t$this->output->success('success！ 生成的SQL文件在runtime目录下的document.sql');\n\t}\n\n\tprivate function getdata($table, $get, $userDataBase)\n\t{\n\t\tif ($table == 'ims_members') {\n\t\t\t$conn = new \\mysqli($userDataBase['host'], $userDataBase['username'], $userDataBase['password']);\n\t\t\tif ($conn->connect_error) {\n\t\t\t\tthrow new CommandException('连接失败' . $conn->connect_error);\n\t\t\t}\n\t\t\t$this->output->writeln($userDataBase['host'].'连接成功');\n\t\t\tmysqli_query($conn, 'set names utf8');\n\t\t\tmysqli_select_db($conn, $userDataBase['database']);\n\t\t} else {\n\t\t\t$conn = new \\mysqli($get['host'], $get['username'], $get['password']);\n\t\t\tif ($conn->connect_error) {\n\t\t\t\tthrow new CommandException('连接失败' . $conn->connect_error);\n\t\t\t}\n\t\t\t$this->output->writeln($get['host'].'连接成功');\n\t\t\tmysqli_query($conn, 'set names utf8');\n\t\t\tmysqli_select_db($conn, $get['database']);\n\t\t}\n\n\t\t//        获取数据\n\t\t$data = [];\n\n\t\tif ($table == 'ims_wiki') {\n\t\t\t$sql = \"select * from $table \";\n\t\t} elseif ($table == 'ims_wiki_list') {\n\t\t\t$sql = \"select * from $table \";\n\t\t} elseif ($table == 'ims_wiki_view') {\n\t\t\t$sql = \"select id,listid,content from $table \";\n\t\t} elseif ($table == 'ims_members') {\n\t\t\tif ($this->userIds) {\n\t\t\t\t$this->userIds = rtrim(implode(',',array_unique($this->userIds)),',');\n\t\t\t\t$sql = \"select uid,username,password,status,joindate from $table where uid in ($this->userIds) \";\n\t\t\t}else{\n\t\t\t\tthrow new CommandException('获取不到用户ID');\n\t\t\t}\n\t\t}\n\n\t\t$retval = mysqli_query($conn, $sql);\n\t\tif (!$retval) {\n\t\t\tthrow new CommandException('连接失败' . mysqli_error($conn));\n\t\t}\n\t\twhile ($row = mysqli_fetch_array($retval, MYSQLI_ASSOC)) {\n\t\t\t$data[] = $row;\n\t\t}\n\t\t$retval->close();\n\t\tif ($data) {\n\t\t\tmysqli_close($conn);\n\t\t\treturn $this->handleData($data, $table);\n\t\t}\n\t\treturn false;\n\t}\n\n\tprivate function handleData($data, $table)\n\t{\n\t\tif (!$data) {\n\t\t\treturn '数据为空';\n\t\t}\n\n\t\t$tmp_data = [];\n\t\tif ($table == 'ims_wiki') {\n\t\t\tforeach ($data as $k => $v) {\n\t\t\t\t$tmp_data[$k]['id'] = $v['id'];\n\t\t\t\t$tmp_data[$k]['name'] = $v['title'];\n\t\t\t\t$tmp_data[$k]['description'] = $v['description'];\n\t\t\t\t$tmp_data[$k]['creator_id'] = $v['uid'];\n\t\t\t\t$tmp_data[$k]['created_at'] = $v['createtime'] == 0 ? strtotime(time()) : $v['createtime'];\n\t\t\t\t$tmp_data[$k]['updated_at'] = $v['createtime'] == 0 ? strtotime(time()) : $v['createtime'];\n\t\t\t\t$tmp_data[$k]['is_show'] = $v['isread'] == 0 ? 2 : 1;\n\t\t\t}\n\t\t} elseif ($table == 'ims_wiki_list') {\n\t\t\tforeach ($data as $k => $v) {\n\t\t\t\t$tmp_data[$k]['id'] = $v['id'];\n\t\t\t\t$tmp_data[$k]['parent_id'] = $v['parentid'];\n\t\t\t\t$tmp_data[$k]['name'] = $v['name'];\n\t\t\t\t$tmp_data[$k]['document_id'] = $v['wikiid'];\n\t\t\t\t$tmp_data[$k]['sort'] = $v['displayorder'];\n\t\t\t\t$tmp_data[$k]['levels'] = 0;\n\n\t\t\t\tif (intval($v['lasttime']) <= 0 || !$v['lasttime'] || $v['lasttime'] == false) {\n\t\t\t\t\t$tmp_data[$k]['created_at'] = strtotime('now');\n\t\t\t\t\t$tmp_data[$k]['updated_at'] = strtotime('now');\n\t\t\t\t} else {\n\t\t\t\t\t$tmp_data[$k]['created_at'] = $v['lasttime'];\n\t\t\t\t\t$tmp_data[$k]['updated_at'] = $v['lasttime'];\n\t\t\t\t}\n\t\t\t}\n\t\t} elseif ($table == 'ims_wiki_view') {\n\t\t\tforeach ($data as $k => $v) {\n\t\t\t\t$tmp_data[$k]['id'] = $v['id'];\n\t\t\t\t$tmp_data[$k]['chapter_id'] = $v['listid'];\n\t\t\t\t$tmp_data[$k]['content'] = $v['content'];\n\t\t\t\t$tmp_data[$k]['layout'] = 1;\n\t\t\t}\n\t\t} elseif ($table == 'ims_members') {\n\t\t\tforeach ($data as $k => $v) {\n\t\t\t\t$tmp_data[$k]['id'] = $v['uid'];\n\t\t\t\t$tmp_data[$k]['username'] = $v['username'];\n\t\t\t\t$tmp_data[$k]['is_ban'] = $v['status'];\n\t\t\t\t$tmp_data[$k]['created_at'] = $v['joindate'];\n\t\t\t\t$tmp_data[$k]['updated_at'] = $v['joindate'];\n\t\t\t}\n\t\t}\n\t\treturn $tmp_data;\n\t}\n\n\tprivate function setContent($i, $count, $sql, $handle)\n\t{\n\t\tif ($i%100 == 0) {\n\t\t\tfwrite($handle, $sql);\n\t\t\treturn true;\n\t\t} elseif ($i == $count -1) {\n\t\t\tfwrite($handle, $sql);\n\t\t\treturn true;\n\t\t}\n\t}\n\n\tprivate function checkDatabase($database)\n\t{\n//\t\tif (isset($database['host']) && $database['host']) {\n//\t\t\t$pat = \"/^(((1?\\d{1,2})|(2[0-4]\\d)|(25[0-5]))\\.){3}((1?\\d{1,2})|(2[0-4]\\d)|(25[0-5])):[0-9]{2,6}$/\";\n//\t\t\t$pat2 = \"/[\\w][\\w-]*\\.(?:com\\.cn|com|cn|co|net|org|gov|cc|biz|info)(\\/|$)/isU\";\n//\t\t\tif (!preg_match($pat, $database['host']) && !preg_match($pat2, $database['host'])) {\n//\t\t\t\tthrow new CommandException('host填写错误');\n//\t\t\t}\n//\t\t}\n\t\tif (!isset($database['username']) || !$database['username']) {\n\t\t\tthrow new CommandException('username不能为空');\n\t\t}\n\t\tif (!isset($database['password']) || !$database['password']) {\n\t\t\tthrow new CommandException('password不能为空');\n\t\t}\n\t\tif (!isset($database['database']) || !$database['database']) {\n\t\t\tthrow new CommandException('database不能为空');\n\t\t}\n\t}\n\n\tprivate function segmentation()\n\t{\n\t\t$this->output->writeln('');\n\t}\n}\n"
  },
  {
    "path": "app/Command/Todo/CustomCommand.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Command\\Todo;\n\nuse W7\\Console\\Command\\CommandAbstract;\n\nclass CustomCommand extends CommandAbstract\n{\n\tprotected $description = '上线需要执行的脚本';\n\n\tprotected function configure()\n\t{\n\t\t$this->setName('todo:custom');\n\t}\n\n\tprotected function handle($options)\n\t{\n\t}\n}\n"
  },
  {
    "path": "app/Command/index.html",
    "content": ""
  },
  {
    "path": "app/Controller/Admin/ChapterController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Admin;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Document\\Chapter;\nuse W7\\App\\Model\\Entity\\Document\\ChapterContent;\nuse W7\\App\\Model\\Entity\\Setting;\nuse W7\\App\\Model\\Entity\\User;\nuse W7\\App\\Model\\Entity\\UserOperateLog;\nuse W7\\App\\Model\\Logic\\ChapterLogic;\nuse W7\\App\\Model\\Logic\\Document\\ChapterApi\\ChapterImportLogic;\nuse W7\\App\\Model\\Logic\\Document\\ChapterContentLogic;\nuse W7\\App\\Model\\Logic\\DocumentLogic;\nuse W7\\App\\Model\\Logic\\DocumentPermissionLogic;\nuse W7\\App\\Model\\Logic\\UserOperateLogic;\nuse W7\\App\\Model\\Logic\\Document\\ChapterApi\\ChapterRecordLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\n/**\n * Class ChapterController\n * @package W7\\App\\Controller\\Admin\n */\nclass ChapterController extends BaseController\n{\n\tpublic function detail(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'document_id' => 'required|integer',\n\t\t], [\n\t\t\t'document_id.required' => '文档ID必传',\n\t\t]);\n\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\t$documentId = intval($request->input('document_id'));\n\t\t$document = DocumentLogic::instance()->getById($documentId);\n\n\t\t$chapter = ChapterLogic::instance()->getCatalog($documentId);\n\n\t\t$result = [\n\t\t\t'document' => [\n\t\t\t\t'id' => $document->id,\n\t\t\t\t'name' => $document->name,\n\t\t\t],\n\t\t\t'catalog' => $chapter,\n\t\t\t'acl' => [\n\t\t\t\t'has_manage' => $user->isManager\n\t\t\t]\n\t\t];\n\n\t\treturn $this->data($result);\n\t}\n\n\t/**\n\t * @api {post} /admin/chapter/create 文档（目录）-新增\n\t * @apiName create\n\t * @apiGroup Chapter\n\t *\n\t * @apiParam {Number} name 章节ID\n\t * @apiParam {Number} document_id 目录ID\n\t * @apiParam {Number} parent_id 附ID\n\t * @apiParam {Number} is_dir 是否为目录\n\t * @apiParam {Number} layout 0：markdown格式 1：http格式(新增文件时)\n\t */\n\tpublic function create(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'name' => 'string|required|max:60',\n\t\t\t'document_id' => 'required|integer|min:1',\n\t\t\t'parent_id' => 'required|integer|min:0',\n\t\t\t'is_dir' => 'required|boolean',\n\t\t\t'layout' => 'integer'\n\t\t], [\n\t\t\t'name.required' => '章节名称必填',\n\t\t\t'name.max' => '章节名最大60个字符',\n\t\t\t'document_id.required' => '文档id必填',\n\t\t\t'document_id.min' => '文档id最小为0',\n\t\t\t'parent_id.required' => '父id必填',\n\t\t]);\n\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isOperator) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t}\n\t\t//频繁操作时间限制\n\t\tif (icache()->get('creat_lock_time')){\n\t\t\tthrow new ErrorHttpException('操作过于频繁');\n\t\t}\n\n\t\t$parentId = intval($request->post('parent_id'));\n\t\tif (!empty($parentId)) {\n\t\t\t$parentChapter = ChapterLogic::instance()->getById($parentId);\n\t\t\tif (empty($parentChapter)) {\n\t\t\t\tthrow new ErrorHttpException('父章节不存在');\n\t\t\t}\n\t\t\tif (!$parentChapter->is_dir) {\n\t\t\t\tthrow new ErrorHttpException('父章节不是目录，不可以新增子章节或者文档');\n\t\t\t}\n\t\t}\n\n\t\t$isDir = $request->post('is_dir');\n\t\t$documentId = intval($request->post('document_id'));\n\t\t$maxSort = Chapter::query()->where('document_id', '=', $documentId)->where('parent_id', '=', $parentId)->max('sort');\n\t\t$sort = intval($request->post('sort', ++$maxSort));\n\t\t$chapter = Chapter::query()->create([\n\t\t\t'name' => $request->post('name'),\n\t\t\t'sort' => $sort,\n\t\t\t'is_dir' => $isDir ? 1 : 0,\n\t\t\t'document_id' => $documentId,\n\t\t\t'parent_id' => $parentId,\n\t\t]);\n\t\tif (!$chapter) {\n\t\t\tthrow new ErrorHttpException('章节添加失败');\n\t\t}\n\t\t//记录操作锁\n\t\ticache()->set('creat_lock_time',1,3);\n\n\t\t$layout = $request->post('layout', 0);\n\t\tif ($layout) {\n\t\t\t//如果是非默认类型，新建时锁定类型\n\t\t\tif (!empty($chapter->content)) {\n\t\t\t\t$chapter->content->content = '';\n\t\t\t\t$chapter->content->layout = $layout;\n\t\t\t\t$chapter->content->save();\n\t\t\t} else {\n\t\t\t\tChapterContent::query()->create([\n\t\t\t\t\t'chapter_id' => $chapter->id,\n\t\t\t\t\t'content' => '',\n\t\t\t\t\t'layout' => $layout\n\t\t\t\t]);\n\t\t\t}\n\t\t}\n\n\t\tUserOperateLog::query()->create([\n\t\t\t'user_id' => $user->id,\n\t\t\t'document_id' => $documentId,\n\t\t\t'chapter_id' => $chapter->id,\n\t\t\t'operate' => UserOperateLog::CREATE,\n\t\t\t'remark' => $user->username . '创建章节' . $chapter->name\n\t\t]);\n\n\t\treturn $this->data($chapter->toArray());\n\t}\n\n\tpublic function update(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'name' => 'string|required|max:60',\n\t\t\t'chapter_id' => 'required|integer|min:1',\n\t\t\t'document_id' => 'required|integer',\n\t\t], [\n\t\t\t'name.required' => '章节名称必填',\n\t\t\t'name.max' => '章节名最大60个字符',\n\t\t\t'chapter_id.required' => '文档id必填',\n\t\t\t'chapter_id.min' => '文档id最小为0',\n\t\t\t'document_id.required' => '文档id必填',\n\t\t]);\n\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isOperator) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t}\n\n\t\t$chapter = ChapterLogic::instance()->getById($request->post('chapter_id'));\n\t\tif (empty($chapter)) {\n\t\t\tthrow new ErrorHttpException('章节不存在');\n\t\t}\n\t\t$parentId = $request->post('parent_id', null);\n\t\tif (isset($parentId)) {\n\t\t\tif ($parentId != 0) {\n\t\t\t\t$parentChapter = ChapterLogic::instance()->getById($parentId);\n\t\t\t\tif (!$parentChapter || $parentChapter->is_dir != Chapter::IS_DIR) {\n\t\t\t\t\tthrow new ErrorHttpException('上级章节不存在');\n\t\t\t\t}\n\t\t\t}\n\t\t\t$chapter->parent_id = $parentId;\n\t\t}\n\n\t\t$chapter->name = $request->post('name');\n\t\t$chapter->save();\n\n\t\tUserOperateLog::query()->create([\n\t\t\t'user_id' => $user->id,\n\t\t\t'document_id' => $chapter->document_id,\n\t\t\t'chapter_id' => $chapter->id,\n\t\t\t'operate' => UserOperateLog::EDIT,\n\t\t\t'remark' => $user->username . '编辑章节' . $chapter->name . '基本信息'\n\t\t]);\n\n\t\treturn $this->data('success');\n\t}\n\n\tpublic function sort(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'target.chapter_id' => 'sometimes|integer',\n\t\t\t'target.position' => 'required|in:inner,before,after,move',\n\t\t\t'chapter_id' => 'required|integer',\n\t\t\t'document_id' => 'required|integer',\n\t\t]);\n\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isOperator) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t}\n\n\t\t$chapter = ChapterLogic::instance()->getById($request->post('chapter_id'));\n\t\tif (empty($chapter)) {\n\t\t\tthrow new ErrorHttpException('要移动的章节不存在');\n\t\t}\n\n\t\t$position = $request->post('target')['position'];\n\t\t$targetChapter = ChapterLogic::instance()->getById($request->post('target')['chapter_id']);\n\t\tif ($targetChapter && ($targetChapter->is_dir != Chapter::IS_DIR)) {\n\t\t\t//移动对象不是目录\n\t\t\tthrow new ErrorHttpException('只能移动到目录下面');\n\t\t}\n\n\t\tidb()->beginTransaction();\n\t\ttry {\n\t\t\tif ($position == 'move') {\n\t\t\t\t//移动当前文章/目录\n\t\t\t\t$targetDocumentId = $request->post('target')['document_id'];\n\t\t\t\t$documentPermission = DocumentPermissionLogic::instance()->getByDocIdAndUid($targetDocumentId, $user->id);\n\t\t\t\tif (!$user->isFounder && !$documentPermission->isManager && !$documentPermission->isOperator) {\n\t\t\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t\t\t}\n//\t\t\t\t$chapter->document_id = $targetDocumentId;\n//\t\t\t\t$chapter->save();\n\t\t\t} else {\n\t\t\t\tif ($targetChapter->document_id != $request->post('document_id')) {\n\t\t\t\t\tthrow new ErrorHttpException('只能移动到当前文档中的其它目录');\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t//放入到目录节点中，但不存在排序\n\t\t\tif ($position == 'inner' || $position == 'move') {\n\t\t\t\ttry {\n\t\t\t\t\tif (empty($targetChapter)) {\n\t\t\t\t\t\t//目标节点不存在-移动到根目录下\n\t\t\t\t\t\t//找到该文档的根节点中的其中一个章节\n//\t\t\t\t\t$targetChapter = Chapter::query()->where('document_id', $chapter->document_id)->where('parent_id', '=', 0)->first();\n\t\t\t\t\t\t//如果目标节点不存在-移动到根目录\n\t\t\t\t\t\t$chapter->document_id = $targetDocumentId;\n\t\t\t\t\t\t$chapter->parent_id = 0;\n\t\t\t\t\t\t$chapter->save();\n\t\t\t\t\t\tif ($chapter->document_id) {\n\t\t\t\t\t\t\t$chapterLogic = new ChapterLogic();\n\t\t\t\t\t\t\t$chapterLogic->moveSunChapter($chapter, $chapter->document_id);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t//目标节点存在-移动到目标节点下\n\t\t\t\t\t$targetChapter && ChapterLogic::instance()->moveByChapter($chapter, $targetChapter);\n\t\t\t\t} catch (\\Throwable $e) {\n\t\t\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t//同项目上下级排序\n\t\t\t\tif (empty($targetChapter)) {\n\t\t\t\t\tthrow new ErrorHttpException('要移到的章节不存在');\n\t\t\t\t}\n\n\t\t\t\t$chapter->parent_id = $targetChapter->parent_id;\n\t\t\t\t$chapter->save();\n\n\t\t\t\ttry {\n\t\t\t\t\tChapterLogic::instance()->sortByChapter($chapter, $targetChapter, $position);\n\t\t\t\t} catch (\\Throwable $e) {\n\t\t\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ($position != 'move') {\n\t\t\t\t$targetChapter && $targetChapter = ChapterLogic::instance()->getById($targetChapter->parent_id);\n\t\t\t}\n\t\t\tUserOperateLog::query()->create([\n\t\t\t\t'user_id' => $user->id,\n\t\t\t\t'document_id' => $chapter->document_id,\n\t\t\t\t'chapter_id' => $chapter->id,\n\t\t\t\t'operate' => UserOperateLog::CHAPTER_MOVE,\n\t\t\t\t'remark' => $user->username . '移动章节' . $chapter->name . '到' . !empty($targetChapter) ? $targetChapter->name : '根节点'\n\t\t\t]);\n\t\t\tidb()->commit();\n\t\t} catch (\\Throwable $e) {\n\t\t\tidb()->rollBack();\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t\treturn $this->data('success');\n\t}\n\n\tpublic function delete(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'chapter_id' => 'required',\n\t\t\t'document_id' => 'required|integer',\n\t\t], [\n\t\t\t'chapter_id.required' => '章节不存在',\n\t\t\t'document_id.required' => '文档id必填',\n\t\t]);\n\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isOperator) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t}\n\n\t\tif (!is_array($request->post('chapter_id'))) {\n\t\t\t$chapterId = intval($request->post('chapter_id'));\n\t\t\t$chapterId = [$chapterId];\n\t\t} else {\n\t\t\t$chapterId = $request->post('chapter_id');\n\t\t}\n\n\t\ttry {\n\t\t\t$documentId = intval($request->post('document_id'));\n\t\t\tforeach ($chapterId as $id) {\n\t\t\t\t$id = intval($id);\n\t\t\t\tif (empty($id)) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\t$chapter = ChapterLogic::instance()->getById($id);\n\t\t\t\tif ($chapter) {\n\t\t\t\t\tChapterLogic::instance()->deleteById($id);\n\n\t\t\t\t\tUserOperateLog::query()->create([\n\t\t\t\t\t\t'user_id' => $user->id,\n\t\t\t\t\t\t'document_id' => $documentId,\n\t\t\t\t\t\t'chapter_id' => $id,\n\t\t\t\t\t\t'operate' => UserOperateLog::DELETE,\n\t\t\t\t\t\t'remark' => $user->username . '删除章节' . $chapter->name\n\t\t\t\t\t]);\n\t\t\t\t}\n\t\t\t}\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\n\t\treturn $this->data('success');\n\t}\n\n\t/**\n\t * @api {post} /admin/chapter/save 文档内容-保存\n\t * @apiName save\n\t * @apiGroup Chapter\n\t *\n\t * @apiParam {Number} chapter_id 章节ID\n\t * @apiParam {Number} document_id 文档ID\n\t * @apiParam {Number} layout 文档类型 0：MARKDOWM文本，提交content 1：HTTP请求，提交record\n\t * @apiParam {String} content 文档内容（layout为1时用record生成content，此字段提交无效）\n\t * @apiParam {Array} record 请求记录\n\t * @apiParam {Array} record.api 请求记录地址信息\n\t * @apiParam {String} record.api.method 请求方式\n\t * @apiParam {String} record.api.url 地址\n\t * @apiParam {String} record.api.description 描述\n\t * @apiParam {String} record.api.tab_location tab页上次指定记录head,query,body\n\t * @apiParam {String} record.api.body_param_location body_param默认类型\n\t * @apiParam {Array} record.body 请求\n\t * @apiParam {Array} record.body.location 请求类型1-11参考getLocationLabel，bodyparam请求参数默认3返回参数默认10\n\t * @apiParam {String} record.body.location.id 参数id\n\t * @apiParam {String} record.body.location.name 参数名称\n\t * @apiParam {String} record.body.location.type 参数类型（location=1,7header的时候固定为string可不传） int,string...\n\t * @apiParam {Number} record.body.location.enabled 是否必传\n\t * @apiParam {String} record.body.location.description 参数描述\n\t * @apiParam {String} record.body.location.default_value 参数示例值\n\t * @apiParam {Array} record.body.location.children 参数子类数组同父级\n\t * @apiParam {String} extend 扩展内容\n\t *\n\t * @apiSuccessExample {json} Success-Response:\n\t * {status: true, code: 200, data: \"success\", message: \"ok\"}\n\t */\n\tpublic function save(Request $request)\n\t{\n\t\t$layoutLabel = array_keys(ChapterContentLogic::instance()->getLayoutLabel());\n\t\t$this->validate($request, [\n\t\t\t'chapter_id' => 'required|integer|min:1',\n\t\t\t'document_id' => 'required|integer',\n\t\t\t'layout' => 'in:' . implode(',', $layoutLabel),\n\t\t], [\n\t\t\t'chapter_id.required' => '文档id必填',\n\t\t\t'document_id.required' => '文档id必填',\n\t\t]);\n\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isOperator) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t}\n\n\t\t$chapter = ChapterLogic::instance()->getById(intval($request->post('chapter_id')));\n\t\tif (empty($chapter)) {\n\t\t\tthrow new ErrorHttpException('章节不存在');\n\t\t}\n\n\t\t$layout = $request->post('layout', 0);\n\t\t$content = $request->post('content', '');\n\n\t\tif ($layout == 1) {\n\t\t\t//如果是http类型\n\t\t\t$record = $request->post('record', []);\n\t\t\t$chapterRecord = new ChapterRecordLogic($chapter->id);\n\t\t\t$content = $chapterRecord->recordToMarkdown($record);\n\t\t}\n\t\t$words = hasForbidWords($content);\n\t\tif ($words){\n\t\t\tthrow new ErrorHttpException('您输入的内容存在敏感词“'.implode('、',$words).'”，请修改之后提交。');\n\t\t}\n\n\t\tif (!empty($chapter->content)) {\n\t\t\tif ($chapter->content->layout != $layout) {\n\t\t\t\tthrow new ErrorHttpException('文档类型不可更改');\n\t\t\t}\n\t\t\t$chapter->content->content = $content;\n\t\t\t$chapter->content->save();\n\t\t} else {\n\t\t\tif ($layout) {\n\t\t\t\t//默认0\n\t\t\t\tthrow new ErrorHttpException('文档类型不可更改');\n\t\t\t}\n\t\t\tChapterContent::query()->create([\n\t\t\t\t'chapter_id' => $chapter->id,\n\t\t\t\t'content' => $content,\n\t\t\t\t'layout' => $layout\n\t\t\t]);\n\t\t}\n\n\t\t$chapter->updated_at = time();\n\t\t$chapter->save();\n\n\t\tUserOperateLog::query()->create([\n\t\t\t'user_id' => $user->id,\n\t\t\t'document_id' => $chapter->document_id,\n\t\t\t'chapter_id' => $chapter->id,\n\t\t\t'operate' => UserOperateLog::EDIT,\n\t\t\t'remark' => $user->username . '编辑章节' . $chapter->name . '内容'\n\t\t]);\n\n\t\treturn $this->data('success');\n\t}\n\n\t/**\n\t * @api {post} /admin/chapter/content 文档内容-查看\n\t * @apiName content\n\t * @apiGroup Chapter\n\t *\n\t * @apiParam {Number} chapter_id 章节ID\n\t * @apiParam {Number} document_id 文档ID\n\t *\n\t * @apiSuccess {Number} chapter_id 章节ID\n\t * @apiSuccess {Number} document_id 文档ID\n\t * @apiSuccess {Number} layout 文档类型 0：MARKDOWM文本，提交content 1：HTTP请求，提交record\n\t * @apiSuccess {String} content 文档内容（layout为1时用record生成content，此字段提交无效）\n\t * @apiSuccess {Array} record 请求记录\n\t * @apiSuccess {Array} record.api 请求记录地址信息\n\t * @apiSuccess {String} record.api.method 请求方式\n\t * @apiSuccess {String} record.api.url 地址\n\t * @apiSuccess {String} record.api.description 描述\n\t * @apiSuccess {String} record.api.tab_location tab页上次指定记录head,query,body\n\t * @apiSuccess {String} record.api.body_param_location body_param默认类型\n\t * @apiSuccess {Array} record.body 请求\n\t * @apiSuccess {Array} record.body.location 请求类型1-11参考getLocationLabel，bodyparam请求参数默认3返回参数默认10\n\t * @apiSuccess {String} record.body.location.id 参数id\n\t * @apiSuccess {String} record.body.location.name 参数名称\n\t * @apiSuccess {String} record.body.location.type 参数类型（location=1,7header的时候固定为string可不传） int,string...\n\t * @apiSuccess {Number} record.body.location.enabled 是否必传\n\t * @apiSuccess {String} record.body.location.description 参数描述\n\t * @apiSuccess {String} record.body.location.default_value 参数示例值\n\t * @apiSuccess {Array} record.body.location.children 参数子类数组同父级\n\t * @apiSuccess {String} extend 扩展内容\n\t *\n\t * @apiSuccessExample {json} Success-Response:\n\t * {\"status\":true,\"code\":200,\"data\":{\"chapter_id\":49,\"name\":\"clj1\",\"content\":\"- **接口说明：** 这是文档说明\\n- **接口地址：** http:\\/\\/baidu.com\\n- **请求方式：** ==GET==\\n- **状态码：** ==200==\\n\\n### Request.Query.Path\\n\\n参数名称 |类型 |必填 |描述 |示例值 |生成规则 \\n|:- |:-: |:-: |:- |:- |:- \\npath参数 |String |False|这是地址栏参数 | | \\n### Request.Header\\n\\n参数名称 |类型 |必填 |描述 |示例值 |生成规则 \\n|:- |:-: |:-: |:- |:- |:- \\nAccess-Token |String |False|这是头部说明1 | |12321 \\n ec |String |False|这是四级参数ec | | \\n ed |String |False|这是四级参数ed | | \\nToken |Number |False|this is address | | \\n### Request.Query.String\\n\\n参数名称 |类型 |必填 |描述 |示例值 |生成规则 \\n|:- |:-: |:-: |:- |:- |:- \\nid |String |False|这是参数详情1 | |12321 \\nboday |Array |False|这是参数详情3 | | \\n a |Number |False|这是二级参数a | | \\n  c |String |False|这是三级参数ac | | \\n  d |String |False|这是三级参数ad | | \\n b |Array |False|这是二级参数b | | \\n  c |String |False|这是三级参数bc | | \\n  e |Array |False|这是三级参数bd | | \\n   ec|String |False|这是四级参数ec | | \\n   ed|String |False|这是四级参数ed | | \\n### Request.Body.form-data\\n\\n参数名称 |类型 |必填 |描述 |示例值 |生成规则 \\n|:- |:-: |:-: |:- |:- |:- \\nAccess-Token |String |False|这是头部说明3 | |12321 \\n### Reponse.Header\\n\\n参数名称 |类型 |必填 |描述 |示例值 |生成规则 \\n|:- |:-: |:-: |:- |:- |:- \\nAccess-Token |String |False|这是response头部说明7| |12321 \\n### Reponse.Body.raw\\n\\n参数名称 |类型 |必填 |描述 |示例值 |生成规则 \\n|:- |:-: |:-: |:- |:- |:- \\n4444 |Null |False| | | \\na |Number |False| |1 | \\nb |Array |False| |[\\\"1\\\",\\\"1\\\"] | \\n  |Number |False| |1 | \\n  |Number |False| |1 | \\nc |Object |False| | | \\n a |Array |False| |[\\\"a\\\"] | \\n b |Object |False| | | \\n  0 |String |False| |b | \\n  d |Array |False| |[\\\"4\\\",\\\"5\\\"] | \\n    |Number |False| |4 | \\n    |Number |False| |5 | \\ne |Array |False| | |2 \\n a |Array |False| |[\\\"1\\\"] | \\n b |Array |False| |[\\\"2\\\",null] |+1 \\n c |Array |False| |[\\\"3\\\"] | \\n f |Array |False| |[\\\"1\\\",\\\"2\\\"] | \\n   |Number |False| |1 | \\n   |Number |False| |2 | \\n d |Object |False| | | \\n  a |Number |False| |1 | \\n  b |Number |False| |2 | \\n\\n### 示例说明\\n\\n>请求示例：\\n\\n```\\n{\\n \\\"Header\\\":{\\n \\\"Token\\\":\\\"\\\",\\n \\\"Version\\\":\\\"3.2.0\\\",\\n \\\"SystemId\\\":100,\\n \\\"Timestamp\\\":1502870664\\n },\\n \\\"Body\\\":{\\n \\\"Mobile\\\":\\\"18520322032\\\",\\n \\\"Password\\\":\\\"acb000000\\\"\\n }\\n}\\n\\n```\",\"layout\":1,\"author\":{\"uid\":1,\"username\":\"admin\"},\"updated_at\":\"2020-04-08 16:42:00\",\"record\":{\"api\":{\"id\":1,\"chapter_id\":49,\"url\":\"http:\\/\\/baidu.com\",\"method\":1,\"status_code\":0,\"description\":\"这是文档说明\",\"body_param_location\":3},\"body\":{\"1\":[{\"id\":2,\"chapter_id\":49,\"parent_id\":0,\"location\":1,\"type\":1,\"name\":\"Access-Token\",\"description\":\"这是头部说明1\",\"enabled\":1,\"default_value\":\"\",\"children\":[{\"id\":3,\"chapter_id\":49,\"parent_id\":2,\"location\":1,\"type\":1,\"name\":\"ec\",\"description\":\"这是四级参数ec\",\"enabled\":1,\"default_value\":\"\",\"children\":[]},{\"id\":4,\"chapter_id\":49,\"parent_id\":2,\"location\":1,\"type\":1,\"name\":\"ed\",\"description\":\"这是四级参数ed\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[]}]},{\"id\":5,\"chapter_id\":49,\"parent_id\":0,\"location\":1,\"type\":2,\"name\":\"Token\",\"description\":\"this is address\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[]}],\"2\":[{\"id\":6,\"chapter_id\":49,\"parent_id\":0,\"location\":2,\"type\":1,\"name\":\"id\",\"description\":\"这是参数详情1\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"12321\",\"children\":[]},{\"id\":7,\"chapter_id\":49,\"parent_id\":0,\"location\":2,\"type\":5,\"name\":\"boday\",\"description\":\"这是参数详情3\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[{\"id\":8,\"chapter_id\":49,\"parent_id\":7,\"location\":2,\"type\":2,\"name\":\"a\",\"description\":\"这是二级参数a\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[{\"id\":9,\"chapter_id\":49,\"parent_id\":8,\"location\":2,\"type\":1,\"name\":\"c\",\"description\":\"这是三级参数ac\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[]},{\"id\":10,\"chapter_id\":49,\"parent_id\":8,\"location\":2,\"type\":1,\"name\":\"d\",\"description\":\"这是三级参数ad\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[]}]},{\"id\":11,\"chapter_id\":49,\"parent_id\":7,\"location\":2,\"type\":5,\"name\":\"b\",\"description\":\"这是二级参数b\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[{\"id\":12,\"chapter_id\":49,\"parent_id\":11,\"location\":2,\"type\":1,\"name\":\"c\",\"description\":\"这是三级参数bc\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[]},{\"id\":13,\"chapter_id\":49,\"parent_id\":11,\"location\":2,\"type\":5,\"name\":\"e\",\"description\":\"这是三级参数bd\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[{\"id\":14,\"chapter_id\":49,\"parent_id\":13,\"location\":2,\"type\":1,\"name\":\"ec\",\"description\":\"这是四级参数ec\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[]},{\"id\":15,\"chapter_id\":49,\"parent_id\":13,\"location\":2,\"type\":1,\"name\":\"ed\",\"description\":\"这是四级参数ed\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[]}]}]}]}],\"3\":[{\"id\":16,\"chapter_id\":49,\"parent_id\":0,\"location\":3,\"type\":1,\"name\":\"Access-Token\",\"description\":\"这是头部说明3\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"12321\",\"children\":[]}],\"7\":[{\"id\":17,\"chapter_id\":49,\"parent_id\":0,\"location\":7,\"type\":1,\"name\":\"Access-Token\",\"description\":\"这是response头部说明7\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"12321\",\"children\":[]}],\"10\":[{\"id\":18,\"chapter_id\":49,\"parent_id\":0,\"location\":10,\"type\":8,\"name\":\"4444\",\"description\":\"\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[]},{\"id\":19,\"chapter_id\":49,\"parent_id\":0,\"location\":10,\"type\":2,\"name\":\"a\",\"description\":\"\",\"enabled\":1,\"default_value\":\"1\",\"rule\":\"\",\"children\":[]},{\"id\":20,\"chapter_id\":49,\"parent_id\":0,\"location\":10,\"type\":5,\"name\":\"b\",\"description\":\"\",\"enabled\":1,\"default_value\":\"[\\\"1\\\",\\\"1\\\"]\",\"rule\":\"\",\"children\":[{\"id\":21,\"chapter_id\":49,\"parent_id\":20,\"location\":10,\"type\":2,\"name\":\"\",\"description\":\"\",\"enabled\":1,\"default_value\":\"1\",\"rule\":\"\",\"children\":[]},{\"id\":22,\"chapter_id\":49,\"parent_id\":20,\"location\":10,\"type\":2,\"name\":\"\",\"description\":\"\",\"enabled\":1,\"default_value\":\"1\",\"rule\":\"\",\"children\":[]}]},{\"id\":23,\"chapter_id\":49,\"parent_id\":0,\"location\":10,\"type\":4,\"name\":\"c\",\"description\":\"\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[{\"id\":24,\"chapter_id\":49,\"parent_id\":23,\"location\":10,\"type\":5,\"name\":\"a\",\"description\":\"\",\"enabled\":1,\"default_value\":\"[\\\"a\\\"]\",\"rule\":\"\",\"children\":[]},{\"id\":25,\"chapter_id\":49,\"parent_id\":23,\"location\":10,\"type\":4,\"name\":\"b\",\"description\":\"\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[{\"id\":26,\"chapter_id\":49,\"parent_id\":25,\"location\":10,\"type\":1,\"name\":\"0\",\"description\":\"\",\"enabled\":1,\"default_value\":\"b\",\"rule\":\"\",\"children\":[]},{\"id\":27,\"chapter_id\":49,\"parent_id\":25,\"location\":10,\"type\":5,\"name\":\"d\",\"description\":\"\",\"enabled\":1,\"default_value\":\"[\\\"4\\\",\\\"5\\\"]\",\"rule\":\"\",\"children\":[{\"id\":28,\"chapter_id\":49,\"parent_id\":27,\"location\":10,\"type\":2,\"name\":\"\",\"description\":\"\",\"enabled\":1,\"default_value\":\"4\",\"rule\":\"\",\"children\":[]},{\"id\":29,\"chapter_id\":49,\"parent_id\":27,\"location\":10,\"type\":2,\"name\":\"\",\"description\":\"\",\"enabled\":1,\"default_value\":\"5\",\"rule\":\"\",\"children\":[]}]}]}]},{\"id\":30,\"chapter_id\":49,\"parent_id\":0,\"location\":10,\"type\":5,\"name\":\"e\",\"description\":\"\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"2\",\"children\":[{\"id\":31,\"chapter_id\":49,\"parent_id\":30,\"location\":10,\"type\":5,\"name\":\"a\",\"description\":\"\",\"enabled\":1,\"default_value\":\"[\\\"1\\\"]\",\"rule\":\"\",\"children\":[]},{\"id\":32,\"chapter_id\":49,\"parent_id\":30,\"location\":10,\"type\":5,\"name\":\"b\",\"description\":\"\",\"enabled\":1,\"default_value\":\"[\\\"2\\\",null]\",\"rule\":\"+1\",\"children\":[]},{\"id\":33,\"chapter_id\":49,\"parent_id\":30,\"location\":10,\"type\":5,\"name\":\"c\",\"description\":\"\",\"enabled\":1,\"default_value\":\"[\\\"3\\\"]\",\"rule\":\"\",\"children\":[]},{\"id\":34,\"chapter_id\":49,\"parent_id\":30,\"location\":10,\"type\":5,\"name\":\"f\",\"description\":\"\",\"enabled\":1,\"default_value\":\"[\\\"1\\\",\\\"2\\\"]\",\"rule\":\"\",\"children\":[{\"id\":35,\"chapter_id\":49,\"parent_id\":34,\"location\":10,\"type\":2,\"name\":\"\",\"description\":\"\",\"enabled\":1,\"default_value\":\"1\",\"rule\":\"\",\"children\":[]},{\"id\":36,\"chapter_id\":49,\"parent_id\":34,\"location\":10,\"type\":2,\"name\":\"\",\"description\":\"\",\"enabled\":1,\"default_value\":\"2\",\"rule\":\"\",\"children\":[]}]},{\"id\":37,\"chapter_id\":49,\"parent_id\":30,\"location\":10,\"type\":4,\"name\":\"d\",\"description\":\"\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[{\"id\":38,\"chapter_id\":49,\"parent_id\":37,\"location\":10,\"type\":2,\"name\":\"a\",\"description\":\"\",\"enabled\":1,\"default_value\":\"1\",\"rule\":\"\",\"children\":[]},{\"id\":39,\"chapter_id\":49,\"parent_id\":37,\"location\":10,\"type\":2,\"name\":\"b\",\"description\":\"\",\"enabled\":1,\"default_value\":\"2\",\"rule\":\"\",\"children\":[]}]}]}],\"12\":[{\"id\":1,\"chapter_id\":49,\"parent_id\":0,\"location\":12,\"type\":1,\"name\":\"path参数\",\"description\":\"这是地址栏参数\",\"enabled\":1,\"default_value\":\"\",\"rule\":\"\",\"children\":[]}]},\"extend\":\"### 示例说明\\n\\n>请求示例：\\n\\n```\\n{\\n \\\"Header\\\":{\\n \\\"Token\\\":\\\"\\\",\\n \\\"Version\\\":\\\"3.2.0\\\",\\n \\\"SystemId\\\":100,\\n \\\"Timestamp\\\":1502870664\\n },\\n \\\"Body\\\":{\\n \\\"Mobile\\\":\\\"18520322032\\\",\\n \\\"Password\\\":\\\"acb000000\\\"\\n }\\n}\\n\\n```\"}},\"message\":\"ok\"}\n\t */\n\tpublic function content(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'chapter_id' => 'required|integer|min:1',\n\t\t\t'document_id' => 'required|integer',\n\t\t], [\n\t\t\t'chapter_id.required' => '文档id必填',\n\t\t\t'chapter_id.min' => '文档id最小为0',\n\t\t\t'document_id.required' => '文档id必填',\n\t\t]);\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isOperator) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t}\n\n\t\t$chapter = ChapterLogic::instance()->getById(intval($request->post('chapter_id')));\n\t\tif (empty($chapter)) {\n\t\t\tthrow new ErrorHttpException('章节不存在');\n\t\t}\n\n\t\t$creator = UserOperateLogic::instance()->getByChapterAndOperate($chapter->id, UserOperateLog::CREATE);\n\t\tif ($creator) {\n\t\t\t$author = $creator->user;\n\t\t} else {\n\t\t\t$author = $chapter->document->user;\n\t\t}\n\n\t\t$content = '';\n\t\tif (!$chapter->content->layout) {\n\t\t\t$content = $chapter->content->content;\n\t\t}\n\n\t\t$result = [\n\t\t\t'chapter_id' => $chapter->id,\n\t\t\t'name' => $chapter->name,\n\t\t\t'content' => $content,\n\t\t\t'layout' => $chapter->content->layout,\n\t\t\t'author' => [\n\t\t\t\t'uid' => $author->id,\n\t\t\t\t'username' => $author->username,\n\t\t\t],\n\t\t\t'updated_at' => $chapter->updated_at->toDateTimeString()\n\t\t];\n\t\tif ($chapter->content->layout == 1) {\n\t\t\t$obj = new ChapterRecordLogic($chapter->id);\n\t\t\t$result['content'] = 'record';\n\t\t\t$result['record'] = $obj->showRecord();\n\t\t}\n\n\t\treturn $this->data($result);\n\t}\n\n\t/**\n\t * 设置章节目录默认显示文章内容\n\t * @param Request $request\n\t * @return array\n\t */\n\tpublic function defaultShow(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'chapter_id' => 'required',\n\t\t\t'show_chapter_id' => 'required',\n\t\t]);\n\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isOperator) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t}\n\n\t\t$chapterId = intval($request->post('chapter_id'));\n\t\t$chapter = ChapterLogic::instance()->getById($chapterId);\n\n\t\t$showChapterId = intval($request->post('show_chapter_id'));\n\t\t$showChapter = ChapterLogic::instance()->getById($showChapterId);\n\n\t\tif (($chapterId && empty($chapter)) || empty($showChapter)) {\n\t\t\tthrow new ErrorHttpException('您要操作的章节或是目录不存在');\n\t\t}\n\n\t\tif ($chapter && empty($chapter->is_dir)) {\n\t\t\tthrow new ErrorHttpException('此操作只能设置目录的默认显示');\n\t\t}\n\t\tif (!empty($showChapter->is_dir)) {\n\t\t\tthrow new ErrorHttpException('设置显示的章节不能为目录');\n\t\t}\n\n\t\tif ($chapterId == 0) {\n\t\t\t//找到已存在的顶级默认文章\n\t\t\t$defaultShowChapter = Chapter::query()->where('document_id', '=', $showChapter->document_id)->where('parent_id', '=', 0)->where('default_show_chapter_id', '!=', 0)->first();\n\t\t\tif ($defaultShowChapter) {\n\t\t\t\t$defaultShowChapter->default_show_chapter_id = 0;\n\t\t\t\t$defaultShowChapter->save();\n\t\t\t}\n\t\t\t$chapter = $showChapter;\n\t\t}\n\n\t\t$chapter->default_show_chapter_id = $showChapterId;\n\t\t$chapter->save();\n\n\t\tUserOperateLog::query()->create([\n\t\t\t'user_id' => $user->id,\n\t\t\t'document_id' => $chapter->document_id,\n\t\t\t'chapter_id' => $showChapterId,\n\t\t\t'operate' => UserOperateLog::EDIT,\n\t\t\t'remark' => $user->username . '设置章节' . $chapter->name . '默认显示'\n\t\t]);\n\n\t\treturn $this->data('success');\n\t}\n\n\tpublic function search(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'keywords' => 'required',\n\t\t\t'document_id' => 'required|integer|min:1',\n\t\t], [\n\t\t\t'document_id.required' => '文档id必填',\n\t\t\t'document_id.min' => '文档id最小为0',\n\t\t\t'keywords.required' => '关键字必填',\n\t\t]);\n\t\t$id = $request->input('document_id');\n\t\t$keywords = $request->input('keywords');\n\n\t\ttry {\n\t\t\t$result = ChapterLogic::instance()->searchChapter($id, $keywords);\n\t\t\treturn $this->data($result);\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t}\n\n\tpublic function copy(Request $request)\n\t{\n\t\t$params = $this->validate($request, [\n\t\t\t'parent_id' => 'required',\n\t\t\t'name' => 'required',\n\t\t\t'document_id' => 'required|integer|min:1',\n\t\t\t'chapter_id' => 'required|integer|min:1',\n\t\t]);\n\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isOperator) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t}\n\t\t$parentChapter = null;\n\t\tif ($params['parent_id']) {\n\t\t\t$parentChapter = ChapterLogic::instance()->getById($params['parent_id']);\n\t\t\tif (!$parentChapter) {\n\t\t\t\tthrow new ErrorHttpException('目标章节不存在');\n\t\t\t}\n\t\t}\n\t\t$chapter = ChapterLogic::instance()->getById($params['chapter_id']);\n\t\tif (!$chapter) {\n\t\t\tthrow new ErrorHttpException('章节不存在');\n\t\t}\n\n\t\t$maxSort = Chapter::query()->where('document_id', '=', $params['document_id'])->where('parent_id', '=', $params['parent_id'])->max('sort');\n\t\t$sort = intval($request->post('sort', ++$maxSort));\n\n\t\tidb()->beginTransaction();\n\t\ttry {\n\t\t\t$newChapter = new Chapter();\n\t\t\t$newChapter->parent_id = $params['parent_id'];\n\t\t\t$newChapter->name = $params['name'];\n\t\t\t$newChapter->document_id = $params['document_id'];\n\t\t\t$newChapter->sort = $sort;\n\t\t\t$newChapter->is_dir = $chapter->is_dir;\n\t\t\t$newChapter->save();\n\n\t\t\t$chapterContent = ChapterContent::query()->where('chapter_id', '=', $params['chapter_id'])->first();\n\t\t\tif ($chapterContent) {\n\t\t\t\t$newChapterContent = new ChapterContent();\n\t\t\t\t$newChapterContent->chapter_id = $newChapter->id;\n\t\t\t\t$newChapterContent->content = $chapterContent->content;\n\t\t\t\t$newChapterContent->layout = $chapterContent->layout;\n\t\t\t\t$newChapterContent->save();\n\t\t\t\tif ($chapterContent->layout == 1) {\n\t\t\t\t\t//如果是HTTP类型\n\t\t\t\t\t$obj = new ChapterRecordLogic($chapter->id);\n\t\t\t\t\t$obj->copyRecord($newChapter->id);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tUserOperateLog::query()->create([\n\t\t\t\t'user_id' => $user->id,\n\t\t\t\t'document_id' => $chapter->document_id,\n\t\t\t\t'chapter_id' => $chapter->id,\n\t\t\t\t'operate' => UserOperateLog::CHAPTER_COPY,\n\t\t\t\t'remark' => $user->username . '复制章节' . $chapter->name . '到' . !empty($parentChapter) ? $parentChapter->name : '根节点'\n\t\t\t]);\n\t\t\tidb()->commit();\n\t\t\treturn $this->data($newChapter->toArray());\n\t\t} catch (\\Throwable $e) {\n\t\t\tidb()->rollBack();\n\t\t\tthrow new ErrorHttpException($e->getMessage(), $e->getCode());\n\t\t}\n\t}\n\n\t/**\n\t * @api {post} /admin/chapter/import 参数导入\n\t * @apiName import\n\t * @apiGroup Chapter\n\t *\n\t * @apiParam {Number} data 导入参数\n\t * @apiParam {Number} reponse_id 响应ID\n\t * @apiParam {Number} type 参数类型：json、key_word、array\n\t *\n\t * @apiSuccessExample {json} Success-Response:\n\t * {\"status\":true,\"code\":200,\"data\":[{\"type\":3,\"name\":\"status\",\"description\":\"\",\"enabled\":2,\"default_value\":true,\"rule\":\"\",\"children\":[]},{\"type\":2,\"name\":\"code\",\"description\":\"\",\"enabled\":2,\"default_value\":200,\"rule\":\"\",\"children\":[]},{\"type\":1,\"name\":\"msg\",\"description\":\"\",\"enabled\":2,\"default_value\":\"success\",\"rule\":\"\",\"children\":[]},{\"type\":5,\"name\":\"array\",\"description\":\"\",\"enabled\":2,\"default_value\":\"[1,2,3]\",\"rule\":\"\",\"children\":[]},{\"type\":5,\"name\":\"marray\",\"description\":\"\",\"enabled\":2,\"default_value\":\"\",\"rule\":\"+2\",\"children\":[{\"type\":5,\"name\":0,\"description\":\"\",\"enabled\":2,\"default_value\":\"[1,2]\",\"rule\":\"\",\"children\":[]},{\"type\":5,\"name\":1,\"description\":\"\",\"enabled\":2,\"default_value\":\"[3,4]\",\"rule\":\"\",\"children\":[]}]},{\"type\":4,\"name\":\"object\",\"description\":\"\",\"enabled\":2,\"default_value\":\"\",\"rule\":\"\",\"children\":[{\"type\":2,\"name\":\"id\",\"description\":\"\",\"enabled\":2,\"default_value\":1,\"rule\":\"\",\"children\":[]},{\"type\":1,\"name\":\"name\",\"description\":\"\",\"enabled\":2,\"default_value\":\"name\",\"rule\":\"\",\"children\":[]}]}],\"message\":\"ok\"}\n\t */\n\tpublic function import(Request $request)\n\t{\n\t\t$data = $this->validate($request, [\n\t\t\t'data' => 'required',\n\t\t\t'location' => 'required|integer',\n\t\t\t'type' => 'required'\n\t\t]);\n\t\t$Capter = new ChapterImportLogic();\n\t\t$res = $Capter->getApiparam($data['data'], $data['location'], $data['type']);\n\t\treturn $this->data($res);\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Admin/Document/ChapterApiController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Admin\\Document;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Model\\Logic\\Document\\ChapterApiLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass ChapterApiController extends BaseController\n{\n\t/**\n\t * @api {get} /document/chapterapi/getApiLabel 获取参数类型列表\n\t *\n\t * @apiName getApiLabel\n\t * @apiGroup ChapterApi\n\t *\n\t * @apiParam {Array} data\n\t * @apiParam {Array} data.statusCode 状态码列表\n\t * @apiParam {Array} data.methodLabel 请求方式列表\n\t * @apiParam {Array} data.enabledLabel 必填类型列表\n\t * @apiParam {Array} data.typeLabel 字段类型\n\t * @apiParam {Array} data.locationLabel 参数类型\n\t *\n\t * @apiSuccessExample {json} Success-Response:\n\t * {\"status\":true,\"code\":200,\"data\":{\"statusCode\":[200,301,403,404,500,502,503,504],\"methodLabel\":{\"label\":\"请求方式\",\"option\":[{\"label\":\"GET\",\"value\":1},{\"label\":\"POST\",\"value\":2},{\"label\":\"PUT\",\"value\":3},{\"label\":\"PATCH\",\"value\":4},{\"label\":\"DELETE\",\"value\":5},{\"label\":\"COPY\",\"value\":6},{\"label\":\"HEAD\",\"value\":7},{\"label\":\"PTIONS\",\"value\":8},{\"label\":\"LINK\",\"value\":9},{\"label\":\"UNLINK\",\"value\":10},{\"label\":\"PURGE\",\"value\":11},{\"label\":\"LOCK\",\"value\":12},{\"label\":\"UNLOCK\",\"value\":13},{\"label\":\"PROPFIND\",\"value\":14},{\"label\":\"VIEW\",\"value\":15}]},\"enabledLabel\":{\"label\":\"必填类型\",\"option\":[{\"label\":\"False\",\"value\":1},{\"label\":\"Ture\",\"value\":2}]},\"typeLabel\":{\"label\":\"字段类型\",\"option\":[{\"label\":\"String\",\"value\":1},{\"label\":\"Number\",\"value\":2},{\"label\":\"Boolean\",\"value\":3},{\"label\":\"Object\",\"value\":4},{\"label\":\"Array\",\"value\":5},{\"label\":\"Function\",\"value\":6},{\"label\":\"RegExp\",\"value\":7},{\"label\":\"Null\",\"value\":8}]},\"locationLabel\":{\"label\":\"参数类型\",\"option\":[{\"label\":\"Request.Query.Path\",\"value\":12},{\"label\":\"Request.Header\",\"value\":1},{\"label\":\"Request.Query.String\",\"value\":2},{\"label\":\"Request.Body.form-data\",\"value\":3},{\"label\":\"Request.Body.urlencoded\",\"value\":4},{\"label\":\"Request.Body.raw\",\"value\":5},{\"label\":\"Request.Body.binary\",\"value\":6},{\"label\":\"Reponse.Header\",\"value\":7},{\"label\":\"Reponse.Body.form-data\",\"value\":8},{\"label\":\"Reponse.Body.urlencoded\",\"value\":9},{\"label\":\"Reponse.Body.raw\",\"value\":10},{\"label\":\"Reponse.Body.binary\",\"value\":11}]}},\"message\":\"ok\"}\n\t */\n\tpublic function getApiLabel(Request $request)\n\t{\n\t\treturn $this->data(ChapterApiLogic::instance()->getApiLabel());\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Admin/Document/ChapterApiDataController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Admin\\Document;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Document\\ChapterApiData;\nuse W7\\App\\Model\\Entity\\Setting;\nuse W7\\App\\Model\\Logic\\Document\\ChapterApiDataLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass ChapterApiDataController extends BaseController\n{\n\n\t/**\n\t * @api {post} /admin/document/chapterapi/setApiData  API请求数据保存\n\t * @apiName setApiData\n\t * @apiGroup Chapterapi\n\t *\n\t * @apiParam {Number} chapter_id 章节ID\n\t * @apiParam {Number} document_id 文档ID\n\t * @apiParam {Number} respond_id  数据ID 非必填 编辑的时候传参\n\t * @apiParam {String} respond 数据文本\n\t *\n\t * @apiSuccessExample {json} Success-Response:\n\t * {status: true, code: 200, data: \"success\", message: \"ok\"}\n\t */\n\tpublic function setData(Request $request){\n\t\t//验证\n\t\t $params = $this->validate($request,[\n\t\t\t 'chapter_id' => 'required|integer',\n\t\t\t 'document_id' => 'required|integer',\n\t\t ],[\n\t\t\t 'chapter_id.required' => '章节id必填',\n\t\t\t 'document_id.required' => '文档id必填',\n\t\t ]);\n\n\t\t $user = $request->getAttribute('user');\n\t\t if (!$user->isOperator) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t }\n\n\t\t //先删除原先的数据\n\t\t $chapter = ChapterApiDataLogic::instance()->deleteChapterApiData($params['chapter_id']);\n\t\t if (!$chapter) {\n\t\t\t throw new ErrorHttpException('数据更新错误');\n\t\t }\n\n\t\t ChapterApiData::query()->create([\n\t\t \t     'chapter_id'=>$params['chapter_id'],\n\t\t \t     'respond'=> trim($request->post('respond'))\n\t\t ]);\n\n\t\t return $this->data('success');\n\t}\n\n\n\t/**\n\t * @api {get} /admin/document/chapterapi/getData  API请求数据保存\n\t * @apiName getData\n\t * @apiGroup Chapterapi\n\t *\n\t * @apiParam {Number} chapter_id 章节ID\n\t */\n\tpublic function getData(Request $request){\n\t\t//验证\n\t\t$params = $this->validate($request,[\n\t\t\t'chapter_id' => 'required|integer|min:1',\n\t\t],[\n\t\t\t'chapter_id.required' => '文档id必填',\n\t\t\t'chapter_id.min' => '文档id最小为0',\n\t\t]);\n\n        $chapter = ChapterApiDataLogic::instance()->getByChapterApiData($params['chapter_id']);\n        if (!$chapter){\n\t\t\tthrow new ErrorHttpException('获取数据失败');\n\t\t}\n\n        return $this->data($chapter);\n\n\t}\n\n\n\n}\n"
  },
  {
    "path": "app/Controller/Admin/DocumentController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Admin;\n\nuse Illuminate\\Contracts\\Pagination\\LengthAwarePaginator;\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Document;\nuse W7\\App\\Model\\Entity\\Document\\Chapter;\nuse W7\\App\\Model\\Entity\\DocumentPermission;\nuse W7\\App\\Model\\Entity\\Setting;\nuse W7\\App\\Model\\Entity\\Star;\nuse W7\\App\\Model\\Entity\\User;\nuse W7\\App\\Model\\Entity\\UserOperateLog;\nuse W7\\App\\Model\\Logic\\DocumentFeedbackLogic;\nuse W7\\App\\Model\\Logic\\DocumentLogic;\nuse W7\\App\\Model\\Logic\\DocumentPermissionLogic;\nuse W7\\App\\Model\\Logic\\UserLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass DocumentController extends BaseController\n{\n\tpublic function all(Request $request)\n\t{\n\t\t$keyword = trim($request->input('keyword'));\n\t\t$page = intval($request->post('page'));\n\t\t$pageSize = intval($request->post('page_size'));\n\t\t$isPublic = $request->post('is_public');\n\t\t$role = $request->post('role');\n\t\t//获取只能阅读的文档列表\n\t\t$onlyRead = $request->post('only_reader');\n\n\t\t$user = $request->getAttribute('user');\n\n\t\t//管路员不搜索制度类型和创建类型查看全部\n\t\tif ($user->isFounder && !$onlyRead && !$role) {\n\t\t\t$query = Document::query()->with('user')->orderByDesc('id');\n\t\t\tif (!empty($keyword)) {\n\t\t\t\t$query->where('name', 'LIKE', \"%{$keyword}%\");\n\t\t\t}\n\t\t\tif (!empty($isPublic)) {\n\t\t\t\t$query->where('is_public', '=', $isPublic);\n\t\t\t}\n\t\t\t/**\n\t\t\t * @var LengthAwarePaginator $result\n\t\t\t */\n\t\t\t$list = $query->paginate($pageSize, '*', 'page', $page);\n\n\t\t\t$document = $list->items();\n\t\t\tif (!empty($document)) {\n\t\t\t\tforeach ($document as $i => $row) {\n\t\t\t\t\t$star = Star::query()->where('user_id', '=', $user->id)->where('document_id', '=', $row->id)->where('chapter_id', '=', 0)->first();\n\t\t\t\t\t$lastOperate = UserOperateLog::query()->where('document_id', '=', $row->id)->whereIn('operate', [UserOperateLog::CREATE, UserOperateLog::EDIT])->latest()->first();\n\t\t\t\t\t$result['data'][] = [\n\t\t\t\t\t\t'id' => $row->id,\n\t\t\t\t\t\t'name' => $row->name,\n\t\t\t\t\t\t'cover' => $row->cover,\n\t\t\t\t\t\t'author' => [\n\t\t\t\t\t\t\t'name' => $row->user->username\n\t\t\t\t\t\t],\n\t\t\t\t\t\t'operator' => [\n\t\t\t\t\t\t\t'name' => !empty($lastOperate) ? $lastOperate->operateDesc : '',\n\t\t\t\t\t\t\t'time' => !empty($lastOperate) ? $lastOperate->created_at->toDateTimeString() : ''\n\t\t\t\t\t\t],\n\t\t\t\t\t\t'star_id' => !empty($star) ? $star->id : '',\n\t\t\t\t\t\t'description' => $row->descriptionShort,\n\t\t\t\t\t\t'is_public' => $row->isPublicDoc,\n\t\t\t\t\t\t'acl' => DocumentPermissionLogic::instance()->getFounderACL(),\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\t$permissions = [DocumentPermission::MANAGER_PERMISSION, DocumentPermission::OPERATOR_PERMISSION];\n\t\t\t//$role代表为创建者\n\t\t\tif ($role == 1) {\n\t\t\t\t$permissions = [DocumentPermission::MANAGER_PERMISSION];\n\t\t\t}\n\n\t\t\t//$role为2我操作的\n\t\t\tif ($role == 2) {\n\t\t\t\t$permissions = [DocumentPermission::OPERATOR_PERMISSION];\n\t\t\t}\n\n\t\t\tif ($onlyRead) {\n\t\t\t\t$permissions = [DocumentPermission::READER_PERMISSION];\n\t\t\t}\n\n\t\t\t//$role为3代表为我参与的（已创建、我操作、可阅读）\n\t\t\tif ($role == 'all') {\n\t\t\t\t$permissions = [DocumentPermission::MANAGER_PERMISSION, DocumentPermission::OPERATOR_PERMISSION, DocumentPermission::READER_PERMISSION];\n\t\t\t}\n\n\t\t\t$query = DocumentPermission::query()->where('user_id', '=', $user->id)\n\t\t\t\t->whereIn('permission', $permissions)\n\t\t\t\t->orderByDesc('id')->with('document')->whereHas('document');\n\t\t\tif (!empty($keyword)) {\n\t\t\t\t$query->whereHas('document', function ($query) use ($keyword) {\n\t\t\t\t\treturn $query->where('name', 'LIKE', \"%{$keyword}%\");\n\t\t\t\t});\n\t\t\t}\n\t\t\tif (!empty($isPublic)) {\n\t\t\t\t$query->whereHas('document', function ($query) use ($isPublic) {\n\t\t\t\t\treturn $query->where('is_public', '=', $isPublic);\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t$list = $query->paginate($pageSize, '*', 'page', $page);\n\n\t\t\t$document = $list->items();\n\t\t\tif (!empty($document)) {\n\t\t\t\tforeach ($document as $i => $row) {\n\t\t\t\t\t$star = Star::query()->where('user_id', '=', $user->id)->where('document_id', '=', $row->document_id)->where('chapter_id', '=', 0)->first();\n\t\t\t\t\t$lastOperate = UserOperateLog::query()->where('document_id', '=', $row->id)->whereIn('operate', [UserOperateLog::CREATE, UserOperateLog::EDIT])->latest()->first();\n\n\t\t\t\t\t$acl = $row->acl;\n\t\t\t\t\t//如果是管理员，显示全部按钮\n\t\t\t\t\tif ($user->group_id == 1) {\n\t\t\t\t\t\t$acl['has_manage'] = true;\n\t\t\t\t\t}\n\t\t\t\t\t$result['data'][] = [\n\t\t\t\t\t\t'id' => $row->document->id,\n\t\t\t\t\t\t'name' => $row->document->name,\n\t\t\t\t\t\t'cover' => $row->document->cover,\n\t\t\t\t\t\t'author' => [\n\t\t\t\t\t\t\t'name' => $row->document->user->username\n\t\t\t\t\t\t],\n\t\t\t\t\t\t'operator' => [\n\t\t\t\t\t\t\t'name' => !empty($lastOperate) ? $lastOperate->operateDesc : '',\n\t\t\t\t\t\t\t'time' => !empty($lastOperate) ? $lastOperate->created_at->toDateTimeString() : ''\n\t\t\t\t\t\t],\n\t\t\t\t\t\t'star_id' => !empty($star) ? $star->id : '',\n\t\t\t\t\t\t'description' => $row->document->descriptionShort,\n\t\t\t\t\t\t'is_public' => $row->document->isPublicDoc,\n\t\t\t\t\t\t'acl' => $acl,\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t$result['page_count'] = $list->lastPage();\n\t\t$result['total'] = $list->total();\n\t\t$result['page_current'] = $list->currentPage();\n\n\t\treturn $this->data($result);\n\t}\n\n\tpublic function getAllByUid(Request $request)\n\t{\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('无操作用户权限');\n\t\t}\n\n\t\t$params = $this->validate($request, [\n\t\t\t'user_id' => 'required|integer',\n\t\t], [\n\t\t\t'user_id.required' => '请指定用户',\n\t\t]);\n\n\t\t$name = trim($request->post('name'));\n\t\t$isPublic = trim($request->post('is_public'));\n\t\tif ($isPublic && !in_array($isPublic, [Document::PUBLIC_DOCUMENT, Document::PRIVATE_DOCUMENT])) {\n\t\t\tthrow new ErrorHttpException('参数错误');\n\t\t}\n\t\t$page = intval($request->post('page', 1));\n\n\t\t$query = Document::query();\n\t\tif ($isPublic) {\n\t\t\t$query = $query->where('is_public', '=', $isPublic);\n\t\t}\n\t\tif ($name) {\n\t\t\t$query = $query->where('name', 'like', '%' . $name . '%');\n\t\t}\n\n\t\t//获取私有文档和公有文档的用户身份列表\n\t\t$roleList = DocumentPermissionLogic::instance()->getRoleList();\n\t\t$publicRoleList[] = [\n\t\t\t'id' => DocumentPermission::OPERATOR_PERMISSION,\n\t\t\t'name' => $roleList[DocumentPermission::OPERATOR_PERMISSION]\n\t\t];\n\t\t$privateRoleList = $publicRoleList;\n\t\t$privateRoleList[] = [\n\t\t\t'id' => DocumentPermission::READER_PERMISSION,\n\t\t\t'name' => $roleList[DocumentPermission::READER_PERMISSION]\n\t\t];\n\n\t\t$list = $query->paginate(null, '*', 'page', $page);\n\t\tforeach ($list->items() as $row) {\n\t\t\t/**\n\t\t\t * @var DocumentPermission $documentPermission\n\t\t\t */\n\t\t\t$documentPermission = DocumentPermissionLogic::instance()->getByDocIdAndUid($row->id, $params['user_id']);\n\t\t\t$manager = DocumentPermissionLogic::instance()->getByDocIdAndPermission($row->id, DocumentPermission::MANAGER_PERMISSION);\n\t\t\t$roleList = $row->isPublicDoc ? $publicRoleList : $privateRoleList;\n\t\t\tif (!$manager) {\n\t\t\t\t$roleList[] = [\n\t\t\t\t\t'id' => DocumentPermission::MANAGER_PERMISSION,\n\t\t\t\t\t'name' => $roleList[DocumentPermission::MANAGER_PERMISSION]\n\t\t\t\t];\n\t\t\t} elseif ($manager->user_id == $params['user_id']) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t$result['data'][] = [\n\t\t\t\t'id' => $row->id,\n\t\t\t\t'name' => $row->name,\n\t\t\t\t'description' => $row->descriptionShort,\n\t\t\t\t'is_public' => $row->isPublicDoc,\n\t\t\t\t'cur_role' => $documentPermission ? $documentPermission->permission : 0,\n\t\t\t\t'role_list' => $roleList\n\t\t\t];\n\t\t}\n\n\t\t$result['page_count'] = $list->lastPage();\n\t\t$result['total'] = $list->total();\n\t\t$result['page_current'] = $list->currentPage();\n\n\t\treturn $this->data($result);\n\t}\n\n\tpublic function detail(Request $request)\n\t{\n\t\t$document = $this->checkPermissionAndGetDocument($request);\n\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\t$result = [\n\t\t\t'id' => $document->id,\n\t\t\t'name' => $document->name,\n\t\t\t'cover' => $document->cover,\n\t\t\t'description' => $document->description,\n\t\t\t'is_public' => $document->is_public,\n\t\t\t'acl' => [\n\t\t\t\t'has_manage' => $user->isManager,\n\t\t\t\t'has_edit' => $user->isOperator,\n\t\t\t\t'has_delete' => $user->isManager,\n\t\t\t\t'has_read' => $user->isReader\n\t\t\t]\n\t\t];\n\n\t\t$hasManager = false;\n\t\t$operator = $document->operator()->with('user')->orderBy('permission')->get();\n\t\tif (!empty($operator)) {\n\t\t\t$operator->each(function ($row, $i) use (&$result, &$hasManager) {\n\t\t\t\t$result['operator'][] = [\n\t\t\t\t\t'id' => $row->user->id,\n\t\t\t\t\t'username' => $row->user->username,\n\t\t\t\t\t'acl' => $row->acl,\n\t\t\t\t];\n\t\t\t\tif ($row->acl['has_manage']) {\n\t\t\t\t\t$hasManager = true;\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\t$roleList = DocumentPermissionLogic::instance()->getRoleList();\n\t\tif ($document->isPublicDoc) {\n\t\t\tunset($roleList[DocumentPermission::READER_PERMISSION]);\n\t\t}\n\t\tif ($hasManager) {\n\t\t\tunset($roleList[DocumentPermission::MANAGER_PERMISSION]);\n\t\t}\n\t\tforeach ($roleList as $id => $name) {\n\t\t\t$result['role_list'][] = [\n\t\t\t\t'id' => $id,\n\t\t\t\t'name' => $name\n\t\t\t];\n\t\t}\n\n\t\treturn $this->data($result);\n\t}\n\n\n\t/**\n\t * @api {post} /admin/document/new-feedback 检测是否有最新反馈\n\t * @apiName new-feedback\n\t * @apiGroup document.Feedback\n\t *\n\t *\n\t * @apiParam {Number} document_id 文档ID\n\t */\n\tpublic function checkNewFeed(Request $request){\n\t\t$params = $this->validate($request, [\n\t\t\t'document_id' => 'required|integer',\n\t\t], [\n\t\t\t'document_id.required' => '请指定文档',\n\t\t]);\n\n\t\t//查看是否有新的 反馈建议\n\t\t$result['new_feed'] = false;\n\t\t$isNewFeed = DocumentFeedbackLogic::instance()->getByFeedbackNew($params['document_id']);\n\t\tif ($isNewFeed){\n\t\t\t$result['new_feed'] = true;\n\t\t}\n\t\treturn $this->data($result);\n\t}\n\n\n\n\tpublic function operator(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'document_id' => 'required|integer',\n\t\t], [\n\t\t\t'document_id.required' => '请指定文档',\n\t\t]);\n\t\t$uid = intval($request->post('user_id'));\n\t\t$userName = $request->post('user_name');\n\t\tif (!$uid && !$userName) {\n\t\t\tthrow new ErrorHttpException('参数错误');\n\t\t}\n\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isManager && !$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t}\n\n\t\tif (!$uid && $userName) {\n\t\t\t$findUser = UserLogic::instance()->getByUserName($userName);\n\t\t\tif (!$findUser) {\n\t\t\t\tthrow new ErrorHttpException('用户不存在');\n\t\t\t}\n\t\t\t$uid = $findUser->id;\n\t\t}\n\t\t$operator = UserLogic::instance()->getByUid($uid);\n\t\tif (empty($operator)) {\n\t\t\tthrow new ErrorHttpException('您操作的用户不存在');\n\t\t}\n\n\t\t$permission = intval($request->post('permission'));\n\t\t$documentId = intval($request->post('document_id'));\n\n\t\t/**\n\t\t * permission 值不存在时，意味着删除权限\n\t\t * 只要权限合适，减少判断直接删除\n\t\t */\n\t\tif (empty($permission)) {\n\t\t\t$hasPermission = DocumentPermissionLogic::instance()->getByDocIdAndUid($documentId, $uid);\n\t\t\tif (!empty($hasPermission)) {\n\t\t\t\t$hasPermission->delete();\n\t\t\t\tUserOperateLog::query()->create([\n\t\t\t\t\t'user_id' => $user->id,\n\t\t\t\t\t'document_id' => $documentId,\n\t\t\t\t\t'chapter_id' => 0,\n\t\t\t\t\t'operate' => UserOperateLog::EDIT,\n\t\t\t\t\t'target_user_id' => $uid,\n\t\t\t\t\t'remark' => $user->username . '删除用户' . $operator->username . '的' . $hasPermission->aclName . '权限'\n\t\t\t\t]);\n\t\t\t}\n\t\t\treturn $this->data('success');\n\t\t}\n\n\t\tif (!in_array($permission, [\n\t\t\tDocumentPermission::MANAGER_PERMISSION,\n\t\t\tDocumentPermission::OPERATOR_PERMISSION,\n\t\t\tDocumentPermission::READER_PERMISSION\n\t\t])) {\n\t\t\tthrow new ErrorHttpException('您操作了不存在的权限');\n\t\t}\n\n\t\tif ($permission == DocumentPermission::MANAGER_PERMISSION && !$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('您没有权限添加管理员');\n\t\t}\n\n\t\t$document = DocumentLogic::instance()->getById($documentId);\n\t\tif (empty($document)) {\n\t\t\tthrow new ErrorHttpException('管理的文档的不存在或是已经被删除');\n\t\t}\n\n\t\t$hasPermission = DocumentPermissionLogic::instance()->getByDocIdAndUid($documentId, $uid);\n\t\tif (empty($hasPermission)) {\n\t\t\t$hasPermission = new DocumentPermission();\n\t\t\t$hasPermission->user_id = $uid;\n\t\t\t$hasPermission->document_id = $documentId;\n\t\t}\n\t\t$hasPermission->permission = $permission;\n\t\t$hasPermission->save();\n\n\t\tUserOperateLog::query()->create([\n\t\t\t'user_id' => $user->id,\n\t\t\t'document_id' => $documentId,\n\t\t\t'chapter_id' => 0,\n\t\t\t'operate' => UserOperateLog::EDIT,\n\t\t\t'target_user_id' => $uid,\n\t\t\t'remark' => $user->username . '设置用户' . $operator->username . '为' . $hasPermission->aclName\n\t\t]);\n\n\t\treturn $this->data('success');\n\t}\n\n\tpublic function create(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'name' => 'required',\n\t\t], [\n\t\t\t'name.required' => '文档名称不能为空',\n\t\t]);\n\n\t\t$user = $request->getAttribute('user');\n\n\t\t$document = Document::query()->create([\n\t\t\t'name' => trim($request->input('name')),\n\t\t\t'description' => trim($request->input('description')),\n\t\t\t'creator_id' => $user->id,\n\t\t\t'is_public' => intval($request->post('is_public')) ?? 1,\n\t\t]);\n\n\t\tDocumentLogic::instance()->createCreatorPermission($document);\n//\t\t//创建默认目录\n//\t\tChapter::query()->create([\n//\t\t\t'name' => '默认目录',\n//\t\t\t'sort' => 1,\n//\t\t\t'is_dir' => 1,\n//\t\t\t'document_id' => $document->id,\n//\t\t\t'parent_id' => 0\n//\t\t]);\n\n\t\tUserOperateLog::query()->create([\n\t\t\t'user_id' => $user->id,\n\t\t\t'document_id' => $document->id,\n\t\t\t'chapter_id' => 0,\n\t\t\t'operate' => UserOperateLog::CREATE,\n\t\t\t'remark' => $user->username . '创建文档'\n\t\t]);\n\n\t\treturn $this->data($document->id);\n\t}\n\n\tpublic function update(Request $request)\n\t{\n\t\t$document = $this->checkPermissionAndGetDocument($request);\n\n\t\tif (!empty($request->input('name'))) {\n\t\t\t$document->name = $request->input('name');\n\t\t}\n\n\t\tif (!empty($request->input('description'))) {\n\t\t\t$document->description = $request->input('description');\n\t\t}\n\n\t\tif (!empty($request->input('is_public'))) {\n\t\t\t$document->is_public = intval($request->input('is_public'));\n\t\t}\n\n//\t\tif (!empty($request->input('login_preview'))) {\n//\t\t\t$document->is_public = $request->input('login_preview') == 2 ? Document::LOGIN_PREVIEW_DOCUMENT : Document::PRIVATE_DOCUMENT;\n//\t\t}\n\n\t\t$cover = $request->input('cover');\n\t\tif (isset($cover)) {\n\t\t\t$document->cover = $cover;\n\t\t}\n\n\t\t$document->save();\n\n\t\tif ($document->is_public == Document::PUBLIC_DOCUMENT) {\n\t\t\tDocumentPermission::query()->where('document_id', '=', $document->id)->where('permission', '=', DocumentPermission::READER_PERMISSION)->delete();\n\t\t}\n\n\t\t$user = $request->getAttribute('user');\n\t\tUserOperateLog::query()->create([\n\t\t\t'user_id' => $user->id,\n\t\t\t'document_id' => $document->id,\n\t\t\t'chapter_id' => 0,\n\t\t\t'operate' => UserOperateLog::EDIT,\n\t\t\t'remark' => $user->username . '编辑文档基本信息'\n\t\t]);\n\n\t\treturn $this->data('success');\n\t}\n\n\tpublic function delete(Request $request)\n\t{\n\t\t$data = $this->validate($request, [\n\t\t\t'name' => 'required',\n\t\t], [\n\t\t\t'name.required' => '文档名称',\n\t\t]);\n\t\t$document = $this->checkPermissionAndGetDocument($request);\n\t\tif ($document->name != $data['name']) {\n\t\t\tthrow new ErrorHttpException('文档名称错误');\n\t\t}\n\t\ttry {\n\t\t\t$user = $request->getAttribute('user');\n\t\t\tDocumentLogic::instance()->deleteByDocument($document);\n\n\t\t\tUserOperateLog::query()->create([\n\t\t\t\t'user_id' => $user->id,\n\t\t\t\t'document_id' => $document->id,\n\t\t\t\t'chapter_id' => 0,\n\t\t\t\t'operate' => UserOperateLog::DELETE,\n\t\t\t\t'remark' => $user->username . '删除文档'\n\t\t\t]);\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t\treturn $this->data('success');\n\t}\n\n\tprivate function checkPermissionAndGetDocument(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'document_id' => 'required|integer',\n\t\t], [\n\t\t\t'document_id.required' => '请指定文档',\n\t\t]);\n\t\t$documentId = intval($request->input('document_id'));\n\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isManager && !$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t}\n\n\t\t$document = DocumentLogic::instance()->getById($documentId);\n\t\tif (empty($document)) {\n\t\t\tthrow new ErrorHttpException('您操作的文档不存在');\n\t\t}\n\n\t\treturn $document;\n\t}\n\n\tpublic function changeDocumentFounder(Request $request)\n\t{\n\t\t$params = $this->validate($request, [\n\t\t\t'document_id' => 'required|integer',\n\t\t\t'username' => 'required',\n\t\t]);\n\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isManager) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t}\n\t\tif (!$targetUser = UserLogic::instance()->getByUserName($params['username'])) {\n\t\t\tthrow new ErrorHttpException('该用户不存在');\n\t\t}\n\n\t\tDocument::query()->where('id', $params['document_id'])->update(['creator_id' => $targetUser->id]);\n\t\t//设置原管理员的权限为操作员\n\t\t$managerPermission = DocumentPermissionLogic::instance()->getByDocIdAndPermission($params['document_id'], DocumentPermission::MANAGER_PERMISSION);\n\t\tif ($managerPermission) {\n\t\t\t$managerPermission->permission = DocumentPermission::OPERATOR_PERMISSION;\n\t\t\t$managerPermission->save();\n\t\t}\n\t\t//删除该用户在源文档上的权限\n\t\t$originPermission = DocumentPermissionLogic::instance()->getByDocIdAndUid($params['document_id'], $targetUser->id);\n\t\tif ($originPermission) {\n\t\t\t$originPermission->delete();\n\t\t}\n\t\t//设置目标用户为管理员\n\t\tDocumentPermissionLogic::instance()->add($params['document_id'], $targetUser->id, DocumentPermission::MANAGER_PERMISSION);\n\n\t\tUserOperateLog::query()->create([\n\t\t\t'user_id' => !empty($managerPermission->user_id) ? $managerPermission->user_id : 0,\n\t\t\t'document_id' => $params['document_id'],\n\t\t\t'chapter_id' => 0,\n\t\t\t'target_user_id' => $targetUser->id,\n\t\t\t'operate' => UserOperateLog::DOCUMENT_TRANSFER,\n\t\t\t'remark' => $user->username . '转让文档到' . $targetUser->username\n\t\t]);\n\n\t\treturn $this->data('success');\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Admin/DocumentHomeController.php",
    "content": "<?php\n\n\nnamespace W7\\App\\Controller\\Admin;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Logic\\DocumentHomeLogic;\nuse W7\\Http\\Message\\Server\\Request;\n//首页文档设置\nclass DocumentHomeController extends BaseController\n{\n\tprotected  $_user;\n\n\tprivate function check(Request $request)\n\t{\n\t\t$this->_user= $request->getAttribute('user');\n\t\tif (!$this->_user->isFounder) {\n\t\t\tthrow new ErrorHttpException('无权访问');\n\t\t}\n\t\treturn true;\n\t}\n\n\n\t/**\n\t * @api {get} /admin/home/list 首页文档设置列表\n\t *\n\t * @apiName list\n\t * @apiGroup DocumentHome\n\t *\n\t * @apiParam {Number} type 类型 (0:全部 1：公告 2：首页类型一 3：首页类型二)\n\t *\n\t */\n\tpublic function getList(Request $request){\n\t\t$this->check($request);\n\t\t$params = $this->validate($request, [\n\t\t\t'type' => 'required|integer',\n\t\t], [\n\t\t\t'type.required' => '请选择类型',\n\t\t]);\n\t\t$page = intval($request->input('page',1));\n\t\t$pageSize = intval($request->input('page_size',10));\n\t\t$data = DocumentHomeLogic::instance()->getListData($params['type'],$page,$pageSize);\n\t\treturn $this->data($data);\n\t}\n\n\n\t/**\n\t * @api {post} /admin/home/add 首页文档设置-添加\n\t *\n\t * @apiName add\n\t * @apiGroup DocumentHome\n\t *\n\t * @apiParam {Number} type 类型 ( 1：公告 2：首页类型一 3：首页类型二)\n\t * @apiParam {Number} document_id 文档id\n\t * @apiParam {String} logo 文档图标（类型 2 必填，其他非必填）\n\t * @apiParam {String} desc 文档简介（非必填）\n\t * @apiParam {Number} sort 排序值（非必填）\n\t *\n\t */\n\tpublic function addHomeData(Request $request){\n\t\t$this->check($request);\n\t\t$params = $this->validate($request, [\n\t\t\t'type' => 'required|integer|min:1',\n\t\t\t'document_id' => 'required|integer',\n\t\t], [\n\t\t\t'type.required' => '请选择类型',\n\t\t\t'type.min' => '类型最小为 1',\n\t\t\t'document_id.required' => '请选择文档',\n\t\t]);\n\t\t//不同类型参数判断\n\t\tif (intval($params['type']) == 2){ //首页类型一\n\t\t\t $logo = $request->post('logo');\n\t\t\t if (!$logo){\n\t\t\t \tthrow new ErrorHttpException('请上传图标');\n\t\t\t }\n\t\t\t $params['logo'] = $logo;\n\t\t\t $params['description'] = htmlspecialchars(trim($request->post('desc')),ENT_QUOTES);\n\t\t}\n\t\t$params['user_id'] = $this->_user->id;\n        //排序\n\t\t$params['sort'] = intval($request->post('sort',0));\n\t\tDocumentHomeLogic::instance()->addHomeData($params);\n        return $this->data('success');\n\t}\n\n\n\t/**\n\t * @api {all} /admin/home/edit 首页文档设置-编辑\n\t *\n\t * @apiName edit\n\t * @apiGroup DocumentHome\n\t *\n\t * @apiParam {Number} id  主键 ID （ GET请求只传 id  GET 获取数据  POST 提交数据）\n\t * @apiParam {Number} type 类型 ( 1：公告 2：首页类型一 3：首页类型二)\n\t * @apiParam {Number} document_id 文档id\n\t * @apiParam {String} logo 文档图标（类型 2 必填，其他非必填）\n\t * @apiParam {String} desc 文档简介（非必填）\n\t * @apiParam {Number} sort 排序值（非必填）\n\t *\n\t * @apiSuccessExample {json} Success-Response:\n\t * {\"status\":true,\"code\":200,\"data\":{\"id\":24,\"user_id\":1,\"user\":\"admin\",\"type\":2,\"type_name\":\"首页类型一\",\"document_id\":2,\"document_name\":\"开源文档\",\"url\":\"\",\"description\":\"fgfdhfgh\",\"sort\":11,\"created_at\":\"2021-03-16 17:04:52\"},\"message\":\"ok\"}\n\t */\n\tpublic function editHomeData(Request $request){\n\t\t$this->check($request);\n\t\t//get 请求\n\t\tif ($request->getMethod() == 'GET'){\n\t\t\t$params = $this->validate($request, [\n\t\t\t\t'id' => 'required|integer|min:1',\n\t\t\t], [\n\t\t\t\t'id.required' => 'id 不能为空',\n\t\t\t\t'id.min' => 'id 最小为 1',\n\t\t\t]);\n\t\t\t$data = DocumentHomeLogic::instance()->getByHomeData($params['id']);\n\t\t\treturn  $this->data($data);\n\t\t//POST 请求\n\t\t}elseif ($request->getMethod() == 'POST'){\n\t\t\t$params = $this->validate($request, [\n\t\t\t\t'id' => 'required|integer|min:1',\n\t\t\t\t'type' => 'required|integer|min:1',\n\t\t\t\t'document_id' => 'required|integer',\n\t\t\t], [\n\t\t\t\t'id.required' => 'id 不能为空',\n\t\t\t\t'id.min' => 'id 最小为 1',\n\t\t\t\t'type.required' => '请选择类型',\n\t\t\t\t'type.min' => '类型最小为 1',\n\t\t\t\t'document_id.required' => '请选择文档',\n\t\t\t]);\n\t\t\t//不同类型参数判断\n\t\t\tif (intval($params['type']) == 2){ //首页类型一\n\t\t\t\t$logo = $request->post('logo');\n\t\t\t\tif (!$logo){\n\t\t\t\t\tthrow new ErrorHttpException('请上传图标');\n\t\t\t\t}\n\t\t\t\t$params['logo'] = $logo;\n\t\t\t\t$params['description'] = htmlspecialchars(trim($request->post('desc')),ENT_QUOTES);\n\t\t\t}\n\t\t\t$params['user_id'] = $this->_user->id;\n\t\t\t//排序\n\t\t\t$params['sort'] = intval($request->post('sort',0));\n\t\t\tDocumentHomeLogic::instance()->editHomeData($params);\n\t\t\treturn $this->data('success');\n\t\t}\n\n\t\treturn $this->data('非法请求');\n\t}\n\n\n\t/**\n\t * @api {post} /admin/home/delete 首页文档设置-删除操作\n\t *\n\t * @apiName delete\n\t * @apiGroup DocumentHome\n\t *\n\t * @apiParam {Number} id  主键 ID\n\t *\n\t */\n\tpublic function delHomeData(Request $request){\n\t\t$this->check($request);\n\t\t$params = $this->validate($request, [\n\t\t\t'id' => 'required|integer|min:1',\n\t\t], [\n\t\t\t'id.required' => 'id 不能为空',\n\t\t\t'id.min' => 'id 最小为 1',\n\t\t]);\n\n\t\tDocumentHomeLogic::instance()->delHomeData(intval($params['id']));\n\n\t\treturn $this->data('success');\n\t}\n\n\n\t/**\n\t * @api {get} /admin/home/get-type 首页文档设置-获取类型\n\t *\n\t * @apiName get-type\n\t * @apiGroup DocumentHome\n\t *\n\t * @apiSuccessExample {json} Success-Response:\n\t * {\"status\":true,\"code\":200,\"data\":{\"1\":\"公告\",\"2\":\"首页类型一\",\"3\":\"首页类型二\"},\"message\":\"ok\"}\n\t */\n\tpublic function getType(Request $request){\n\t\t$this->check($request);\n\t\treturn $this->data(DocumentHomeLogic::instance()->getTypeData());\n\t}\n\n\n\t/**\n\t * @api {post} /admin/home/search-doc 首页文档设置-模糊查询文档\n\t *\n\t * @apiName search-doc\n\t * @apiGroup DocumentHome\n\t *\n\t * @apiParam {String} keyword 关键词（非必填）\n\t *\n\t */\n\tpublic function queryDocument(Request $request){\n\t\t$this->check($request);\n        $keyword = trim($request->post('keyword'));\n        $data = DocumentHomeLogic::instance()->queryDocument($keyword,1);\n        return $this->data($data);\n\t}\n\n\n\n}\n"
  },
  {
    "path": "app/Controller/Admin/FeedbackController.php",
    "content": "<?php\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2021 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\nnamespace W7\\App\\Controller\\Admin;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\DocumentFeedback;\nuse W7\\App\\Model\\Entity\\Setting;\nuse W7\\App\\Model\\Logic\\DocumentFeedbackLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass FeedbackController extends BaseController\n{\n\n\t/**\n\t * @api {post} /admin/document/feedback-list 反馈建议列表\n\t * @apiName feedback-list\n\t * @apiGroup document.Feedback\n\t *\n\t *\n\t * @apiParam {Number} document_id 文档ID\n\t * @apiParam {Number} page 页码\n\t * @apiParam {Number} page_size 页数\n\t */\n\t  public function getList(Request $request){\n\t  \t //验证\n\t\t  $params = $this->validate($request, [\n\t\t\t  'document_id' => 'required|integer|min:1',\n\t\t  ], [\n\t\t\t  'document_id.required' => '文档id必填',\n\t\t\t  'document_id.integer' => '文档id非法',\n\t\t  ]);\n\t\t  $page = intval($request->post('page'));\n\t\t  $pageSize = intval($request->post('page_size'));\n          //获取用户信息\n\t\t  $user = $request->getAttribute('user');\n\t\t  if (!$user->isManager) {\n\t\t\t  throw new ErrorHttpException('您没有权限管理该文档',[],Setting::ERROR_NO_POWER);\n\t\t  }\n          //查询数据\n\t\t  $query = DocumentFeedback::query()->where('document_id', '=', $params['document_id'])->orderByDesc('created_at');\n\t\t  $list = $query->paginate($pageSize, ['id','user_id','document_id','type','status','created_at'], 'page', $page);\n\t\t  foreach ($list->items() as $i => $row) {\n\t\t\t  $result['data'][] = [\n\t\t\t\t  'id' => $row->id,\n\t\t\t\t  'user_id' => $row->user_id,\n\t\t\t\t  'document_id' => $row->document_id,\n\t\t\t\t  'status' => $row->status,\n\t\t\t\t  'status_text' => $row->status_text,\n\t\t\t\t  'type' => $row->type,\n\t\t\t\t  'type_name' => $row->type_name,\n\t\t\t\t  'created_at' => $row->created_at->toDateTimeString()\n\t\t\t  ];\n\t\t  }\n\n\t\t  $result['page_count'] = $list->lastPage();\n\t\t  $result['total'] = $list->total();\n\t\t  $result['page_current'] = $list->currentPage();\n\n\t\t  return $this->data($result);\n\t  }\n\n\n\t/**\n\t * @api {post} /admin/document/feedback-detail 反馈建议详情\n\t * @apiName feedback-detail\n\t * @apiGroup document.Feedback\n\t *\n\t *\n\t * @apiParam {Number} feed_id 反馈数据ID\n\t * @apiParam {Number} document_id 文档ID\n\t */\n\t  public function detail(Request $request){\n\t\t  //验证\n\t\t  $params = $this->validate($request, [\n\t\t\t  'feed_id' => 'required|integer|min:1',\n\t\t\t  'document_id' => 'required|integer|min:1',\n\t\t  ], [\n\t\t\t  'feed_id.required' => '反馈数据id必填',\n\t\t\t  'feed_id.integer' => '反馈数据id非法',\n\t\t\t  'document_id.required' => '文档id必填',\n\t\t\t  'document_id.integer' => '文档id非法',\n\t\t  ]);\n\n\t\t  //获取用户信息\n\t\t  $user = $request->getAttribute('user');\n\t\t  if (!$user->isManager) {\n\t\t\t  throw new ErrorHttpException('您没有权限管理该文档',[],Setting::ERROR_NO_POWER);\n\t\t  }\n\n\t\t  $detail = DocumentFeedbackLogic::instance()->getByFeedbackDetail($params['feed_id'],$params['document_id']);\n\t\t  if (!$detail){\n\t\t  \t   throw new ErrorHttpException('反馈数据不存在');\n\t\t  }\n          //更新状态\n\t\t  DocumentFeedbackLogic::instance()->setByFeedbackStatus($params['feed_id'],$params['document_id']);\n\n\t\t  $result = [\n\t\t\t  'id'=> $detail->id,\n\t\t\t  'status' => $detail->status,\n\t\t\t  'status_text' => $detail->status_text,\n\t\t\t  'type'=> $detail->type,\n\t\t\t  'type_name'=> $detail->type_name,\n\t\t\t  'document_id'=> $detail->document_id,\n\t\t\t  'content'=> $detail->content,\n\t\t\t  'images'=> $detail->images,\n\t\t\t  'created_at' => $detail->created_at->toDateTimeString()\n\t\t  ];\n\n\t\t  return $this->data($result);\n\t  }\n\n\n}\n"
  },
  {
    "path": "app/Controller/Admin/HomepageSettingController.php",
    "content": "<?php\n\n\nnamespace W7\\App\\Controller\\Admin;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Logic\\HomepageSettingLogic;\nuse W7\\Http\\Message\\Server\\Request;\n//首页设置\nclass HomepageSettingController extends BaseController\n{\n\tprivate function check(Request $request)\n\t{\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('无权访问');\n\t\t}\n\t\treturn true;\n\t}\n\n\n\t/**\n\t * @api {get} /admin/home/get-set  获取首页设置数据\n\t * @apiName get-set\n\t * @apiGroup HomepageSetting\n\t *\n\t *\n\t * @apiSuccessExample {json} Success-Response:\n\t * {\"status\":true,\"code\":200,\"data\":{\"open_home\":{\"is_open\":\"0\",\"url\":\"http:\\/\\/192.168.168.99\"},\"banner\":[\"http:\\/\\/111.234.xxxx\",\"http:\\/\\/xxx.xxx.xx\"],\"title\":\"11111\"},\"message\":\"ok\"}\n\t */\n    public function getHomePageSet(Request $request){\n\t\t$this->check($request);\n        return $this->data(HomepageSettingLogic::instance()->getHomeSet());\n\t}\n\n\n\n\t/**\n\t * @api {post} /admin/home/set-open 设置是否打开首页\n\t * @apiName set-open\n\t * @apiGroup HomepageSetting\n\t *\n\t *\n\t * @apiParam {Number} is_open 是否开启（0：关闭 1：开启）\n\t */\n\tpublic function setOpenHome(Request $request){\n\t\t$this->check($request);\n\t\t$params = $this->validate($request, [\n\t\t\t'is_open' => 'required|integer',\n\t\t], [\n\t\t\t'is_open.required' => '请选择是否开启',\n\t\t]);\n\t\t$params['url'] = base_url();\n\t\tHomepageSettingLogic::instance()->setOpenHome($params);\n\t\treturn $this->data('success');\n\t}\n\n\n\t/**\n\t * @api {post} /admin/home/set-banner 设置首页banner\n\t * @apiName set-banner\n\t * @apiGroup HomepageSetting\n\t *\n\t *\n\t * @apiParam {Array} images  图片\n\t */\n\tpublic function setHomeBanner(Request $request){\n\t\t$this->check($request);\n\t\t$images = $request->post('images');\n\t\t$images = array_filter($images);\n\t\tif (empty($images)){\n\t\t\tthrow new ErrorHttpException('图片不能为空!');\n\t\t}\n\t\tHomepageSettingLogic::instance()->setHomeBanner($images);\n\t\treturn $this->data('success');\n\t}\n\n\n\t/**\n\t * @api {post} /admin/home/set-title 设置首页名称\n\t * @apiName set-title\n\t * @apiGroup HomepageSetting\n\t *\n\t *\n\t * @apiParam {String} title  名称\n\t */\n\tpublic function setHomeTtile(Request $request){\n\t\t$this->check($request);\n\t\t$params = $this->validate($request, [\n\t\t\t'title' => 'string|required',\n\t\t], [\n\t\t\t'title.required' => '名称不能为空',\n\t\t]);\n\n\t\tHomepageSettingLogic::instance()->setHomeTitle($params['title']);\n\t\treturn $this->data('success');\n\t}\n\n\n}\n"
  },
  {
    "path": "app/Controller/Admin/MenuSettingController.php",
    "content": "<?php\n\n\nnamespace W7\\App\\Controller\\Admin;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Logic\\MenuSettingLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass MenuSettingController extends BaseController\n{\n\tprivate function check(Request $request)\n\t{\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('无权访问');\n\t\t}\n\t\treturn true;\n\t}\n\n\tpublic function all(Request $request)\n\t{\n\t\t$this->check($request);\n\n\t\treturn $this->data(MenuSettingLogic::instance()->all());\n\t}\n\n\tpublic function add(Request $request)\n\t{\n\t\t$this->check($request);\n\t\t$config = $this->validate($request, [\n\t\t\t'name' => 'required',\n\t\t\t'sort' => 'required',\n\t\t\t'url' => 'required'\n\t\t]);\n\n\t\tMenuSettingLogic::instance()->add($config);\n\n\t\treturn $this->data('success');\n\t}\n\n\tpublic function getById(Request $request)\n\t{\n\t\t$this->check($request);\n\t\t$params = $this->validate($request, [\n\t\t\t'id' => 'required'\n\t\t]);\n\n\t\ttry {\n\t\t\treturn $this->data(MenuSettingLogic::instance()->getById($params['id']));\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t}\n\n\tpublic function updateById(Request $request)\n\t{\n\t\t$this->check($request);\n\t\t$config = $this->validate($request, [\n\t\t\t'id' => 'required',\n\t\t\t'name' => 'required',\n\t\t\t'sort' => 'required',\n\t\t\t'url' => 'required'\n\t\t]);\n\n\t\ttry {\n\t\t\tMenuSettingLogic::instance()->updateById($config['id'], $config);\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\n\t\treturn $this->data('success');\n\t}\n\n\tpublic function deleteById(Request $request)\n\t{\n\t\t$this->check($request);\n\t\t$params = $this->validate($request, [\n\t\t\t'id' => 'required'\n\t\t]);\n\n\t\tMenuSettingLogic::instance()->deleteById($params['id']);\n\n\t\treturn $this->data('success');\n\t}\n\n\tpublic function setTheme(Request $request)\n\t{\n\t\t$this->check($request);\n\t\t$params = $this->validate($request, [\n\t\t\t'theme' => 'required'\n\t\t]);\n\n\t\tMenuSettingLogic::instance()->setTheme($params['theme']);\n\n\t\treturn $this->data('success');\n\t}\n\n\tpublic function getTheme(Request $request)\n\t{\n\t\t$this->check($request);\n\t\treturn $this->data(MenuSettingLogic::instance()->getTheme());\n\t}\n}"
  },
  {
    "path": "app/Controller/Admin/SettingController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Admin;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Logic\\SettingLogic;\nuse W7\\App\\Model\\Service\\CdnLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass SettingController extends BaseController\n{\n\tprivate $handler = [\n\t\tSettingLogic::KEY_COS => 'saveCos',\n\t\tSettingLogic::KEY_FORBID_WORDS => '',\n\t];\n\n\tpublic function config(Request $request){\n\t\t$param = $this->validate($request, [\n\t\t\t'key' => 'required',\n\t\t], [\n\t\t\t'key.required' => 'key必填',\n\t\t]);\n\t\t$this->check($request);\n\t\t$setting = SettingLogic::instance()->getByKey($param['key'],1);\n\t\treturn $this->data([$param['key'] => $setting->setting]);\n\t}\n\n\tpublic function cos(Request $request)\n\t{\n\t\t$this->check($request);\n\n\t\t$setting = SettingLogic::instance()->getByKey(SettingLogic::KEY_COS);\n\t\t$settingData = $setting->setting;\n\t\tif ((!$settingData['url']) && $settingData['region'] && $settingData['bucket']) {\n\t\t\t$settingData['url'] = 'https://' . $settingData['bucket'] . '.cos.' . $settingData['region'] . '.myqcloud.com';\n\t\t}\n\t\treturn $this->data([\n\t\t\t'key' => SettingLogic::KEY_COS,\n\t\t\t'setting' => $settingData,\n\t\t]);\n\t}\n\n\tpublic function save(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'key' => 'required',\n\t\t], [\n\t\t\t'key.required' => 'key必填',\n\t\t]);\n\n\t\t$key = $request->post('key');\n\t\tif (!isset($this->handler[$key])) {\n\t\t\tthrow new ErrorHttpException('错误的配置key');\n\t\t}\n\n\t\tif (!empty($this->handler[$key])) {\n\t\t\t$value = call_user_func_array([$this, $this->handler[$key]], [$request]);\n\t\t} else {\n\t\t\t$value = $request->post('setting','');\n\t\t}\n\n\t\ttry {\n\t\t\tidb()->beginTransaction();\n\t\t\tif ($key == SettingLogic::KEY_COS && (empty($value['url']) || !$value['url'])) {\n\t\t\t\t$value['url'] = 'https://' . $value['bucket'] . '.cos.' . $value['region'] . '.myqcloud.com';\n\t\t\t}\n\t\t\tSettingLogic::instance()->save($key, $value);\n\t\t\t//验证票据\n\t\t\tif ($key == SettingLogic::KEY_COS) CdnLogic::instance()->channel(SettingLogic::KEY_COS, true);\n\t\t\tidb()->commit();\n\t\t} catch (\\Throwable $e) {\n\t\t\tidb()->rollBack();\n\t\t\tif ($key == SettingLogic::KEY_COS) {\n\t\t\t\tilogger()->channel('error')->error('云存储链接失败，请检查配置是否正确' . $e->getMessage());\n\t\t\t\tthrow new ErrorHttpException('云存储链接失败，请检查配置是否正确');\n\t\t\t}\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\n\t\treturn $this->data('success');\n\t}\n\n\tprivate function saveCos(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'setting.app_id' => 'required',\n\t\t\t'setting.secret_id' => 'required',\n\t\t\t'setting.secret_key' => 'required',\n\t\t\t'setting.bucket' => 'required',\n\t\t\t'setting.region' => 'required',\n\t\t\t'setting.url' => '',\n\t\t\t'setting.path' => 'sometimes|regex:/^\\/[a-zA-Z\\-_0-9]+$/i'\n\t\t], [\n\t\t\t'setting.app_id.required' => 'app_id必填',\n\t\t\t'setting.secret_id.required' => 'secret_id必填',\n\t\t\t'setting.secret_key.required' => 'secret_key必填',\n\t\t\t'setting.bucket.required' => 'bucket必填',\n\t\t\t'setting.region.required' => '所属地址必填',\n\t\t\t'setting.url' => '附件访问域名',\n\t\t\t'setting.path.regex' => '保存目录填写错误，格式例如：/savepath '\n\t\t]);\n\n\t\t$setting = $request->post('setting');\n\n\t\t$data = [\n\t\t\t'app_id' => $setting['app_id'],\n\t\t\t'secret_id' => $setting['secret_id'],\n\t\t\t'secret_key' => $setting['secret_key'],\n\t\t\t'bucket' => $setting['bucket'],\n\t\t\t'region' => $setting['region'],\n\t\t\t'url' => rtrim($setting['url'], '/'),\n\t\t\t'path' => rtrim($setting['path'], '/'),\n\t\t];\n\n\t\tif (empty($data['path'])) {\n\t\t\t$data['path'] = '';\n\t\t}\n\n\t\treturn $data;\n\t}\n\n\tprivate function check(Request $request)\n\t{\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('无权访问');\n\t\t}\n\t\treturn true;\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Admin/StarController.php",
    "content": "<?php\n\nnamespace W7\\App\\Controller\\Admin;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Star;\nuse W7\\App\\Model\\Entity\\User;\nuse W7\\App\\Model\\Entity\\UserOperateLog;\nuse W7\\App\\Model\\Logic\\DocumentLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass StarController extends BaseController\n{\n\tpublic function all(Request $request)\n\t{\n\t\t$name = $request->post('name');\n\t\t$page = intval($request->post('page'));\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\t$query = Star::query()->where('user_id', '=', $user->id);\n\t\tif ($name) {\n\t\t\t$query->whereHas('document', function ($query) use ($name) {\n\t\t\t\treturn $query->where('name', 'LIKE', \"%{$name}%\");\n\t\t\t});\n\t\t}\n\t\t$list = $query->paginate(null, '*', 'page', $page);\n\t\t$data = [];\n\t\tforeach ($list->items() as $row) {\n\t\t\tif ($row->chapter_id) {\n\t\t\t\t$name = $row->chapter->name;\n\t\t\t} else {\n\t\t\t\t$name = $row->document->name;\n\t\t\t}\n\t\t\t$data[] = [\n\t\t\t\t'id' => $row->id,\n\t\t\t\t'name' => $name,\n\t\t\t\t'author' => [\n\t\t\t\t\t'name' => $row->document->user->username\n\t\t\t\t],\n\t\t\t\t'is_public' => $row->document->isPublicDoc,\n\t\t\t\t'document_id' => $row->document->id,\n\t\t\t\t'chapter_id' => $row->chapter->id\n\t\t\t];\n\t\t}\n\n\t\t$result['data'] = $data;\n\t\t$result['page_count'] = $list->lastPage();\n\t\t$result['total'] = $list->total();\n\t\t$result['page_current'] = $list->currentPage();\n\n\t\treturn $this->data($result);\n\t}\n\n\tpublic function add(Request $request)\n\t{\n\t\t$params = $this->validate($request, [\n\t\t\t'document_id' => 'required|integer',\n\t\t], [\n\t\t\t'document_id.required' => '文档ID必传',\n\t\t]);\n\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\t/*if (!$user->isReader) {\n\t\t\tthrow new ErrorHttpException('无权限操作该文档');\n\t\t}*/\n\n\t\t$document = DocumentLogic::instance()->getById($params['document_id']);\n\t\tif (empty($document)) {\n\t\t\tthrow new ErrorHttpException('您操作的文档不存在');\n\t\t}\n\n\t\t$star = new Star();\n\t\t$star->user_id = $user->id;\n\t\t$star->document_id = $params['document_id'];\n\t\t$star->chapter_id = (int)$request->post('chapter_id', 0);\n\t\t$star->save();\n\n\t\tUserOperateLog::query()->create([\n\t\t\t'user_id' => $user->id,\n\t\t\t'document_id' => $params['document_id'],\n\t\t\t'chapter_id' => $star->chapter_id,\n\t\t\t'operate' => UserOperateLog::COLLECT,\n\t\t\t'remark'\t=> '添加星标'\n\t\t]);\n\n\t\treturn $this->data(['star_id' => $star->id]);\n\t}\n\n\tpublic function delete(Request $request)\n\t{\n\t\t$params = $this->validate($request, [\n\t\t\t'id' => 'required|integer',\n\t\t\t'document_id' => 'required|integer',\n\t\t], [\n\t\t\t'id.required' => 'ID必传',\n\t\t\t'document_id.required' => '文档ID必传',\n\t\t]);\n\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\t/*if (!$user->isReader) {\n\t\t\tthrow new ErrorHttpException('无权限操作该文档');\n\t\t}*/\n\n\t\t$document = DocumentLogic::instance()->getById($params['document_id']);\n\t\tif (empty($document)) {\n\t\t\tthrow new ErrorHttpException('您操作的文档不存在');\n\t\t}\n\n\t\t$star = Star::query()->where('user_id', '=', $user->id)->where('id', '=', $params['id'])->first();\n\n\t\tUserOperateLog::query()\n\t\t\t->where('user_id',$star->user_id)\n\t\t\t->where('document_id', $star->document_id)\n\t\t\t->where('chapter_id',$star->chapter_id)\n\t\t\t->delete();\n\t\t$star->delete();\n\n\t\treturn $this->data('success');\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Admin/ThirdPartyLoginController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Admin;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Logic\\ThirdPartyLoginLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass ThirdPartyLoginController extends BaseController\n{\n\tprivate function check(Request $request)\n\t{\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('无权访问');\n\t\t}\n\t\treturn true;\n\t}\n\n\tpublic function all(Request $request)\n\t{\n\t\t$this->check($request);\n\n\t\t$setting = ThirdPartyLoginLogic::instance()->getThirdPartyLoginSetting(1);\n\t\t$data = [];\n\t\tforeach ($setting['channel'] as $key => $item) {\n\t\t\t$data[] = [\n\t\t\t\t'id' => $key,\n\t\t\t\t'name' => $item['setting']['name'],\n\t\t\t\t'enable' => $item['setting']['enable'] ?? false\n\t\t\t];\n\t\t}\n\t\treturn $this->data($data);\n\t}\n\n\tpublic function getById(Request $request)\n\t{\n\t\t$this->check($request);\n\t\t$params = $this->validate($request, [\n\t\t\t'id' => 'required'\n\t\t]);\n\t\ttry {\n\t\t\treturn $this->data(ThirdPartyLoginLogic::instance()->getThirdPartyLoginChannelById($params['id'], 1));\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t}\n\n\tpublic function add(Request $request)\n\t{\n\t\t$this->check($request);\n\t\t$params = $this->validate($request, [\n\t\t\t'setting.name' => 'required',\n\t\t\t'setting.logo' => 'required|url',\n\t\t\t'setting.app_id' => 'required',\n\t\t\t'setting.secret_key' => 'required',\n\t\t\t'setting.access_token_url' => 'required|url',\n\t\t\t'setting.user_info_url' => 'required|url'\n\t\t], [\n\t\t\t'setting.name.required' => 'name必填',\n\t\t\t'setting.logo.required' => 'logo必传',\n\t\t\t'setting.app_id.required' => 'app_id必填',\n\t\t\t'setting.secret_key.required' => 'secret_key必填',\n            'setting.access_token_url.required' => 'access_token_url必填',\n            'setting.user_info_url.required' => 'user_info_url必填',\n\t\t]);\n\t\t$params['setting']['user_info_url'] = rtrim($params['setting']['user_info_url'], '/');\n\t\t$params['setting']['access_token_url'] = rtrim($params['setting']['access_token_url'], '/');\n\t\t$params['setting']['enable'] = !empty($request->post('setting')['enable']) ? 1 : 0;\n\t\t$params['convert'] = $request->post('convert');\n\n\t\ttry {\n\t\t\tThirdPartyLoginLogic::instance()->addThirdPartyLoginChannel($params);\n\t\t\treturn $this->data('success');\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t}\n\n\tpublic function updateById(Request $request)\n\t{\n\t\t$this->check($request);\n\t\t$params = $this->validate($request, [\n\t\t\t'id' => 'required',\n\t\t\t'setting.name' => 'required',\n\t\t\t'setting.logo' => 'required|url',\n\t\t\t'setting.app_id' => 'required',\n\t\t\t'setting.secret_key' => 'required',\n\t\t\t'setting.access_token_url' => 'required|url',\n\t\t\t'setting.user_info_url' => 'required|url',\n\t\t], [\n\t\t\t'setting.name.required' => 'name必填',\n\t\t\t'setting.logo.required' => 'logo必传',\n\t\t\t'setting.app_id.required' => 'app_id必填',\n\t\t\t'setting.secret_key.required' => 'secret_key必填'\n\t\t]);\n\t\t$params['setting']['user_info_url'] = rtrim($params['setting']['user_info_url'], '/');\n\t\t$params['setting']['access_token_url'] = rtrim($params['setting']['access_token_url'], '/');\n\t\t$params['setting']['enable'] = !empty($request->post('setting')['enable']) ? 1 : 0;\n\t\t$params['convert'] = $request->post('convert');\n\n\t\ttry {\n\t\t\tThirdPartyLoginLogic::instance()->updateThirdPartyLoginChannelById($params['id'], $params);\n\t\t\treturn $this->data('success');\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t}\n\n\tpublic function deleteById(Request $request)\n\t{\n\t\t$this->check($request);\n\t\t$params = $this->validate($request, [\n\t\t\t'id' => 'required',\n\t\t]);\n\t\ttry {\n\t\t\tThirdPartyLoginLogic::instance()->deleteThirdPartyLoginChannelById($params['id']);\n\t\t\treturn $this->data('success');\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t}\n\n\tpublic function setDefaultLoginChannel(Request $request)\n\t{\n\t\t$this->check($request);\n\n\t\t$defaultLoginChannel = $request->post('default_login_channel', '');\n\t\t$isNeedBind = $request->post('is_need_bind', '');\n\t\t$isNeedBind = $isNeedBind == 1 ? true : false;\n\t\tThirdPartyLoginLogic::instance()->setDefaultLoginSetting([\n\t\t\t'default_login_channel' => $defaultLoginChannel,\n\t\t\t'is_need_bind' => $isNeedBind\n\t\t]);\n\t\treturn $this->data('success');\n\t}\n\n\tpublic function getDefaultLoginChannel(Request $request)\n\t{\n\t\t$this->check($request);\n\n\t\treturn $this->data(ThirdPartyLoginLogic::instance()->getDefaultLoginSetting());\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Admin/UploadController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Admin;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\BadRequestException;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Logic\\SettingLogic;\nuse W7\\App\\Model\\Service\\CdnLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass UploadController extends BaseController\n{\n\tpublic function image(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'file' => 'required|file'\n\t\t]);\n\n\t\t$file = $request->file('file');\n\t\t$size = $file->getSize();\n\n\t\t$mimeType = $file->getMimeType();\n\t\t$mimeTypeData = explode('/', $mimeType);\n\t\t//返回图片路径\n\t\tif ($mimeTypeData[0] != 'image') {\n\t\t\tthrow new ErrorHttpException('上传的文件不是图片');\n\t\t}\n\t\tif ($size > 5242880) {\n\t\t\tthrow new ErrorHttpException('请上传不大于5M的文件');\n\t\t}\n\n\t\t$fileName = sprintf('/%s.%s', irandom(32), pathinfo($file->getClientFilename(), PATHINFO_EXTENSION));\n\t\ttry {\n\t\t\t$url = CdnLogic::instance()->channel(SettingLogic::KEY_COS)->uploadFile($fileName, $file->getRealPath());\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\n\t\treturn $this->data(['url' => $url]);\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Admin/UserController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Admin;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\DocumentPermission;\nuse W7\\App\\Model\\Entity\\Setting;\nuse W7\\App\\Model\\Entity\\User;\nuse W7\\App\\Model\\Entity\\UserOperateLog;\nuse W7\\App\\Model\\Logic\\DocumentPermissionLogic;\nuse W7\\Http\\Message\\Server\\Request;\nuse W7\\App\\Model\\Logic\\UserLogic;\n\nclass UserController extends BaseController\n{\n\t/**\n\t * @api {post} /admin/user/all 所有用户\n\t *\n\t * @apiName all\n\t * @apiGroup user\n\t *\n\t * @apiParam {String} username 用户名\n\t *\n\t */\n\tpublic function all(Request $request)\n\t{\n\t\t$username = trim($request->input('username'));\n\t\t$name = trim($request->input('name'));\n\t\t$noId = $request->input('no_id', '');\n\n\t\t$obj = User::query()->select(['id', 'username', 'group_id', 'created_at']);\n\t\tif ($username) {\n\t\t\t$obj->where('username', 'LIKE', \"%$username%\");\n\t\t}\n\t\tif ($name) {\n\t\t\t$obj->where('username', $name);\n\t\t}\n\t\tif ($noId) {\n\t\t\t$obj->whereNotIn('id', explode(',', $noId));\n\t\t}\n\t\t$user = $obj->get();\n\t\t$result = $user->toArray();\n\n\t\treturn $this->data($result);\n\t}\n\n\tpublic function search(Request $request)\n\t{\n\t\t$username = trim($request->post('username'));\n\t\t$page = intval($request->post('page'));\n\n\t\t$user = User::query()->where('username', 'LIKE', \"%$username%\")->paginate(null, '*', 'page', $page);\n\n\t\t$result = [];\n\t\t$list = $user->items();\n\t\tif (!empty($list)) {\n\t\t\tforeach ($list as $i => $row) {\n\t\t\t\t$result['data'][] = [\n\t\t\t\t\t'id' => $row->id,\n\t\t\t\t\t'username' => $row->username,\n\t\t\t\t\t'role' => $row->isFounder ? '创始人' : '普通用户',\n\t\t\t\t\t'created_at' => $row->created_at->toDateTimeString(),\n\t\t\t\t\t'manage_doc_count' => DocumentPermission::query()->where('user_id', '=', $row->id)->where('permission', '=', DocumentPermission::MANAGER_PERMISSION)->count(),\n\t\t\t\t\t'operate_doc_count' => DocumentPermission::query()->where('user_id', '=', $row->id)->where('permission', '=', DocumentPermission::OPERATOR_PERMISSION)->count(),\n\t\t\t\t\t'read_doc_count' => DocumentPermission::query()->where('user_id', '=', $row->id)->where('permission', '=', DocumentPermission::READER_PERMISSION)->count()\n\t\t\t\t];\n\t\t\t}\n\t\t}\n\n\t\t$result['page_count'] = $user->lastPage();\n\t\t$result['total'] = $user->total();\n\t\t$result['page_current'] = $user->currentPage();\n\n\t\treturn $this->data($result);\n\t}\n\n\tpublic function add(Request $request)\n\t{\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('没有操作用户的权限');\n\t\t}\n\n\t\t$data = $this->validate($request, [\n\t\t\t'username' => 'required',\n\t\t\t'userpass' => 'required',\n\t\t], [\n\t\t\t'username.required' => '请输入用户姓名',\n\t\t\t'userpass.required' => '请输入用户密码',\n\t\t]);\n\t\t$data = [\n\t\t\t'username' => trim($data['username']),\n\t\t\t'userpass' => trim($data['userpass']),\n\t\t];\n\t\t$data['remark'] = $request->input('remark', '');\n\n\t\ttry {\n\t\t\t$res = UserLogic::instance()->createUser($data);\n\t\t\treturn $this->data($res);\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t}\n\n\tpublic function getById(Request $request)\n\t{\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('没有操作用户的权限');\n\t\t}\n\n\t\t$params = $this->validate($request, [\n\t\t\t'id' => 'required'\n\t\t], [\n\t\t\t'id.required' => '用户ID不能为空',\n\t\t]);\n\n\t\ttry {\n\t\t\t$res = UserLogic::instance()->getByUid($params['id']);\n\t\t\tif (!$res) {\n\t\t\t\tthrow new \\RuntimeException('用户不存在');\n\t\t\t}\n\t\t\tunset($res->userpass);\n\t\t\treturn $this->data($res->toArray());\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t}\n\n\t/**\n\t * 用户编辑用户信息，如果编辑用户名，需要提供用户密码；如果编辑用户密码，需要提供原密码和新密码\n\t * @param Request $request\n\t * @return array\n\t */\n\tpublic function updateSelf(Request $request)\n\t{\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\n\t\t$userName = trim($request->post('username'));\n\t\t$userPass = trim($request->post('userpass'));\n\t\t$userOldPass = trim($request->post('old_userpass'));\n\t\tif (empty($userName) && empty($userPass)) {\n\t\t\tthrow new ErrorHttpException('参数错误');\n\t\t}\n\t\tif ($userOldPass && $user->userpass != UserLogic::instance()->userPwdEncryption($user->username, $userOldPass)) {\n\t\t\tthrow new ErrorHttpException('旧密码错误');\n\t\t}\n\n\t\t$updateUser['id'] = $user->id;\n\t\t$updateUser['username'] = empty($userName) ? $user->username : $userName;\n\t\t!empty($updateUser['username']) && $updateUser['userpass'] = $userOldPass;\n\t\t$userPass && $updateUser['userpass'] = $userPass;\n\t\ttry {\n\t\t\t$res = UserLogic::instance()->updateUser($updateUser);\n\t\t\treturn $this->data($res);\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t}\n\n\t/**\n\t * 管理员编辑用户信息\n\t * @param Request $request\n\t * @return array\n\t */\n\tpublic function updateById(Request $request)\n\t{\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('没有操作用户的权限');\n\t\t}\n\n\t\t$user = $this->validate($request, [\n\t\t\t'id' => 'required',\n\t\t\t'username' => 'required',\n\t\t\t'userpass' => 'required|confirmed',\n\t\t\t'remark' => '',\n\t\t], [\n\t\t\t'id.required' => '用户ID不能为空',\n\t\t\t'username.required' => '用户名不能为空',\n\t\t\t'userpass.required' => '密码不能为空'\n\t\t]);\n\t\tunset($user['userpass_confirmation']);\n\t\t$user['username'] = trim($user['username']);\n\t\t$user['userpass'] = trim($user['userpass']);\n\t\tif ($request->input('is_ban') !== null) {\n\t\t\t$user['is_ban'] = $request->input('is_ban');\n\t\t}\n\t\tif ($request->input('remark') !== null) {\n\t\t\t$user['remark'] = $request->input('remark');\n\t\t}\n\n\t\ttry {\n\t\t\t$res = UserLogic::instance()->updateUser($user);\n\t\t\treturn $this->data($res);\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t}\n\n\tpublic function deleteByIds(Request $request)\n\t{\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('没有操作用户的权限');\n\t\t}\n\n\t\t$params = $this->validate($request, [\n\t\t\t'ids' => 'required'\n\t\t], [\n\t\t\t'ids.required' => 'ID不能为空',\n\t\t]);\n\n\t\t$ids = array_filter(explode(',', trim($params['ids'])));\n\t\tif ($ids) {\n\t\t\t$delNum = UserLogic::instance()->deleteByIds($ids);\n\t\t\treturn $this->data('成功删除' . $delNum . '用户，如果用户有文档不能直接删除');\n\t\t}\n\t\tthrow new ErrorHttpException('参数有误');\n\t}\n\n\tpublic function batchUpdateDocPermissionByUid(Request $request)\n\t{\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档', [], Setting::ERROR_NO_POWER);\n\t\t}\n\n\t\t$params = $this->validate($request, [\n\t\t\t'document_permission' => 'required',\n\t\t\t'user_id' => 'required'\n\t\t]);\n\n\t\ttry {\n\t\t\tidb()->beginTransaction();\n\t\t\ttry {\n\t\t\t\tforeach ($params['document_permission'] as $documentPermission) {\n\t\t\t\t\t$permission = DocumentPermissionLogic::instance()->updateByDocIdAndUid($documentPermission['document_id'], $params['user_id'], $documentPermission['permission']);\n\t\t\t\t\tif ($permission) {\n\t\t\t\t\t\tif (!empty($documentPermission['permission'])) {\n\t\t\t\t\t\t\t$remark = '设置用户' . $permission->user->username . '为' . $permission->aclName;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$remark = '删除用户' . $permission->user->username . '的' . $permission->aclName . '权限';\n\t\t\t\t\t\t}\n\t\t\t\t\t\tUserOperateLog::query()->create([\n\t\t\t\t\t\t\t'user_id' => $user->id,\n\t\t\t\t\t\t\t'document_id' => $documentPermission['document_id'],\n\t\t\t\t\t\t\t'chapter_id' => 0,\n\t\t\t\t\t\t\t'operate' => UserOperateLog::EDIT,\n\t\t\t\t\t\t\t'target_user_id' => $params['user_id'],\n\t\t\t\t\t\t\t'remark' => $user->username . $remark\n\t\t\t\t\t\t]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tidb()->commit();\n\t\t\t} catch (\\Throwable $e) {\n\t\t\t\tidb()->rollBack();\n\t\t\t\tthrow $e;\n\t\t\t}\n\n\t\t\treturn $this->data('success');\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Admin/UserOperateLogController.php",
    "content": "<?php\n\nnamespace W7\\App\\Controller\\Admin;\n\nuse Illuminate\\Support\\Facades\\DB;\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Setting;\nuse W7\\App\\Model\\Entity\\Star;\nuse W7\\App\\Model\\Entity\\User;\nuse W7\\App\\Model\\Entity\\UserOperateLog;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass UserOperateLogController extends BaseController\n{\n\t/**\n\t * 目前获取的是用户阅读过的文档数据\n\t * @param Request $request\n\t * @return array\n\t */\n\tpublic function getUserReaderLog(Request $request)\n\t{\n\t\t$name = $request->post('name');\n\t\t$page = intval($request->post('page', 1));\n\t\t$pageSize = intval($request->post('page_size', 15));\n\t\t//时间按天为单位\n\t\t$time = intval($request->post('time'));\n\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\n\t\t$query = UserOperateLog::query();\n\t\tif ($name) {\n\t\t\t$query->whereHas('document', function ($query) use ($name) {\n\t\t\t\treturn $query->where('name', 'LIKE', \"%{$name}%\");\n\t\t\t});\n\t\t}\n\t\tif ($time) {\n\t\t\t$query = $query->where('created_at', '<', time() - 86400 * $time);\n\t\t}\n\t\t$groupOperate = UserOperateLog::query()->where('user_id', '=', $user->id)\n\t\t\t->where('operate', '=', UserOperateLog::PREVIEW)\n\t\t\t->groupBy(['document_id'])->orderByDesc('max_id')->select([\n\t\t\t\t'document_id',\n\t\t\t\tDB::raw('max(id) max_id')\n\t\t\t])->take($pageSize)->skip(($page - 1) * $pageSize)->getQuery();\n\t\t$dataQuery = clone $query;\n\t\t$dataQuery = $dataQuery->joinSub($groupOperate, 'sub', 'id', '=', 'max_id')->orderByDesc('id');\n\n\t\tforeach ($dataQuery->get() as $i => $row) {\n\t\t\t$star = Star::query()->where('user_id', '=', $user->id)->where('document_id', '=', $row->document_id)->where('chapter_id', '=', 0)->first();\n\t\t\t$result['data'][] = [\n\t\t\t\t'id' => $row->id,\n\t\t\t\t'document_id' => $row->document->id,\n\t\t\t\t'name' => $row->document->name,\n\t\t\t\t'star_id' => !empty($star) ? $star->id : '',\n\t\t\t\t'author' => [\n\t\t\t\t\t'name' => $row->document->user->username\n\t\t\t\t],\n\t\t\t\t'description' => $row->document->descriptionShort,\n\t\t\t\t'is_public' => $row->document->isPublicDoc,\n\t\t\t\t'time' => $row->created_at->toDateTimeString()\n\t\t\t];\n\t\t}\n\n\t\t$query = $query->where('user_id', '=', $user->id)->where('operate', '=', UserOperateLog::PREVIEW)->groupBy(['document_id']);\n\t\t$list = $query->paginate($pageSize, ['*'], 'page', $page);\n\t\t$result['page_count'] = $list->lastPage();\n\t\t$result['total'] = $list->total();\n\t\t$result['page_current'] = $list->currentPage();\n\n\t\treturn $this->data($result);\n\t}\n\n\t/**\n\t * 获取文档的所有操作记录\n\t * @param Request $request\n\t * @return array\n\t */\n\tpublic function getByDocument(Request $request)\n\t{\n\t\t$params = $this->validate($request, [\n\t\t\t'document_id' => 'required|integer'\n\t\t]);\n\t\t$page = intval($request->post('page'));\n\t\t$pageSize = intval($request->post('page_size'));\n\t\t//时间按天为单位\n\t\t$time = intval($request->post('time'));\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isManager) {\n\t\t\tthrow new ErrorHttpException('您没有权限管理该文档',[],Setting::ERROR_NO_POWER);\n\t\t}\n\n\t\t$query = UserOperateLog::query()->where('document_id', '=', $params['document_id'])\n\t\t\t->where('operate', '!=', UserOperateLog::PREVIEW)->where('remark', '!=' , '')->orderByDesc('created_at');\n\t\tif ($time) {\n\t\t\t$query = $query->where('created_at', '<', time() - 86400 * $time);\n\t\t}\n\t\t$list = $query->paginate($pageSize, ['id', 'user_id', 'document_id', 'operate', 'remark', 'created_at'], 'page', $page);\n\t\tforeach ($list->items() as $i => $row) {\n\t\t\t$result['data'][] = [\n\t\t\t\t'id' => $row->id,\n\t\t\t\t'remark' => $row->remark,\n\t\t\t\t'time' => $row->created_at->toDateTimeString()\n\t\t\t];\n\t\t}\n\n\t\t$result['page_count'] = $list->lastPage();\n\t\t$result['total'] = $list->total();\n\t\t$result['page_current'] = $list->currentPage();\n\n\t\treturn $this->data($result);\n\t}\n\n\tpublic function deleteById(Request $request)\n\t{\n\t\t$params = $this->validate($request, [\n\t\t\t'document_id' => 'required|integer',\n\t\t], [\n\t\t\t'document_id.required' => '文档ID必传'\n\t\t]);\n\t\t$operateLogId = $request->post('operate_log_id');\n\t\t$operateLogType = $request->post('operate_log_type', UserOperateLog::PREVIEW);\n\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\t$query = UserOperateLog::query()->where('document_id', '=', $params['document_id']);\n\t\tif ($operateLogId) {\n\t\t\t$query = $query->where('id', '=', $operateLogId);\n\t\t} else {\n\t\t\t$query = $query->where('operate', '=', $operateLogType);\n\t\t}\n\t\tif (!$user->isManager) {\n\t\t\t$query = $query->where('user_id', '=', $user->id);\n\t\t}\n\t\t$query->delete();\n\n\t\treturn $this->data('success');\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Admin/UserShareController.php",
    "content": "<?php\n\nnamespace W7\\App\\Controller\\Admin;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Model\\Logic\\UserShareLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass UserShareController extends BaseController\n{\n\tpublic function shareUrl(Request $request)\n\t{\n\t\t$params = $this->validate($request, [\n\t\t\t'chapter_id' => 'required|integer',\n\t\t\t'document_id' => 'required|integer'\n\t\t]);\n\n\t\t$user = $request->getAttribute('user');\n\n\t\treturn $this->data(UserShareLogic::instance()->getShareUrl($user->id, $params['document_id'], $params['chapter_id']));\n\t}\n}"
  },
  {
    "path": "app/Controller/Admin/index.html",
    "content": ""
  },
  {
    "path": "app/Controller/BaseController.php",
    "content": "<?php\n/**\n * @author donknap\n * @date 19-10-10 下午2:07\n */\n\nnamespace W7\\App\\Controller;\n\n\nuse W7\\Core\\Controller\\ControllerAbstract;\n\nclass BaseController extends ControllerAbstract\n{\n\tpublic function data($data = [], $message = 'ok', $code = 200)\n\t{\n\t\treturn [\n\t\t\t'status' => true,\n\t\t\t'code' => $code,\n\t\t\t'data' => $data,\n\t\t\t'message' => $message,\n\t\t];\n\t}\n}"
  },
  {
    "path": "app/Controller/Common/AuthController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Common;\n\nuse Overtrue\\Socialite\\Config;\nuse Overtrue\\Socialite\\SocialiteManager;\nuse Throwable;\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Setting;\nuse W7\\App\\Model\\Entity\\User;\nuse W7\\App\\Model\\Entity\\UserThirdParty;\nuse W7\\App\\Model\\Logic\\ThirdPartyLoginLogic;\nuse W7\\App\\Model\\Logic\\UserLogic;\nuse W7\\Core\\Session\\Session;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass AuthController extends BaseController\n{\n\tpublic function user(Request $request)\n\t{\n\t\t$userSession = $request->session->get('user');\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = UserLogic::instance()->getByUid($userSession['uid']);\n\t\tif (!$user) {\n\t\t\t$request->session->destroy();\n\t\t\tthrow new ErrorHttpException('请先登录', [], Setting::ERROR_NO_LOGIN);\n\t\t}\n\n\t\t$source = [\n\t\t\t'source_name' => '',\n\t\t\t'username' => ''\n\t\t];\n\t\t$userSourceAppId = $request->session->get('user-source-app');\n\t\tif ($userSourceAppId) {\n\t\t\t$userSource = UserThirdParty::query()->where('source', '=', $userSourceAppId)->where('uid', '=', $user->id)->first();\n\t\t\t$loginChannel = ThirdPartyLoginLogic::instance()->getThirdPartyLoginChannelById($userSourceAppId);\n\t\t\t$source = [\n\t\t\t\t'source_name' => $loginChannel['setting']['name'],\n\t\t\t\t'username' => $userSource->username\n\t\t\t];\n\t\t}\n\t\t$result = [\n\t\t\t'id' => $user->id,\n\t\t\t'username' => $user->username,\n\t\t\t'group_id' => $user->group_id,\n\t\t\t'created_at' => $user->created_at->toDateTimeString(),\n\t\t\t'updated_at' => $user->updated_at->toDateTimeString(),\n\t\t\t//判断当前用户是否有密码\n\t\t\t'no_password' => empty($user->userpass),\n\t\t\t'user_source' => $source,\n\t\t\t'acl' => [\n\t\t\t\t'has_manage' => $user->isFounder\n\t\t\t]\n\t\t];\n\n\t\treturn $this->data($result);\n\t}\n\n\tpublic function login(Request $request)\n\t{\n\t\t$data = $this->validate($request, [\n\t\t\t'username' => 'required',\n\t\t\t'userpass' => 'required',\n\t\t\t'code' => 'required',\n\t\t], [\n\t\t\t'username.required' => '用户名不能为空',\n\t\t\t'userpass.required' => '密码不能为空',\n\t\t\t'code.required' => '验证码不能为空',\n\t\t]);\n\t\t$code = $request->session->get('img_code');\n\t\tif (strtolower($data['code']) != strtolower($code)) {\n\t\t\tthrow new ErrorHttpException('请输入正确的验证码');\n\t\t}\n\n\t\t$user = UserLogic::instance()->getByUserName($data['username']);\n\t\tif (empty($user)) {\n\t\t\tthrow new ErrorHttpException('用户名或密码错误，请检查');\n\t\t}\n\n\t\tif ($user->userpass != UserLogic::instance()->userPwdEncryption($user->username, $data['userpass'])) {\n\t\t\tthrow new ErrorHttpException('用户名或密码错误，请检查');\n\t\t}\n\n\t\tif (!empty($user->is_ban)) {\n\t\t\tthrow new ErrorHttpException('您使用的用户已经被禁用，请联系管理员');\n\t\t}\n\n\t\t$request->session->destroy();\n\n\t\t$this->saveUserInfo($request->session, $user);\n\n\t\treturn $this->data('success');\n\t}\n\n\tpublic function method(Request $request)\n\t{\n\t\t$redirectUrl = $request->post('redirect_url');\n\t\t$setting = ThirdPartyLoginLogic::instance()->getThirdPartyLoginSetting();\n\t\t$data = [];\n\t\t/**\n\t\t * @var SocialiteManager $socialite\n\t\t */\n\t\t$socialite = iloader()->get(SocialiteManager::class);\n\t\t//获取可用的第三方登录列表\n\t\tforeach ($setting['channel'] as $key => $item) {\n\t\t\tif (!empty($item['setting']['enable'])) {\n\t\t\t\ttry {\n\t\t\t\t\t$socialite = clone $socialite;\n\t\t\t\t\t$url = ienv('API_HOST') . 'admin-login?app_id=' . $key . '&redirect_url=' . urlencode($redirectUrl);\n\t\t\t\t\t$redirect = $socialite->config(new Config([\n\t\t\t\t\t\t'client_id' => $item['setting']['app_id'],\n\t\t\t\t\t\t'client_secret' => $item['setting']['secret_key']\n\t\t\t\t\t]))->driver($key)->stateless()->redirect($url)->getTargetUrl();\n\t\t\t\t} catch (Throwable $e) {\n\t\t\t\t\t$redirect = null;\n\t\t\t\t}\n\n\t\t\t\t$data[] = [\n\t\t\t\t\t'id' => $key,\n\t\t\t\t\t'name' => $item['setting']['name'],\n\t\t\t\t\t'logo' => $item['setting']['logo'],\n\t\t\t\t\t'redirect_url' => $redirect\n\t\t\t\t];\n\t\t\t}\n\t\t}\n\t\treturn $this->data($data);\n\t}\n\n\tpublic function defaultLoginUrl(Request $request)\n\t{\n\t\t$redirectUrl = $request->post('redirect_url');\n\t\t$defaultSetting = ThirdPartyLoginLogic::instance()->getDefaultLoginSetting();\n\t\tif (!empty($defaultSetting['default_login_channel']) && $setting = ThirdPartyLoginLogic::instance()->getThirdPartyLoginChannelById($defaultSetting['default_login_channel'])) {\n\t\t\t/**\n\t\t\t * @var SocialiteManager $socialite\n\t\t\t */\n\t\t\t$socialite = iloader()->get(SocialiteManager::class);\n\t\t\t$socialite = clone $socialite;\n\t\t\t$url = ienv('API_HOST') . 'login?app_id=' . $defaultSetting['default_login_channel'] . '&redirect_url=' . $redirectUrl;\n\t\t\ttry {\n\t\t\t\treturn $this->data($socialite->config(new Config([\n\t\t\t\t\t'client_id' => $setting['setting']['app_id'],\n\t\t\t\t\t'client_secret' => $setting['setting']['secret_key']\n\t\t\t\t]))->driver($defaultSetting['default_login_channel'])->stateless()->redirect($url)->getTargetUrl());\n\t\t\t} catch (Throwable $e) {\n\t\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t\t}\n\t\t}\n\n\t\treturn $this->data('');\n\t}\n\n\t/**\n\t * @api {post} /common/auth/third-party-login 三方登陆\n\t *\n\t * @apiName third-party-login\n\t * @apiGroup auth\n\t *\n\t * @apiParam {string} code\n\t * @apiParam {string} app_id\n\t *\n\t * @apiSuccess {string} success\n\t * @apiSuccess {string} is_need_bind 需要绑定用户 true\n\t * @apiSuccess {string} has_login    已登录，需要确认是否切换 true\n\t * @apiSuccess {string} change_token 已登录，切换token\n\t */\n\tpublic function thirdPartyLogin(Request $request)\n\t{\n\t\t$code = $request->input('code');\n\t\tif (empty($code)) {\n\t\t\tthrow new ErrorHttpException('Code码错误');\n\t\t}\n\t\t$appId = $request->input('app_id');\n\t\tif (empty($appId)) {\n\t\t\tthrow new ErrorHttpException('app_id错误');\n\t\t}\n\n\t\t$setting = ThirdPartyLoginLogic::instance()->getThirdPartyLoginChannelById($appId);\n\t\tif (!$setting) {\n\t\t\tthrow new ErrorHttpException('不支持该授权方式');\n\t\t}\n\t\t/**\n\t\t * @var SocialiteManager $socialite\n\t\t */\n\t\t$socialite = iloader()->get(SocialiteManager::class);\n\t\t$driver = $socialite->config(new Config([\n\t\t\t'client_id' => $setting['setting']['app_id'],\n\t\t\t'client_secret' => $setting['setting']['secret_key']\n\t\t]))->driver($appId)->stateless();\n\n\t\t$user = $driver->user($driver->getAccessToken($code));\n\t\t//获取第三方数据\n\t\t$userInfo = [\n\t\t\t'uid' => $user->uid,\n\t\t\t'username' => $user->username,\n\t\t\t'avatar' => $user->avatar ?? ''\n\t\t];\n\n\t\tif (empty($userInfo['username']) || empty($userInfo['uid'])) {\n\t\t\tthrow new ErrorHttpException('登录用户数据错误，请重试');\n\t\t}\n\n\t\t//创建用户和绑定关系\n\t\t$loginSetting = ThirdPartyLoginLogic::instance()->getDefaultLoginSetting();\n\t\t$thirdPartyUser = UserThirdParty::query()->where([\n\t\t\t'openid' => $userInfo['uid'],\n\t\t\t'username' => $userInfo['username'],\n\t\t\t'source' => $appId\n\t\t])->first();\n\n\t\tif (empty($thirdPartyUser)) {\n\t\t\t$thirdPartyUser = UserThirdParty::query()->create([\n\t\t\t\t'openid' => $userInfo['uid'],\n\t\t\t\t'username' => $userInfo['username'],\n\t\t\t\t'uid' => 0,\n\t\t\t\t'source' => $appId,\n\t\t\t]);\n\t\t}\n\n\t\t$username = $thirdPartyUser->username;\n\t\t//如果当前第三方用户绑定的用户为空，执行绑定操作\n\t\tif (empty($thirdPartyUser->uid)) {\n\t\t\tif (empty($loginSetting['is_need_bind'])) {\n\t\t\t\t//不需要绑定已有账户的话，直接创建新用户\n\t\t\t\t$username = 'tpl_' . $userInfo['username'] . $userInfo['uid'];\n\t\t\t\t$thirdPartyUser->uid = UserLogic::instance()->createBucket($username,$userInfo['avatar']);\n\t\t\t\t$thirdPartyUser->save();\n\t\t\t} else {\n\t\t\t\t$username = $userInfo['username'];\n\t\t\t\t$thirdPartyUser->uid = 0;\n\t\t\t}\n\t\t}else{\n\t\t\tUserLogic::instance()->updateUser([\n\t\t\t\t'id' => $thirdPartyUser->uid,\n\t\t\t\t'username' => $userInfo['username'],\n\t\t\t\t'avatar' => $userInfo['avatar']\n\t\t\t]);\n\t\t}\n\t\t//已登陆的用户校验是否需要切换用户S\n\t\t$sessionUser = $request->session->get('user');\n\t\tif ($sessionUser) {\n\t\t\t$LoginUserthirdParty = UserThirdParty::query()\n\t\t\t\t->where('uid', $sessionUser['uid'])\n\t\t\t\t->where('source', $appId)->first();\n\t\t\tif ($LoginUserthirdParty) {\n\t\t\t\t//如果当前登陆账户，已经绑定了第三方-账户一致，返回成功，账户不一致，提示切换\n\t\t\t\tif ($thirdPartyUser->uid) {//商城绑了文档\n\t\t\t\t\tif ($thirdPartyUser->uid != $sessionUser['uid']) {\n\t\t\t\t\t\t//4如果登陆用户和当前访问用户不一致\n\t\t\t\t\t\t$changeToken = 'temp_user_info_4' . date('YmdHis') . round(1000, 9999);\n\t\t\t\t\t\ticache()->set($changeToken, ['third_party_user_id' => $thirdPartyUser->id], 60 * 15);\n\t\t\t\t\t\treturn $this->data(['has_login' => 1, 'change_token' => $changeToken, 'message' => '当前登录账号非微擎账户绑定账号，是否继续登录？']);\n\t\t\t\t\t}\n\t\t\t\t} elseif (!$thirdPartyUser->uid) {\n\t\t\t\t\t//3文档绑了商城，商城没有绑文档-去登陆\n\t\t\t\t\t$sourceToken = 'temp_user_info_3_source' . date('YmdHis') . round(1000, 9999);\n\t\t\t\t\ticache()->set($sourceToken, ['third_party_user_id' => $thirdPartyUser->id, 'source' => $appId], 60 * 15);\n\t\t\t\t\treturn $this->data(['has_login' => 3, 'source_token' => $sourceToken, 'message' => '当前登录账号非微擎账户绑定账号，是否继续登录？']);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t//1当前登陆账户，没有绑定第三方-登陆账户也没有绑定第三方。商城没有绑文档，文档没有绑商城\n\t\t\t\tif (!$thirdPartyUser->uid) {\n\t\t\t\t\t//1文档没有绑商城，商城没有绑文档，如果切入用户，没有绑定账户，当前用户也没有绑定\n\t\t\t\t\t$bindToken = 'temp_user_info_1_unbind_two' . date('YmdHis') . round(1000, 9999);\n\t\t\t\t\ticache()->set($bindToken, ['third_party_user_id' => $thirdPartyUser->id], 60 * 15);\n\t\t\t\t\treturn $this->data(['has_login' => 2, 'bind_token' => $bindToken, 'message' => '是否绑定当前微擎账户于该登录账户？']);\n\t\t\t\t} else {\n\t\t\t\t\t//2文档没有绑商城，商城绑了文档-去切换\n\t\t\t\t\t$changeToken = 'temp_user_info_2' . date('YmdHis') . round(1000, 9999);\n\t\t\t\t\ticache()->set($changeToken, ['third_party_user_id' => $thirdPartyUser->id], 60 * 15);\n\t\t\t\t\treturn $this->data(['has_login' => 1, 'change_token' => $changeToken, 'message' => '当前登录账号非微擎账户绑定账号，是否继续登录？']);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t/*0如果文档没有登陆，没有绑账户去绑定\n\t\t---如果登陆了\n\t\t *1文档没有绑商城，商城没有绑文档-去绑定\n\t\t *2文档没有绑商城，商城绑了文档-去切换\n\t\t *3文档绑了商城，商城没有绑文档-去切换-去登陆\n\t\t *4文档绑了商城，商城绑了文档，用户不一致-去切换-致登陆\n\t\t **/\n\t\t//2已登陆的用户校验是否需要切换用户E\n\n\t\t$ret = $this->data($this->setThirdPartySession($request, $thirdPartyUser));\n\t\treturn $ret;\n\t}\n\n\t/**\n\t * @api {post} /common/auth/ThirdPartyUserCacheIn 文档绑了商城，商城没有绑文档切用户\n\t *\n\t * @apiName ThirdPartyUserCacheIn\n\t * @apiGroup auth\n\t *\n\t * @apiParam {string} bind_token 用于绑定的bind_token\n\t */\n\tpublic function ThirdPartyUserCacheIn(Request $request)\n\t{\n\t\t$user = $request->session->get('user');\n\t\tif (!$user) {\n\t\t\tthrow new ErrorHttpException('当前账户未登陆');\n\t\t}\n\t\t$changeToken = $request->input('source_token');\n\t\tif (empty($changeToken)) {\n\t\t\tthrow new ErrorHttpException('source_token错误');\n\t\t}\n\n\t\t$data = icache()->get($changeToken);\n\t\tif (isset($data['third_party_user_id'])) {\n\t\t\t$thirdPartyUser = UserThirdParty::query()->find($data['third_party_user_id']);\n\t\t\tif ($thirdPartyUser) {\n\t\t\t\t$username = $thirdPartyUser->username;\n\t\t\t\t$localUser = [\n\t\t\t\t\t'app_id' => $thirdPartyUser->source,\n\t\t\t\t\t'uid' => $thirdPartyUser->uid,\n\t\t\t\t\t'third-party-uid' => $thirdPartyUser->id,\n\t\t\t\t\t'username' => $username,\n\t\t\t\t];\n\n\t\t\t\t$request->session->destroy();\n\t\t\t\t//记录第三方登录app_id\n\t\t\t\t$request->session->set('user-source-app', $thirdPartyUser->source);\n\t\t\t\t$loginSetting = ThirdPartyLoginLogic::instance()->getDefaultLoginSetting();\n\t\t\t\t//需要绑定已有账户\n\t\t\t\tif (!empty($loginSetting['is_need_bind']) && empty($thirdPartyUser->uid)) {\n\t\t\t\t\t//保存第三方用户信息，触发用户绑定\n\t\t\t\t\t$request->session->set('third-party-user', $localUser);\n\t\t\t\t\treturn $this->data([\n\t\t\t\t\t\t'is_need_bind' => true\n\t\t\t\t\t]);\n\t\t\t\t} else {\n\t\t\t\t\tthrow new ErrorHttpException('当前可以直接登陆');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tthrow new ErrorHttpException('source_token已过期');\n\t}\n\n\t/**\n\t * @api {post} /common/auth/changeThirdPartyUser 切换用户\n\t *\n\t * @apiName changeThirdPartyUser\n\t * @apiGroup auth\n\t *\n\t * @apiParam {string} change_token 用于切换的change_token\n\t */\n\tpublic function changeThirdPartyUser(Request $request)\n\t{\n\t\t$user = $request->session->get('user');\n\t\tif (!$user) {\n\t\t\tthrow new ErrorHttpException('当前账户未登陆');\n\t\t}\n\t\t$changeToken = $request->input('change_token');\n\t\tif (empty($changeToken)) {\n\t\t\tthrow new ErrorHttpException('change_token错误');\n\t\t}\n\t\t$data = icache()->get($changeToken);\n\t\tif (isset($data['third_party_user_id'])) {\n\t\t\t$thirdPartyUser = UserThirdParty::query()->find($data['third_party_user_id']);\n\t\t\tif ($thirdPartyUser) {\n\t\t\t\treturn $this->data($this->setThirdPartySession($request, $thirdPartyUser));\n\t\t\t}\n\t\t}\n\t\tthrow new ErrorHttpException('change_token已过期');\n\t}\n\n\t/**\n\t * @api {post} /common/auth/bindThirdPartyUser 切换用户\n\t *\n\t * @apiName bindThirdPartyUser\n\t * @apiGroup auth\n\t *\n\t * @apiParam {string} bind_token 用于绑定的bind_token\n\t */\n\tpublic function bindThirdPartyUser(Request $request)\n\t{\n\t\t$user = $request->session->get('user');\n\t\tif (!$user) {\n\t\t\tthrow new ErrorHttpException('当前账户未登陆');\n\t\t}\n\t\t$changeToken = $request->input('bind_token');\n\t\tif (empty($changeToken)) {\n\t\t\tthrow new ErrorHttpException('bind_token错误');\n\t\t}\n\n\t\t$data = icache()->get($changeToken);\n\t\tif (isset($data['third_party_user_id'])) {\n\t\t\t$thirdPartyUser = UserThirdParty::query()->find($data['third_party_user_id']);\n\t\t\tif ($thirdPartyUser) {\n\t\t\t\tif (!$thirdPartyUser->uid) {\n\t\t\t\t\t$thirdPartyUser->uid = $user['uid'];\n\t\t\t\t\t$thirdPartyUser->save();\n\t\t\t\t\treturn $this->data($this->setThirdPartySession($request, $thirdPartyUser));\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tthrow new ErrorHttpException('bind_token已过期');\n\t}\n\n\tpublic function setThirdPartySession(Request $request, $thirdPartyUser)\n\t{\n\t\t$username = $thirdPartyUser->username;\n\t\t$localUser = [\n\t\t\t'app_id' => $thirdPartyUser->source,\n\t\t\t'uid' => $thirdPartyUser->uid,\n\t\t\t'third-party-uid' => $thirdPartyUser->id,\n\t\t\t'username' => $username,\n\t\t];\n\n\t\t$request->session->destroy();\n\t\t//记录第三方登录app_id\n\t\t$request->session->set('user-source-app', $thirdPartyUser->source);\n\t\t$loginSetting = ThirdPartyLoginLogic::instance()->getDefaultLoginSetting();\n\t\t//需要绑定已有账户\n\t\tif (!empty($loginSetting['is_need_bind']) && empty($thirdPartyUser->uid)) {\n\t\t\t//保存第三方用户信息，触发用户绑定\n\t\t\t$request->session->set('third-party-user', $localUser);\n\t\t\treturn [\n\t\t\t\t'is_need_bind' => true\n\t\t\t];\n\t\t} else {\n\t\t\t$request->session->set('user-source-app', $thirdPartyUser->source);\n\t\t\t$this->saveUserInfo($request->session, $thirdPartyUser->bindUser);\n\t\t\treturn 'success';\n\t\t}\n\t}\n\n\t/**\n\t * @api {post} /common/auth/third-party-login-bind 绑定用户\n\t *\n\t * @apiName third-party-login-bind\n\t * @apiGroup auth\n\t *\n\t * @apiParam {string} handle 操作类型bind：绑定 reg:注册\n\t * @apiParam {string} username 用户名\n\t * @apiParam {string} userpass 密码\n\t */\n\tpublic function thirdPartyLoginBind(Request $request)\n\t{\n\t\t$data = $this->validate($request, [\n\t\t\t'handle' => 'required',\n\t\t\t'username' => 'required',\n\t\t\t'userpass' => 'required'\n\t\t], [\n\t\t\t'handle.required' => '操作不能为空',\n\t\t\t'username.required' => '用户名不能为空',\n\t\t\t'userpass.required' => '密码不能为空'\n\t\t]);\n\t\t$thirdPartyUser = $request->session->get('third-party-user');\n\t\tif (!$thirdPartyUser) {\n\t\t\tthrow new ErrorHttpException('用户信息已过期请重新登陆', [], Setting::ERROR_NO_LOGIN);\n\t\t}\n\n\t\t$handle = $request->input('handle', 'bind');\n\n\t\t$UserThirdParty = UserThirdParty::query()->find($thirdPartyUser['third-party-uid']);\n\t\tif (!$UserThirdParty) {\n\t\t\tthrow new ErrorHttpException('请先授权');\n\t\t}\n\n\t\tif ($UserThirdParty->uid) {\n\t\t\tthrow new ErrorHttpException('用户信息已过期请重新登陆', [], Setting::ERROR_NO_LOGIN);\n\t\t}\n\n\t\t$msg = '注册成功';\n\t\tif ($handle == 'bind') {\n\t\t\t$msg = '绑定成功';\n\t\t\t//绑定已有用户\n\t\t\t$user = UserLogic::instance()->getByUserName($data['username']);\n\t\t\tif (empty($user)) {\n\t\t\t\tthrow new ErrorHttpException('用户名或密码错误，请检查');\n\t\t\t}\n\n\t\t\tif ($user->userpass != UserLogic::instance()->userPwdEncryption($user->username, $data['userpass'])) {\n\t\t\t\tthrow new ErrorHttpException('用户名或密码错误，请检查');\n\t\t\t}\n\n\t\t\t$userThirdPartyHas = UserThirdParty::query()->where('uid', $user->id)->first();\n\t\t\tif ($userThirdPartyHas) {\n\t\t\t\t//如果当前用户\n\t\t\t\tilogger()->channel('test')->debug('userThirdPartyHas-' . $userThirdPartyHas->id . '-new-userId-' . $user->id);\n//\t\t\t\tthrow new ErrorHttpException('当前账号已绑定其它账号，您可以选择重新注册或绑定其它账号。' . $userThirdPartyHas->id . '-' . $user->id);\n\t\t\t\tthrow new ErrorHttpException('当前账号已绑定其它账号，您可以选择重新注册或绑定其它账号');\n\t\t\t}\n\n\t\t\tif (!empty($user->is_ban)) {\n\t\t\t\tthrow new ErrorHttpException('您使用的用户已经被禁用，请联系管理员');\n\t\t\t}\n\t\t} else {//'reg'\n\t\t\t//新增\n\t\t\t$data = [\n\t\t\t\t'username' => trim($data['username']),\n\t\t\t\t'userpass' => trim($data['userpass']),\n\t\t\t];\n\t\t\t$data['remark'] = $request->input('remark', '');\n\n\t\t\ttry {\n\t\t\t\t$userId = UserLogic::instance()->createUser($data);\n\t\t\t\t$user = User::query()->find($userId);\n\t\t\t} catch (\\Throwable $e) {\n\t\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t\t}\n\t\t}\n\n\t\t$UserThirdParty->update([\n\t\t\t'uid' => $user->id,\n\t\t]);\n\n\t\t$request->session->destroy();\n\t\t//记录第三方登录app_id\n\t\t$request->session->set('user-source-app', $thirdPartyUser['app_id']);\n\t\t$this->saveUserInfo($request->session, $user);\n\n\t\treturn $this->data($msg);\n\t}\n\n\t/**\n\t * 解绑\n\t */\n\tpublic function unbind(Request $request)\n\t{\n\t\t$userSession = $request->session->get('user');\n\t\t$userSourceAppId = $request->session->get('user-source-app');\n\t\t$res = UserThirdParty::query()\n\t\t\t->where('source', '=', $userSourceAppId)\n\t\t\t->where('uid', '=', $userSession['uid'])\n\t\t\t->update(['uid' => 0]);\n\t\tif ($res) {\n\t\t\t//$this->logout($request);\n\t\t\treturn $this->data($res);\n\t\t}\n\t\tthrow new ErrorHttpException('解绑失败');\n\t}\n\n\tpublic function logout(Request $request)\n\t{\n\t\t$sourceApp = $request->session->get('user-source-app');\n\t\t$request->session->destroy();\n\t\tif ($sourceApp) {\n\t\t\t$setting = ThirdPartyLoginLogic::instance()->getThirdPartyLoginChannelById($sourceApp);\n\t\t\tif (!$setting) {\n\t\t\t\tthrow new ErrorHttpException('不支持该授权方式');\n\t\t\t}\n\t\t\t/**\n\t\t\t * @var SocialiteManager $socialite\n\t\t\t */\n\t\t\t$socialite = iloader()->get(SocialiteManager::class);\n\t\t\treturn $socialite->config(new Config([\n\t\t\t\t'client_id' => $setting['setting']['app_id'],\n\t\t\t\t'client_secret' => $setting['setting']['secret_key']\n\t\t\t]))->driver($sourceApp)->logout($this->response());\n\t\t} else {\n\t\t\t$utl = ienv('API_HOST') . 'admin-login';\n\t\t\treturn $this->response()->redirect($utl);\n\t\t}\n\t}\n\n\tpublic function getlogouturl(Request $request)\n\t{\n\t\t$utl = ienv('API_HOST') . 'common/auth/logout';\n\t\treturn $this->data($utl);\n\t}\n\n\tprivate function saveUserInfo(Session $session, $user)\n\t{\n\t\t$session->set('user', [\n\t\t\t'uid' => $user->id,\n\t\t\t'username' => $user->username,\n\t\t]);\n\t\t//用户在修改密码后，删除该值，触发退出操作\n\t\ticache()->set(sprintf(UserLogic::USER_LOGOUT_AFTER_CHANGE_PWD, $user->id), 1, 7 * 86400);\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Common/MenuController.php",
    "content": "<?php\n\nnamespace W7\\App\\Controller\\Common;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Model\\Logic\\MenuSettingLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass MenuController extends BaseController\n{\n\tpublic function setting(Request $request)\n\t{\n\t\t$setting = MenuSettingLogic::instance()->getMenuSetting();\n\t\t$list = $setting['list'] ?? [];\n\t\t$sorts = array_column($list, 'sort');\n\t\tarray_multisort($sorts, SORT_ASC, $list);\n\t\tforeach ($list as $index => &$item) {\n\t\t\t$item['id'] = $index;\n\t\t}\n\t\t$setting['list'] = array_values($list);\n\t\treturn $this->data($setting);\n\t}\n}"
  },
  {
    "path": "app/Controller/Common/UserController.php",
    "content": "<?php\n\nnamespace W7\\App\\Controller\\Common;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Model\\Entity\\UserOperateLog;\nuse W7\\App\\Model\\Logic\\MenuSettingLogic;\nuse W7\\App\\Model\\Logic\\UserLogic;\nuse W7\\App\\Model\\Logic\\UserOperateLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass UserController extends BaseController\n{\n\n\t/**\n\t * 用户详情\n\t * @param Request $request\n\t * @return array\n\t */\n\tpublic function info(Request $request){\n\t\t$param = $this->validate($request,[\n\t\t\t'username' => 'required|string'\n\t\t],[\n\t\t\t'username' => '用户名'\n\t\t]);\n\t\t$Logic = new UserLogic();\n\t\t$user = $Logic->getByUserName($param['username'])->setHidden(['userpass']);\n\t\treturn $this->data($user);\n\t}\n\n\tpublic function update(Request $request){\n\t\t$param = $this->validate($request,[\n\t\t\t'id'      => 'required|integer',\n\t\t\t'avatar'  => 'sometimes|required',\n\t\t\t'company' => 'sometimes|required',\n\t\t\t'resume'  => 'sometimes|required',\n\t\t\t'skill'   => 'sometimes|required',\n\t\t\t'address' => 'sometimes|required',\n\t\t],[\n\t\t\t'id'      => '用户id',\n\t\t\t'avatar'  => '头像',\n\t\t\t'company' => '公司和职称',\n\t\t\t'resume'  => '简介',\n\t\t\t'skill'   => '技能',\n\t\t\t'address' => '地址'\n\t\t]);\n\t\t$Logic = new UserLogic();\n\t\t$user = $Logic->updateUser($param);\n\t\treturn $this->data($user);\n\t}\n\n\t/**\n\t * 我的动态\n\t */\n\tpublic function operate(Request $request){\n\t\t$param = $this->validate($request,[\n\t\t\t'user_id' => 'required|integer'\n\t\t],[\n\t\t\t'user_id' => '用户id'\n\t\t]);\n\t\t$page\t= $request->input('page',1);\n\t\t$size \t= $request->input('page_size',20);\n\t\t$Logic\t= new UserOperateLogic();\n\t\t$param['operate'] = [UserOperateLog::CREATE,UserOperateLog::COLLECT];\n\t\treturn $this->data($Logic->lists($param,$page,$size));\n\t}\n\n}\n"
  },
  {
    "path": "app/Controller/Common/VerifyCodeController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Common;\n\nuse Gregwar\\Captcha\\CaptchaBuilder;\nuse Gregwar\\Captcha\\PhraseBuilder;\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass VerifyCodeController extends BaseController\n{\n\tconst CODE_LENGTH = 4;\n\t\n\tpublic function image(Request $request)\n\t{\n\t\ttry {\n\t\t\t$phrase = new PhraseBuilder();\n\t\t\t$code = $phrase->build(self::CODE_LENGTH);\n\n\t\t\t$builder = new CaptchaBuilder($code, $phrase);\n\t\t\t$builder->setBackgroundColor(255, 255, 255);\n\t\t\t$builder->setMaxAngle(25);\n\t\t\t$builder->setMaxBehindLines(0);\n\t\t\t$builder->setMaxFrontLines(0);\n\t\t\t$builder->build();\n\t\t\t$phrase = $builder->getPhrase();\n\t\t} catch (\\Exception $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t\t$request->session->set('img_code', $phrase);\n\n\t\tob_start();\n\t\t$builder->output();\n\t\t$image = ob_get_contents();\n\t\tob_end_clean();\n\n\t\t$data = [\n\t\t\t'img' => 'data:image/jpg;base64,'.base64_encode($image)\n\t\t];\n\n\t\tilogger()->debug('verify-code: '. $phrase);\n\t\treturn $this->data($data);\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Document/ChapterController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Document;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Document\\Chapter;\nuse W7\\App\\Model\\Entity\\Document\\ChapterApi;\nuse W7\\App\\Model\\Entity\\Document\\ChapterContent;\nuse W7\\App\\Model\\Entity\\Setting;\nuse W7\\App\\Model\\Entity\\Star;\nuse W7\\App\\Model\\Entity\\UserOperateLog;\nuse W7\\App\\Model\\Logic\\ChapterLogic;\nuse W7\\App\\Model\\Logic\\Document\\ChapterApi\\ChapterRecordLogic;\nuse W7\\App\\Model\\Logic\\Document\\ChapterApi\\ChapterRuleLogic;\nuse W7\\App\\Model\\Logic\\DocumentLogic;\nuse W7\\App\\Model\\Logic\\UserLogic;\nuse W7\\App\\Model\\Logic\\UserOperateLogic;\nuse W7\\App\\Model\\Logic\\UserShareLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass ChapterController extends BaseController\n{\n\t/**\n\t * @api {post} /document/chapter/ruleDemo 文档-mock规则数据\n\t * @apiName rule\n\t * @apiGroup Chapter\n\t *\n\t * @apiParam {Number} chapter_id 章节ID\n\t * @apiParam {Number} location_type 请求类型1请求2响应\n\t * @apiParam {Number} reponse_id 响应ID\n\t */\n\tpublic function ruleDemo(Request $request)\n\t{\n\t\t$params = $this->validate($request, [\n\t\t\t'chapter_id' => 'required|integer|min:1',\n\t\t\t'location_type' => 'required|in:1,2',\n\t\t\t'reponse_id' => 'integer'\n\t\t], [\n\t\t\t'chapter_id.required' => '文档id必填',\n\t\t\t'location_type.integer' => '请求类型',\n\t\t\t'reponse_id' => '响应ID',\n\t\t]);\n\t\t$reponseId = $params['reponse_id'] ? $params['reponse_id'] : 0;\n\t\t//获取rule参数样例\n\t\t$chapterDemoLogic = new ChapterRuleLogic($params['chapter_id']);\n\t\t$query = $chapterDemoLogic->getChapterRule($params['location_type'], $reponseId);\n\t\treturn $query;\n\t}\n\n\t/**\n\t * 某一个文档的目录\n\t * @param Request $request\n\t * @return array\n\t */\n\tpublic function catalog(Request $request)\n\t{\n\t\t$params = $this->validate($request, [\n\t\t\t'document_id' => 'required|integer|min:1',\n\t\t], [\n\t\t\t'document_id.required' => '文档id必填',\n\t\t\t'document_id.integer' => '文档id非法'\n\t\t]);\n\n\t\ttry {\n\t\t\t$result = ChapterLogic::instance()->getCatalog($params['document_id']);\n\n\t\t\t$user = $request->getAttribute('user');\n\n\t\t\tif (empty($user->isReader)) {\n\t\t\t\tthrow new ErrorHttpException('当前账户无权限阅读该文档', [], Setting::ERROR_NO_POWER);\n\t\t\t}\n\t\t\tif ($user && !empty($user->id)) {\n\t\t\t\tUserOperateLog::query()->create([\n\t\t\t\t\t'user_id' => $user->id,\n\t\t\t\t\t'document_id' => $params['document_id'],\n\t\t\t\t\t'chapter_id' => 0,\n\t\t\t\t\t'operate' => UserOperateLog::PREVIEW,\n\t\t\t\t\t'remark' => $user->username . '阅读文档'\n\t\t\t\t]);\n\t\t\t}\n\t\t\treturn $this->data($result);\n\t\t} catch (\\Exception $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t}\n\n\t/**\n\t * @api {post} /document/chapter/record 文档API-查看\n\t * @apiName record\n\t * @apiGroup document.Chapter\n\t *\n\t * @apiParam {Number} chapter_id 章节ID\n\t * @apiParam {Number} document_id 文档ID\n\t */\n\tpublic function record(Request $request)\n\t{\n\t\t$params = $this->validate($request, [\n\t\t\t'document_id' => 'required|integer|min:1',\n\t\t\t'chapter_id' => 'required|integer|min:1'\n\t\t], [\n\t\t\t'document_id.required' => '文档id必填',\n\t\t\t'document_id.integer' => '文档id非法',\n\t\t\t'chapter_id.required' => '章节id必填',\n\t\t\t'chapter_id.integer' => '章节id非法'\n\t\t]);\n\t\t$result = [\n\t\t\t'record' => null,\n\t\t];\n\t\t$chapter = ChapterLogic::instance()->getById($params['chapter_id'], $params['document_id']);\n\t\tif ($chapter) {\n\t\t\t$showRecord = $request->post('show_record', 0);\n\t\t\tif ($showRecord && $chapter->content->layout == 1) {\n\t\t\t\t$obj = new ChapterRecordLogic($chapter->id);\n\t\t\t\t$result['record'] = $obj->showRecord();\n\t\t\t}\n\t\t}\n\t\treturn $this->data($result);\n\t}\n\n\t/**\n\t * @api {post} /document/chapter/detail 文档内容-前端查看\n\t * @apiName detail\n\t * @apiGroup document.Chapter\n\t *\n\t * @apiParam {Number} chapter_id 章节ID\n\t * @apiParam {Number} document_id 文档ID\n\t */\n\tpublic function detail(Request $request)\n\t{\n\t\t$params = $this->validate($request, [\n\t\t\t'document_id' => 'required|integer|min:1',\n\t\t\t'chapter_id' => 'required|integer|min:1'\n\t\t], [\n\t\t\t'document_id.required' => '文档id必填',\n\t\t\t'document_id.integer' => '文档id非法',\n\t\t\t'chapter_id.required' => '章节id必填',\n\t\t\t'chapter_id.integer' => '章节id非法'\n\t\t]);\n\t\t$shareKey = $request->post('share_key');\n\n\t\ttry {\n\t\t\t$shareInfo = [];\n\t\t\tif ($shareKey) {\n\t\t\t\t$shareInfo = UserShareLogic::instance()->getUidAndChapterByShareKey($shareKey);\n\t\t\t}\n\t\t\t$chapter = ChapterLogic::instance()->getById($params['chapter_id'], $params['document_id']);\n\n\t\t\t$user = $request->getAttribute('user');\n\t\t\tif (empty($user->isReader)) {\n\t\t\t\tthrow new ErrorHttpException('当前账户无权限阅读该文档', [], Setting::ERROR_NO_POWER);\n\t\t\t}\n\t\t\tif (!empty($user->id)) {\n\t\t\t\tUserOperateLog::query()->create([\n\t\t\t\t\t'user_id' => $user->id,\n\t\t\t\t\t'document_id' => $params['document_id'],\n\t\t\t\t\t'chapter_id' => $params['chapter_id'],\n\t\t\t\t\t'operate' => UserOperateLog::PREVIEW,\n\t\t\t\t\t'remark' => $user->username . '浏览章节' . $chapter->name\n\t\t\t\t]);\n\t\t\t\t//如果当前用户不是分享者并且是当前章节时，添加分享记录\n\t\t\t\tif ($shareInfo && $shareInfo[0] != $user->id && $shareInfo[1] == $params['chapter_id']) {\n\t\t\t\t\tif (!UserOperateLog::query()->where('user_id', '=', $shareInfo[0])->where('target_user_id', '=', $user->id)->where('chapter_id', '=', $params['chapter_id'])->exists()) {\n\t\t\t\t\t\t$sharerUser = UserLogic::instance()->getByUid($shareInfo[0]);\n\t\t\t\t\t\tUserOperateLog::query()->create([\n\t\t\t\t\t\t\t'user_id' => $shareInfo[0],\n\t\t\t\t\t\t\t'document_id' => $params['document_id'],\n\t\t\t\t\t\t\t'chapter_id' => $params['chapter_id'],\n\t\t\t\t\t\t\t'target_user_id' => $user->id,\n\t\t\t\t\t\t\t'operate' => UserOperateLog::SHARE,\n\t\t\t\t\t\t\t'remark' => $sharerUser->username . '分享链接' . UserShareLogic::instance()->getShareUrl($shareInfo[0], $params['document_id'], $params['chapter_id']) . '给' . $user->username\n\t\t\t\t\t\t]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} catch (\\Exception $e) {\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\n\t\tif (!$chapter) {\n\t\t\tthrow new ErrorHttpException('该章节不存在！', [], Setting::ERROR_NO_FIND);\n\t\t}\n\n\t\t$document = DocumentLogic::instance()->getById($params['document_id']);\n\t\t$creator = UserOperateLogic::instance()->getByChapterAndOperate($chapter->id, UserOperateLog::CREATE);\n\t\tif ($creator) {\n\t\t\t$author = $creator->user;\n\t\t} else {\n\t\t\t$author = $document->user;\n\t\t}\n\n\t\tif (!empty($user->id)) {\n\t\t\t$star = Star::query()->where('user_id', '=', $user->id)->where('chapter_id', '=', $chapter->id)->first();\n\t\t}\n\t\t$api = null;\n\n\t\tif ($chapter->content->layout == ChapterContent::LAYOUT_HTTP) {\n\t\t\t$api = ChapterApi::query()->where('chapter_id', $chapter->id)->first();\n\t\t\tif (!$chapter->content->content) {\n\t\t\t\t$markdownText = '#';\n\t\t\t\t//如果是导入的，没有生成文档的数据，进行生成文档并标记\n\t\t\t\t$chapterRecordLogic = new ChapterRecordLogic($chapter->id);\n\t\t\t\t$record = $chapterRecordLogic->showRecord();\n\t\t\t\tif ($record) {\n\t\t\t\t\t$chapterRecordLogic = new ChapterRecordLogic($chapter->id);\n\t\t\t\t\t$markdownTextReplay = $chapterRecordLogic->recordToMarkdown($record, 1);\n\t\t\t\t\tif ($markdownTextReplay) {\n\t\t\t\t\t\t$markdownText = $markdownTextReplay;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t$chapter->content->content = $markdownText;\n\t\t\t\t$chapter->content->save();\n\t\t\t}\n\t\t}\n\n\t\t$result = [\n\t\t\t'id' => $chapter->id,\n\t\t\t'parent_id' => $chapter->parent_id,\n\t\t\t'name' => $chapter->name,\n\t\t\t'document_id' => $chapter->document_id,\n\t\t\t'created_at' => $chapter->created_at->toDateTimeString(),\n\t\t\t'updated_at' => $chapter->updated_at->toDateTimeString(),\n\t\t\t'content' => $chapter->content->content,\n\t\t\t'star_id' => !empty($star) ? $star->id : '',\n\t\t\t'prev_item' => [\n\t\t\t\t'id' => $chapter->prevItem->id ?? '',\n\t\t\t\t'name' => $chapter->prevItem->name ?? '',\n\t\t\t],\n\t\t\t'next_item' => [\n\t\t\t\t'id' => $chapter->nextItem->id ?? '',\n\t\t\t\t'name' => $chapter->nextItem->name ?? '',\n\t\t\t],\n\t\t\t'author' => [\n\t\t\t\t'uid' => $author->id,\n\t\t\t\t'username' => $author->username,\n\t\t\t],\n\t\t\t'document' => $document,\n\t\t\t'api' => $api,\n\t\t\t'navigation' => $this->buildNavigationSun($params['chapter_id'])\n\t\t];\n\n\t\t$showRecord = $request->post('show_record', 0);\n\t\tif ($showRecord && $chapter->content->layout == 1) {\n\t\t\t$obj = new ChapterRecordLogic($chapter->id);\n\t\t\t$result['record'] = $obj->showRecord();\n\t\t}\n\n\t\treturn $this->data($result);\n\t}\n\n\t/**\n\t * @api {get} /document/chapter/search 文档搜索\n\t *\n\t * @apiName search\n\t * @apiGroup chapter\n\t *\n\t * @apiParam {Array} data\n\t * @apiParam {Array} data.data 文档搜索列表\n\t * @apiParam {String} data.data.name 文档标题\n\t * @apiParam {String} data.data.content 文档内容\n\t *\n\t * @apiSuccessExample {json} Success-Response:\n\t * {\"status\":true,\"code\":200,\"data\":{\"current_page\":1,\"data\":[{\"name\":\"aaa\",\"id\":1130,\"chapter_id\":2030,\"content\":\"> GET \\/222\\n\\n\\n\\n### 请求\\n\\n\\n\\n\\naasd23\",\"layout\":1}],\"first_page_url\":\"\\/?page=1\",\"from\":1,\"last_page\":1,\"last_page_url\":\"\\/?page=1\",\"next_page_url\":null,\"path\":\"\\/\",\"per_page\":10,\"prev_page_url\":null,\"to\":1,\"total\":1},\"message\":\"ok\"}\n\t */\n\tpublic function search(Request $request)\n\t{\n\t\t$this->validate($request, [\n\t\t\t'document_id' => 'required|integer|min:1',\n\t\t\t'keywords' => 'required',\n\t\t], [\n\t\t\t'document_id.required' => '文档id必填',\n\t\t\t'document_id.integer' => '文档id非法',\n\t\t\t'keywords.required' => '关键字必填',\n\t\t]);\n\n\t\t$page = intval($request->input('page', 1));\n\t\t$pageSize = intval($request->input('page_size', 10));\n\t\t$keyword = $request->input('keywords');\n\t\t$documentId = intval($request->input('document_id'));\n\n\t\tif (!$keyword) {\n\t\t\tthrow new ErrorHttpException('没有关键词');\n\t\t}\n\n\t\t$chapterList = Chapter::query()\n\t\t\t->leftJoin('document_chapter_content', 'document_chapter_content.chapter_id', 'document_chapter.id')\n\t\t\t->where([\n\t\t\t\t['document_chapter.document_id', $documentId],\n\t\t\t\t['document_chapter_content.content', 'like', '%' . $keyword . '%'],\n\t\t\t])\n\t\t\t->orWhere([\n\t\t\t\t['document_chapter.document_id', $documentId],\n\t\t\t\t['document_chapter.is_dir', 0],\n\t\t\t\t['document_chapter.name', 'like', '%' . $keyword . '%'],\n\t\t\t])\n\t\t\t->select(['document_chapter.name', 'document_chapter_content.*'])\n\t\t\t->paginate($pageSize, '*', 'page', $page)->toArray();\n\n\t\tif (count($chapterList['data'])) {\n\t\t\tforeach ($chapterList['data'] as $key => $val) {\n\t\t\t\t//导航\n\t\t\t\t$chapterList['data'][$key]['navigation'] = $this->buildNavigationSun($val['chapter_id']);\n\t\t\t}\n\t\t}\n\n\t\treturn $this->data($chapterList);\n\t}\n\n\tpublic function buildNavigationSun($chapterId, $str = '', $i = 0)\n\t{\n\t\t$i++;\n\t\tif ($i > 50) {\n\t\t\t//循环大于100，不再处理\n\t\t\treturn $str;\n\t\t}\n\t\t$chapter = Chapter::query()->find($chapterId);\n\t\tif ($chapter) {\n\t\t\tif (!$str) {\n\t\t\t\t//如果是根级\n\t\t\t\t$str = $chapter->name;\n\t\t\t} else {\n\t\t\t\t//如果是上级\n\t\t\t\t$str = $chapter->name . '>' . $str;\n\t\t\t}\n\t\t\tif ($chapter->parent_id) {\n\t\t\t\t$str = $this->buildNavigationSun($chapter->parent_id, $str);\n\t\t\t}\n\t\t}\n\t\treturn $str;\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Document/DocumentController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Document;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Setting;\nuse W7\\App\\Model\\Entity\\UserOperateLog;\nuse W7\\App\\Model\\Logic\\DocumentLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass DocumentController extends BaseController\n{\n\tpublic function detail(Request $request)\n\t{\n\t\t$params = $this->validate($request, [\n\t\t\t'document_id' => 'required|integer|min:1',\n\t\t], [\n\t\t\t'document_id.required' => '文档id必填',\n\t\t\t'document_id.integer' => '文档id非法'\n\t\t]);\n\t\t$res = DocumentLogic::instance()->getById($params['document_id']);\n\t\tif (!$res) {\n\t\t\tthrow new ErrorHttpException('当前文档不存在', [],Setting::ERROR_NO_POWER);\n\t\t}\n\n\t\t$user = $request->getAttribute('user');\n\t\tif (empty($user->isReader)) {\n\t\t\tthrow new ErrorHttpException('当前账户无权限阅读该文档', [],Setting::ERROR_NO_POWER);\n\t\t}\n\t\tif ($user && !empty($user->id)) {\n\t\t\tUserOperateLog::query()->create([\n\t\t\t\t'user_id' => $user->id,\n\t\t\t\t'document_id' => $params['document_id'],\n\t\t\t\t'chapter_id' => 0,\n\t\t\t\t'operate' => UserOperateLog::PREVIEW\n\t\t\t]);\n\t\t}\n\n\t\t$res = DocumentLogic::instance()->getById($params['document_id']);\n\t\treturn $this->data($res);\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Document/DocumentHomeController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Document;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Logic\\DocumentHomeLogic;\nuse W7\\App\\Model\\Logic\\DocumentSearchLogic;\nuse W7\\App\\Model\\Logic\\HomepageSettingLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass DocumentHomeController extends BaseController\n{\n\n\n\t/**\n\t * @api {get} /document/home 前端首页数据\n\t * @apiName home\n\t * @apiGroup Document.home\n\t *\n\t */\n\tpublic function getDocumentHome(Request $request){\n\t\t//获取配置信息\n\t\t$set = HomepageSettingLogic::instance()->getHomeSet();\n\t    if (!$set['open_home']['is_open']){\n\t    \tthrow new ErrorHttpException('首页已关闭');\n\t\t}\n        //公告\n\t    $notice = DocumentHomeLogic::instance()->getDocumentNotice();\n\t    //首页类型一\n\t\t$typeList_I = DocumentHomeLogic::instance()->getDocumentTypeI();\n\t\t//首页类型二\n\t\t$typeList_II = DocumentHomeLogic::instance()->getDocumentTypeII();\n\t\t$data = [\n\t\t\t'set' => $set,\n\t\t\t'notice' => $notice,\n\t\t\t'middle_list' => $typeList_I,\n\t\t\t'bottom_list' => $typeList_II,\n\t\t];\n\t\treturn $this->data($data);\n\t}\n\n\n\t/**\n\t * @api {get} /document/home/check 检测首页是否开启\n\t * @apiName check\n\t * @apiGroup Document.home\n\t *\n\t * @apiSuccessExample {json} Success-Response:\n\t * {\"status\":true,\"code\":200,\"data\":{\"is_open\":1,\"url\":\"http:\\/\\/192.168.168.99:80\"},\"message\":\"ok\"}\n\t */\n\tpublic function checkHome(){\n\t\t$set = HomepageSettingLogic::instance()->getOpenHome();\n\t\treturn $this->data($set);\n\t}\n\n\n\n\t/**\n\t * @api {post} /document/home/search 前端首页搜索接口\n\t * @apiName  search\n\t * @apiGroup Document.home\n\t *\n\t * @apiParam {String} keywords 关键词\n\t * @apiParam {Number} page 页码\n\t * @apiParam {Number} page_size 页数\n\t */\n\t public function search(Request $request){\n\t\t $page = intval($request->input('page', 1));\n\t\t $pageSize = intval($request->input('page_size', 10));\n\t\t $keyword = $request->input('keywords','');\n\t\t //记录搜索词\n\t\t DocumentSearchLogic::instance()->addSearchHotWord($keyword);\n\t\t //搜索列表\n\t\t $data = DocumentHomeLogic::instance()->searchDocument($keyword,$page,$pageSize);\n         return  $this->data($data);\n\t }\n\n\t/**\n\t * @api {get} /document/home/search-hot 获取搜索热词列表\n\t * @apiName  search-hot\n\t * @apiGroup Document.home\n\t *\n\t * @apiSuccessExample {json} Success-Response:\n\t * {\"status\":true,\"code\":200,\"data\":[\"7\",\"666\",\"111\",\"22\",\"kkk\"],\"message\":\"ok\"}\n\t */\n\t public function getSearchHot(){\n\t \t$data = DocumentSearchLogic::instance()->getSearchHotList(3);\n\t \treturn $this->data($data);\n\t }\n\n\n}\n"
  },
  {
    "path": "app/Controller/Document/FeedbackController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Document;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\DocumentFeedback;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass FeedbackController extends BaseController\n{\n\n\t/**\n\t * 提交反馈\n\t * @api {post} /document/feedback/add 文档API-提交\n\t * @apiName add\n\t * @apiGroup document.Feedback\n\t *\n\t * @apiParam {Number} document_id 文档ID\n\t * @apiParam {String} type 问题类型  格式以 , 隔开\n\t * @apiParam {String} content 问题内容\n\t * @apiParam {Array}  images 图片\n\t */\n\tpublic function add(Request $request)\n\t{\n\t\t//验证\n\t\t$params = $this->validate($request,[\n\t\t\t'document_id' => 'required|integer|min:1',\n\t\t\t'type' => 'string|required',\n\t\t\t'content' => 'string|required|max:300'\n\t\t],[\n\t\t\t'document_id.required' => '文档id必填',\n\t\t\t'document_id.min' => '文档id最小为0',\n\t\t\t'type.required' => '问题类型必选',\n\t\t\t'content.required' => '反馈内容必填',\n\t\t\t'content.max' => '反馈内容最大300个字符'\n\t\t]);\n\n\t\t$user = $request->getAttribute('user');\n\t\t//图片\n\t\t$images = $request->post('images');\n\n\t\t$result = DocumentFeedback::query()->create([\n\t\t\t'user_id' => $user->id ? : 0,\n\t\t\t'document_id' => $params['document_id'],\n\t\t\t'type' => trim($params['type']),\n\t\t\t'content' => htmlspecialchars(trim($params['content']),ENT_QUOTES),\n\t\t\t'images'  => $images ? json_encode($images) : ''\n\t\t]);\n\n\t\tif (!$result) {\n\t\t\tthrow new ErrorHttpException('提交反馈失败');\n\t\t}\n\n\t\treturn $this->data('success');\n\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Document/MockApiReponseController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Document;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Model\\Logic\\Document\\MockApi\\MockApiReponseLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass MockApiReponseController extends BaseController\n{\n\tpublic function index(Request $request, $id, $router)\n\t{\n\t\t$mockApiReponseLogic = new MockApiReponseLogic();\n\t\t$ret = $mockApiReponseLogic->mackMockApiReponse($request, $id, $router);\n\t\treturn $this->response()->json($ret);\n\t}\n}\n"
  },
  {
    "path": "app/Controller/Install/IndexController.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Controller\\Install;\n\nuse W7\\App\\Controller\\BaseController;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Logic\\Install\\InstallLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass IndexController extends BaseController\n{\n\tpublic function config(Request $request)\n\t{\n\t\t$data = [\n\t\t\t'is_install' => $this->isInstall(),\n\t\t\t'api_host' => ienv('API_HOST'),\n\t\t\t'db_database' => ienv('DATABASE_DEFAULT_DATABASE'),\n\t\t];\n\t\treturn $this->data($data);\n\t}\n\n\tpublic function isInstall()\n\t{\n\t\t$value = 0;\n\t\t$isInstall = file_exists(RUNTIME_PATH . '/install.lock');\n\t\tif ($isInstall) {\n\t\t\t$value = 1;\n\t\t\tif (ienv('API_HOST')) {\n\t\t\t\t//已安装已重启\n\t\t\t\t$value = 2;\n\t\t\t}\n\t\t} else {\n\t\t\t//如果吗没有install\n\t\t\t$dateBasePwd = ienv('DATABASE_DEFAULT_PASSWORD', '');\n\t\t\t$dateBase = ienv('DATABASE_DEFAULT_DATABASE', '');\n\t\t\tif ($dateBasePwd || $dateBase) {\n\t\t\t\t//如果数据库已安装或者配置\n\t\t\t\t$value = 3;\n\t\t\t}\n\t\t}\n\t\treturn $value;\n\t}\n\n\t/**\n\t * @api {post} /install/systemDetection 系统检测\n\t * @apiName systemDetection\n\t * @apiGroup install\n\t *\n\t * @apiSuccessExample {json} Success-Response:\n\t * {\"status\":true,\"code\":200,\"data\":{\"composer_install\":{\"name\":\"composer install\",\"result\":\"已执行\",\"enable\":true},\"system\":{\"name\":\"服务器操作系统\",\"result\":\"Linux 9c290f2b8a1a 4.19.76-linuxkit #1 SMP Fri Apr 3 15:53:26 UTC 2020 x86_64\",\"enable\":true},\"php_version\":{\"name\":\"PHP版本\",\"result\":\"7.2.24\",\"enable\":true},\"base_path\":{\"name\":\"安装程序目录可写\",\"result\":\"\\/home\\/wwwroot\\/doc\",\"enable\":true},\"runtime_path\":{\"name\":\"安装程序运行目录可写\",\"result\":\"\\/home\\/wwwroot\\/doc\\/runtime\",\"enable\":true},\"swoole\":{\"name\":\"swoole扩展\",\"result\":\"swoole版本4.4.4\",\"enable\":true},\"pdo_mysql\":{\"name\":\"mysql扩展\",\"result\":\"已安装pdo_mysql扩展\",\"enable\":true},\"mbstring\":{\"name\":\"mbstring扩展\",\"result\":\"已安装mbstring扩展\",\"enable\":true},\"diskfreespace\":{\"name\":\"磁盘空间\",\"result\":\"36.78G\",\"enable\":true}},\"message\":\"ok\"}\n\t */\n\tpublic function systemDetection(Request $request)\n\t{\n\t\t$diskfreespace = diskfreespace(BASE_PATH);\n\t\t$diskfreespaceG = (ceil($diskfreespace / 1000 / 1000 / 10) / 100);\n\t\t$isInstall = $this->isInstall();\n\t\t$installMsg = '确认项目服务是否重启，重启请操作命令： sh restart.sh';\n\t\tif ($isInstall) {\n\t\t\tif ($isInstall == 3) {\n\t\t\t\t$data = [\n\t\t\t\t\t['id' => 1, 'name' => '数据库已安装', 'result' => '数据库已安装', 'enable' => 2],\n\t\t\t\t];\n\t\t\t} else {\n\t\t\t\t$data = [\n\t\t\t\t\t['id' => 1, 'name' => '服务重启', 'result' => $isInstall ? $installMsg : '未安装', 'enable' => $isInstall],\n\t\t\t\t];\n\t\t\t}\n\t\t} else {\n\t\t\t$data = [\n\t\t\t\t['id' => 1, 'name' => '服务重启', 'result' => $isInstall ? $installMsg : '未安装', 'enable' => $isInstall],\n\t\t\t\t['id' => 2, 'name' => '服务器操作系统', 'result' => php_uname(), 'enable' => true],\n\t\t\t\t['id' => 3, 'name' => 'PHP版本', 'result' => PHP_VERSION >= 7.2 ? PHP_VERSION : 'PHP版本7.2及以上', 'enable' => PHP_VERSION >= 7.2 ? true : false],\n\t\t\t\t['id' => 4, 'name' => '安装程序目录可写', 'result' => is_writable(BASE_PATH) ? BASE_PATH : BASE_PATH . '不可写', 'enable' => is_writable(BASE_PATH) ? true : false],\n\t\t\t\t['id' => 5, 'name' => '安装程序运行目录可写', 'result' => is_writable(RUNTIME_PATH) ? RUNTIME_PATH : '不可写', 'enable' => is_writable(RUNTIME_PATH) ? true : false],\n\t\t\t\t['id' => 6, 'name' => 'swoole扩展', 'result' => (extension_loaded('swoole') & swoole_version() >= '4.3.0') ? 'swoole版本' . swoole_version() : 'swoole版本4.3.0及以上', 'enable' => (extension_loaded('swoole') & swoole_version() >= '4.3.0') ? true : false],\n\t\t\t\t['id' => 7, 'name' => 'mysql扩展', 'result' => extension_loaded('pdo_mysql') ? '已安装pdo_mysql扩展' : '未安装pdo_mysql扩展', 'enable' => extension_loaded('pdo_mysql') ? true : false],\n\t\t\t\t['id' => 8, 'name' => 'mbstring扩展', 'result' => extension_loaded('mbstring') ? '已安装mbstring扩展' : '未安装mbstring扩展', 'enable' => extension_loaded('mbstring') ? true : false],\n//\t\t\t\t['id' => 9, 'name' => 'exec命令', 'result' => function_exists('exec') ? '支持' : '不支持', 'enable' => function_exists('exec') ? true : false],\n\t\t\t\t['id' => 10, 'name' => '磁盘空间', 'result' => ($diskfreespace > 200000000) ? $diskfreespaceG . 'G' : '存储空间200M以上', 'enable' => ($diskfreespace > 200000000) ? true : false],\n\t\t\t\t['id' => 11, 'name' => 'redis扩展', 'result' => extension_loaded('redis') ? '已安装redis扩展' : '未安装redis扩展', 'enable' => extension_loaded('redis') ? true : false],\n\t\t\t];\n\t\t}\n\t\treturn $this->data($data);\n\t}\n\n\t/**\n\t * @api {post} /install/install 系统安装\n\t * @apiName install\n\t * @apiGroup install\n\t *\n\t * @apiParam {String} api_host 服务器地址\n\t * @apiParam {String} db_database 数据库名称\n\t * @apiParam {String} db_host 数据库地址\n\t * @apiParam {String} db_username 数据库用户名\n\t * @apiParam {String} db_password 数据库密码\n\t * @apiParam {String} db_prefix 数据库表前缀\n\t * @apiParam {String} admin_username 管理员账户\n\t * @apiParam {String} admin_password 管理员密码\n\t * @apiParam {String} cache_driver 缓存驱动 选项：redis\n\t * @apiParam {String} cache_host 缓存服务器地址（redis时填写）\n\t *\n\t * @apiSuccessExample {json} Success-Response:\n\t * {\"status\":true,\"code\":200,\"data\":\"安装已完成！提示：请按照文档配置，重启相关服务\",\"message\":\"ok\"}\n\t */\n\tpublic function install(Request $request)\n\t{\n\t\t$params = $this->validate($request, [\n\t\t\t'api_host' => 'required',\n\t\t\t'db_database' => 'required',\n\t\t\t'db_host' => 'required',\n\t\t\t'db_username' => 'required',\n\t\t\t'db_password' => 'required',\n\t\t\t'db_prefix' => 'required',\n\t\t\t'admin_username' => 'required',\n\t\t\t'admin_password' => 'required',\n\t\t\t'cache_host' => 'string',\n\t\t\t'option' => 'required',\n\t\t], [\n\t\t\t'api_host' => '服务器地址',\n\t\t\t'db_database' => '数据库',\n\t\t\t'db_host' => '数据库地址',\n\t\t\t'db_username' => '数据库用户名',\n\t\t\t'db_password' => '数据库密码',\n\t\t\t'db_prefix' => '数据库表前缀',\n\t\t\t'admin_username' => '管理员密码',\n\t\t\t'admin_password' => '管理员账户',\n\t\t\t'cache_host' => '缓存服务器',\n\t\t]);\n\t\t$apiHost = explode(':', $params['api_host']);\n\t\tif (count($apiHost) < 3 || (!is_numeric($apiHost[2]))) {\n\t\t\tthrow new ErrorHttpException('请填写协议与端口号');\n\t\t}\n\t\t$params['api_host'] = $apiHost[0] . ':' . $apiHost[1] . '/';\n\t\t$params['server_port'] = $apiHost[2];\n\n\t\t$dbHost = explode(':', $params['db_host']);\n\t\tif (count($dbHost) < 2 || (!is_numeric($dbHost[1]))) {\n\t\t\tthrow new ErrorHttpException('请填写数据库端口号');\n\t\t}\n\t\t$params['db_host'] = $dbHost[0];\n\t\t$params['db_port'] = $dbHost[1];\n\n\t\t$params['cache_driver'] = 'redis';\n\t\tif ($params['cache_host'] == 'db') {\n\t\t\t$params['cache_driver'] = 'db';\n\t\t} else {\n\t\t\t$cacheHost = explode(':', $params['cache_host']);\n\t\t\tif (count($cacheHost) < 2 || (!is_numeric($cacheHost[1]))) {\n\t\t\t\tthrow new ErrorHttpException('请填写redis端口号');\n\t\t\t}\n\t\t\t$params['cache_host'] = $cacheHost[0];\n\t\t\t$params['cache_port'] = $cacheHost[1];\n\t\t}\n\n\t\t$installLogic = new InstallLogic();\n\t\t$data = $installLogic->install($params);\n\t\treturn $this->data($data);\n\t}\n}\n"
  },
  {
    "path": "app/Exception/ErrorHttpException.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Exception;\n\nuse W7\\Core\\Exception\\ResponseExceptionAbstract;\n\nclass ErrorHttpException extends ResponseExceptionAbstract\n{\n\tpublic function __construct($message = '', $data = [], $code = 0, \\Throwable $previous = null)\n\t{\n\t\tif (empty($code)) {\n\t\t\t$code = '500';\n\t\t}\n\t\t$message = json_encode([\n\t\t\t'status' => false,\n\t\t\t'code' => $code,\n\t\t\t'data' => $data,\n\t\t\t'message' => $message,\n\t\t], JSON_UNESCAPED_UNICODE);\n\t\tparent::__construct($message, 200, $previous);\n\t}\n}\n"
  },
  {
    "path": "app/Exception/InternalException.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Exception;\n\nuse W7\\Core\\Exception\\ResponseExceptionAbstract;\n\nclass InternalException extends ResponseExceptionAbstract\n{\n\tpublic function __construct($message = '', $code = 0, \\Throwable $previous = null)\n\t{\n\t\tparent::__construct($message, 500, $previous);\n\t}\n}\n"
  },
  {
    "path": "app/Handler/Cache/DbHandler.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Handler\\Cache;\n\nuse W7\\App\\Model\\Service\\DbCacheLogic;\nuse W7\\Core\\Cache\\Handler\\HandlerAbstract;\n\nclass DbHandler extends HandlerAbstract\n{\n\tprotected $storage;\n\n\tpublic static function connect($config): HandlerAbstract\n\t{\n\t\t$cacheDb = (new DbCacheLogic());\n\t\treturn new static($cacheDb);\n\t}\n\n\tpublic function set($key, $value, $ttl = null)\n\t{\n\t\treturn $this->storage->set($key, $value, $ttl);\n\t}\n\n\tpublic function get($key, $default = null)\n\t{\n\t\treturn $this->storage->get($key);\n\t}\n\n\tpublic function has($key)\n\t{\n\t\treturn $this->storage->has($key);\n\t}\n\n\tpublic function setMultiple($values, $ttl = null)\n\t{\n\t\treturn $this->storage->setMultiple($values);\n\t}\n\n\tpublic function getMultiple($keys, $default = null)\n\t{\n\t\treturn $this->storage->getMultiple($keys);\n\t}\n\n\tpublic function delete($key)\n\t{\n\t\treturn $this->storage->delete($key);\n\t}\n\n\tpublic function deleteMultiple($keys)\n\t{\n\t\treturn $this->storage->deleteMultiple($keys);\n\t}\n\n\tpublic function clear()\n\t{\n\t\treturn $this->storage->clear();\n\t}\n}\n"
  },
  {
    "path": "app/Handler/Exception/ExceptionHandler.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Handler\\Exception;\n\nuse W7\\App\\Exception\\InternalException;\nuse function GuzzleHttp\\Psr7\\build_query;\nuse Overtrue\\Socialite\\Config;\nuse Overtrue\\Socialite\\SocialiteManager;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Document;\nuse W7\\App\\Model\\Logic\\DocumentLogic;\nuse W7\\App\\Model\\Logic\\ThirdPartyLoginLogic;\nuse W7\\Core\\Exception\\RouteNotAllowException;\nuse W7\\Core\\Exception\\RouteNotFoundException;\nuse W7\\Core\\Exception\\ValidatorException;\nuse W7\\Core\\Session\\Session;\nuse W7\\Core\\View\\View;\nuse W7\\Http\\Message\\Server\\Response;\nuse W7\\Core\\Exception\\Handler\\ExceptionHandler as ExceptionHandlerAbstract;\n\nclass ExceptionHandler extends ExceptionHandlerAbstract\n{\n\tpublic function handle(\\Throwable $e): Response\n\t{\n\t\tif ($e instanceof RouteNotFoundException || $e instanceof RouteNotAllowException) {\n\t\t\t$request = icontext()->getRequest();\n\t\t\t$route = $request->getUri()->getPath();\n\t\t\tif ($request->getQueryParams()) {\n\t\t\t\t$route .= '?' . build_query($request->getQueryParams());\n\t\t\t}\n\n//\t\t\tif (!env('DATABASE_DEFAULT_DATABASE')) {\n//\t\t\t\t//安装页\n//\t\t\t\treturn $this->getResponse()->html(\\W7\\Facade\\View::render('@public/install'));\n//\t\t\t}\n\n\t\t\t//如果访问的是admin下的路由，先检测是否登录\n\t\t\tif (substr($route, 0, 12) == '/admin-login' || $route == '/') {\n\t\t\t\treturn $this->getResponse()->html(\\W7\\Facade\\View::render('@public/index'));\n\t\t\t}\n\t\t\tif (substr($route, 0, 6) == '/admin') {\n\t\t\t\t$session = new Session();\n\t\t\t\t$session->start($request);\n\t\t\t\tif (!$session->get('user')) {\n\t\t\t\t\t$this->getResponse()->redirect((string)$this->getLoginUrl());\n\t\t\t\t}\n\t\t\t}\n\t\t\t//如果是访问预览的连接，判断该文档是否需要登录后预览\n\t\t\tif (substr($route, 0, 8) === '/chapter') {\n\t\t\t\t$session = new Session();\n\t\t\t\t$session->start($request);\n\t\t\t\tif (!$session->get('user')) {\n\t\t\t\t\t$documentId = explode('/', $route)[2] ?? '';\n\t\t\t\t\t$documentId = explode('?', $documentId)[0];\n\t\t\t\t\t$document = DocumentLogic::instance()->getById($documentId);\n\t\t\t\t\t//非公有文档，自动跳转登录\n\t\t\t\t\tif ($document && $document->is_public != Document::PUBLIC_DOCUMENT) {\n\t\t\t\t\t\t$this->getResponse()->redirect($this->getLoginUrl(ienv('API_HOST') . ltrim($route, '/')));\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn $this->getResponse()->html(\\W7\\Facade\\View::render('@public/index'));\n\t\t}\n\t\tif ($e instanceof InternalException) {\n\t\t\t$message = json_encode([\n\t\t\t\t'status' => false,\n\t\t\t\t'code' => $e->getCode(),\n\t\t\t\t'data' => [],\n\t\t\t\t'message' => $e->getMessage(),\n\t\t\t], JSON_UNESCAPED_UNICODE);\n\t\t\treturn $this->getResponse()->withContent($message);\n\t\t}\n\t\tif ($e instanceof ValidatorException) {\n\t\t\t$e = new ErrorHttpException($e->getMessage(), [], $e->getCode());\n\t\t}\n\t\treturn parent::handle($e);\n\t}\n\n\tprivate function getLoginUrl($redirectUrl = null)\n\t{\n\t\t$defaultLoginChannel = ThirdPartyLoginLogic::instance()->getDefaultLoginSetting();\n\t\tif (empty($defaultLoginChannel['default_login_channel'])) {\n\t\t\treturn '/login?redirect_url=' . urlencode($redirectUrl);\n\t\t} else {\n\t\t\t$setting = ThirdPartyLoginLogic::instance()->getThirdPartyLoginChannelById($defaultLoginChannel['default_login_channel']);\n\t\t\tif (!$setting) {\n\t\t\t\treturn '/login?redirect_url=' . urlencode($redirectUrl);\n\t\t\t} else {\n\t\t\t\t/**\n\t\t\t\t * @var SocialiteManager $socialite\n\t\t\t\t */\n\t\t\t\t$socialite = iloader()->get(SocialiteManager::class);\n\t\t\t\treturn $socialite->config(new Config([\n\t\t\t\t\t'client_id' => $setting['setting']['app_id'],\n\t\t\t\t\t'client_secret' => $setting['setting']['secret_key'],\n\t\t\t\t\t'redirect_url' => ienv('API_HOST') . 'login?app_id=' . $defaultLoginChannel['default_login_channel'] . '&redirect_url=' . $redirectUrl\n\t\t\t\t]))->driver($defaultLoginChannel['default_login_channel'])->stateless()->redirect()->getTargetUrl();\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "app/Handler/Session/CacheHandler.php",
    "content": "<?php\n\n/**\n * This file is part of Rangine\n *\n * (c) We7Team 2019 <https://www.rangine.com/>\n *\n * document http://s.w7.cc/index.php?c=wiki&do=view&id=317&list=2284\n *\n * visited https://www.rangine.com/ for more details\n */\n\nnamespace W7\\App\\Handler\\Session;\n\nuse W7\\Core\\Session\\Handler\\HandlerAbstract;\nuse W7\\Facade\\Cache;\n\nclass CacheHandler extends HandlerAbstract {\n    private function getCache() {\n        return Cache::channel( 'default');\n    }\n\n    public function destroy($session_id) {\n        return $this->getCache()->delete($session_id);\n    }\n\n    public function write($session_id, $session_data) {\n        if (!$session_data) {\n            return true;\n        }\n\n        return $this->getCache()->set($session_id, $session_data, $this->getExpires());\n    }\n\n    public function read($session_id) {\n        return $this->getCache()->get($session_id, '');\n    }\n\n    public function gc($maxlifetime) {\n        return true;\n    }\n}\n"
  },
  {
    "path": "app/Handler/Session/DbHandler.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Handler\\Session;\n\nuse W7\\App\\Model\\Entity\\Session;\nuse W7\\App\\Model\\Service\\SessionLogic;\nuse W7\\Core\\Session\\Handler\\HandlerAbstract;\n\nclass DbHandler extends HandlerAbstract\n{\n\tpublic function read($session_id)\n\t{\n\t\tif (empty($session_id)) {\n\t\t\treturn '';\n\t\t}\n\t\t$session = SessionLogic::instance()->getBySessionId($session_id);\n\t\tif (empty($session) || $session->expired_at < time()) {\n\t\t\treturn '';\n\t\t}\n\t\treturn $session->data;\n\t}\n\n\tpublic function destroy($session_id)\n\t{\n\t\tSessionLogic::instance()->deleteBySessionId($session_id);\n\t\treturn true;\n\t}\n\n\tpublic function write($session_id, $session_data)\n\t{\n\t\t$session = SessionLogic::instance()->getBySessionId($session_id);\n\t\tif (empty($session)) {\n\t\t\tSession::query()->create([\n\t\t\t\t'session_id' => $session_id,\n\t\t\t\t'data' => $session_data,\n\t\t\t\t'expired_at' => time() + $this->getExpires(),\n\t\t\t]);\n\t\t} else {\n\t\t\t$session->data = $session_data;\n\t\t\t$session->expired_at = time() + $this->getExpires();\n\t\t\t$session->save();\n\t\t}\n\t\treturn true;\n\t}\n\n\tpublic function gc($maxlifetime)\n\t{\n\t\tSession::query()->where('expired_at', '<', time() - $maxlifetime)->delete();\n\t\treturn true;\n\t}\n}\n"
  },
  {
    "path": "app/Helper/Functions.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nfunction timeToString($time){\n\t$diff = time()-$time;\n\tif ($diff < 60){\n\t\treturn '刚刚';\n\t}elseif($diff > 60 && $diff <= 60*60){\n\t\treturn floor($diff/60).'分钟前';\n\t}elseif($diff > 60*60 && $diff <= 60*60*24){\n\t\treturn floor($diff / 3600).'小时前';\n\t}else{\n\t\treturn date('Y-m-d H:i',$time);\n\t}\n}\nfunction hasForbidWords($content = ''){\n\t$Setting = new \\W7\\App\\Model\\Logic\\SettingLogic();\n\t$words = $Setting->getByKey(\\W7\\App\\Model\\Logic\\SettingLogic::KEY_FORBID_WORDS,0);\n\t$words = explode(',',$words);\n\t$forbid = [];\n\tforeach ($words as $v){\n\t\tif (stripos($content,$v) !== false){\n\t\t\t$forbid[] = $v;\n\t\t}\n\t}\n\treturn $forbid;\n}\nfunction authcode($string, $operation = 'DECODE', $key = '', $expiry = 0)\n{\n\t$ckey_length = 4;\n\t$key         = md5($key);\n\t$keya        = md5(substr($key, 0, 16));\n\t$keyb        = md5(substr($key, 16, 16));\n\t$keyc        = $ckey_length ? ($operation == 'DECODE' ? substr($string, 0, $ckey_length) : substr(md5($key), -$ckey_length)) : '';\n\n\t$cryptkey   = $keya . md5($keya . $keyc);\n\t$key_length = strlen($cryptkey);\n\n\t$string        = $operation == 'DECODE' ? base64_decode(substr($string, $ckey_length)) : sprintf('%010d', $expiry ? $expiry + time() : 0) . substr(md5($string . $keyb), 0, 16) . $string;\n\t$string_length = strlen($string);\n\n\t$result = '';\n\t$box    = range(0, 255);\n\n\t$rndkey = array();\n\tfor ($i = 0; $i <= 255; $i++) {\n\t\t$rndkey[$i] = ord($cryptkey[$i % $key_length]);\n\t}\n\n\tfor ($j = $i = 0; $i < 256; $i++) {\n\t\t$j       = ($j + $box[$i] + $rndkey[$i]) % 256;\n\t\t$tmp     = $box[$i];\n\t\t$box[$i] = $box[$j];\n\t\t$box[$j] = $tmp;\n\t}\n\n\tfor ($a = $j = $i = 0; $i < $string_length; $i++) {\n\t\t$a       = ($a + 1) % 256;\n\t\t$j       = ($j + $box[$a]) % 256;\n\t\t$tmp     = $box[$a];\n\t\t$box[$a] = $box[$j];\n\t\t$box[$j] = $tmp;\n\t\t$result  .= chr(ord($string[$i]) ^ ($box[($box[$a] + $box[$j]) % 256]));\n\t}\n\n\tif ($operation == 'DECODE') {\n\t\tif ((substr($result, 0, 10) == 0 || substr($result, 0, 10) - time() > 0) && substr($result, 10, 16) == substr(md5(substr($result, 26) . $keyb), 0, 16)) {\n\t\t\treturn substr($result, 26);\n\t\t} else {\n\t\t\treturn '';\n\t\t}\n\t} else {\n\t\treturn $keyc . str_replace('=', '', base64_encode($result));\n\t}\n}\n\nfunction generate_label($name, $value, $isFormat = true)\n{\n\tif ($isFormat) {\n\t\t$option = [];\n\t\tforeach ($value as $key => $val) {\n\t\t\t$option[] = ['label' => $val, 'value' => $key];\n\t\t}\n\t} else {\n\t\t$option = $value;\n\t}\n\treturn ['label' => $name, 'option' => $option];\n}\n\n/**\n * 获取当前域名及根路径\n * @return string\n */\nfunction base_url()\n{\n\tstatic $baseUrl = '';\n\tif (empty($baseUrl)) {\n\t\t$request = \\W7\\Facade\\Context::getRequest();\n\t\t$baseUrl = $request->getUri()->getScheme() . '://' . $request->server('HTTP_HOST');\n\t}\n\treturn $baseUrl;\n}\n"
  },
  {
    "path": "app/Listener/index.html",
    "content": ""
  },
  {
    "path": "app/Message/index.html",
    "content": ""
  },
  {
    "path": "app/Middleware/AppAuthMiddleware.php",
    "content": "<?php\n\nnamespace W7\\App\\Middleware;\n\nuse Psr\\Http\\Message\\ResponseInterface;\nuse Psr\\Http\\Message\\ServerRequestInterface;\nuse Psr\\Http\\Server\\RequestHandlerInterface;\nuse Throwable;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Logic\\AppLogic;\nuse W7\\App\\Model\\Logic\\UserLogic;\nuse W7\\Core\\Middleware\\MiddlewareAbstract;\n\nclass AppAuthMiddleware extends MiddlewareAbstract\n{\n\tpublic function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface\n\t{\n\t\t$params = $request->input();\n\t\tif ((empty($params['appid']) && empty($params['sign'])) || !empty($request->session->get('user'))) {\n\t\t\treturn $handler->handle($request);\n\t\t}\n\n\t\t/**\n\t\t * @var AppLogic $appLogic\n\t\t */\n\t\t$appLogic = iloader()->singleton(AppLogic::class);\n\t\t$app = $appLogic->getByAppId($params['appid']);\n\n\t\tif (empty($app)) {\n\t\t\tthrow new ErrorHttpException('Invalid appid or sign');\n\t\t}\n\n\t\t$sign = $appLogic->getSign($params, $app->appsecret);\n\n\t\tif ($sign !== $params['sign']) {\n\t\t\tthrow new ErrorHttpException('Invalid sign');\n\t\t}\n\n\t\tif (empty($app->user_id)) {\n\t\t\t$user = [\n\t\t\t\t'username' => $app->name . $app->appid,\n\t\t\t\t'userpass' => trim($app->appid),\n\t\t\t];\n\t\t\t$user['remark'] = $app->name;\n\t\t\ttry {\n\t\t\t\t$app->user_id = UserLogic::instance()->createUser($user);\n\t\t\t} catch (Throwable $e) {\n\t\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t\t}\n\t\t\t$app->save();\n\t\t}\n\n\t\t$user = UserLogic::instance()->getByUid($app->user_id);\n\t\t$request->session->destroy();\n\t\t$request->session->set('user', [\n\t\t\t'uid' => $user->id,\n\t\t\t'username' => $user->username,\n\t\t\t'login_from_app' => 1\n\t\t]);\n\n\t\treturn $handler->handle($request);\n\t}\n}\n"
  },
  {
    "path": "app/Middleware/BackendDocumentPermissionMiddleware.php",
    "content": "<?php\n\nnamespace W7\\App\\Middleware;\n\nuse Psr\\Http\\Message\\ResponseInterface;\nuse Psr\\Http\\Message\\ServerRequestInterface;\nuse Psr\\Http\\Server\\RequestHandlerInterface;\nuse W7\\App\\Model\\Entity\\DocumentPermission;\nuse W7\\App\\Model\\Entity\\User;\nuse W7\\App\\Model\\Logic\\DocumentPermissionLogic;\nuse W7\\Core\\Middleware\\MiddlewareAbstract;\n\nclass BackendDocumentPermissionMiddleware extends MiddlewareAbstract\n{\n\tpublic function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface\n\t{\n\t\t$documentId = $request->post('document_id');\n\t\tif (!$documentId) {\n\t\t\treturn parent::process($request, $handler);\n\t\t}\n\n\t\t/**\n\t\t * @var User $user\n\t\t */\n\t\t$user = $request->getAttribute('user');\n\t\tif ($user->isFounder) {\n\t\t\t$user->isManager = true;\n\t\t\t$user->isOperator = true;\n\t\t\t$user->isReader = true;\n\t\t} else {\n\t\t\t/**\n\t\t\t * @var DocumentPermission $documentPermission\n\t\t\t */\n\t\t\t$documentPermission = DocumentPermissionLogic::instance()->getByDocIdAndUid($documentId, $user->id);\n\t\t\tif ($documentPermission) {\n\t\t\t\t$user->isManager = $documentPermission->isManager;\n\t\t\t\t$user->isOperator = $documentPermission->isOperator;\n\t\t\t\t$user->isReader = $documentPermission->isReader;\n\t\t\t} else {\n\t\t\t\t$user->isManager = false;\n\t\t\t\t$user->isOperator = false;\n\t\t\t\t$user->isReader = false;\n\t\t\t}\n\t\t}\n\t\t$request = $request->withAttribute('user', $user);\n\n\t\treturn parent::process($request, $handler);\n\t}\n}"
  },
  {
    "path": "app/Middleware/CheckAuthMiddleware.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Middleware;\n\nuse Psr\\Http\\Message\\ResponseInterface;\nuse Psr\\Http\\Message\\ServerRequestInterface;\nuse Psr\\Http\\Server\\RequestHandlerInterface;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Setting;\nuse W7\\App\\Model\\Logic\\UserLogic;\nuse W7\\Core\\Middleware\\MiddlewareAbstract;\n\nclass CheckAuthMiddleware extends MiddlewareAbstract\n{\n\tpublic function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface\n\t{\n\t\t$user = $request->session->get('user');\n\t\tif (empty($user)) {\n\t\t\tthrow new ErrorHttpException('请先登录', [], Setting::ERROR_NO_LOGIN);\n\t\t}\n\t\t//如果修改密码后强制退出\n\t\tif (empty($user['login_from_app']) && !icache()->has(sprintf(UserLogic::USER_LOGOUT_AFTER_CHANGE_PWD, $user['uid']))) {\n\t\t\t$request->session->destroy();\n\t\t\tthrow new ErrorHttpException('请先登录', [], Setting::ERROR_NO_LOGIN);\n\t\t}\n\t\t$request = $request->withAttribute('user', UserLogic::instance()->getByUid($user['uid']));\n\t\treturn parent::process($request, $handler);\n\t}\n}\n"
  },
  {
    "path": "app/Middleware/CheckFounderMiddleware.php",
    "content": "<?php\n/**\n * @author donknap\n * @date 19-12-16 上午10:56\n */\n\nnamespace W7\\App\\Middleware;\n\nuse Psr\\Http\\Message\\ResponseInterface;\nuse Psr\\Http\\Message\\ServerRequestInterface;\nuse Psr\\Http\\Server\\RequestHandlerInterface;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\Core\\Middleware\\MiddlewareAbstract;\n\nclass CheckFounderMiddleware extends MiddlewareAbstract\n{\n\tpublic function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface\n\t{\n\t\t$user = $request->getAttribute('user');\n\t\tif (!$user->isFounder) {\n\t\t\tthrow new ErrorHttpException('只有创始人可以访问');\n\t\t}\n\t\treturn parent::process($request, $handler);\n\t}\n}"
  },
  {
    "path": "app/Middleware/CorsApiMiddleware.php",
    "content": "<?php\n\n/**\n * WeEngine Team\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Middleware;\n\nuse Psr\\Http\\Message\\ResponseInterface;\nuse Psr\\Http\\Message\\ServerRequestInterface;\nuse Psr\\Http\\Server\\MiddlewareInterface;\nuse Psr\\Http\\Server\\RequestHandlerInterface;\nuse W7\\App;\n\nclass CorsApiMiddleware implements MiddlewareInterface\n{\n\tpublic function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface\n\t{\n\t\t$headerHost='*';\n//\t\t$headerHost = $request->getHeader('origin');\n//\t\tif (!$headerHost) {\n//\t\t\t$headerHost = $request->getHeader('referer');\n//\t\t}\n//\t\t$headerHost = current($headerHost);\n//\t\t$urlInfo = parse_url($headerHost);\n//\t\t$headerHost = ($urlInfo['scheme'] ?? '') . '://' . ($urlInfo['host'] ?? '');\n\n\t\t$response = \\W7\\Facade\\Context::getResponse();\n\n\t\t$header=$request->getHeaders();\n\t\t$allowHeaders=[];\n\t\tforeach ($header as $key =>$val){\n\t\t\t$allowHeaders[count($allowHeaders)]=$key;\n\t\t}\n\n\t\t$response = $response->withHeader('Access-Control-Allow-Origin', $headerHost);\n\t\t$response = $response->withHeader('Access-Control-Allow-Credentials', 'true');\n\t\t$response = $response->withHeader('Access-Control-Allow-Headers', implode(',', $allowHeaders));\n\t\t$response = $response->withHeader('Access-Control-Allow-Methods', 'POST, GET, DELETE, PUT, PATCH, OPTIONS');\n\t\tif ($request->getMethod() == 'OPTIONS') {\n\t\t\treturn $response->json('success');\n\t\t}\n\n        \\W7\\Facade\\Context::setResponse($response);\n\t\treturn $handler->handle($request);\n\t}\n}\n"
  },
  {
    "path": "app/Middleware/FrontendDocumentPermissionMiddleware.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Middleware;\n\nuse Psr\\Http\\Message\\ResponseInterface;\nuse Psr\\Http\\Message\\ServerRequestInterface;\nuse Psr\\Http\\Server\\RequestHandlerInterface;\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Document;\nuse W7\\App\\Model\\Entity\\Setting;\nuse W7\\App\\Model\\Entity\\User;\nuse W7\\App\\Model\\Logic\\DocumentLogic;\nuse W7\\App\\Model\\Logic\\DocumentPermissionLogic;\nuse W7\\App\\Model\\Logic\\UserLogic;\nuse W7\\Core\\Middleware\\MiddlewareAbstract;\n\nclass FrontendDocumentPermissionMiddleware extends MiddlewareAbstract\n{\n\tpublic function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface\n\t{\n\t\t$user = $request->session->get('user');\n\t\tif (empty($user)) {\n\t\t\t$user = new User();\n\t\t} else {\n\t\t\t/**\n\t\t\t * @var User $user\n\t\t\t */\n\t\t\t$user = UserLogic::instance()->getByUid($user['uid']);\n\t\t}\n\n\t\t$documentId = $request->input('document_id');\n\t\tif (!$documentId) {\n\t\t\treturn parent::process($request, $handler);\n\t\t}\n\t\t$document = DocumentLogic::instance()->getById($documentId);\n\t\tif (!$document) {\n\t\t\t$request = $request->withAttribute('user', $user);\n\t\t\treturn parent::process($request, $handler);\n\t\t}\n\n\t\t$user->isReader = $user->isFounder;\n\t\tif ($document->isPublicDoc) {\n\t\t\t//公共目录\n\t\t\t$user->isReader = true;\n\t\t} else {\n\t\t\tif (empty($user->id)) {\n\t\t\t\t//未登录\n\t\t\t\tthrow new ErrorHttpException('请先登录', [], Setting::ERROR_NO_LOGIN);\n\t\t\t}\n\t\t\t//需要权限或者登录\n\t\t\tif ($document->is_public == Document::PRIVATE_DOCUMENT && !empty($user->id)) {\n\t\t\t\t$documentPermission = DocumentPermissionLogic::instance()->getByDocIdAndUid($documentId, $user->id);\n\t\t\t\tif ($documentPermission) {\n\t\t\t\t\t$user->isReader = $documentPermission->isReader;\n\t\t\t\t}\n\t\t\t} elseif ($document->is_public == Document::LOGIN_PREVIEW_DOCUMENT) {\n\t\t\t\t$user->isReader = empty($user->id) ? false : true;\n\t\t\t}\n\t\t}\n\t\t$request = $request->withAttribute('user', $user);\n\t\treturn parent::process($request, $handler);\n\t}\n}\n"
  },
  {
    "path": "app/Model/Entity/App.php",
    "content": "<?php\n\nnamespace W7\\App\\Model\\Entity;\n\nclass App extends BaseModel\n{\n\tpublic $timestamps = false;\n\tprotected $connection = 'default';\n\tprotected $table = 'app';\n\tprotected $primaryKey = 'id';\n\tprotected $fillable = [];\n}\n"
  },
  {
    "path": "app/Model/Entity/BaseModel.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity;\n\nuse W7\\Core\\Database\\ModelAbstract;\n\nclass BaseModel extends ModelAbstract\n{\n\tpublic $timestamps = true;\n\tprotected $guarded = [];\n\tpublic $dateFormat = 'U';\n\tprotected $perPage = '15';\n\n    /**\n     * 为数组 / JSON 序列化准备日期。\n     *\n     * @param  \\DateTimeInterface  $date\n     * @return string\n     */\n    protected function serializeDate(\\DateTimeInterface $date)\n    {\n        return $date->format($this->dateFormat ?: 'Y-m-d H:i:s');\n    }\n}\n"
  },
  {
    "path": "app/Model/Entity/Cache.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity;\n\nclass Cache extends BaseModel\n{\n\tprotected $table = 'cache';\n\tpublic $timestamps = false;\n}\n"
  },
  {
    "path": "app/Model/Entity/Document/Chapter.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity\\Document;\n\nuse W7\\App\\Model\\Entity\\BaseModel;\nuse W7\\App\\Model\\Entity\\Document;\n\nclass Chapter extends BaseModel\n{\n\tconst IS_DIR = 1;\n\tprotected $table = 'document_chapter';\n\n\tpublic function content()\n\t{\n\t\treturn $this->hasOne(ChapterContent::class, 'chapter_id', 'id');\n\t}\n\n\tpublic function document()\n\t{\n\t\treturn $this->belongsTo(Document::class, 'document_id', 'id');\n\t}\n\n\tpublic function getPrevItemAttribute()\n\t{\n\t\t$item = static::query()->where('parent_id', $this->parent_id)->where('sort', '<=', $this->sort)->where('id', '!=', $this->id)->orderBy('sort')->first();\n\t\treturn $item;\n\t}\n\n\tpublic function getNextItemAttribute()\n\t{\n\t\t$item = static::query()->where('parent_id', $this->parent_id)->where('sort', '>=', $this->sort)->where('id', '!=', $this->id)->orderBy('sort')->first();\n\t\treturn $item;\n\t}\n}\n"
  },
  {
    "path": "app/Model/Entity/Document/ChapterApi.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity\\Document;\n\nuse W7\\App\\Model\\Entity\\BaseModel;\n\nclass ChapterApi extends BaseModel\n{\n\tpublic $timestamps = false;\n\tprotected $table = 'document_chapter_api';\n\tprotected $fillable = ['chapter_id', 'url', 'method', 'status_code', 'description', 'body_param_location'];\n\n\tconst METHOD_GET = 1;\n\tconst METHOD_POST = 2;\n\tconst METHOD_PUT = 3;\n\tconst METHOD_PATCH = 4;\n\tconst METHOD_DELETE = 5;\n\tconst METHOD_COPY = 6;\n\tconst METHOD_HEAD = 7;\n\tconst METHOD_PTIONS = 8;\n\tconst METHOD_LINK = 9;\n\tconst METHOD_UNLINK = 10;\n\tconst METHOD_PURGE = 11;\n\tconst METHOD_LOCK = 12;\n\tconst METHOD_UNLOCK = 13;\n\tconst METHOD_PROPFIND = 14;\n\tconst METHOD_VIEW = 15;\n\n\tpublic function methodLabel()\n\t{\n\t\treturn [\n\t\t\tself::METHOD_GET => 'GET',\n\t\t\tself:: METHOD_POST => 'POST',\n\t\t\tself:: METHOD_PUT => 'PUT',\n\t\t\tself:: METHOD_PATCH => 'PATCH',\n\t\t\tself:: METHOD_DELETE => 'DELETE',\n\t\t\tself:: METHOD_COPY => 'COPY',\n\t\t\tself:: METHOD_HEAD => 'HEAD',\n\t\t\tself:: METHOD_LINK => 'LINK',\n\t\t\tself:: METHOD_UNLINK => 'UNLINK',\n\t\t\tself:: METHOD_PURGE => 'PURGE',\n\t\t\tself:: METHOD_LOCK => 'LOCK',\n\t\t\tself:: METHOD_UNLOCK => 'UNLOCK',\n\t\t\tself:: METHOD_PROPFIND => 'PROPFIND',\n\t\t\tself:: METHOD_VIEW => 'VIEW'\n\t\t];\n\t}\n}\n"
  },
  {
    "path": "app/Model/Entity/Document/ChapterApiData.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity\\Document;\n\nuse W7\\App\\Model\\Entity\\BaseModel;\n\nclass ChapterApiData extends BaseModel\n{\n\tpublic $timestamps = false;\n\tprotected $table = 'document_chapter_api_data';\n\tprotected $fillable = ['chapter_id', 'respond'];\n}\n"
  },
  {
    "path": "app/Model/Entity/Document/ChapterApiExtend.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity\\Document;\n\nuse W7\\App\\Model\\Entity\\BaseModel;\n\nclass ChapterApiExtend extends BaseModel\n{\n\tpublic $timestamps = false;\n\tprotected $table = 'document_chapter_api_extend';\n\tprotected $fillable = ['chapter_id', 'extend'];\n}\n"
  },
  {
    "path": "app/Model/Entity/Document/ChapterApiParam.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity\\Document;\n\nuse W7\\App\\Model\\Entity\\BaseModel;\n\nclass ChapterApiParam extends BaseModel\n{\n\tpublic $timestamps = false;\n\tprotected $table = 'document_chapter_api_param';\n\tprotected $fillable = ['chapter_id', 'reponse_id', 'parent_id', 'location', 'type', 'name', 'description', 'enabled', 'default_value', 'rule'];\n\n\tconst TABLE_NAME_LENGTH = 20;//参数名称默认宽度\n\tconst TABLE_TYPE_LENGTH = 8;//类型默认宽度\n\tconst TABLE_ENABLED_LENGTH = 5;//类型必填宽度\n\tconst TABLE_DESCRIPTION_LENGTH = 20;//描述默认宽度\n\tconst TABLE_VALUE_LENGTH = 20;//示例值默认宽度\n\tconst TABLE_RULE_LENGTH = 20;//示例值默认宽度\n\n\tconst ENABLED_NO = 1;\n\tconst ENABLED_YES = 2;\n\n\tconst TYPE_STRING = 1;\n\tconst TYPE_NUMBER = 2;\n\tconst TYPE_BOOLEAN = 3;\n\tconst TYPE_OBJECT = 4;\n\tconst TYPE_ARRAY = 5;\n\tconst TYPE_FUNCTION = 6;\n\tconst TYPE_REGEXP = 7;\n\tconst TYPE_NULL = 8;\n\n\tconst LOCATION_REQUEST_HEADER = 1;\n\tconst LOCATION_REQUEST_QUERY_STRING = 2;\n\tconst LOCATION_REQUEST_BODY_FROM = 3;\n\tconst LOCATION_REQUEST_BODY_URLENCODED = 4;\n\tconst LOCATION_REQUEST_BODY_RAW = 5;\n\tconst LOCATION_REQUEST_BODY_BINARY = 6;\n\tconst LOCATION_REPONSE_HEADER = 7;\n\tconst LOCATION_REPONSE_BODY_FROM = 8;\n\tconst LOCATION_REPONSE_BODY_URLENCODED = 9;\n\tconst LOCATION_REPONSE_BODY_RAW = 10;\n\tconst LOCATION_REPONSE_BODY_BINARY = 11;\n\tconst LOCATION_REQUEST_QUERY_PATH = 12;\n}\n"
  },
  {
    "path": "app/Model/Entity/Document/ChapterApiReponse.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity\\Document;\n\nuse W7\\App\\Model\\Entity\\BaseModel;\n\nclass ChapterApiReponse extends BaseModel\n{\n\tpublic $timestamps = false;\n\tprotected $table = 'document_chapter_api_reponse';\n\tprotected $fillable = ['chapter_id', 'description'];\n}\n"
  },
  {
    "path": "app/Model/Entity/Document/ChapterContent.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity\\Document;\n\nuse W7\\App\\Model\\Entity\\BaseModel;\n\nclass ChapterContent extends BaseModel\n{\n\tpublic $timestamps = false;\n\tprotected $table = 'document_chapter_content';\n\tprotected $primaryKey = 'chapter_id';\n\n\t// 数据来源类型\n\tconst LAYOUT_MARKDOWM = 0;//MARKDOWN\n\tconst LAYOUT_HTTP = 1;//HTTP请求\n}\n"
  },
  {
    "path": "app/Model/Entity/Document.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity;\n\nuse Illuminate\\Support\\Str;\n\nclass Document extends BaseModel\n{\n\tconst PRIVATE_DOCUMENT = 2;//仅有权限查看\n\tconst PUBLIC_DOCUMENT = 1;//默认-公开项目\n\tconst LOGIN_PREVIEW_DOCUMENT = 3;//点击链接登录后查看\n\n\tprotected $table = 'document';\n\n\t/**\n\t * 关联作者\n\t */\n\tpublic function user()\n\t{\n\t\treturn $this->belongsTo(User::class, 'creator_id', 'id');\n\t}\n\n\t/**\n\t * 关联权限表中的操作人员\n\t * @return \\Illuminate\\Database\\Eloquent\\Relations\\HasMany\n\t */\n\tpublic function operator()\n\t{\n\t\treturn $this->hasMany(DocumentPermission::class, 'document_id', 'id');\n\t}\n\n\tpublic function getDescriptionShortAttribute()\n\t{\n\t\treturn Str::limit(html_entity_decode($this->description), 20);\n\t}\n\n\tpublic function getIsPublicDocAttribute()\n\t{\n\t\treturn $this->is_public == self::PUBLIC_DOCUMENT;\n\t}\n\n\tpublic function getIsPrivateDocAttribute()\n\t{\n\t\treturn $this->is_public == self::PRIVATE_DOCUMENT;\n\t}\n\n\tpublic function getIsLoginPreviewDocAttribute()\n\t{\n\t\treturn $this->is_public == self::LOGIN_PREVIEW_DOCUMENT;\n\t}\n}\n"
  },
  {
    "path": "app/Model/Entity/DocumentFeedback.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity;\n\nclass DocumentFeedback extends BaseModel\n{\n\t//反馈类型\n\tconst NOT_FOUND_TYPE = 0;\n\tconst NO_UPDATE_TYPE = 1;\n\tconst NOT_KNOWN_TYPE = 2;\n\tconst HAS_ERROR_TYPE = 3;\n\tconst NO_COMPLETE_TYPE = 4;\n\tconst HAS_DEFECT_TYPE = 5;\n\n\tprivate $permissionName = [\n\t\tself::NOT_FOUND_TYPE => '内容找不到',\n\t\tself::NO_UPDATE_TYPE => '内容没更新',\n\t\tself::NOT_KNOWN_TYPE => '描述不清楚',\n\t\tself::HAS_ERROR_TYPE => '链接有错误',\n\t\tself::NO_COMPLETE_TYPE => '步骤不完整',\n\t\tself::HAS_DEFECT_TYPE => '代码/图片缺失'\n\t];\n\n\tprotected $table = 'document_feedback';\n\n\tprotected $appends=['type_name','status_text'];\n\n\tpublic function document()\n\t{\n\t\treturn $this->belongsTo(Document::class, 'document_id', 'id');\n\t}\n\n\tpublic function user()\n\t{\n\t\treturn $this->belongsTo(User::class, 'user_id', 'id');\n\t}\n\n\n\tpublic function getTypeNameAttribute()\n\t{\n\t\t$type = explode(',',$this->attributes['type']);\n\t\t$typeArr = array_intersect_key($this->permissionName,array_flip($type));\n\t\treturn !empty($typeArr) ? implode(',',$typeArr) : '';\n\t}\n\n\n\tpublic function getStatusTextAttribute(){\n\t\t$statusText = [0=>'未读',1=>'已读'];\n\t\treturn $statusText[$this->attributes['status']];\n\t}\n\n\n    public function getImagesAttribute(){\n\t\treturn $this->attributes['images'] ? json_decode($this->attributes['images'],true): [];\n\t}\n\n\tpublic function getContentAttribute(){\n\t\treturn htmlspecialchars_decode($this->attributes['content'],ENT_QUOTES);\n\t}\n\n\n}\n"
  },
  {
    "path": "app/Model/Entity/DocumentHome.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity;\n\nclass DocumentHome extends BaseModel\n{\n\n\tprotected $table = 'document_home';\n\n\tprotected $appends=['type_name'];\n\n\t//反馈类型\n\tpublic $typeName = [1 => '公告', 2=> '首页类型一', 3=> '首页类型二'];\n\n\tpublic function document()\n\t{\n\t\treturn $this->belongsTo(Document::class, 'document_id', 'id');\n\t}\n\n\tpublic function user()\n\t{\n\t\treturn $this->belongsTo(User::class, 'user_id', 'id');\n\t}\n\n\n\tpublic function getTypeNameAttribute()\n\t{\n\t\treturn $this->typeName[$this->attributes['type']];\n\t}\n\n\n\tpublic function getDescriptionAttribute(){\n\t\treturn htmlspecialchars_decode($this->attributes['description'],ENT_QUOTES);\n\t}\n\n\n}\n"
  },
  {
    "path": "app/Model/Entity/DocumentPermission.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity;\n\nclass DocumentPermission extends BaseModel\n{\n\tconst MANAGER_PERMISSION = 1;\n\tconst OPERATOR_PERMISSION = 2;\n\tconst READER_PERMISSION = 3;\n\n\tprivate $permissionName = [\n\t\tself::MANAGER_PERMISSION => '管理员',\n\t\tself::OPERATOR_PERMISSION => '操作员',\n\t\tself::READER_PERMISSION => '阅读员',\n\t];\n\n\tprotected $table = 'document_permission';\n\n\tpublic function save(array $options = [])\n\t{\n\t\tif (in_array($this->permission, [self::MANAGER_PERMISSION, self::OPERATOR_PERMISSION, self::READER_PERMISSION])) {\n\t\t\treturn parent::save($options);\n\t\t}\n\n\t\treturn false;\n\t}\n\n\tpublic function document()\n\t{\n\t\treturn $this->belongsTo(Document::class, 'document_id', 'id');\n\t}\n\n\tpublic function user()\n\t{\n\t\treturn $this->belongsTo(User::class, 'user_id', 'id');\n\t}\n\n\tpublic function getIsManagerAttribute()\n\t{\n\t\treturn $this->permission == self::MANAGER_PERMISSION;\n\t}\n\n\tpublic function getIsOperatorAttribute()\n\t{\n\t\treturn $this->permission == self::MANAGER_PERMISSION || $this->permission == self::OPERATOR_PERMISSION;\n\t}\n\n\tpublic function getIsReaderAttribute()\n\t{\n\t\treturn $this->permission == self::MANAGER_PERMISSION || $this->permission == self::OPERATOR_PERMISSION || $this->permission == self::READER_PERMISSION;\n\t}\n\n\tpublic function getACLAttribute()\n\t{\n\t\treturn [\n\t\t\t'name' => $this->permissionName[$this->permission],\n\t\t\t'role' => $this->permission,\n\t\t\t'has_manage' => $this->isManager,\n\t\t\t'has_edit' => $this->isOperator,\n\t\t\t'has_delete' => $this->isManager,\n\t\t\t'has_read' => $this->isReader,\n\t\t];\n\t}\n\n\tpublic function getACLNameAttribute()\n\t{\n\t\treturn $this->permissionName[$this->permission];\n\t}\n\n\tpublic function getRoleListAttribute()\n\t{\n\t\treturn $this->permissionName;\n\t}\n}\n"
  },
  {
    "path": "app/Model/Entity/DocumentSearch.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity;\n\nclass DocumentSearch extends BaseModel\n{\n\n\tprotected $table = 'document_search_hot';\n\n\t//搜索词\n\tpublic function getSearchWordAttribute(){\n\t\treturn htmlspecialchars_decode($this->attributes['search_word'],ENT_QUOTES);\n\t}\n\n}\n"
  },
  {
    "path": "app/Model/Entity/Session.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity;\n\n\nclass Session extends BaseModel\n{\n\tprotected $table = 'session';\n\tpublic $timestamps = false;\n\n}\n"
  },
  {
    "path": "app/Model/Entity/Setting.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity;\n\nclass Setting extends BaseModel\n{\n\tpublic $timestamps = false;\n\tprotected $table = 'setting';\n\tprotected $primaryKey = 'key';\n\n\tconst ERROR_NO_POWER = 446;//没权限\n\tconst ERROR_NO_FIND = 445;//文件不存在\n\tconst ERROR_NO_LOGIN = 444;//没登陆\n\tconst ERROR_CHANGE_USER = 447;//是否切换用户\n\n\tpublic function getSettingAttribute()\n\t{\n\t\tif (empty($this->value)) {\n\t\t\treturn [];\n\t\t}\n\t\treturn json_decode($this->value, true);\n\t}\n}\n"
  },
  {
    "path": "app/Model/Entity/Star.php",
    "content": "<?php\n\nnamespace W7\\App\\Model\\Entity;\n\nuse W7\\App\\Model\\Entity\\Document\\Chapter;\n\nclass Star extends BaseModel\n{\n\tprotected $table = 'user_star';\n\tprotected $primaryKey = 'id';\n\n\tpublic function setUpdatedAt($value)\n\t{\n\t\treturn null;\n\t}\n\n\tpublic function document()\n\t{\n\t\treturn $this->belongsTo(Document::class, 'document_id', 'id');\n\t}\n\n\tpublic function chapter()\n\t{\n\t\treturn $this->belongsTo(Chapter::class, 'chapter_id', 'id');\n\t}\n}"
  },
  {
    "path": "app/Model/Entity/User.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity;\n\n/**\n * Class User\n * @package W7\\App\\Model\\Entity\n *\n * @property $isFounder\n * @property $isManager\n * @property $isOperator\n * @property $isReader\n */\nclass User extends BaseModel\n{\n\tconst GROUP_ADMIN = 1;\n\n\tprotected $table = 'user';\n\tprotected $perPage = '10';\n\n\tpublic function document()\n\t{\n\t\treturn $this->belongsTo(Document::class);\n\t}\n\n\tpublic function getIsFounderAttribute()\n\t{\n\t\treturn $this->group_id == self::GROUP_ADMIN;\n\t}\n}\n"
  },
  {
    "path": "app/Model/Entity/UserOperateLog.php",
    "content": "<?php\n\nnamespace W7\\App\\Model\\Entity;\n\nclass UserOperateLog extends BaseModel\n{\n\tconst CREATE = 1; //创建\n\tconst PREVIEW = 2; //预览\n\tconst EDIT = 3; //编辑\n\tconst DELETE = 4; //删除\n\tconst CHAPTER_MOVE = 5; //移动\n\tconst CHAPTER_COPY = 6; //复制\n\tconst DOCUMENT_TRANSFER = 7; //转让\n\tconst SHARE = 8; //分享\n\tconst COLLECT = 9; //收藏\n\n\tprotected $table = 'user_operate_log';\n\tprotected $primaryKey = 'id';\n\tprotected $appends = ['time_str'];\n\n\tpublic function getTimeStrAttribute(){\n\t\treturn timeToString($this->created_at->unix());\n\t}\n\tpublic function setUpdatedAt($value)\n\t{\n\t\treturn null;\n\t}\n\n\tpublic function user()\n\t{\n\t\treturn $this->belongsTo(User::class, 'user_id', 'id')->select(['id','username','avatar']);\n\t}\n\n\tpublic function targetUser()\n\t{\n\t\treturn $this->belongsTo(User::class, 'target_user_id', 'id');\n\t}\n\n\tpublic function document()\n\t{\n\t\treturn $this->belongsTo(Document::class, 'document_id', 'id');\n\t}\n\n\tpublic function getOperateDescAttribute()\n\t{\n\t\tswitch ($this->operate) {\n\t\t\tcase self::CREATE:\n\t\t\t\treturn '创建';\n\t\t\tcase self::PREVIEW:\n\t\t\t\treturn '预览';\n\t\t\tcase self::EDIT:\n\t\t\t\treturn '编辑';\n\t\t\tcase self::DELETE:\n\t\t\t\treturn '删除';\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "app/Model/Entity/UserThirdParty.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Entity;\n\nclass UserThirdParty extends BaseModel\n{\n\tpublic $timestamps = false;\n\tprotected $table = 'user_third_party';\n\tprotected $primaryKey = 'id';\n\n\tpublic function bindUser() {\n\t\treturn $this->hasOne(User::class, 'id', 'uid');\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/AppLogic.php",
    "content": "<?php\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\App\\Model\\Entity\\App;\n\nclass AppLogic extends BaseLogic\n{\n\tpublic function getByAppId($appId)\n\t{\n\t\tif (empty($appId)) {\n\t\t\tthrow new \\RuntimeException('Invalid appid');\n\t\t}\n\t\treturn App::where('appid', '=', $appId)->first();\n\t}\n\n\tpublic function getSign($data, $token = '')\n\t{\n\t\tunset($data['sign']);\n\n\t\tksort($data, SORT_STRING);\n\t\treset($data);\n\n\t\t$sign = md5(http_build_query($data, '', '&') . $token);\n\t\treturn $sign;\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/BaseLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\Core\\Cache\\Cache;\nuse W7\\Core\\Database\\LogicAbstract;\n\nclass BaseLogic extends LogicAbstract\n{\n\tprivate $cache = null;\n\tprivate $prefix = 'document_logic_';\n\n\t//获取缓存\n\tpublic function get($key, $default=null)\n\t{\n\t\treturn $this->getCache()->get($this->generateKey($key), $default);\n\t}\n\n\tpublic function increment($key, $ttl=24*3600, $step=1)\n\t{\n\t\t$value = $this->get($key);\n\t\tif ($value) {\n\t\t\t$value = intval($value) + intval($step);\n\t\t\t$this->set($key, $value);\n\t\t} else {\n\t\t\t$this->set($key, 1, $ttl);\n\t\t}\n\t\treturn true;\n\t}\n\n\tpublic function decrement($key, $ttl, $step=1)\n\t{\n\t\t$value = $this->get($key);\n\t\tif ($value) {\n\t\t\t$value = intval($value) - intval($step);\n\t\t\t$this->set($key, $value);\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}\n\n\t//设置缓存\n\tpublic function set($key, $value, $ttl=24*3600)\n\t{\n\t\treturn $this->getCache()->set($this->generateKey($key), $value, $ttl);\n\t}\n\n\t//删除缓存\n\tpublic function delete($key)\n\t{\n\t\treturn $this->getCache()->delete($this->generateKey($key));\n\t}\n\n\tpublic function getCache()\n\t{\n\t\tif (!$this->cache) {\n\t\t\t$this->cache = new Cache();\n\t\t}\n\t\treturn $this->cache;\n\t}\n\n\tpublic function generateKey($key)\n\t{\n\t\treturn $this->prefix.$key;\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/ChapterLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\App\\Model\\Entity\\Document;\nuse W7\\App\\Model\\Entity\\Document\\Chapter;\nuse W7\\App\\Model\\Entity\\Document\\ChapterApi;\nuse W7\\App\\Model\\Entity\\Document\\ChapterApiExtend;\nuse W7\\App\\Model\\Entity\\Document\\ChapterApiParam;\nuse W7\\App\\Model\\Entity\\Document\\ChapterContent;\nuse W7\\App\\Model\\Entity\\User;\nuse W7\\App\\Model\\Entity\\UserOperateLog;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\nuse W7\\App\\Model\\Service\\CdnLogic;\n\nclass ChapterLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\t/**\n\t * 获取章节目录\n\t * @param $id\n\t * @return array\n\t */\n\tpublic function getCatalog($documentId)\n\t{\n\t\t$list = Chapter::query()\n\t\t\t->select('id', 'name', 'sort', 'parent_id', 'is_dir', 'default_show_chapter_id')\n\t\t\t->where('document_id', $documentId)\n\t\t\t->orderBy('parent_id', 'asc')\n\t\t\t->orderBy('sort', 'asc')->get()->toArray();\n\n\t\tif (empty($list)) {\n\t\t\treturn [];\n\t\t}\n\n\t\t$result = [];\n\t\tforeach ($list as $id => $item) {\n\t\t\t$item['is_dir'] = $item['is_dir'] == Chapter::IS_DIR ? true : false;\n\t\t\t$result[$item['id']] = $item;\n\t\t\t$result[$item['id']]['children'] = [];\n\t\t}\n\n\t\treturn $this->getTree($result, 0);\n\t}\n\n\tprivate function getTree($data, $pid = 0, $i = 0)\n\t{\n\t\t$tree = [];\n\t\t++$i;\n\t\tforeach ($data as $k => $v) {\n\t\t\t$v['level'] = $i;\n\t\t\tif ($v['parent_id'] == $pid) {\n\t\t\t\t$v['children'] = $this->getTree($data, $v['id'], $i);\n\t\t\t\t$tree[] = $v;\n\t\t\t\tunset($data[$k]);\n\t\t\t}\n\t\t}\n\t\treturn $tree;\n\t}\n\n\t/**\n\t * 获取章节数据\n\t * @param $id\n\t * @param int $documentId\n\t * @return \\Illuminate\\Database\\Eloquent\\Builder|\\Illuminate\\Database\\Eloquent\\Model|null|object\n\t */\n\tpublic function getById($id, $documentId = 0)\n\t{\n\t\t$id = intval($id);\n\t\t$documentId = intval($documentId);\n\n\t\t$query = Chapter::query()->where('id', $id);\n\t\tif (!empty($documentId)) {\n\t\t\t$query = $query->where('document_id', $documentId);\n\t\t}\n\n\t\treturn $query->first();\n\t}\n\n\tpublic function getMaxSort($parentId)\n\t{\n\t\treturn Chapter::query()->where('parent_id', '=', $parentId)->max('sort');\n\t}\n\n\tpublic function deleteByDocumentId($documentId)\n\t{\n\t\t$chapterQuery = Chapter::query()->where('document_id', $documentId);\n\n\t\t$chapter = $chapterQuery->get();\n\t\t$chapterIds = $chapter->pluck('id')->toArray();\n\n\t\tif ($chapterQuery->delete()) {\n\t\t\tChapterContent::query()->whereIn('chapter_id', $chapterIds)->delete();\n\t\t\t$setting = SettingLogic::instance()->getByKey(SettingLogic::KEY_COS,0);\n\t\t\tif ($setting) {\n\t\t\t\tCdnLogic::instance()->channel(SettingLogic::KEY_COS)->deletePath(sprintf('/%s', $documentId));\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}\n\n\tpublic function deleteById($chapterId)\n\t{\n\t\t$chapter = $this->getById($chapterId);\n\t\tif (empty($chapter)) {\n\t\t\tthrow new \\RuntimeException('章节不存在');\n\t\t}\n\n\t\tif ($chapter->delete()) {\n\t\t\tChapter::query()->where('default_show_chapter_id', '=', $chapterId)->update([\n\t\t\t\t'default_show_chapter_id' => 0\n\t\t\t]);\n\t\t\tChapterContent::query()->where('chapter_id', '=', $chapterId)->delete();\n\n\t\t\tChapterApi::query()->where('chapter_id', '=', $chapterId)->delete();\n\t\t\tChapterApiParam::query()->where('chapter_id', '=', $chapterId)->delete();\n\t\t\tChapterApiExtend::query()->where('chapter_id', '=', $chapterId)->delete();\n\n\t\t\tUserOperateLog::query()->where('document_id', '=', $chapter->document_id)->where('chapter_id', '=', $chapterId)->delete();\n\n\t\t\tStarLogic::instance()->clearByChapterId($chapterId);\n\n\t\t\t$setting = SettingLogic::instance()->getByKey(SettingLogic::KEY_COS,0);\n\t\t\tif ($setting) {\n\t\t\t\tCdnLogic::instance()->channel(SettingLogic::KEY_COS)->deletePath(sprintf('/%s/%s', $chapter->document_id, $chapterId));\n\t\t\t}\n\n\t\t\treturn true;\n\t\t}\n\n\t\tthrow new \\RuntimeException('章节删除失败');\n\t}\n\n\tpublic function sortByChapter(Chapter $source, Chapter $target, $position = 'before')\n\t{\n\t\tif ($source->parent_id != $target->parent_id) {\n\t\t\tthrow new \\RuntimeException('文档不在一个目录内');\n\t\t}\n\n\t\tif ($source->document_id != $target->document_id) {\n\t\t\tthrow new \\RuntimeException('要移到的章节不在一个文档内');\n\t\t}\n\n\t\tif ($position == 'before') {\n\t\t\t//把大于target sort先全部后移一位，然后把当前插入到target后面\n\t\t\tChapter::query()->where('document_id', '=', $source->document_id)\n\t\t\t\t->where('parent_id', '=', $target->parent_id)\n\t\t\t\t->where('id', '!=', $source->id)\n\t\t\t\t->where('sort', '>=', $target->sort)->increment('sort');\n\n\t\t\t$source->sort = $target->sort;\n\t\t\t$source->save();\n\t\t} else {\n\t\t\t//把大于target sort先全部后移一位，然后把当前插入到target后面\n\t\t\tChapter::query()->where('document_id', '=', $source->document_id)\n\t\t\t\t->where('parent_id', '=', $target->parent_id)\n\t\t\t\t->where('id', '!=', $source->id)\n\t\t\t\t->where('sort', '>', $target->sort)->increment('sort');\n\t\t\t$source->sort = $target->sort + 1;\n\t\t\t$source->save();\n\t\t}\n\n\t\treturn true;\n\t}\n\n\tpublic function moveByChapter(Chapter $source, Chapter $target)\n\t{\n\t\tif (!$target->is_dir) {\n\t\t\tthrow new \\RuntimeException('移动的目标不是目录，不能移动');\n\t\t}\n\t\t$documentChange = 0;\n\t\tif ($source->document_id != $target->document_id) {\n\t\t\t$documentChange = 1;\n\t\t}\n\t\t$source->document_id = $target->document_id;\n\t\t$source->parent_id = $target->id;\n\t\t$source->sort = ChapterLogic::instance()->getMaxSort($target->parent_id);\n\t\t$source->save();\n\t\t//下级目录修改\n\t\tif ($source->is_dir) {\n\t\t\t//移动的是一个目录\n\t\t\t$this->moveSunChapter($source, $source->document_id);\n\t\t}\n\t\treturn true;\n\t}\n\n\tpublic function moveSunChapter($source, $documentId)\n\t{\n\t\tif ($source->is_dir) {\n\t\t\t//是目录\n\t\t\t$list = Chapter::query()->where('parent_id', $source->id)->get();\n\t\t\tif (count($list)) {\n\t\t\t\tforeach ($list as $key => $val) {\n\t\t\t\t\t$val->document_id = $documentId;\n\t\t\t\t\t$val->save();\n\t\t\t\t\tif ($val->is_dir) {\n\t\t\t\t\t\t$this->moveSunChapter($val, $documentId);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tpublic function searchDocument($id, $keyword)\n\t{\n\t\t$content_ids = ChapterContent::where('content', 'like', '%' . $keyword . '%')->pluck('chapter_id')->toArray();\n\t\t$document_ids = Chapter::where('name', 'like', '%' . $keyword . '%')->where('document_id', $id)->pluck('id')->toArray();\n\t\t$document_ids = array_merge($content_ids, $document_ids);\n\t\t$documents = Chapter::whereIn('id', $document_ids)->where('document_id', $id)->get()->toArray();\n\t\tforeach ($documents as &$document) {\n\t\t\t$document['content'] = ChapterContent::find($document['id'])->content ?? '';\n\t\t\tif ($document['content']) {\n\t\t\t\t$document['content'] = mb_substr($document['content'], 0, 264, 'utf-8');\n\t\t\t}\n\t\t\t$document['path'] = $this->getPath($document['parent_id']);\n\t\t}\n\n\t\t$documentinfo = Document::where('id', $id)->first();\n\t\tif ($documentinfo && $documentinfo['creator_id']) {\n\t\t\t$userinfo = User::where('id', $documentinfo['creator_id'])->first();\n\t\t\tif ($userinfo) {\n\t\t\t\tforeach ($documents as $key => &$val) {\n\t\t\t\t\t$val['creator_id'] = $userinfo['id'];\n\t\t\t\t\t$val['username'] = $userinfo['username'];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn $documents;\n\t}\n\n\tpublic function getPath($parent_id)\n\t{\n\t\t$path = $parent_id;\n\t\twhile ($parent_id != 0) {\n\t\t\t$temporary = Chapter::query()->find($parent_id)->first();\n\t\t\tif ($temporary) {\n\t\t\t\t$parent_id = $temporary->parent_id;\n\t\t\t\t$path = $parent_id . '/' . $path;\n\t\t\t} else {\n\t\t\t\tthrow new \\Exception('路径信息缺失!');\n\t\t\t}\n\t\t}\n\t\treturn $path;\n\t}\n\n\tpublic function searchChapter($id, $keywords)\n\t{\n\t\t$chapter = Chapter::query()->select('id', 'parent_id', 'name')->where('document_id', $id)->where('name', 'like', '%' . $keywords . '%')->first();\n\t\tif ($chapter) {\n\t\t\t$chapter['content'] = ChapterContent::find($chapter['id'])->content ?? '';\n\t\t\t$chapter['path'] = $this->getPath($chapter['parent_id']);\n\t\t\treturn $chapter;\n\t\t}\n\t\tthrow new \\Exception('没有匹配到任何章节');\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/Document/ChapterApi/ChapterCommonLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic\\Document\\ChapterApi;\n\nuse W7\\App\\Model\\Entity\\Document\\ChapterApiParam;\n\nclass ChapterCommonLogic\n{\n\t//是否为对象（非数组）\n\tpublic function is_assoc($arr)\n\t{\n\t\t//array(1, 2, 3, 4, 5, 6, 7);// 输出false\n\t\treturn array_keys($arr) !== range(0, count($arr) - 1);\n\t}\n\n\t//字符串是否为JSON\n\tpublic function isJson($data = '', $assoc = false)\n\t{\n\t\t$data = json_decode($data, $assoc);\n\t\tif (($data && is_object($data)) || (is_array($data) && !empty($data))) {\n\t\t\treturn $data;\n\t\t}\n\t\treturn false;\n\t}\n\n\n\t/**\n\t * url参数转化成数组\n\t * @param string\n\t * @return mixed\n\t */\n\tpublic  function urlToArray($query)\n\t{\n\t\t$op = array();\n\t\t$pairs = explode(\"&\", $query);\n\t\tforeach ($pairs as $pair) {\n\t\t\tlist($k, $v) = array_map(\"urldecode\", explode(\"=\", $pair));\n\t\t\t$op[$k] = $v;\n\t\t}\n\t\treturn $op;\n\t}\n\n\n\t//请求列表\n\tpublic function requestIds()\n\t{\n\t\treturn [\n\t\t\tChapterApiParam::LOCATION_REQUEST_HEADER => 'Request.Header',\n\t\t\tChapterApiParam::LOCATION_REQUEST_QUERY_STRING => 'Request.Query',\n\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_FROM => 'Request.Body.form-data',\n\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_URLENCODED => 'Request.Body.urlencoded',\n\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_RAW => 'Request.Body.raw',\n\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_BINARY => 'Request.Body.binary',\n\t\t];\n\t}\n\n\t//响应列表\n\tpublic function reponseIds()\n\t{\n\t\treturn [\n\t\t\tChapterApiParam::LOCATION_REPONSE_HEADER => 'Reponse.Header',\n\t\t\tChapterApiParam::LOCATION_REPONSE_BODY_FROM => 'Reponse.Body.form-data',\n\t\t\tChapterApiParam::LOCATION_REPONSE_BODY_URLENCODED => 'Reponse.Body.urlencoded',\n\t\t\tChapterApiParam::LOCATION_REPONSE_BODY_RAW => 'Reponse.Body.raw',\n\t\t\tChapterApiParam::LOCATION_REPONSE_BODY_BINARY => 'Reponse.Body.binary',\n\t\t];\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/Document/ChapterApi/ChapterDemoLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic\\Document\\ChapterApi;\n\nuse W7\\App\\Model\\Entity\\Document\\ChapterApiParam;\n\n//返回演示数据demo\nclass ChapterDemoLogic extends ChapterCommonLogic\n{\n\tprotected $chapterId;\n\n\tpublic function __construct($chapterId)\n\t{\n\t\t$this->chapterId = $chapterId;\n\t}\n\n\t//type==1 array 2键值对  3键值对数组 $locationType 1请求2 响应\n\tpublic function getChapterDemo($locationType, $type = 1, $locationList = [])\n\t{\n\t\t$chapterId = $this->chapterId;\n\t\tif ($locationType == 2) {\n\t\t\t$locationList = array_keys($this->reponseIds());\n\t\t} elseif ($locationType == 0) {\n\t\t\t//使用参数locationList\n\t\t} else {\n\t\t\t$locationList = array_keys($this->requestIds());\n\t\t}\n\t\t$chapterList = ChapterApiParam::query()->where('chapter_id', $chapterId)->where('parent_id', 0)->whereIn('location', $locationList)->get();\n\t\t$data = $this->getChapterDemoChildrenArray($chapterList, '');\n\t\tif (in_array($type, [2, 3])) {\n\t\t\t//需要转键值对\n\t\t\treturn [\n\t\t\t\t'data' => $this->getArrayToKeyValue($data['data'], $type),\n\t\t\t\t'descriptionData' => $this->getArrayToKeyValue($data['descriptionData'], $type),\n\t\t\t];\n\t\t}\n\t\t//data数组结构，descriptionData数据结构对应描述\n\t\treturn $data;\n\t}\n\n\t//导出-2键值对字符串，3键值对数组\n\tpublic function getArrayToKeyValue($data, $type)\n\t{\n\t\t$str = http_build_query($data);\n\t\tif ($type == 3) {\n\t\t\t//键值对数组\n\t\t\t$info1 = explode('&', $str);\n\t\t\t$reply = [];\n\t\t\tforeach ($info1 as $key => $val) {\n\t\t\t\t$info2 = explode('=', $val);\n\t\t\t\t$name = urldecode($info2[0]);\n\t\t\t\t$value = urldecode(str_replace($info2[0] . '=', '', $val));\n\t\t\t\t$reply[$name] = $value;\n\t\t\t}\n\t\t\treturn $reply;\n\t\t} else {\n\t\t\t//纯键值对\n\t\t\t$str = str_replace('&', \"\\n\", $str);\n\t\t\t$str = str_replace('=', ':', $str);\n\t\t\treturn urldecode($str);\n\t\t}\n\t}\n\n\tpublic function getChapterDemoChildrenArray($listChildren, $defaultValue = '')\n\t{\n\t\tif ($this->isJson($defaultValue)) {\n\t\t\t//如果是json\n\t\t\t$defaultValueList = json_decode($defaultValue, true);\n\t\t} else {\n\t\t\t$defaultValueList = [];\n\t\t}\n\t\t$data = [];\n\t\t$descriptionData = [];\n\t\t$i = 0;\n\t\tforeach ($listChildren as $key => $val) {\n\t\t\t$defaultValue = '';\n\t\t\tif ($val->default_value) {\n\t\t\t\t$defaultValue = $val->default_value;\n\t\t\t} else {\n\t\t\t\tif (isset($defaultValueList[$i])) {\n\t\t\t\t\t$defaultValue = $defaultValueList[$i];\n\t\t\t\t}\n\t\t\t}\n\t\t\t$description = $val->description;\n\n\t\t\tif (in_array($val->type, [ChapterApiParam::TYPE_OBJECT, ChapterApiParam::TYPE_ARRAY])) {\n\t\t\t\t//如果里面还是数组或者对象\n\t\t\t\t$listChildrenSun = ChapterApiParam::query()->where('chapter_id', $val->chapter_id)\n\t\t\t\t\t->where('parent_id', $val->id)->get();\n\t\t\t\tif (count($listChildrenSun) > 0) {\n\t\t\t\t\tif (is_numeric($val->rule) && ($val->rule > 1)) {\n\t\t\t\t\t\t//如果是多维数组\n\t\t\t\t\t\t$chapterDemoChildren = $this->getChapterDemoChildrenArray($listChildrenSun, '');\n\t\t\t\t\t\t$data[$val->name][] = $chapterDemoChildren['data'];\n\t\t\t\t\t\t$descriptionData[$val->name][] = $chapterDemoChildren['descriptionData'];\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$chapterDemoChildren = $this->getChapterDemoChildrenArray($listChildrenSun, '');\n\t\t\t\t\t\t$data[$val->name] = $chapterDemoChildren['data'];\n\t\t\t\t\t\t$descriptionData[$val->name] = $chapterDemoChildren['descriptionData'];\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t//没有子类\n\t\t\t\t\tif ($this->isJson($defaultValue)) {\n\t\t\t\t\t\t//如果是json\n\t\t\t\t\t\t$defaultValueList = json_decode($defaultValue, true);\n\t\t\t\t\t\t$defaultValue = $defaultValueList[0];\n\t\t\t\t\t}\n\t\t\t\t\t$data[$val->name] = $defaultValue;\n\t\t\t\t\t$descriptionData[$val->name] = $description;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif ($val->name) {\n\t\t\t\t\t//对象\n\t\t\t\t\t$data[$val->name] = $defaultValue;\n\t\t\t\t\t$descriptionData[$val->name] = $description;\n\t\t\t\t} else {\n\t\t\t\t\t//数字键值\n\t\t\t\t\t$data[] = $defaultValue;\n\t\t\t\t\t$descriptionData[] = $description;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn ['data' => $data, 'descriptionData' => $descriptionData];\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/Document/ChapterApi/ChapterImportLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic\\Document\\ChapterApi;\n\n//返回演示数据demo\n\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Document\\ChapterApiParam;\n\nclass ChapterImportLogic extends ChapterCommonLogic\n{\n\tprivate $errNullMsg = '导入数据不能为空';\n\n\tpublic function getApiparam($data, $location, $type = 'key_word')\n\t{\n\t\tif ($type == 'key_word') {\n\t\t\tif (!is_array($data)) {\n\t\t\t\t$array = $this->keyWordToData($data);\n\t\t\t\tif ($data && count($array) == 0) {\n\t\t\t\t\t//兼容文本长内容，必须要用:隔开\n\t\t\t\t\tthrow new ErrorHttpException('键值对格式错误，请按照key:value格式填写');\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tthrow new ErrorHttpException('键值对格式错误，请按照key:value格式填写');\n\t\t\t}\n\t\t} elseif ($type == 'json') {\n\t\t\tif (!$data) {\n\t\t\t\tthrow new ErrorHttpException($this->errNullMsg);\n\t\t\t}\n\t\t\tif ($this->isJson($data)) {\n\t\t\t\t$array = json_decode($data, true);\n\t\t\t} else {\n\t\t\t\tthrow new ErrorHttpException('导入数据不是标准的JSON格式');\n\t\t\t}\n\t\t} else if (is_array($data)) {\n\t\t\t$array = $data;\n\t\t}\n\t\tif (is_array($array)) {\n\t\t\tif (count($array) == 0) {\n\t\t\t\tthrow new ErrorHttpException($this->errNullMsg);\n\t\t\t}\n\t\t\t//生成Apiparam数据\n\t\t\tif ((count($array) != count($array, 1))&&(!$this->is_assoc($array))) {\n\t\t\t\t//如果是多维数组\n\t\t\t\t$arrayData = $this->buildArrayData('__root__', $array, $location);\n\t\t\t\t$record = [$arrayData];\n\t\t\t} else {\n\t\t\t\t$record = $this->formartToMock($array, $location);\n\t\t\t}\n\t\t\treturn $record;\n\t\t}\n\t\tthrow new ErrorHttpException('导入数据不符合要求');\n\t}\n\n\t/**\n\t * 导入参数格式化成mock\n\t */\n\tpublic function formartToMock(array $arr, $location, $mergeRecursive = [])\n\t{\n\t\t$data = [];\n\t\tforeach ($arr as $k => $v) {\n\t\t\t$rule = '';\n\t\t\t$children = [];\n\t\t\t$arrayData = [];\n\t\t\t$default = $v;\n\t\t\t$type = ChapterApiParam::TYPE_STRING;\n\t\t\tif (is_numeric($v)) { //数字\n\t\t\t\t$type = ChapterApiParam::TYPE_NUMBER;\n\t\t\t} elseif (is_bool($v)) { //布尔\n\t\t\t\t$type = ChapterApiParam::TYPE_BOOLEAN;\n\t\t\t} elseif (is_string($v)) { //字符串\n\t\t\t\t$type = ChapterApiParam::TYPE_STRING;\n\t\t\t} elseif (is_null($v)) {\n\t\t\t\t$type = ChapterApiParam::TYPE_NULL;\n\t\t\t} elseif (is_array($v)) { //数组或对象\n\t\t\t\t$arrayData = $this->buildArrayData($k, $v, $location);\n\t\t\t}\n\n\t\t\tif ($mergeRecursive && isset($mergeRecursive[$k])) {\n\t\t\t\t//去重\n\t\t\t\tif (is_array($mergeRecursive[$k])) {\n\t\t\t\t\t$uniqueMergeRecursive = array_unique($mergeRecursive[$k]);\n\t\t\t\t\tif (count($uniqueMergeRecursive) > 1) {\n\t\t\t\t\t\tif ($type !== ChapterApiParam::TYPE_STRING) {\n\t\t\t\t\t\t\t//如果\n\t\t\t\t\t\t\t$type = $this->checkType($type, $uniqueMergeRecursive);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t$default = json_encode($uniqueMergeRecursive, JSON_UNESCAPED_UNICODE);\n\t\t\t\t\t\tif ($default) {\n\t\t\t\t\t\t\t$rule = '+1';\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$default = $uniqueMergeRecursive[0];\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t$default = $mergeRecursive[$k];\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ($arrayData) {\n\t\t\t\t$data[] = $arrayData;\n\t\t\t} else {\n\t\t\t\t$data[] = [\n\t\t\t\t\t'type' => $type,\n\t\t\t\t\t'name' => $k,\n\t\t\t\t\t'description' => '',\n\t\t\t\t\t'enabled' => ChapterApiParam::ENABLED_YES,\n\t\t\t\t\t'location' => $location,\n\t\t\t\t\t'default_value' => $default,\n\t\t\t\t\t'rule' => $rule ?? '',\n\t\t\t\t\t'children' => $children ?? []\n\t\t\t\t];\n\t\t\t}\n\t\t}\n\t\treturn $data;\n\t}\n\n\tpublic function checkType($oldtype, $uniqueMergeRecursive)\n\t{\n\t\tforeach ($uniqueMergeRecursive as $k => $v) {\n\t\t\tif (is_numeric($v)) { //数字\n\t\t\t\t$type = ChapterApiParam::TYPE_NUMBER;\n\t\t\t} elseif (is_bool($v)) { //布尔\n\t\t\t\t$type = ChapterApiParam::TYPE_BOOLEAN;\n\t\t\t} elseif (is_string($v)) { //字符串\n\t\t\t\t$type = ChapterApiParam::TYPE_STRING;\n\t\t\t} elseif (is_null($v)) {\n\t\t\t\t$type = ChapterApiParam::TYPE_NULL;\n\t\t\t} else {\n\t\t\t\t$type = $oldtype;\n\t\t\t}\n\t\t\tif ($type != $oldtype) {\n\t\t\t\t//如果出现两种以上类型->直接返回字符串\n\t\t\t\treturn ChapterApiParam::TYPE_STRING;\n\t\t\t}\n\t\t}\n\t\treturn $oldtype;\n\t}\n\n\tpublic function buildArrayData($key, $val, $location)\n\t{\n\t\t$default = '';\n\t\t$rule = 0;\n\t\t$type = ChapterApiParam::TYPE_ARRAY;\n\t\t$i = 0;\n\t\t$sunArray = [];\n\t\t$mergeRecursive = [];\n\t\t$hasArray = 0;\n\t\tforeach ($val as $k => $v) {\n\t\t\tif ($k != $i) {\n\t\t\t\t$type = ChapterApiParam::TYPE_OBJECT;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t$i++;\n\t\t\t//如果不是对象，是多维数组\n\t\t\tif (is_array($v) && $type == ChapterApiParam::TYPE_ARRAY) {\n\t\t\t\t$hasArray = 1;\n\t\t\t\t//如果子数组是个数组\n\t\t\t\t$rule = $rule + 1;\n\t\t\t\tif ($rule == 1) {\n\t\t\t\t\t$sunArray = $v;\n\t\t\t\t\t$mergeRecursive = $v;\n\t\t\t\t} else {\n\t\t\t\t\t//值和键值分开\n\t\t\t\t\t$sunArray = array_merge($sunArray, $v);\n\t\t\t\t\t//合并的时候，值合并到一起(按数组)\n\t\t\t\t\t$mergeRecursive = array_merge_recursive($mergeRecursive, $v);\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (!is_array($v) && $hasArray == 1) {\n\t\t\t\t$type = ChapterApiParam::TYPE_OBJECT;\n\t\t\t\t//如果都是数组（多维数组）当前有一个不是数组->是对象\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tif ($type == ChapterApiParam::TYPE_OBJECT) {\n\t\t\t//如果当前数组是对象\n\t\t\treturn [\n\t\t\t\t'type' => ChapterApiParam::TYPE_OBJECT,\n\t\t\t\t'name' => $key,\n\t\t\t\t'description' => '',\n\t\t\t\t'enabled' => ChapterApiParam::ENABLED_YES,\n\t\t\t\t'default_value' => $default,\n\t\t\t\t'rule' => '',\n\t\t\t\t'children' => $this->formartToMock($val, $location)\n\t\t\t];\n\t\t} else if ($rule > 0) {\n\t\t\t//如果是多维数组\n\t\t\treturn [\n\t\t\t\t'type' => ChapterApiParam::TYPE_ARRAY,\n\t\t\t\t'name' => $key,\n\t\t\t\t'description' => '',\n\t\t\t\t'enabled' => ChapterApiParam::ENABLED_YES,\n\t\t\t\t'default_value' => '',\n\t\t\t\t'rule' => $rule,\n\t\t\t\t'children' => $this->formartToMock($sunArray, $location, $mergeRecursive)\n\t\t\t];\n\t\t} else {\n\t\t\t//单数组或者对象\n\t\t\tif ($this->is_assoc($val)) {\n\t\t\t\t//如果是对象\n\t\t\t\treturn [\n\t\t\t\t\t'type' => ChapterApiParam::TYPE_OBJECT,\n\t\t\t\t\t'name' => $key,\n\t\t\t\t\t'description' => '',\n\t\t\t\t\t'enabled' => ChapterApiParam::ENABLED_YES,\n\t\t\t\t\t'default_value' => $default,\n\t\t\t\t\t'rule' => '',\n\t\t\t\t\t'children' => $this->formartToMock($val, $location)\n\t\t\t\t];\n\t\t\t} else {\n\t\t\t\t//如果是纯数组，默认值返回整个数组\n\t\t\t\tif (array_unique($val)) {\n\t\t\t\t\t$default = $this->dataToJson(array_unique($val));\n\t\t\t\t}\n\t\t\t\treturn [\n\t\t\t\t\t'type' => ChapterApiParam::TYPE_ARRAY,\n\t\t\t\t\t'name' => $key,\n\t\t\t\t\t'description' => '',\n\t\t\t\t\t'enabled' => ChapterApiParam::ENABLED_YES,\n\t\t\t\t\t'default_value' => $default,\n\t\t\t\t\t'rule' => $default ? '+1' : '',\n\t\t\t\t\t'children' => []\n\t\t\t\t];\n\t\t\t}\n\t\t}\n\t}\n\n\n//\tpublic function buildArrayData($v){\n//\t\tif (count($v) == count($v, 1)) { //数组\n//\t\t\t$type = ChapterApiParam::TYPE_ARRAY;\n//\t\t\tif ($step) { //纯数字数组\n//\t\t\t\t$default = $v === array_filter($v, 'is_int') ? current($v) : $v;\n//\t\t\t\tif (is_array($default)) {\n//\t\t\t\t\t//如果是数组转JSON\n//\t\t\t\t\t$default = $this->dataToJson($default);\n//\t\t\t\t}\n//\t\t\t} elseif (!($v === array_filter($v, 'is_int'))) { //单个对象\n//\t\t\t\t$children = $this->formartToMock($v, $location);\n//\t\t\t\t$default = '';\n//\t\t\t}\n//\t\t} elseif($this->is_assoc($v)) {\n//\t\t\t$children = $this->formartToMock($v, $location, true);\n//\t\t}else{ //对象集合\n//\t\t\t$type = ChapterApiParam::TYPE_OBJECT;\n//\t\t\t$merge = [];\n//\t\t\tforeach ($v as $v1) {\n//\t\t\t\t$merge = array_merge_recursive($merge, $v1);\n//\t\t\t}\n//\t\t\tforeach ($merge as &$v1) {\n//\t\t\t\t$v1 = array_pad(is_array($v1) ? $v1 : [$v1], count($v), null);\n//\t\t\t}\n//\t\t\tif (!$this->is_assoc($merge)) {\n//\t\t\t\t$rule = count($v);\n//\t\t\t} else {\n//\t\t\t\t$children = $this->formartToMock($merge, $location, true);\n//\t\t\t}\n//\t\t\t$default = '';\n//\t\t}\n//\t}\n\n\tpublic function dataToJson($arr)\n\t{\n\t\tforeach ($arr as $key => $val) {\n\t\t\tif (is_numeric($val)) {\n\t\t\t\t$arr[$key] = (int)$val;\n\t\t\t}\n\t\t}\n\t\treturn json_encode($arr, JSON_UNESCAPED_UNICODE);\n\t}\n\n//\tpublic function buildApiparamData($data)\n//\t{\n//\t\t$record = [];\n//\t\tforeach ($data as $key => $val) {\n//\t\t\tif (is_array($val)) {\n//\t\t\t\t//多维数组还是单维度数组\n//\t\t\t\tif (count($val) == count($val, 1)) {\n//\t\t\t\t\tif ($this->is_assoc($val)) {\n//\t\t\t\t\t\t//对象\n//\t\t\t\t\t\t$record[] = [\n//\t\t\t\t\t\t\t'type' => ChapterApiParam::TYPE_OBJECT,\n//\t\t\t\t\t\t\t'name' => $key,\n//\t\t\t\t\t\t\t'description' => '',\n//\t\t\t\t\t\t\t'enabled' => ChapterApiParam::ENABLED_YES,\n//\t\t\t\t\t\t\t'default_value' => '',\n//\t\t\t\t\t\t\t'rule' => '',\n//\t\t\t\t\t\t\t'children' => $this->buildApiparamData($val)\n//\t\t\t\t\t\t];\n//\t\t\t\t\t} else {\n//\t\t\t\t\t\t//纯数组\n//\t\t\t\t\t\t$record[] = [\n//\t\t\t\t\t\t\t'type' => ChapterApiParam::TYPE_ARRAY,\n//\t\t\t\t\t\t\t'name' => $key,\n//\t\t\t\t\t\t\t'description' => '',\n//\t\t\t\t\t\t\t'enabled' => ChapterApiParam::ENABLED_YES,\n//\t\t\t\t\t\t\t'default_value' => json_encode($val),\n//\t\t\t\t\t\t\t'rule' => '',\n//\t\t\t\t\t\t\t'children' => []\n//\t\t\t\t\t\t];\n//\t\t\t\t\t}\n//\t\t\t\t} else {\n//\t\t\t\t\t//多维数组\n//\t\t\t\t\t//多维数组先合并子类\n//\t\t\t\t\t$sun = [];\n//\t\t\t\t\tforeach ($val as $k => $v) {\n//\n//\t\t\t\t\t\tif ($this->is_assoc($val)) {\n//\t\t\t\t\t\t\t//对象\n//\t\t\t\t\t\t\t$sun[$k][] = $v;\n//\t\t\t\t\t\t} else {\n//\t\t\t\t\t\t\t//数组\n//\t\t\t\t\t\t\t$sun[$k][] = $v;\n//\t\t\t\t\t\t}\n//\t\t\t\t\t}\n//\t\t\t\t\t$record[] = [\n//\t\t\t\t\t\t'type' => ChapterApiParam::TYPE_ARRAY,\n//\t\t\t\t\t\t'name' => $key,\n//\t\t\t\t\t\t'description' => '',\n//\t\t\t\t\t\t'enabled' => ChapterApiParam::ENABLED_YES,\n//\t\t\t\t\t\t'default_value' => '',\n//\t\t\t\t\t\t'rule' => '+' . count($val),\n//\t\t\t\t\t\t'children' => $this->buildApiparamData($val)\n//\t\t\t\t\t];\n//\t\t\t\t}\n//\t\t\t} else {\n//\t\t\t\t//键值\n//\t\t\t\t$type = ChapterApiParam::TYPE_STRING;\n//\t\t\t\tif (is_numeric($val)) {\n//\t\t\t\t\t$type = ChapterApiParam::TYPE_NUMBER;\n//\t\t\t\t} elseif ($val == 'true' || $val == 'false') {\n//\t\t\t\t\t$type = ChapterApiParam::TYPE_BOOLEAN;\n//\t\t\t\t}\n//\t\t\t\t$record[] = [\n//\t\t\t\t\t'type' => $type,\n//\t\t\t\t\t'name' => $key,\n//\t\t\t\t\t'description' => '',\n//\t\t\t\t\t'enabled' => ChapterApiParam::ENABLED_YES,\n//\t\t\t\t\t'default_value' => $val,\n//\t\t\t\t\t'rule' => '',\n//\t\t\t\t\t'children' => []\n//\t\t\t\t];\n//\t\t\t}\n//\t\t}\n//\t\treturn $record;\n//\t}\n\n\tpublic function keyWordToData($keyWord)\n\t{\n\t\t$data = [];\n\t\t$str = '';\n\t\t$data1 = explode(\"\\n\", $keyWord);\n\t\tif (count($data1)) {\n\t\t\t$data1 = $this->compatible($data1);\n\t\t\tforeach ($data1 as $key => $val) {\n\t\t\t\t$item = '';\n\t\t\t\t$itemData = explode(':', $val);\n\t\t\t\tif (substr($itemData[0], 0, 2) == '//') {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tif (count($itemData) > 1) {\n\t\t\t\t\t$start = strlen($itemData[0] . ':');\n\t\t\t\t\t$last = substr($val, $start);\n\t\t\t\t\t//首字符去空\n//\t\t\t\t\tif (strlen($last) > 1) {\n//\t\t\t\t\t\tif (substr($last, 0, 1) == ' ') {\n//\t\t\t\t\t\t\t$last = substr($last, 1);\n//\t\t\t\t\t\t}\n//\t\t\t\t\t}\n\t\t\t\t\t$item = $itemData[0] . '=' . $last;\n\t\t\t\t} else {\n\t\t\t\t\t$item = $itemData[0] . '=';\n\t\t\t\t}\n\t\t\t\tif ($item) {\n\t\t\t\t\tparse_str($item, $dataTemp);\n\t\t\t\t\t//单条转化\n\t\t\t\t\t$data = $this->buildData($data, $dataTemp);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $data;\n\t}\n\n\t//兼容文本\n\tpublic function compatible($data)\n\t{\n\t\t$i = 0;\n\t\t$last = '';\n\t\t$newData = [];\n\t\tforeach ($data as $key => $val) {\n\t\t\tif (strpos($val, ':') !== false) {\n\t\t\t\t$newData[$i] = $val;\n\t\t\t\t$last = $val;\n\t\t\t\t$i++;\n\t\t\t} else {\n\t\t\t\t//不包含:\n\t\t\t\tif ($i > 0) {\n\t\t\t\t\t$newData[$i - 1] = $last . \"\\n\" . $val;\n\t\t\t\t\t$last = $newData[$i - 1];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $newData;\n\t}\n\n\t//组数组\n\tpublic function buildData($data, $dataTemp)\n\t{\n\t\tforeach ($dataTemp as $k => $v) {\n\t\t\tif (is_array($v)) {\n\t\t\t\t//如果是数组\n\t\t\t\tif (isset($data[$k])) {\n\t\t\t\t\t$data[$k] = $this->buildData($data[$k], $v);\n\t\t\t\t} else {\n\t\t\t\t\t$data[$k] = $this->buildData([], $v);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t$data[$k] = $v;\n\t\t\t}\n\t\t}\n\t\treturn $data;\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/Document/ChapterApi/ChapterRecordLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic\\Document\\ChapterApi;\n\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Document\\ChapterApi;\nuse W7\\App\\Model\\Entity\\Document\\ChapterApiExtend;\nuse W7\\App\\Model\\Entity\\Document\\ChapterApiParam;\nuse W7\\App\\Model\\Entity\\Document\\ChapterApiReponse;\nuse W7\\App\\Model\\Logic\\Document\\ChapterApiLogic;\nuse W7\\App\\Model\\Logic\\Document\\ChapterApiParamLogic;\nuse function GuzzleHttp\\Psr7\\build_query;\n\n/**\n * 数据存储与转markdown\n */\nclass ChapterRecordLogic\n{\n\tprotected $chapterId;\n\tprotected $ids = [];\n\tprotected $bodyParamLocation = 3;\n\tprotected $bodyReponseLocation = 10;\n\n\tpublic function __construct($chapterId)\n\t{\n\t\t$this->chapterId = $chapterId;\n\t}\n\n\t/*\n\t * type=1仅返回markdown（重新生成缓存） 2同时插入数据和返回markdown（编辑）\n\t * */\n\tpublic function recordToMarkdown($record, $sqlType = 2)\n\t{\n\t\t//markdown数据-初始化顺序\n\t\t$markdown = [\n\t\t\t'api' => '',\n\t\t\t'body' => '',\n\t\t\t'reponse' => '',\n\t\t\t'extend' => '',\n\t\t];\n\t\t$api = '';\n\t\tidb()->beginTransaction();\n\t\ttry {\n\t\t\t$chapterId = $this->chapterId;\n\n\t\t\t$cacheIndex = $this->getChapterIdRecordIndex($chapterId);\n\t\t\t$recordCache = icache()->get($cacheIndex);\n\t\t\tif ($recordCache) {\n\t\t\t\t//清除缓存\n\t\t\t\ticache()->delete($cacheIndex);\n\t\t\t\t//清除请求规则缓存\n\t\t\t\t$chapterRuleLogic = new ChapterRuleLogic($chapterId);\n\t\t\t\t$cacheRequestIndex = $chapterRuleLogic->getChapterIdRequestIndex();\n\t\t\t\ticache()->delete($cacheRequestIndex);\n\t\t\t}\n\t\t\tforeach ($record as $key => $val) {\n\t\t\t\tif (is_array($val)) {\n\t\t\t\t\tif ($key == 'api') {\n\t\t\t\t\t\t$api = $this->buildApi($val, $sqlType);\n\t\t\t\t\t} elseif ($key == 'body') {\n\t\t\t\t\t\t$body = $val;\n\t\t\t\t\t\tif (isset($record['api']['body_param_location']) && isset($body['request_body'])) {\n\t\t\t\t\t\t\t//指定存储body_param_location类型\n\t\t\t\t\t\t\t$body[$record['api']['body_param_location']] = $body['request_body'];\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tif ($sqlType == 2) {\n\t\t\t\t\t\t\t\tthrow new ErrorHttpException('没有body_param_location或request_body');\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (isset($body['reponse_body'])) {\n\t\t\t\t\t\t\t//指定存储request_body类型-兼容老版本，先不删除\n\t\t\t\t\t\t\t$body[ChapterApiParam::LOCATION_REPONSE_BODY_RAW] = $body['reponse_body'];\n\t\t\t\t\t\t}\n\t\t\t\t\t\t$markdown['body'] = $this->buildBody($body, $sqlType);\n\t\t\t\t\t} elseif ($key == 'reponse') {\n\t\t\t\t\t\t$reponse = $val;\n\t\t\t\t\t\t$markdown['reponse'] = $this->buildReponse($reponse, $sqlType);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tif ($key == 'extend') {\n\t\t\t\t\t\t$markdown['extend'] = $this->buildExtend($val, $sqlType);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(!$markdown['reponse']){\n\t\t\t\t\t//如果没有相应\n\t\t\t\t\t$this->deleteAllReponse($chapterId);\n\t\t\t\t}\n\t\t\t}\n\t\t\t//存储\n\t\t\tif ($sqlType == 2) {\n\t\t\t\t//循环结束以后，删除该父级本次未提交的ID\n\t\t\t\t$ids = $this->ids;\n\t\t\t\t$chapterId = $this->chapterId;\n\t\t\t\tif ($ids) {\n\t\t\t\t\tChapterApiParam::query()->where('chapter_id', $chapterId)->whereNotIn('id', $ids)->delete();\n\t\t\t\t} else {\n\t\t\t\t\tChapterApiParam::query()->where('chapter_id', $chapterId)->delete();\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ($api) {\n\t\t\t\t$markdown['api'] = $this->buildApiText($api, $chapterId);\n\t\t\t}\n\t\t\t//替换API的URL\n\t\t\tidb()->commit();\n\t\t} catch (\\Throwable $e) {\n\t\t\tidb()->rollBack();\n\t\t\tthrow new ErrorHttpException($e->getMessage());\n\t\t}\n\t\t$markdownText = implode(\"\\n\\n\", $markdown);\n\t\treturn $markdownText;\n\t}\n\n\tpublic function buildReponse($reponse, $sqlType)\n\t{\n\t\t$text = '';\n\t\t$reponseIds = [];\n\t\t$chapterId = $this->chapterId;\n\t\tif ($reponse) {\n\t\t\tforeach ($reponse as $key => $val) {\n\t\t\t\tif ($val['id']) {\n\t\t\t\t\t//清除请求规则缓存\n\t\t\t\t\t$chapterRuleLogic = new ChapterRuleLogic($chapterId);\n\t\t\t\t\t$cacheRequestIndex = $chapterRuleLogic->getChapterIdReponseIndex($val['id']);\n\t\t\t\t\ticache()->delete($cacheRequestIndex);\n\n\t\t\t\t\t//修改\n\t\t\t\t\t$chapterApiReponse = ChapterApiReponse::query()->find($val['id']);\n\t\t\t\t\tif ($chapterApiReponse) {\n\t\t\t\t\t\t$chapterApiReponse->description = $val['description'];\n\t\t\t\t\t\t$chapterApiReponse->save();\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif ($sqlType == 2) {\n\t\t\t\t\t\t\t//如果已经删除，重新新增\n\t\t\t\t\t\t\t$chapterApiReponse = ChapterApiReponse::query()->create([\n\t\t\t\t\t\t\t\t'chapter_id' => $chapterId,\n\t\t\t\t\t\t\t\t'description' => $val['description']\n\t\t\t\t\t\t\t]);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tif ($sqlType == 2) {\n\t\t\t\t\t\t//新增\n\t\t\t\t\t\t$chapterApiReponse = ChapterApiReponse::query()->create([\n\t\t\t\t\t\t\t'chapter_id' => $chapterId,\n\t\t\t\t\t\t\t'description' => $val['description']\n\t\t\t\t\t\t]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif ($chapterApiReponse && $val['data']) {\n\t\t\t\t\t$reponseIds[count($reponseIds)] = $chapterApiReponse->id;\n\t\t\t\t\t$reponseTop = '### 响应' . $val['description'] . \"\\n\";\n\t\t\t\t\t$reponseText = $this->buildApiBody(ChapterApiParam::LOCATION_REPONSE_BODY_RAW, $val['data'], $sqlType, $chapterApiReponse);\n\t\t\t\t\tif ($reponseText) {\n\t\t\t\t\t\t$text .= $reponseTop . $reponseText;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ($sqlType == 2) {\n\t\t\t\tif ($reponseIds) {\n\t\t\t\t\tChapterApiReponse::query()->where('chapter_id', $chapterId)->whereNotIn('id', $reponseIds)->delete();\n\t\t\t\t} else {\n\t\t\t\t\t$this->deleteAllReponse($chapterId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $text;\n\t}\n\n\tpublic function deleteAllReponse($chapterId){\n\t\tChapterApiReponse::query()->where('chapter_id', $chapterId)->delete();\n\t}\n\n\tpublic function buildBody($data, $sqlType, $chapterApiReponse = '')\n\t{\n\t\tif (!$data) {\n\t\t\t//没有数据\n\t\t\treturn '';\n\t\t}\n\t\t//初始化顺序\n\t\t$data \t= $this->bodySort($data);\n\t\t$body \t= '';\n\t\t$reqBody = '';\n\t\t$resBody = '';\n\t\t$requestTop = \"### 请求\\n\";\n\t\t$reponseTop = \"### 响应\\n\";\n\t\tforeach ($data as $k => $v) {\n\t\t\tif (in_array($k, [$this->bodyReponseLocation, ChapterApiParam::LOCATION_REPONSE_HEADER])) {\n\t\t\t\t$resBody .= $this->buildApiBody($k, $v, $sqlType, $chapterApiReponse);\n\t\t\t} elseif (in_array($k, [$this->bodyParamLocation, ChapterApiParam::LOCATION_REQUEST_HEADER, ChapterApiParam::LOCATION_REQUEST_QUERY_PATH, ChapterApiParam::LOCATION_REQUEST_QUERY_STRING])) {\n\t\t\t\t$reqBody .= $this->buildApiBody($k, $v, $sqlType);\n\t\t\t}\n\t\t}\n\t\t$body\t.= $requestTop;\n\t\t$body\t.= !empty($reqBody) ? $reqBody : '无';\n\t\tif(!empty($resBody)) $body .= $reponseTop.$resBody;\n\t\treturn $body;\n\t}\n\n\tpublic function buildExtend($data, $sqlType)\n\t{\n\t\t$chapterId = $this->chapterId;\n\t\t$saveData = [\n\t\t\t'chapter_id' => $chapterId,\n\t\t\t'extend' => $data,\n\t\t];\n\t\tif ($sqlType == 2) {\n\t\t\t$chapterApiExtend = ChapterApiExtend::query()->where('chapter_id', $chapterId)->first();\n\t\t\tif ($chapterApiExtend) {\n\t\t\t\t$chapterApiExtend->update($saveData);\n\t\t\t} else {\n\t\t\t\tChapterApiExtend::query()->create($saveData);\n\t\t\t}\n\t\t}\n\t\treturn $data;\n\t}\n\n\t//文档排序\n\tpublic function bodySort($data)\n\t{\n\t\t//按getLocationLabel 顺序排序返回生成markdown\n\t\t$newData = [];\n\t\t$locationLabel = ChapterApiParamLogic::instance()->getLocationLabel();\n\t\tforeach ($locationLabel as $key => $val) {\n\t\t\tif (isset($data[$key])) {\n\t\t\t\t$newData[$key] = $data[$key];\n\t\t\t}\n\t\t}\n\t\treturn $newData;\n\t}\n\n\tpublic function strLengthAdaptation($str, $defaultLength = 20, $isRow = 0)\n\t{\n\t\tif ($str === null) {\n\t\t\t$str = '';\n\t\t}\n\t\t$lengthAll = strlen($str);\n\t\t$lengthCn = mb_strlen($str);\n\t\tif ($lengthAll > $lengthCn) {\n\t\t\t$length = $lengthAll - ($lengthAll - $lengthCn) / 2;\n\t\t} else {\n\t\t\t$length = $lengthAll;\n\t\t}\n\n\t\tif ($length < $defaultLength) {\n\t\t\t$str = $str . str_repeat(' ', ($defaultLength - $length));\n\t\t}\n\t\tif ($isRow) {\n\t\t\t$str = str_replace('|', '&#124;', $str);\n\t\t}\n\t\treturn $str;\n\t}\n\n\tpublic function bodyTableTop($chapterApiReponse)\n\t{\n\t\tif ($chapterApiReponse) {\n\t\t\t$text = $this->strLengthAdaptation('参数名称', ChapterApiParam::TABLE_NAME_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation('类型', ChapterApiParam::TABLE_TYPE_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation('生成规则', ChapterApiParam::TABLE_RULE_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation('示例值', ChapterApiParam::TABLE_VALUE_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation('描述', ChapterApiParam::TABLE_DESCRIPTION_LENGTH) .\n\t\t\t\t\"\\n\";\n\t\t\t$text = $text . $this->strLengthAdaptation('|:-', ChapterApiParam::TABLE_NAME_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation(':-:', ChapterApiParam::TABLE_TYPE_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation(':-:', ChapterApiParam::TABLE_RULE_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation(':-', ChapterApiParam::TABLE_DESCRIPTION_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation(':-', ChapterApiParam::TABLE_VALUE_LENGTH) . \"\\n\";\n\t\t} else {\n\t\t\t$text = $this->strLengthAdaptation('参数名称', ChapterApiParam::TABLE_NAME_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation('类型', ChapterApiParam::TABLE_TYPE_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation('生成规则', ChapterApiParam::TABLE_RULE_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation('必填', ChapterApiParam::TABLE_ENABLED_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation('示例值', ChapterApiParam::TABLE_VALUE_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation('描述', ChapterApiParam::TABLE_DESCRIPTION_LENGTH) .\n\t\t\t\t\"\\n\";\n\t\t\t$text = $text . $this->strLengthAdaptation('|:-', ChapterApiParam::TABLE_NAME_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation(':-:', ChapterApiParam::TABLE_TYPE_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation(':-:', ChapterApiParam::TABLE_RULE_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation(':-:', ChapterApiParam::TABLE_ENABLED_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation(':-', ChapterApiParam::TABLE_VALUE_LENGTH) . '|' .\n\t\t\t\t$this->strLengthAdaptation(':-', ChapterApiParam::TABLE_DESCRIPTION_LENGTH) .\n\t\t\t\t\"\\n\";\n\t\t}\n\t\treturn $text;\n\t}\n\n\tpublic function getLocatinonText($location)\n\t{\n\t\t$locationLabel = ChapterApiParamLogic::instance()->getLocationLabel();\n\t\tif (isset($locationLabel[$location])) {\n\t\t\treturn $locationLabel[$location];\n\t\t}\n\t\tthrow new ErrorHttpException('响应类型错误');\n\t}\n\n\tpublic function getEnabledText($enabled)\n\t{\n\t\t$enabledLabel = ChapterApiParamLogic::instance()->getEnabledLabel();\n\t\tif (isset($enabledLabel[$enabled])) {\n\t\t\treturn $enabledLabel[$enabled];\n\t\t}\n\t\tthrow new ErrorHttpException('必填类型错误');\n\t}\n\n\tpublic function buildApi($data, $sqlType)\n\t{\n\t\t$chapterId = $this->chapterId;\n\t\t$method = 0;\n\t\t$url = '';\n\t\t$description = '';\n\t\t$statusCode = 0;\n\t\t$bodyParamLocation = 3;\n\n\t\tif (isset($data['method'])) {\n\t\t\t$method = $data['method'];\n\t\t}\n\n\t\t$methodLabel = ChapterApiLogic::instance()->getMethodLabel();\n\t\tif (!isset($methodLabel[$method])) {\n\t\t\tthrow new ErrorHttpException('请求方式错误');\n\t\t}\n\t\tif (isset($data['url'])) {\n\t\t\t$url = $data['url'];\n\t\t}\n\t\tif (isset($data['description'])) {\n\t\t\t$description = $data['description'];\n\t\t}\n\n\t\tif (isset($data['body_param_location'])) {\n\t\t\t$bodyParamLocationList = [\n\t\t\t\tChapterApiParam::LOCATION_REQUEST_QUERY_STRING => 'Request.Query.String',\n\t\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_FROM => 'Request.Body.form-data',\n\t\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_URLENCODED => 'Request.Body.urlencoded',\n\t\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_RAW => 'Request.Body.raw',\n\t\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_BINARY => 'Request.Body.binary',\n\t\t\t];\n\t\t\tif (in_array($data['body_param_location'], array_keys($bodyParamLocationList))) {\n\t\t\t\t$bodyParamLocation = $data['body_param_location'];\n\t\t\t\t$this->bodyParamLocation = $bodyParamLocation;\n\t\t\t}\n\t\t}\n\t\tif (isset($data['status_code'])) {\n\t\t\t$statusCode = $data['status_code'];\n\t\t\t$statusCodeLists = ChapterApiLogic::instance()->getStatusCode();\n\t\t\tif (!in_array($statusCode, $statusCodeLists)) {\n\t\t\t\tthrow new ErrorHttpException('状态码错误');\n\t\t\t}\n\t\t}\n\n\t\t//存储\n\t\tif ($sqlType == 2) {\n\t\t\t$saveData = [\n\t\t\t\t'chapter_id' => $chapterId,\n\t\t\t\t'url' => $url,\n\t\t\t\t'method' => $method,\n\t\t\t\t'description' => $description,\n\t\t\t\t'body_param_location' => $bodyParamLocation\n\t\t\t];\n\n\t\t\t$chapterApi = ChapterApi::query()->where('chapter_id', $chapterId)->first();\n\t\t\tif ($chapterApi) {\n\t\t\t\t$chapterApi->update($saveData);\n\t\t\t} else {\n\t\t\t\tChapterApi::query()->create($saveData);\n\t\t\t}\n\t\t}\n\t\treturn [\n\t\t\t'methodLabel' => $methodLabel[$method],\n\t\t\t'url' => $url,\n\t\t\t'description' => $description\n\t\t];\n\t}\n\n\tpublic function buildApiText($data, $chapterId)\n\t{\n\t\t$url = $data['url'];\n\t\t//获取QUERY参数样例\n\t\t$chapterDemoLogic = new ChapterDemoLogic($chapterId);\n\t\t$query = $chapterDemoLogic->getChapterDemo(0, 1, [ChapterApiParam::LOCATION_REQUEST_QUERY_STRING]);\n\t\tif (isset($query['data']) && $query['data']) {\n\t\t\t$urlStr = build_query($query['data']);\n\t\t\t$url = $url . '?' . $urlStr;\n\t\t}\n        if (strpos($url, 'http://') !== 0 && strpos($url, 'https://') !== 0) {\n            $url = '/' . $url;\n        }\n        $text = '> ' . $data['methodLabel'] . ' ' . $url . \"\\n\\n\";\n\t\tif ($data['description']) {\n\t\t\t$text .= $data['description'] . \"\\n\";\n\t\t}\n\t\treturn $text;\n\t}\n\n\tpublic function buildApiBody($location, $data, $sqlType, $chapterApiReponse = '')\n\t{\n\t\t$text = '';\n\t\tif ($data && is_array($data)) {\n\t\t\t$title = $this->getLocatinonText($location);\n\t\t\t$textTop = '### ' . $title . \"\\n\\n\";\n\t\t\t$textTableTop = $this->bodyTableTop($chapterApiReponse);\n\t\t\tforeach ($data as $k => $val) {\n\t\t\t\t$text .= $this->buildBodyChildren($location, $val, 0, 0, $sqlType, $chapterApiReponse);\n\t\t\t}\n\t\t\tif ($text) {\n\t\t\t\tif ($chapterApiReponse) {\n\t\t\t\t\t$text = $textTableTop . $text . \"\\n\\n\";\n\t\t\t\t} else {\n\t\t\t\t\t$text = $textTop . $textTableTop . $text . \"\\n\\n\";\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $text;\n\t}\n\n\tpublic function getTypeText($type)\n\t{\n\t\t$typeLabel = ChapterApiParamLogic::instance()->getTypeLabel();\n\t\tif (isset($typeLabel[$type])) {\n\t\t\treturn $typeLabel[$type];\n\t\t}\n\t\tthrow new ErrorHttpException('参数类型错误');\n\t}\n\n\tpublic function getChildrenTop($level)\n\t{\n\t\treturn str_repeat('&emsp;', $level);\n\t}\n\n\tpublic function buildBodyChildren($location, $data, $level = 0, $parentId = 0, $sqlType = 2, $chapterApiReponse = '')\n\t{\n\t\t$childrenTop = $this->getChildrenTop($level);\n\t\t$name = '';\n\t\t$type = 1;\n\t\t$defaultValue = '';\n\t\t$description = '';\n\t\t$rule = '';\n\n\t\t$enabled = 1;\n\t\tif (isset($data['name'])) {\n\t\t\t$name = $data['name'];\n\t\t}\n\t\tif (isset($data['type']) && $data['type']) {\n\t\t\t$type = $data['type'];\n\t\t}\n\t\tif (isset($data['enabled']) && $data['enabled']) {\n\t\t\t$enabled = $data['enabled'];\n\t\t}\n\t\tif (isset($data['rule']) && $data['rule']) {\n\t\t\t$rule = $data['rule'];\n\t\t}\n\t\tif (isset($data['default_value'])) {\n\t\t\t$defaultValue = $data['default_value'];\n\t\t\tif (is_array($defaultValue)) {\n\t\t\t\t//如果默认值是个数组\n\t\t\t\t$defaultValue = json_encode($defaultValue, JSON_UNESCAPED_UNICODE);\n\t\t\t}\n\t\t}\n\t\tif (isset($data['description'])) {\n\t\t\t$description = $data['description'];\n\t\t}\n\n\t\t$enabledText = $this->getEnabledText($enabled);\n\t\t$typeText = $this->getTypeText($type);\n\t\tif (strlen($name) || $description) {\n\t\t\t/*if (!$name) {\n\t\t\t\t$name = ' ';\n\t\t\t}*/\n\n\t\t\t$textName = $name;\n\t\t\tif ($type == ChapterApiParam::TYPE_ARRAY) {\n\t\t\t\t$textName .= '[]';\n\t\t\t} elseif ($type == ChapterApiParam::TYPE_OBJECT) {\n\t\t\t\t$textName .= '{}';\n\t\t\t}\n\t\t\tif ($chapterApiReponse) {\n\t\t\t\t//响应不返回是否必填\n\t\t\t\t$text = $this->strLengthAdaptation($childrenTop . $textName, ChapterApiParam::TABLE_NAME_LENGTH, 1) . '|' .\n\t\t\t\t\t$this->strLengthAdaptation($typeText, ChapterApiParam::TABLE_TYPE_LENGTH, 1) . '|' .\n\t\t\t\t\t$this->strLengthAdaptation($rule, ChapterApiParam::TABLE_RULE_LENGTH, 1) . '|' .\n\t\t\t\t\t$this->strLengthAdaptation($defaultValue, ChapterApiParam::TABLE_VALUE_LENGTH, 1) . '|' .\n\t\t\t\t\t$this->strLengthAdaptation($description, ChapterApiParam::TABLE_DESCRIPTION_LENGTH, 1) .\n\t\t\t\t\t\"\\n\";\n\t\t\t} else {\n\t\t\t\t$text = $this->strLengthAdaptation($childrenTop . $textName, ChapterApiParam::TABLE_NAME_LENGTH, 1) . '|' .\n\t\t\t\t\t$this->strLengthAdaptation($typeText, ChapterApiParam::TABLE_TYPE_LENGTH, 1) . '|' .\n\t\t\t\t\t$this->strLengthAdaptation($rule, ChapterApiParam::TABLE_RULE_LENGTH, 1) . '|' .\n\t\t\t\t\t$this->strLengthAdaptation($enabledText, ChapterApiParam::TABLE_ENABLED_LENGTH, 1) . '|' .\n\t\t\t\t\t$this->strLengthAdaptation($defaultValue, ChapterApiParam::TABLE_VALUE_LENGTH, 1) . '|' .\n\t\t\t\t\t$this->strLengthAdaptation($description, ChapterApiParam::TABLE_DESCRIPTION_LENGTH, 1) .\n\t\t\t\t\t\"\\n\";\n\t\t\t}\n\n\t\t\t//存储\n\t\t\tif ($sqlType == 2) {\n\t\t\t\t$ids = $this->ids;\n\t\t\t\t$chapterId = $this->chapterId;\n\t\t\t\t$saveData = [\n\t\t\t\t\t'chapter_id' => $chapterId,\n\t\t\t\t\t'parent_id' => $parentId,\n\t\t\t\t\t'location' => $location,\n\t\t\t\t\t'type' => $type,\n\t\t\t\t\t'name' => $name,\n\t\t\t\t\t'description' => $description,\n\t\t\t\t\t'enabled' => $enabled,\n\t\t\t\t\t'rule' => $rule,\n\t\t\t\t\t'default_value' => $defaultValue,\n\t\t\t\t];\n\t\t\t\tif ($chapterApiReponse) {\n\t\t\t\t\t$saveData['reponse_id'] = $chapterApiReponse->id;\n\t\t\t\t}\n\n\t\t\t\t$id = $parentId;\n\n\t\t\t\t$hasRow = 0;\n\t\t\t\tif (isset($data['id']) && $data['id']) {\n\t\t\t\t\t$id = $data['id'];\n\t\t\t\t\t$chapterApiParam = ChapterApiParam::query()->find($data['id']);\n\t\t\t\t\tif ($chapterApiParam && $chapterApiParam->chapter_id == $chapterId && $chapterApiParam->location == $location) {\n\t\t\t\t\t\t$chapterApiParam->update($saveData);\n\t\t\t\t\t\t$hasRow = 1;\n\t\t\t\t\t\t$ids[count($ids)] = $data['id'];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif ($hasRow == 0) {\n\t\t\t\t\t$chapterApiParam = ChapterApiParam::query()->create($saveData);\n\t\t\t\t\tif ($chapterApiParam) {\n\t\t\t\t\t\t$ids[count($ids)] = $chapterApiParam->id;\n\t\t\t\t\t\t$id = $chapterApiParam->id;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t$this->ids = $ids;\n\t\t\t}\n\t\t}\n\n\t\tif (isset($data['children']) && (!empty($data['children'])) && is_array($data['children'])) {\n\t\t\tforeach ($data['children'] as $k => $val) {\n\t\t\t\t$text .= $this->buildBodyChildren($location, $val, $level + 1, $id, $sqlType = 2, $chapterApiReponse);\n\t\t\t}\n\t\t}\n\t\treturn $text;\n\t}\n\n\tpublic function copyRecord($newChapterId)\n\t{\n\t\t$chapterId = $this->chapterId;\n\t\t$chapterApi = ChapterApi::query()->where('chapter_id', $chapterId)->first();\n\t\tif ($chapterApi) {\n\t\t\t$chapterApi->chapter_id = $newChapterId;\n\t\t\tChapterApi::query()->create($chapterApi->toArray());\n\t\t\t$chapterApiParam = ChapterApiParam::query()->where('chapter_id', $chapterId)->where('parent_id', 0)->get();\n\t\t\tif ($chapterApiParam) {\n\t\t\t\tforeach ($chapterApiParam as $key => $val) {\n\t\t\t\t\t$val->chapter_id = $newChapterId;\n\t\t\t\t\t$newChapterApiParam = ChapterApiParam::query()->create($val->toArray());\n\t\t\t\t\t$val->children = $this->copyBodyChildren($chapterId, $val->id, $newChapterId, $newChapterApiParam->id);\n\t\t\t\t}\n\t\t\t}\n\t\t\t$chapterApiExtend = ChapterApiExtend::query()->where('chapter_id', $chapterId)->first();\n\t\t\tif ($chapterApiExtend) {\n\t\t\t\t$chapterApiExtend->chapter_id = $newChapterId;\n\t\t\t\tChapterApiExtend::query()->create($chapterApiExtend->toArray());\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}\n\n\tpublic function copyBodyChildren($chapterId, $parentId, $newChapterId, $newParentId)\n\t{\n\t\t$chapterApiParam = ChapterApiParam::query()->where('chapter_id', $chapterId)->where('parent_id', $parentId)->get();\n\t\tif ($chapterApiParam) {\n\t\t\tforeach ($chapterApiParam as $key => $val) {\n\t\t\t\t$val->chapter_id = $newChapterId;\n\t\t\t\t$val->parent_id = $newParentId;\n\t\t\t\t$newChapterApiParam = ChapterApiParam::query()->create($val->toArray());\n\t\t\t\t$val->children = $this->copyBodyChildren($chapterId, $val->id, $newChapterId, $newChapterApiParam->id);\n\t\t\t}\n\t\t\treturn $chapterApiParam;\n\t\t}\n\t\treturn [];\n\t}\n\n\tpublic function chapterApiParamData($chapterId, $location, $reponseId = 0)\n\t{\n\t\t//全部数据\n\t\t$obj = ChapterApiParam::query()\n\t\t\t->where('location', $location)->where('chapter_id', $chapterId);\n\t\tif ($reponseId) {\n\t\t\t$obj->where('reponse_id', $reponseId);\n\t\t}\n\t\treturn $obj->get();\n\t}\n\n\tpublic function showRecord()\n\t{\n\t\t$chapterId = $this->chapterId;\n\n\t\t$cacheIndex = $this->getChapterIdRecordIndex($chapterId);\n\t\t$recordCache = icache()->get($cacheIndex);\n\t\tif ($recordCache) {\n\t\t\treturn json_decode($recordCache, true);\n\t\t}\n\n\t\t$record = [\n\t\t\t'api' => '',\n\t\t\t'body' => [\n\t\t\t\t'1' => [],\n\t\t\t\t'2' => [],\n\t\t\t\t'request_body' => []\n\t\t\t],\n\t\t\t'reponse' => [],\n\t\t\t'extend' => ''\n\t\t];\n\t\t$body = [];\n\n\t\t$chapterApi = ChapterApi::query()->where('chapter_id', $chapterId)->first();\n\t\tif ($chapterApi) {\n\t\t\t$record['body'] = $this->getBody($chapterId, $chapterApi);\n\t\t\t$record['reponse'] = $this->getReponse($chapterId);\n\t\t\t$chapterApiExtend = ChapterApiExtend::query()->where('chapter_id', $chapterId)->first();\n\t\t\tif ($chapterApiExtend) {\n\t\t\t\t$record['extend'] = $chapterApiExtend->extend;\n\t\t\t}\n\t\t\t//返回tab_location\n\t\t\t$tab_location = 1;\n\t\t\tif ($record['body']['1']) {\n\t\t\t\t$tab_location = 1;\n\t\t\t} elseif ($record['body']['2']) {\n\t\t\t\t$tab_location = 2;\n\t\t\t} elseif ($record['body']['request_body']) {\n\t\t\t\t$tab_location = 3;\n\t\t\t}\n\t\t\t$chapterApi->tab_location = $tab_location;\n\t\t\t$record['api'] = $chapterApi;\n\t\t}\n\t\ticache()->set($cacheIndex, json_encode($record), 3600 * 24);\n\t\treturn $record;\n\t}\n\n\tpublic function getBodyInfo($chapterId, $location, $reponseId = 0)\n\t{\n\t\t$data = [];\n\t\t$chapterApiParamData = $this->chapterApiParamData($chapterId, $location, $reponseId);\n\n\t\tif ($chapterApiParamData) {\n\t\t\tforeach ($chapterApiParamData as $key => $val) {\n\t\t\t\tif ($val->parent_id == 0) {\n\t\t\t\t\t$val->children = $this->getBodyChildren($chapterApiParamData, $val->id);\n\t\t\t\t\t$data[] = $val->toArray();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $data;\n\t}\n\n\tpublic function getReponse($chapterId)\n\t{\n\t\t$data = [];\n\t\t$list = ChapterApiReponse::query()->where('chapter_id', $chapterId)->get()->toArray();\n\t\tif (count($list)) {\n\t\t\t//兼容之前的\n\t\t\tforeach ($list as $key => $val) {\n\t\t\t\t$data[] = [\n\t\t\t\t\t'id' => $val['id'],\n\t\t\t\t\t'chapter_id' => $chapterId,\n\t\t\t\t\t'description' => $val['description'],\n\t\t\t\t\t'data' => $this->getBodyInfo($chapterId, ChapterApiParam::LOCATION_REPONSE_BODY_RAW, $val['id'])\n\t\t\t\t];\n\t\t\t}\n\t\t\t//删除旧的\n\t\t} else {\n\t\t\t//兼容之前的\n\t\t\t$data[] = [\n\t\t\t\t'id' => 0,\n\t\t\t\t'chapter_id' => $chapterId,\n\t\t\t\t'description' => '',\n\t\t\t\t'data' => $this->getBodyInfo($chapterId, ChapterApiParam::LOCATION_REPONSE_BODY_RAW)\n\t\t\t];\n\t\t}\n\t\treturn $data;\n\t}\n\n\tpublic function getBody($chapterId, $chapterApi)\n\t{\n\t\t$body = [\n\t\t\t'1' => $this->getBodyInfo($chapterId, 1),\n\t\t\t'2' => $this->getBodyInfo($chapterId, 2),\n\t\t\t'request_body' => $this->getBodyInfo($chapterId, $chapterApi->body_param_location)\n\t\t];\n\t\treturn $body;\n\t}\n\n\tpublic function getChapterIdRecordIndex($chapterId)\n\t{\n\t\treturn 'ChapterIdRecordIndexV1:' . $chapterId;\n\t}\n\n\tpublic function getBodyChildren($chapterApiParamData, $parentId)\n\t{\n\t\t$chapterApiParam = [];\n\t\tif (count($chapterApiParamData)) {\n\t\t\tforeach ($chapterApiParamData as $key => $val) {\n\t\t\t\tif ($val->parent_id == $parentId) {\n\t\t\t\t\t$val->children = $this->getBodyChildren($chapterApiParamData, $val->id);\n\t\t\t\t\t$chapterApiParam[] = $val;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn $chapterApiParam;\n\t\t}\n\t\treturn [];\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/Document/ChapterApi/ChapterRuleLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic\\Document\\ChapterApi;\n\nuse W7\\App\\Model\\Entity\\Document\\ChapterApiParam;\n\n//返回演示数据demo\nclass ChapterRuleLogic extends ChapterCommonLogic\n{\n\tprotected $chapterId;\n\n\tpublic function __construct($chapterId)\n\t{\n\t\t$this->chapterId = $chapterId;\n\t}\n\n\tpublic function getChapterRuleMock($reponseId)\n\t{\n\t\t$chapterId = $this->chapterId;\n\t\t$chapterRecordLogic = new ChapterRecordLogic($chapterId);\n\t\t$data = $chapterRecordLogic->getBodyInfo($chapterId, ChapterApiParam::LOCATION_REPONSE_BODY_RAW, $reponseId);\n\t\t$url = ienv('MOCK_API');\n\t\t$json = $this->send_post($url, json_encode($data));\n\t\tif ($this->isJson($json)) {\n\t\t\treturn json_decode($json, true);\n\t\t}\n\t\treturn $json;\n\t}\n\n\tpublic function send_post($url, $json)\n\t{\n\t\t$postdata = $json;\n\t\t$options = array(\n\t\t\t'http' => array(\n\t\t\t\t'method' => 'POST',\n\t\t\t\t'header' => 'Content-type:application/json',\n\t\t\t\t'content' => $postdata,\n\t\t\t\t'timeout' => 15 * 60 // 超时时间（单位:s）\n\t\t\t)\n\t\t);\n\t\t$context = stream_context_create($options);\n\t\t$result = file_get_contents($url, false, $context);\n\n\t\treturn $result;\n\t}\n\n\tpublic function getChapterIdRequestIndex()\n\t{\n\t\treturn 'ChapterIdRequestIndexV1:' . $this->chapterId;\n\t}\n\n\tpublic function getChapterIdReponseIndex($reponseId)\n\t{\n\t\treturn 'ChapterIdReponseIndexV1:' . $this->chapterId . '-' . $reponseId;\n\t}\n\n\tpublic function getChapterRule($locationType, $reponseId = 0)\n\t{\n\t\t$chapterId = $this->chapterId;\n\n\t\tif ($locationType == 2) {\n\t\t\t$locationList = array_keys($this->reponseIds());\n\t\t\t$cacheIndex = $this->getChapterIdReponseIndex($reponseId);\n\t\t} else {\n\t\t\t$cacheIndex = $this->getChapterIdRequestIndex();\n\t\t\t$locationList = array_keys($this->requestIds());\n\t\t}\n\t\t$Cache = icache()->get($cacheIndex);\n\t\tif ($Cache) {\n\t\t\treturn json_decode($Cache, true);\n\t\t}\n\n\t\t$obj = ChapterApiParam::query()->where('chapter_id', $chapterId);\n\t\tif ($locationType && $reponseId) {\n\t\t\t$obj->where('reponse_id', $reponseId);\n\t\t}\n\t\t$chapterList = $obj->whereIn('location', $locationList)->get();\n\t\t$data = $this->getChapterDemoChildrenArray($chapterList, '', 0);\n\t\ticache()->set($cacheIndex, json_encode($data['rule']), 3600 * 24);\n\t\treturn $data['rule'];\n\t}\n\n\t//导出-2键值对字符串，3键值对数组\n\tpublic function getArrayToKeyValue($data, $type)\n\t{\n\t\t$str = http_build_query($data);\n\t\tif ($type == 3) {\n\t\t\t//键值对数组\n\t\t\t$info1 = explode('&', $str);\n\t\t\t$reply = [];\n\t\t\tforeach ($info1 as $key => $val) {\n\t\t\t\t$info2 = explode('=', $val);\n\t\t\t\t$name = urldecode($info2[0]);\n\t\t\t\t$value = urldecode(str_replace($info2[0] . '=', '', $val));\n\t\t\t\t$reply[$name] = $value;\n\t\t\t}\n\t\t\treturn $reply;\n\t\t} else {\n\t\t\t//纯键值对\n\t\t\t$str = str_replace('&', \"\\n\", $str);\n\t\t\t$str = str_replace('=', ':', $str);\n\t\t\treturn urldecode($str);\n\t\t}\n\t}\n\n\tpublic function getChapterDemoChildrenArray($listChildren, $defaultValue = '', $parentId = 0)\n\t{\n\t\tif ($this->isJson($defaultValue)) {\n\t\t\t//如果是json\n\t\t\t$defaultValueList = json_decode($defaultValue, true);\n\t\t} else {\n\t\t\t$defaultValueList = [];\n\t\t}\n\t\t$data = [];\n\t\t$rule = [];\n\t\t$descriptionData = [];\n\t\t$i = 0;\n\n\t\tforeach ($listChildren as $key => $val) {\n\t\t\tif ($val->parent_id == $parentId) {\n\t\t\t\t$ruleName = $val->name;\n\t\t\t\tif ($val->rule) {\n\t\t\t\t\t$ruleName = $val->name . '|' . $val->rule;\n\t\t\t\t}\n\n\t\t\t\t$defaultValue = '';\n\t\t\t\tif ($val->default_value) {\n\t\t\t\t\t$defaultValue = $val->default_value;\n\t\t\t\t} else {\n\t\t\t\t\tif (isset($defaultValueList[$i])) {\n\t\t\t\t\t\t$defaultValue = $defaultValueList[$i];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t$description = $val->description;\n\n\t\t\t\tif (in_array($val->type, [ChapterApiParam::TYPE_OBJECT, ChapterApiParam::TYPE_ARRAY])) {\n\t\t\t\t\t//如果里面还是数组或者对象\n\t\t\t\t\tif ($val->type == ChapterApiParam::TYPE_ARRAY) {\n\t\t\t\t\t\tif (is_numeric($val->rule) && ($val->rule > 0)) {\n\t\t\t\t\t\t\t//如果是多维数组\n\t\t\t\t\t\t\t$chapterDemoChildren = $this->getChapterDemoChildrenArray($listChildren, '', $val->id);\n\t\t\t\t\t\t\t$data[$val->name][] = $chapterDemoChildren['data'];\n\t\t\t\t\t\t\t$rule[$ruleName][] = $chapterDemoChildren['rule'];\n\t\t\t\t\t\t\t$descriptionData[$val->name][] = $chapterDemoChildren['descriptionData'];\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$chapterDemoChildren = $this->getChapterDemoChildrenArray($listChildren, '', $val->id);\n\t\t\t\t\t\t\t$data[$val->name] = $chapterDemoChildren['data'];\n\t\t\t\t\t\t\t$rule[$ruleName] = $chapterDemoChildren['rule'];\n\t\t\t\t\t\t\t$descriptionData[$val->name] = $chapterDemoChildren['descriptionData'];\n\t\t\t\t\t\t}\n\t\t\t\t\t} elseif ($val->type == ChapterApiParam::TYPE_OBJECT) {\n\t\t\t\t\t\t$chapterDemoChildren = $this->getChapterDemoChildrenArray($listChildren, '', $val->id);\n\t\t\t\t\t\t$data[$val->name] = $chapterDemoChildren['data'];\n\t\t\t\t\t\t$rule[$ruleName] = $chapterDemoChildren['rule'];\n\t\t\t\t\t\t$descriptionData[$val->name] = $chapterDemoChildren['descriptionData'];\n\t\t\t\t\t} else {\n\t\t\t\t\t\t//没有子类\n\t\t\t\t\t\tif ($this->isJson($defaultValue)) {\n\t\t\t\t\t\t\t//如果是json\n\t\t\t\t\t\t\t$defaultValueList = json_decode($defaultValue, true);\n\t\t\t\t\t\t\t$defaultValue = $defaultValueList[0];\n\t\t\t\t\t\t}\n\t\t\t\t\t\t$data[$val->name] = $defaultValue;\n\t\t\t\t\t\t$rule[$ruleName] = $defaultValue;\n\t\t\t\t\t\t$descriptionData[$val->name] = $description;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tif ($val->name) {\n\t\t\t\t\t\t//对象\n\t\t\t\t\t\t$data[$val->name] = $defaultValue;\n\t\t\t\t\t\t$rule[$ruleName] = $defaultValue;\n\t\t\t\t\t\t$descriptionData[$val->name] = $description;\n\t\t\t\t\t} else {\n\t\t\t\t\t\t//数字键值\n\t\t\t\t\t\t$data[] = $defaultValue;\n\t\t\t\t\t\t$rule[$ruleName] = $defaultValue;\n\t\t\t\t\t\t$descriptionData[] = $description;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn ['rule' => $rule, 'data' => $data, 'descriptionData' => $descriptionData];\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/Document/ChapterApiDataLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic\\Document;\n\n\nuse W7\\App\\Model\\Entity\\Document\\ChapterApiData;\nuse W7\\App\\Model\\Logic\\BaseLogic;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass ChapterApiDataLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tpublic function deleteChapterApiData($chapter_id){\n\t\t$checkData = ChapterApiData::query()->where('chapter_id',$chapter_id)->count('id');\n\t\tif ($checkData >= 3){\n\t\t\treturn ChapterApiData::query()->where('chapter_id',$chapter_id)->delete();\n\t\t}\n\t\treturn true;\n\t}\n\n\tpublic function getByChapterApiData($chapter_id){\n\t\treturn ChapterApiData::query()->where('chapter_id',$chapter_id)->get();\n\t}\n\n\t//随机获取Api data\n\tpublic function getRandomChapterApiData($chapter_id){\n       return  ChapterApiData::query()->where('chapter_id',$chapter_id)->inRandomOrder()->take(1)->first();\n\t}\n\n}\n"
  },
  {
    "path": "app/Model/Logic/Document/ChapterApiLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic\\Document;\n\nuse W7\\App\\Model\\Entity\\Document\\ChapterApi;\nuse W7\\App\\Model\\Logic\\BaseLogic;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass ChapterApiLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tpublic function getMethodLabel()\n\t{\n\t\treturn [\n\t\t\tChapterApi::METHOD_GET => 'GET',\n\t\t\tChapterApi::METHOD_POST => 'POST',\n\t\t\tChapterApi::METHOD_PUT => 'PUT',\n\t\t\tChapterApi::METHOD_PATCH => 'PATCH',\n\t\t\tChapterApi::METHOD_DELETE => 'DELETE',\n\t\t\tChapterApi::METHOD_COPY => 'COPY',\n\t\t\tChapterApi::METHOD_HEAD => 'HEAD',\n\t\t\tChapterApi::METHOD_PTIONS => 'PTIONS',\n\t\t\tChapterApi::METHOD_LINK => 'LINK',\n\t\t\tChapterApi::METHOD_UNLINK => 'UNLINK',\n\t\t\tChapterApi::METHOD_PURGE => 'PURGE',\n\t\t\tChapterApi::METHOD_LOCK => 'LOCK',\n\t\t\tChapterApi::METHOD_UNLOCK => 'UNLOCK',\n\t\t\tChapterApi::METHOD_PROPFIND => 'PROPFIND',\n\t\t\tChapterApi::METHOD_VIEW => 'VIEW',\n\t\t];\n\t}\n\n\t//状态码\n\tpublic function getStatusCode()\n\t{\n\t\treturn [\n\t\t\t200, 301, 403, 404, 500, 502, 503, 504\n\t\t];\n\t}\n\n\tpublic function getApiLabel()\n\t{\n\t\treturn [\n\t\t\t'statusCode' => $this->getStatusCode(),\n\t\t\t'methodLabel' => generate_label('请求方式', $this->getMethodLabel()),\n\t\t\t'enabledLabel' => generate_label('必填类型', ChapterApiParamLogic::instance()->getEnabledLabel()),\n\t\t\t'typeLabel' => generate_label('字段类型', ChapterApiParamLogic::instance()->getTypeLabel()),\n\t\t\t'locationLabel' => generate_label('参数类型', ChapterApiParamLogic::instance()->getLocationLabel()),\n\t\t];\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/Document/ChapterApiParamLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic\\Document;\n\nuse W7\\App\\Model\\Entity\\Document\\ChapterApiParam;\nuse W7\\App\\Model\\Logic\\BaseLogic;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass ChapterApiParamLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tpublic function rawContentType()\n\t{\n\t\treturn [\n\t\t\t'text/plain', 'application/json', 'application/javascript', 'application/xml', 'text/xml', 'text/html'\n\t\t];\n\t}\n\n\tpublic function getLocationLabel()\n\t{\n\t\treturn [\n\t\t\tChapterApiParam::LOCATION_REQUEST_QUERY_PATH => 'Path',\n\t\t\tChapterApiParam::LOCATION_REQUEST_HEADER => 'Header',\n\t\t\tChapterApiParam::LOCATION_REQUEST_QUERY_STRING => 'Query',\n\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_FROM => 'Form 参数',\n\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_URLENCODED => 'Form 参数',\n\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_RAW => 'Body 参数',\n\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_BINARY => 'Binary 参数',\n\t\t\tChapterApiParam::LOCATION_REPONSE_HEADER => 'Header',\n\t\t\tChapterApiParam::LOCATION_REPONSE_BODY_FROM => 'Data',\n\t\t\tChapterApiParam::LOCATION_REPONSE_BODY_URLENCODED => 'Data',\n\t\t\tChapterApiParam::LOCATION_REPONSE_BODY_RAW => 'Data',\n\t\t\tChapterApiParam::LOCATION_REPONSE_BODY_BINARY => 'Data',\n\t\t];\n\t}\n\n\tpublic function getEnabledLabel()\n\t{\n\t\treturn [\n\t\t\tChapterApiParam::ENABLED_NO => 'false',\n\t\t\tChapterApiParam::ENABLED_YES => 'true',\n\t\t];\n\t}\n\n\tpublic function getTypeLabel()\n\t{\n\t\treturn [\n\t\t\tChapterApiParam::TYPE_STRING => 'String',\n\t\t\tChapterApiParam::TYPE_NUMBER => 'Number',\n\t\t\tChapterApiParam::TYPE_BOOLEAN => 'Boolean',\n\t\t\tChapterApiParam::TYPE_OBJECT => 'Object',\n\t\t\tChapterApiParam::TYPE_ARRAY => 'Array',\n\t\t\tChapterApiParam::TYPE_FUNCTION => 'Function',\n\t\t\tChapterApiParam::TYPE_REGEXP => 'RegExp',\n\t\t\tChapterApiParam::TYPE_NULL => 'Null',\n\t\t];\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/Document/ChapterContentLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic\\Document;\n\nuse W7\\App\\Model\\Entity\\Document\\ChapterContent;\nuse W7\\App\\Model\\Logic\\BaseLogic;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass ChapterContentLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tpublic function getLayoutLabel()\n\t{\n\t\treturn [\n\t\t\tChapterContent::LAYOUT_MARKDOWM => 'MARKDOWN',\n\t\t\tChapterContent::LAYOUT_HTTP => 'HTTP'\n\t\t];\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/Document/MockApi/MockApiReponseLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic\\Document\\MockApi;\n\n//返回演示数据demo\nuse W7\\App\\Model\\Entity\\Document;\nuse W7\\App\\Model\\Entity\\Document\\ChapterApiParam;\nuse W7\\App\\Model\\Logic\\Document\\ChapterApi\\ChapterCommonLogic;\nuse W7\\App\\Model\\Logic\\Document\\ChapterApi\\ChapterRuleLogic;\nuse W7\\App\\Model\\Logic\\Document\\ChapterApiDataLogic;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass MockApiReponseLogic extends ChapterCommonLogic\n{\n\tpublic function checkRequest(Request $request, $api)\n\t{\n\t\t//全部数据\n\t\t$data = ChapterApiParam::query()->where('chapter_id', $api->chapter_id)\n\t\t\t->whereIn('location', [\n\t\t\t\tChapterApiParam::LOCATION_REQUEST_HEADER,\n\t\t\t\tChapterApiParam::LOCATION_REQUEST_QUERY_STRING,\n\t\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_FROM,\n\t\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_URLENCODED,\n\t\t\t\tChapterApiParam::LOCATION_REQUEST_BODY_RAW,\n\t\t\t])->get();\n\t\t$msg = '';\n\t\t$jsonData = [];\n\t\t$contentType = $request->getContentType();\n\t\t$contentTypeData = explode(';', $contentType);\n\t\tif ($contentTypeData[0] == 'application/json') {\n\t\t\t$jsonData = $request->getBodyParams();\n\t\t\t$jsonData = json_decode($jsonData, true);\n\t\t}\n\t\tforeach ($data as $key => $val) {\n\t\t\tif ($val->enabled == ChapterApiParam::ENABLED_YES) {\n\t\t\t\tif ($val->location == ChapterApiParam::LOCATION_REQUEST_HEADER) {\n\t\t\t\t\tif (!$request->hasHeader($val->name)) {\n\t\t\t\t\t\t$msg .= 'header:' . $val->name . '必填 ';\n\t\t\t\t\t}\n\t\t\t\t} elseif ($val->location == ChapterApiParam::LOCATION_REQUEST_QUERY_STRING) {\n\t\t\t\t\tif ($request->query($val->name) == null) {\n\t\t\t\t\t\t$msg .= 'query:' . $val->name . '必填 ';\n\t\t\t\t\t}\n\t\t\t\t} elseif ($val->location == ChapterApiParam::LOCATION_REQUEST_BODY_RAW || $jsonData) {\n\t\t\t\t\tif (!(isset($jsonData[$val->name]) && $jsonData[$val->name])) {\n\t\t\t\t\t\t$msg .= 'params:' . $val->name . '必填 ';\n\t\t\t\t\t}\n\t\t\t\t} elseif (in_array($val->location, [ChapterApiParam::LOCATION_REQUEST_BODY_FROM, ChapterApiParam::LOCATION_REQUEST_BODY_URLENCODED])) {\n\t\t\t\t\tif ($request->post($val->name) == null) {\n\t\t\t\t\t\t$msg .= 'params:' . $val->name . '必填 ';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $msg;\n\t}\n\n\tpublic function mackMockApiReponse(Request $request, $id, $route)\n\t{\n\t\t$urlPath = $route;\n\t\t$ChapterApi = new Document\\ChapterApi();\n\t\t$Chapter = new Document\\Chapter();\n\t\t$api = Document\\Chapter::query()\n\t\t\t->where('document_id', $id)\n\t\t\t->leftJoin($ChapterApi->getTable(), 'chapter_id', '=', $Chapter->getTable() . '.id')\n\t\t\t->whereIn('url', [$urlPath, '/' . $urlPath])\n\t\t\t->select([$ChapterApi->getTable() . '.*'])\n\t\t\t->first();\n\t\t$methodLabel = $ChapterApi->methodLabel();\n\t\tif ($api && $api->method) {\n\t\t\tif (isset($methodLabel[$api->method])) {\n\t\t\t\tif ($methodLabel[$api->method] == $request->getMethod()) {\n\t\t\t\t\t//验证参数\n\t\t\t\t\t$checkMsg = $this->checkRequest($request, $api);\n\t\t\t\t\tif ($checkMsg) {\n\t\t\t\t\t\treturn ['code' => 422, 'msg' => $checkMsg];\n\t\t\t\t\t}\n\t\t\t\t\t//获取rule参数样例\n//\t\t\t\t\t$reponseId = 0;\n//\t\t\t\t\t$ChapterApiReponse = Document\\ChapterApiReponse::query()->where('chapter_id', $api->chapter_id)->get()->toArray();\n//\t\t\t\t\tif (count($ChapterApiReponse)) {\n//\t\t\t\t\t\t$reponseIds = array_column($ChapterApiReponse, 'id');\n//\t\t\t\t\t\t$reponseId = $reponseIds[rand(0, count($reponseIds) - 1)];\n//\t\t\t\t\t}\n//\n//\t\t\t\t\t$chapterDemoLogic = new ChapterRuleLogic($api->chapter_id);\n//\t\t\t\t\t$result = $chapterDemoLogic->getChapterRuleMock($reponseId);\n\n\t\t\t\t\t//更新 mock 服务接口\n\t\t\t\t\t$result = [];\n\t\t\t\t\t$ChapterApiReponse = ChapterApiDataLogic::instance()->getRandomChapterApiData($api->chapter_id);\n\t\t\t\t\tif ($ChapterApiReponse->respond ){\n\t\t\t\t\t\tparse_str(urldecode($ChapterApiReponse->respond),$data);\n                        $result = $data;\n\t\t\t\t\t\tif ( $this->isJson($ChapterApiReponse->respond)){\n\t\t\t\t\t\t\t$result = json_decode($ChapterApiReponse->respond,true);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif (isset($result['__root__']) && $result['__root__']) {\n\t\t\t\t\t\tif ($this->is_assoc($result['__root__'])) {\n\t\t\t\t\t\t\t$result = [$result['__root__']];\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$result = $result['__root__'];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn $result;\n\t\t\t\t} else {\n\t\t\t\t\treturn ['code' => 401, 'msg' => '请求类型错误'];\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\treturn ['code' => 402, 'msg' => '不支持当前请求类型：' . $request->getMethod()];\n\t\t\t}\n\t\t}\n\t\treturn ['code' => 400, 'msg' => '请求地址不存在'];\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/DocumentFeedbackLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\App\\Model\\Entity\\DocumentFeedback;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass DocumentFeedbackLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tpublic function getByFeedbackDetail($id,$did)\n\t{\n\t\t$id = intval($id);\n\t\tif (empty($id)) {\n\t\t\treturn [];\n\t\t}\n\t\treturn DocumentFeedback::query()->where('id',$id)->where('document_id',$did)->first();\n\t}\n\n\t//更改反馈建议查看状态\n    public function setByFeedbackStatus($id,$did){\n\t\treturn DocumentFeedback::query()->where('id',$id)->where('document_id',$did)->update(['status'=>1]);\n\t}\n\n    //查看是否有新的数据未读\n\tpublic function getByFeedbackNew($document_id)\n\t{\n\t\treturn DocumentFeedback::query()->where('document_id',$document_id)->where('status', 0)->orderByDesc('created_at')->first();\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/DocumentHomeLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\App\\Exception\\ErrorHttpException;\nuse W7\\App\\Model\\Entity\\Document;\nuse W7\\App\\Model\\Entity\\DocumentHome;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass DocumentHomeLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\t/**\n\t * 获取分类\n\t * @return string[]\n\t */\n\tpublic function getTypeData(){\n\t\t$model = new DocumentHome();\n\t\t$data = [];\n        foreach ($model->typeName as $key=>$val){\n        \t$data[] = ['label'=>$val,'val'=>$key];\n\t\t}\n        return array_values($data);\n\t}\n\n\t/**\n\t * 添加 首页文档设置\n\t * @param $params\n\t * @return \\Illuminate\\Database\\Eloquent\\Builder|\\Illuminate\\Database\\Eloquent\\Model\n\t */\n\tpublic function addHomeData($params){\n\t\t//公告只允许添加一个\n\t\tif ($params['type'] == 1){\n\t\t\t$checkCount = DocumentHome::query()->where('type','=',$params['type'])->count('id');\n\t\t\tif ($checkCount >= 1){\n\t\t\t\tthrow new ErrorHttpException('公告只允许添加一条');\n\t\t\t}\n\t\t}\n\t\t//检测是否为空文档\n\t\t$checkDocument = $this->getByChapter(intval($params['document_id']));\n\t\tif (!$checkDocument){\n\t\t\tthrow new ErrorHttpException('请勿选择空文档');\n\t\t}\n\t\treturn DocumentHome::query()->create($params);\n\t}\n\n\n\t/**\n\t * 编辑首页文档设置\n\t * @param $id\n\t * @param $params\n\t * @return int\n\t */\n\tpublic function editHomeData($params){\n\t\t//检测是否为空文档\n\t\t$checkDocument = $this->getByChapter(intval($params['document_id']));\n\t\tif (!$checkDocument){\n\t\t\tthrow new ErrorHttpException('请勿选择空文档');\n\t\t}\n\t\treturn DocumentHome::query()->where('id','=',intval($params['id']))->update($params);\n\t}\n\n\n\n\t/**\n\t * 删除文档数据\n\t * @param $id\n\t */\n\tpublic function delHomeData($id){\n\t\t$check = DocumentHome::query()->where('id','=',$id)->first();\n\t\tif (!$check){\n\t\t\tthrow new ErrorHttpException('数据不存在');\n\t\t}\n\t\treturn DocumentHome::query()->where('id','=',$id)->delete();\n\t}\n\n\n\n\t/**\n\t * 获取详情\n\t * @param $id\n\t */\n\tpublic function getByHomeData($id){\n\t\t$id = intval($id);\n\t\tif (empty($id)) {\n\t\t\treturn [];\n\t\t}\n\t\t$result =  DocumentHome::query()->with('document')->with('user')->where('id','=',$id)->first();\n        $data = [];\n        if ($result){\n\t\t\t$data = [\n\t\t\t\t'id' => $result->id,\n\t\t\t\t'user_id' =>$result->user_id,\n\t\t\t\t'user' => $result->user->username,\n\t\t\t\t'type' => $result->type,\n\t\t\t\t'type_name' => $result->type_name,\n\t\t\t\t'document_id' => $result->document_id,\n\t\t\t\t'document_name' => $result->document->name,\n\t\t\t\t'url' => $result->url,\n\t\t\t\t'description' => $result->description,\n\t\t\t\t'sort' => $result->sort,\n\t\t\t\t'created_at' => $result->created_at->toDateTimeString()\n\t\t\t];\n\t\t}\n\t\treturn $data;\n\t}\n\n\n\t/**\n\t * 获取列表数据\n\t * @param $type\n\t * @param $page\n\t * @param $pageSize\n\t * @return array\n\t */\n\tpublic function getListData($type,$page,$pageSize){\n\t\t$query = DocumentHome::query()->with('document')->with('user');\n\t\tif (isset($type) && $type > 0 ){\n\t\t\t$query = $query->where('type','=',$type);\n\t\t}\n\t\t$query = $query->orderBy('sort','asc');\n\t\t$list = $query->paginate($pageSize, ['id','user_id','document_id','type','sort','logo','url','description','created_at'], 'page', $page);\n\t\tforeach ($list->items() as $i => $row) {\n\t\t\t//获取文档第一个章节数据\n\t\t\t$chapter = $this->getByChapter(intval($row['document_id']));\n\t\t\t$result['data'][] = [\n\t\t\t\t'id' => $row->id,\n\t\t\t\t'user_id' => $row->user_id,\n\t\t\t\t'user' => $row->user->username,\n\t\t\t\t'document_id' => $row->document_id,\n\t\t\t\t'document_name' => $row->document->name,\n\t\t\t\t'first_chapter_id' => $chapter ? $chapter['chapter_id'] : 0,\n\t\t\t\t'first_chapter_name' => $chapter ? $chapter['chapter_name'] : '',\n\t\t\t\t'logo' => $row->logo,\n\t\t\t\t'url' => $row->url,\n\t\t\t\t'description' => $row->description,\n\t\t\t\t'sort' => $row->sort,\n\t\t\t\t'type' => $row->type,\n\t\t\t\t'type_name' => $row->type_name,\n\t\t\t\t'created_at' => $row->created_at->toDateTimeString()\n\t\t\t];\n\t\t}\n\t\t$result['page_count'] = $list->lastPage();\n\t\t$result['total'] = $list->total();\n\t\t$result['page_current'] = $list->currentPage();\n\n\t\treturn $result;\n\t}\n\n\t/**\n\t * 模糊查询 文档名称\n\t * @param $name\n\t * @param $isPublic\n\t * @return array\n\t */\n\tpublic function queryDocument($name,$isPublic){\n\t\t$query = Document::query();\n\t\tif (!empty($name)){\n\t\t\t$query->where('name', 'LIKE', \"%{$name}%\");\n\t\t}\n\t\tif (!empty($isPublic)){\n\t\t\t$query->where('is_public', '=', $isPublic);\n\t\t}\n\t\t$list = $query->orderByDesc('created_at')->limit(10)->get();\n\t\t$result = [];\n\t\tif (!empty($list->toArray())){\n\t\t\tforeach ($list->toArray() as $i => $row) {\n\t\t\t\t$result[] = [\n\t\t\t\t\t'document_id' => $row['id'],\n\t\t\t\t\t'name' => $row['name'],\n\t\t\t\t];\n\t\t\t}\n\t\t}\n\t\treturn $result;\n\t}\n\n\n\t/**\n\t * 获取前端 首页公告数据\n\t */\n\tpublic function getDocumentNotice(){\n        $notice = DocumentHome::query()->select('id','type','document_id')->where('type','=',1)->first();\n        $data = [];\n        if ($notice){\n        \t//项目信息\n\t\t\t$document = DocumentLogic::instance()->getById($notice->document_id);\n        \t$data['document_id'] = $notice->document_id;\n        \t$data['document_name'] = $document->name;\n        \t//章节信息\n\t\t\t$chapter = Document\\Chapter::query()\n\t\t\t\t->select('id', 'name', 'sort', 'parent_id', 'is_dir', 'document_id','created_at')\n\t\t\t\t->where('document_id', $notice->document_id)\n\t\t\t\t->where('is_dir','<>',Document\\Chapter::IS_DIR)\n\t\t\t\t->orderByDesc('created_at')->limit(8)->get()->toArray();\n\t\t\tforeach ($chapter as $key => $item){\n\t\t\t\t$data['chapter'][$key]['chapter_id'] = $item['id'];\n\t\t\t\t$data['chapter'][$key]['chapter_name'] = $item['name'];\n\t\t\t\t$data['chapter'][$key]['created_at'] = date('Y.n.d',$item['created_at']);\n\t\t\t}\n\t\t}\n        return  $data;\n\t}\n\n\n\t/**\n\t * 获取前端 类型一数据\n\t */\n\tpublic function getDocumentTypeI(){\n\t\t//获取类型一数据\n\t\t$typeList = DocumentHome::query()\n\t\t\t        ->select('id','type','sort','document_id','logo','description','created_at')\n\t\t\t        ->where('type','=',2)\n\t\t\t        ->orderBy('sort','asc')\n\t\t\t\t\t->orderByDesc('created_at')\n\t\t\t        ->get()->toArray();\n\n\t\t$data = [];\n\t\tif ($typeList){\n\t\t\tforeach ($typeList as $key=>$item){\n\t\t\t\t$document = DocumentLogic::instance()->getById($item['document_id']);\n\t\t\t\t$data[$key]['document_id'] = $item['document_id'];\n\t\t\t\t$data[$key]['document_name'] = $document->name;\n\t\t\t\t//获取文档第一个章节数据\n\t\t\t\t$chapter = $this->getByChapter(intval($item['document_id']));\n\t\t\t\t$data[$key]['first_chapter_id'] = $chapter ? $chapter['chapter_id'] : 0;\n\t\t\t\t$data[$key]['first_chapter_name'] = $chapter ? $chapter['chapter_name'] : '';\n\t\t\t\t$data[$key]['logo'] = $item['logo'];\n\t\t\t\t$data[$key]['description'] = $item['description'];\n\t\t\t\t$data[$key]['created_at'] = date('Y-m-d H:i:s',$item['created_at']);\n\t\t\t}\n\t\t}\n\t\treturn $data;\n\t}\n\n\n\t/**\n\t * 获取前端 类型二数据\n\t */\n\tpublic function getDocumentTypeII(){\n\t\t//获取类型二数据\n\t\t$typeList = DocumentHome::query()\n\t\t\t->select('id','type','sort','document_id','created_at')\n\t\t\t->where('type','=',3)\n\t\t\t->orderBy('sort','asc')\n\t\t\t->orderByDesc('created_at')\n\t\t\t->get()->toArray();\n\t\t$data = [];\n\t\tif ($typeList){\n\t\t\tforeach ($typeList as $key=>$item){\n\t\t\t\t$document = DocumentLogic::instance()->getById($item['document_id']);\n\t\t\t\t$data[$key]['document_id'] = $item['document_id'];\n\t\t\t\t$data[$key]['document_name'] = $document->name;\n                //获取章节数据\n\t\t\t\t$data[$key]['chapter'] = $this->getByChapterList($item['document_id']);\n\t\t\t}\n\t\t}\n\t\treturn $data;\n\t}\n\n\n\n\t/**\n\t *前端 搜索文档\n\t * @param $keyword\n\t */\n\tpublic function searchDocument($keyword,$page,$pageSize,$isPublic = 1){\n         $query = Document::query();\n         if (!empty($keyword)){\n\t\t\t $query->where('name', 'LIKE', \"%{$keyword}%\");\n\t\t }\n\t\t if (!empty($isPublic)){\n\t\t\t$query->where('is_public', '=', $isPublic);\n\t\t }\n\n\t\t $list = $query->select('id','name','cover','is_public')\n\t\t\t           ->orderByDesc('created_at')\n\t\t\t           ->paginate($pageSize, '*', 'page', $page)->toArray();\n\t\t //数据处理\n\t\t if (is_array($list['data']) && $list['data']){\n\t\t \t foreach ($list['data'] as $key => &$item){\n                $data =  $this->getByChapter($item['id']);\n                $item['chapter_id'] = !empty($data)? $data['chapter_id'] : 0;\n                $item['chapter_name'] = !empty($data)? $data['chapter_name'] : '';\n                $item['chapter_content'] = !empty($data)? mb_strimwidth(trim($data['chapter_content']), 0, 266, '...','utf-8') : '';\n                $item['nav'] = $this->buildNavigationSun($item['chapter_id']);\n\t\t\t }\n\t\t }\n\t\t return $list;\n\t}\n\n\n\t/**\n\t * 面包屑导航\n\t * @param $chapterId\n\t * @param string $str\n\t * @param int $i\n\t * @return \\Illuminate\\Database\\Eloquent\\HigherOrderBuilderProxy|\\Illuminate\\Support\\HigherOrderCollectionProxy|mixed|string\n\t */\n\tpublic function buildNavigationSun($chapterId, $str = '', $i = 0)\n\t{\n\t\t$i++;\n\t\tif ($i > 50) {\n\t\t\t//循环大于100，不再处理\n\t\t\treturn $str;\n\t\t}\n\t\t$chapter = Document\\Chapter::query()->find($chapterId);\n\t\tif ($chapter) {\n\t\t\tif (!$str) {\n\t\t\t\t//如果是根级\n\t\t\t\t$str = $chapter->name;\n\t\t\t} else {\n\t\t\t\t//如果是上级\n\t\t\t\t$str = $chapter->name . '>' . $str;\n\t\t\t}\n\t\t\tif ($chapter->parent_id) {\n\t\t\t\t$str = $this->buildNavigationSun($chapter->parent_id, $str);\n\t\t\t}\n\t\t}\n\t\treturn $str;\n\t}\n\n\n\t/**\n\t * 获取文档章节 内容\n\t * @param $documentId\n\t * @return array\n\t */\n\tprivate function getByChapter($documentId)\n\t{\n\t\t$chapter = Document\\Chapter::query()\n\t\t\t->select('id', 'name', 'sort', 'parent_id', 'is_dir', 'default_show_chapter_id')\n\t\t\t->where('document_id', $documentId)\n\t\t\t->orderBy('parent_id', 'asc')\n\t\t\t->orderBy('sort', 'asc')->first();\n\t\t$data = [];\n\t\tif ($chapter){\n\t\t\tif ($chapter->is_dir == Document\\Chapter::IS_DIR){\n\t\t\t\treturn $this->getByChapterChildren($chapter->id);\n\t\t\t}else{\n\t\t\t\t$content = Document\\ChapterContent::query()->where('chapter_id','=',$chapter->id)->first();\n\t\t\t\t$data['chapter_id'] = $chapter->id;\n\t\t\t\t$data['chapter_name'] = $chapter->name;\n\t\t\t\t$data['chapter_content'] = $content->content ? : '';\n\t\t\t}\n\t\t}\n        return $data;\n\t}\n\n\n\t/**\n\t * 递归查找 文档章节内容\n\t * @param $chapterId\n\t */\n    private function getByChapterChildren($chapterId){\n    \t$chapter = Document\\Chapter::query()\n\t\t\t->select('id', 'name', 'sort', 'parent_id', 'is_dir', 'default_show_chapter_id')\n\t\t\t->where('parent_id', $chapterId)\n\t\t\t->orderBy('sort', 'asc')->first();\n\t\t$data = [];\n    \tif ($chapter){\n    \t\tif ($chapter->is_dir == Document\\Chapter::IS_DIR){\n    \t\t\treturn $this->getByChapterChildren($chapter->id);\n\t\t\t}else{\n\t\t\t\t$content = Document\\ChapterContent::query()->where('chapter_id','=',$chapter->id)->first();\n\t\t\t\t$data['chapter_id'] = $chapter->id;\n\t\t\t\t$data['chapter_name'] = $chapter->name;\n\t\t\t\t$data['chapter_content'] = $content->content ? $content->content : '';\n\t\t\t}\n\t\t}\n        return $data;\n\t}\n\n\n\t/**\n\t * 获取章节数据列表\n\t * @param $documentId\n\t * @return array\n\t */\n\tpublic function getByChapterList($documentId){\n\t\t//获取章章节目录\n\t\t$chapter = ChapterLogic::instance()->getCatalog($documentId);\n\t\t$data = [];\n\t\tif ($chapter){\n\t\t\t$k = 0;\n\t\t\tforeach ($chapter as $key => $item){\n\t\t\t\tif ($item['is_dir'] && $item['children']){\n                     $this->getByChapterChildrenList($data,$item['children'],$k);\n\t\t\t\t}else{\n\t\t\t\t\t$data[$k]['chapter_id'] = $item['id'];\n\t\t\t\t\t$data[$k]['chapter_name'] = $item['name'];\n\t\t\t\t}\n\t\t\t\t++$k;\n\t\t\t}\n\t\t}\n\n\t\treturn $data ? array_splice($data,0,5) : $data;\n\t}\n\n\n\t/**\n\t * 获取章节目录 列表\n\t * @param $data\n\t * @param $children\n\t * @param $k\n\t */\n\tprivate function getByChapterChildrenList(&$data,$children,&$k){\n\t\tforeach ($children as $key => $item){\n\t\t\tif ($item['is_dir'] && $item['children']){\n                $this->getByChapterChildrenList($data,$item['children'],$k);\n\t\t\t}else{\n\t\t\t\t$data[$k]['chapter_id'] = $item['id'];\n\t\t\t\t$data[$k]['chapter_name'] = $item['name'];\n\t\t\t}\n\t\t\t++$k;\n\t\t}\n\t}\n\n\n\n\n\n\n}\n"
  },
  {
    "path": "app/Model/Logic/DocumentLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\App\\Model\\Entity\\Document;\nuse W7\\App\\Model\\Entity\\DocumentPermission;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass DocumentLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tpublic function getById($id)\n\t{\n\t\t$id = intval($id);\n\t\tif (empty($id)) {\n\t\t\treturn [];\n\t\t}\n\t\treturn Document::query()->find($id);\n\t}\n\n\tpublic function deleteByDocument(Document $document)\n\t{\n\t\tif (!$document->delete()) {\n\t\t\tthrow new \\RuntimeException('文档删除失败，请重试');\n\t\t}\n\t\t//删除权限\n\t\tDocumentPermissionLogic::instance()->clearByDocId($document->id);\n\n\t\t//删除星标\n\t\tStarLogic::instance()->clearByDocumentId($document->id);\n\n\t\t//删除章节及文章\n\t\tChapterLogic::instance()->deleteByDocumentId($document->id);\n\n\t\t//删除操作记录\n\t\tUserOperateLogic::instance()->clearByDocId($document->id);\n\n\t\treturn true;\n\t}\n\n\tpublic function createCreatorPermission(Document $document)\n\t{\n\t\tDocumentPermission::query()->create([\n\t\t\t'document_id' => $document->id,\n\t\t\t'user_id' => $document->creator_id,\n\t\t\t'permission' => DocumentPermission::MANAGER_PERMISSION,\n\t\t]);\n\t\treturn true;\n\t}\n\n\tpublic function getDocByCreatorId($id)\n\t{\n\t\treturn Document::query()->where('creator_id', $id)->first();\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/DocumentPermissionLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\App\\Model\\Entity\\Document;\nuse W7\\App\\Model\\Entity\\DocumentPermission;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass DocumentPermissionLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tpublic function getRoleList()\n\t{\n\t\treturn (new DocumentPermission())->roleList;\n\t}\n\n\tpublic function add($documentId, $userId, $permission)\n\t{\n\t\tif (!Document::query()->find($documentId)) {\n\t\t\tthrow new \\RuntimeException('该文档不存在');\n\t\t}\n\n\t\t$documentPermission = new DocumentPermission();\n\t\t$documentPermission->user_id = $userId;\n\t\t$documentPermission->document_id = $documentId;\n\t\t$documentPermission->permission = $permission;\n\n\t\tif (!$documentPermission->save()) {\n\t\t\tthrow new \\RuntimeException('文档权限添加失败');\n\t\t}\n\n\t\treturn true;\n\t}\n\n\tpublic function updateByDocIdAndUid($documentId, $userId, $permission)\n\t{\n\t\tif (!Document::query()->find($documentId)) {\n\t\t\tthrow new \\RuntimeException('该文档不存在');\n\t\t}\n\n\t\t//如果permission为空，删除对应权限\n\t\t$documentPermission = $this->getByDocIdAndUid($documentId, $userId);\n\t\tif (!$permission) {\n\t\t\t$documentPermission && $documentPermission->delete();\n\t\t\treturn $documentPermission;\n\t\t}\n\t\tif (!$documentPermission) {\n\t\t\t$documentPermission = new DocumentPermission();\n\t\t}\n\n\t\t$documentPermission->user_id = $userId;\n\t\t$documentPermission->document_id = $documentId;\n\t\t$documentPermission->permission = $permission;\n\n\t\tif (!$documentPermission->save()) {\n\t\t\tthrow new \\RuntimeException('文档权限变更失败');\n\t\t}\n\n\t\treturn $documentPermission;\n\t}\n\n\tpublic function getByDocIdAndUid($documentId, $userId)\n\t{\n\t\treturn DocumentPermission::query()->where('document_id', '=', $documentId)->where('user_id', '=', $userId)->first();\n\t}\n\n\tpublic function getByDocIdAndPermission($documentId, $permission)\n\t{\n\t\treturn DocumentPermission::query()->where('document_id', '=', $documentId)->where('permission', '=', $permission)->first();\n\t}\n\n\t/**\n\t * 删除文档后，删除对应的权限\n\t * @param $documentId\n\t * @return bool\n\t */\n\tpublic function clearByDocId($documentId)\n\t{\n\t\treturn DocumentPermission::query()->where('document_id', '=', $documentId)->delete();\n\t}\n\n\t/**\n\t * 删除用户后，删除对应的权限\n\t * @param $userId\n\t * @return bool\n\t */\n\tpublic function clearByUid($userId)\n\t{\n\t\treturn DocumentPermission::query()->where('user_id', '=', $userId)->delete();\n\t}\n\n\tpublic function getFounderACL()\n\t{\n\t\treturn [\n\t\t\t'name' => '创始人',\n\t\t\t'has_manage' => true,\n\t\t\t'has_edit' => true,\n\t\t\t'has_delete' => true,\n\t\t\t'has_read' => true,\n\t\t];\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/DocumentSearchLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\App\\Model\\Entity\\DocumentSearch;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass DocumentSearchLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\t//记录搜索热词\n\tpublic function addSearchHotWord($word){\n\t\t$word = trim($word);\n\t\tif ($word){\n\t\t\t$word = htmlspecialchars($word,ENT_QUOTES);\n\t\t\tDocumentSearch::query()->create([\n\t\t\t\t'search_word' => $word\n\t\t\t]);\n\t\t}\n\t}\n\n\n\t//获取搜索热词列表\n\tpublic function getSearchHotList($limit=20){\n\t\t$result = DocumentSearch::query()->selectRaw(\"search_word,count(*) as count\")\n\t\t\t                             ->groupBy('search_word')\n\t\t\t                             ->orderBy('count','desc')\n\t\t\t                             ->limit($limit)->get()->toArray();\n\t\t$result = array_column($result,'search_word');\n\t\treturn $result;\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/HomepageSettingLogic.php",
    "content": "<?php\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\App;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\nuse W7\\Http\\Message\\Server\\Request;\n\nclass HomepageSettingLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tconst HOME_OPEN_KEY = 'open_home';\n\tconst HOME_BANNER_KEY = 'home_banner';\n\tconst HOME_TITLE_KEY = 'home_title';\n\n\n\t/**\n\t * 获取首页配置\n\t */\n\tpublic function getHomeSet()\n\t{\n\t\treturn [\n\t\t\t 'open_home' => $this->getOpenHome(),\n\t\t\t 'banner' => $this->getHomeBanner(),\n\t\t\t 'title' => $this->getHomeTitle()\n\t\t];\n\t}\n\n\n\t/**\n\t * 设置是否开启首页\n\t * @param array $config\n\t */\n\tpublic function setOpenHome( array $config){\n         $setting['is_open'] = intval($config['is_open']);\n         $setting['url'] = $config['url'];\n         SettingLogic::instance()->save(self::HOME_OPEN_KEY,$setting);\n\t}\n\n\t/**\n\t * 设置首页 banner\n\t * @param array $images\n\t */\n\tpublic function setHomeBanner(array $images){\n\t\tSettingLogic::instance()->save(self::HOME_BANNER_KEY,$images);\n\t}\n\n\t/**\n\t * 设置首页名称\n\t * @param  String $name\n\t */\n\tpublic function setHomeTitle($name){\n\t\tSettingLogic::instance()->save(self::HOME_TITLE_KEY,$name);\n\t}\n\n\n\t/**\n\t * 获取首页是否开启配置\n\t */\n\tpublic function getOpenHome()\n\t{\n\t\t$setting = SettingLogic::instance()->getByKey(self::HOME_OPEN_KEY);\n\t\tif (!$setting){\n\t\t\treturn ['open_home' => 0,'url'=>base_url()];\n\t\t}\n\t\treturn $setting->setting;\n\t}\n\n\n\t/**\n\t * 获取首页 banner 图\n\t */\n\tpublic function getHomeBanner(){\n\t\t$setting = SettingLogic::instance()->getByKey(self::HOME_BANNER_KEY);\n\t\tif (!$setting){\n\t\t\treturn [];\n\t\t}\n\t\treturn $setting->setting;\n\t}\n\n\n\t/**\n\t * 获取首页名称\n\t */\n\tpublic function getHomeTitle(){\n\t\t$setting = SettingLogic::instance()->getByKey(self::HOME_TITLE_KEY);\n\t\tif (!$setting){\n\t\t\treturn '';\n\t\t}\n\t\treturn $setting->setting;\n\t}\n\n\n\n}\n"
  },
  {
    "path": "app/Model/Logic/Install/InstallLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic\\Install;\n\nuse W7\\App\\Exception\\InternalException;\nuse W7\\App\\Model\\Logic\\UserLogic;\n\nclass InstallLogic\n{\n\tpublic function install($config)\n\t{\n\t\tif (ienv('DATABASE_DEFAULT_DATABASE')) {\n\t\t\t//已安装已重启\n\t\t\tthrow new InternalException('文档系统已经安装，如果需要重新安装请手动删除 配置 文件');\n\t\t}\n\t\ttry {\n\t\t\t// 是否已安装\n\t\t\t$lockFile = RUNTIME_PATH . '/install.lock';\n\t\t\tif (file_exists($lockFile)) {\n\t\t\t\tthrow new InternalException('文档系统已经安装，如果需要重新安装请手动删除 runtime/install.lock 文件');\n\t\t\t}\n\n\t\t\t// 版本检查\n\t\t\t$this->checkExtension();\n\n\t\t\tif($config['cache_driver']== 'redis'){\n\t\t\t\t//如果缓存是redis服务进行校验，否则不校验\n\t\t\t\ttry {\n\t\t\t\t\t$redis = new \\Redis();\n\t\t\t\t\t$connect = $redis->connect($config['cache_host'], $config['cache_port'], 15);\n\t\t\t\t\tif (!$connect) {\n\t\t\t\t\t\tthrow new InternalException('redis链接失败');\n\t\t\t\t\t}\n\t\t\t\t} catch (\\Throwable $exception) {\n\t\t\t\t\tthrow new InternalException('redis链接失败：' . $exception->getMessage());\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t//仅做验证，不进行安装操作\n\t\t\tif ($config['option'] == 'check') {\n\t\t\t\t//验证数据库\n\t\t\t\ttry {\n\t\t\t\t\t$connect = new \\PDO(\"mysql:host={$config['db_host']};port={$config['db_port']};charset=utf8\", $config['db_username'], $config['db_password']);\n\t\t\t\t\tif (!$connect) {\n\t\t\t\t\t\tthrow new InternalException('数据库链接失败');\n\t\t\t\t\t}\n\t\t\t\t\t$connect->setAttribute(\\PDO::ATTR_ERRMODE, \\PDO::ERRMODE_EXCEPTION);\n\t\t\t\t\t$statement = $connect->query(\"SHOW DATABASES LIKE '{$config['db_database']}';\");\n\t\t\t\t\t$hasDb = $statement->fetch();\n\t\t\t\t\tif ($hasDb) {\n\t\t\t\t\t\tthrow new InternalException('数据库已存在');\n\t\t\t\t\t}\n\t\t\t\t} catch (\\Throwable $exception) {\n\t\t\t\t\tthrow new InternalException($exception->getMessage());\n\t\t\t\t}\n\n\t\t\t\treturn '验证通过';\n\t\t\t}\n\n\t\t\t// 生成配置文件\n\t\t\t$this->generateConfig($config);\n\n\t\t\t// 初始化数据库\n\t\t\t$this->initDatabase($config);\n\n\t\t\t// 生成lock文件\n\t\t\tfile_put_contents($lockFile, 'success');\n\n\t\t\treturn '安装已完成！提示：配置文件重启后生效，请按照文档配置，重启相关服务';\n\t\t} catch (\\Exception $e) {\n\t\t\tthrow new InternalException($e->getMessage());\n\t\t}\n\t}\n\n\tprivate function initDatabase($config)\n\t{\n\t\t// 创建数据库\n\t\ttry {\n\t\t\t$connect = new \\PDO(\"mysql:host={$config['db_host']};port={$config['db_port']};charset=utf8\", $config['db_username'], $config['db_password']);\n\t\t\t$connect->setAttribute(\\PDO::ATTR_ERRMODE, \\PDO::ERRMODE_EXCEPTION);\n\t\t\t$sql = \"CREATE DATABASE IF NOT EXISTS {$config['db_database']} DEFAULT CHARSET utf8 COLLATE utf8_general_ci;\";\n\t\t\t$connect->exec($sql);\n\t\t\t$statement = $connect->query(\"SHOW DATABASES LIKE '{$config['db_database']}';\");\n\t\t\tif (empty($statement->fetch())) {\n\t\t\t\tthrow new InternalException('创建数据库失败！');\n\t\t\t}\n\n\t\t\t$connect->exec(\"USE {$config['db_database']};\");\n\t\t\t$statement = $connect->query(\"SHOW TABLES LIKE '{$config['db_prefix']}%';\");\n\t\t\tif (!empty($statement->fetch())) {\n\t\t\t\tthrow new InternalException('您的数据库不为空，请重新建立数据库或清空该数据库或更改表前缀！');\n\t\t\t}\n\n\t\t\t// 导入数据\n\t\t\t$importSql = file_get_contents(BASE_PATH . '/install/document.sql');\n\t\t\t$importSql = str_replace('ims_', $config['db_prefix'], $importSql);\n\t\t\t$connect->exec($importSql);\n\t\t\t$connect = null;\n\n\t\t\t// 创建系统管理员账号\n\t\t\t$this->createAdmin($config);\n\n\t\t\treturn true;\n\t\t} catch (\\PDOException $e) {\n\t\t\tthrow new InternalException($e->getMessage());\n\t\t}\n\t}\n\n\tprivate function createAdmin($config)\n\t{\n\t\ttry {\n\t\t\t$connect = new \\PDO(\"mysql:host={$config['db_host']};port={$config['db_port']};dbname={$config['db_database']};charset=utf8mb4\", $config['db_username'], $config['db_password']);\n\t\t\t$username = $config['admin_username'];\n\t\t\t$password = UserLogic::instance()->userPwdEncryption($username, $config['admin_password']);\n\t\t\t$userTable = $config['db_prefix'] . 'user';\n\n\t\t\t$adminInsert = [\n\t\t\t\t'username' => $username,\n\t\t\t\t'userpass' => $password,\n\t\t\t\t'is_ban' => 0,\n\t\t\t\t'remark' => '超管',\n\t\t\t\t'group_id' => 1,\n\t\t\t\t'created_at' => time(),\n\t\t\t\t'updated_at' => time(),\n\t\t\t];\n\n\t\t\t$sql = \"INSERT INTO `{$userTable}` (`\" . implode('`,`', array_keys($adminInsert)) . \"`) VALUE ('\" . implode(\"','\", $adminInsert) . \"')\";\n\t\t\t$connect->exec($sql);\n\t\t\t$statement = $connect->query(\"SELECT * FROM {$userTable} WHERE username = '{$username}'\");\n\t\t\tif (empty($statement->fetch())) {\n\t\t\t\tthrow new InternalException('创建系统管理员失败！');\n\t\t\t}\n\t\t\t$connect = null;\n\t\t} catch (\\PDOException $e) {\n\t\t\tthrow new InternalException($e->getMessage());\n\t\t}\n\t}\n\n\tprivate function generateConfig($config)\n\t{\n\t\t$env = file_get_contents(BASE_PATH . '/install/.env.template');\n\t\t$env = str_replace('{{API_HOST}}', $config['api_host'], $env);\n\t\t// server\n\t\t$env = str_replace('{{SERVER_HTTP_PORT}}', $config['server_port'], $env);\n\t\t// db\n\t\t$env = str_replace('{{DATABASE_DEFAULT_DATABASE}}', $config['db_database'], $env);\n\t\t$env = str_replace('{{DATABASE_DEFAULT_HOST}}', $config['db_host'], $env);\n\t\t$env = str_replace('{{DATABASE_DEFAULT_PORT}}', $config['db_port'], $env);\n\t\t$env = str_replace('{{DATABASE_DEFAULT_USERNAME}}', $config['db_username'], $env);\n\t\t$env = str_replace('{{DATABASE_DEFAULT_PASSWORD}}', $config['db_password'], $env);\n\t\t$env = str_replace('{{DATABASE_DEFAULT_PREFIX}}', $config['db_prefix'], $env);\n\t\t// cache\n\t\t$env = str_replace('{{CACHE_DEFAULT_DRIVER}}', $config['cache_driver'], $env);\n\t\tif ($config['cache_driver'] == 'redis') {\n\t\t\t$env = str_replace('{{CACHE_DEFAULT_HOST}}', $config['cache_host'] ?? '', $env);\n\t\t\t$env = str_replace('{{CACHE_DEFAULT_PORT}}', $config['cache_port'] ?? '', $env);\n\t\t\t$env = str_replace('{{CACHE_DEFAULT_PASSWORD}}', '', $env);\n\t\t} else {\n\t\t\t$env = str_replace('{{CACHE_DEFAULT_HOST}}', '127.0.0.1', $env);\n\t\t\t$env = str_replace('{{CACHE_DEFAULT_PORT}}', '6379', $env);\n\t\t\t$env = str_replace('{{CACHE_DEFAULT_PASSWORD}}', '', $env);\n\t\t}\n\n\t\tif (file_put_contents(BASE_PATH . '/.env', $env) === false) {\n\t\t\tthrow new InternalException('配置文件写入失败！');\n\t\t}\n\t}\n\n\tprivate function checkExtension()\n\t{\n\t\tif (version_compare(PHP_VERSION, '7.2.0', '<')) {\n\t\t\tthrow new InternalException('PHP 版本必须>= 7.2.0');\n\t\t}\n\n\t\t$extension = ['pdo_mysql', 'mbstring', 'swoole'];\n\t\tforeach ($extension as $ext) {\n\t\t\tif (!extension_loaded($ext)) {\n\t\t\t\tthrow new InternalException($ext . ' 扩展未安装');\n\t\t\t}\n\t\t}\n\n\t\tif (version_compare(swoole_version(), '4.3.0', '<')) {\n\t\t\tthrow new InternalException('swoole 版本必须>= 4.3.0');\n\t\t}\n\n\t\tif (is_writable(BASE_PATH) === false) {\n\t\t\tthrow new InternalException('请保证' . BASE_PATH . '目录有写权限！');\n\t\t}\n\n\t\tif (is_writable(RUNTIME_PATH) === false) {\n\t\t\tthrow new InternalException('请保证' . RUNTIME_PATH . '目录有写权限！');\n\t\t}\n\n\t\tif (!file_exists(BASE_PATH . '/composer.json')) {\n\t\t\tthrow new InternalException('请先执行 composer install --no-dev 安装扩展包');\n\t\t}\n\t\treturn true;\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/MenuSettingLogic.php",
    "content": "<?php\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass MenuSettingLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tconst MENU_SETTING_KEY = 'menu_setting';\n\n\tpublic function all()\n\t{\n\t\t$setting = $this->getMenuSetting();\n\t\t$data = $setting['list'] ?? [];\n\t\tforeach ($data as $index => &$item) {\n\t\t\t$item['id'] = $index;\n\t\t}\n\n\t\treturn array_values($data);\n\t}\n\n\tpublic function getMenuSetting()\n\t{\n\t\t$setting = SettingLogic::instance()->getByKey(self::MENU_SETTING_KEY);\n\t\tif (!$setting) {\n\t\t\treturn ['theme' => \"white\"];\n\t\t}\n\n\t\treturn $setting->setting;\n\t}\n\n\tpublic function add(array $config)\n\t{\n\t\t$setting = $this->getMenuSetting();\n\t\t$setting['list'] = $setting['list'] ?? [];\n\t\t$maxId = !empty($setting['list']) ? max(array_keys($setting['list'])) + 1 : 1;\n\t\t$setting['list'][$maxId] = $config;\n\t\tSettingLogic::instance()->save(self::MENU_SETTING_KEY, $setting);\n\t}\n\n\tpublic function getById($id)\n\t{\n\t\t$setting = $this->getMenuSetting();\n\t\treturn $setting['list'][$id] ?? [];\n\t}\n\n\tpublic function updateById($id, array $config)\n\t{\n\t\t$setting = $this->getMenuSetting();\n\t\tif (empty($setting['list'][$id])) {\n\t\t\tthrow new \\RuntimeException('该菜单不存在');\n\t\t}\n\t\t$setting['list'][$id] = $config;\n\t\tSettingLogic::instance()->save(self::MENU_SETTING_KEY, $setting);\n\t}\n\n\tpublic function deleteById($id)\n\t{\n\t\t$setting = $this->getMenuSetting();\n\t\tif (!empty($setting['list'][$id])) {\n\t\t\tunset($setting['list'][$id]);\n\t\t\tSettingLogic::instance()->save(self::MENU_SETTING_KEY, $setting);\n\t\t}\n\n\t\treturn true;\n\t}\n\n\tpublic function setTheme($theme)\n\t{\n\t\t$setting = $this->getMenuSetting();\n\t\t$setting['theme'] = $theme;\n\t\tSettingLogic::instance()->save(self::MENU_SETTING_KEY, $setting);\n\t}\n\n\tpublic function getTheme()\n\t{\n\t\t$setting = $this->getMenuSetting();\n\t\treturn $setting['theme'] ?? '';\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/OauthLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\App\\Model\\Entity\\UserThirdParty;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass OauthLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tpublic function getThirdPartyUserByUsernameUid($uid, $username)\n\t{\n\t\treturn UserThirdParty::query()->where([\n\t\t\t'openid' => $uid,\n\t\t\t'username' => $username,\n\t\t])->first();\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/SettingLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\App\\Model\\Entity\\Setting;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass SettingLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tconst KEY_COS = 'cloud_cosv5';\n\tconst KEY_THIRD_PARTY_LOGIN = 'third_party_login';\n\tconst KEY_FORBID_WORDS = 'forbid_words';\n\n\n\tpublic function getByKey($key, $hide = 1)\n\t{\n\t\t$row = Setting::query()->where('key', $key)->first();\n\t\tif ($hide) {\n\t\t\t$row = $this->showHide($key, $row);\n\t\t}\n\t\treturn $row;\n\t}\n\n\tpublic function showHide($key, $data)\n\t{\n\t\tif ($key == SettingLogic::KEY_COS) {\n\t\t\t$value = $data->setting;\n\t\t\t$value['app_id'] = $data->setting['app_id'] ? substr($data->setting['app_id'], 0, 3) . '***' . substr($data->setting['app_id'], -3, 3) : '';\n\t\t\t$value['secret_id'] = $data->setting['secret_id'] ? substr($data->setting['secret_id'], 0, 3) . '***' . substr($data->setting['secret_id'], -3, 3) : '';\n\t\t\t$value['secret_key'] = $data->setting['secret_key'] ? substr($data->setting['secret_key'], 0, 3) . '***' . substr($data->setting['secret_key'], -3, 3) : '';\n\t\t\t$value['url'] = $data->setting['url'] ? substr($data->setting['url'], 0, 3) . '***' . substr($data->setting['url'], -3, 3) : '';\n\t\t\t$data->value = json_encode($value);\n\t\t\t$data->setting = $value;\n\t\t} elseif ($key == SettingLogic::KEY_THIRD_PARTY_LOGIN) {\n\t\t\t$value = $data->setting;\n\t\t\tif (!empty($value['channel']) && $value['channel']) {\n\t\t\t\tforeach ($value['channel'] as $key => $val) {\n\t\t\t\t\t$value['channel'][$key]['setting']['app_id'] = $val['setting']['app_id'] ? substr($val['setting']['app_id'], 0, 3) . '***' . substr($val['setting']['app_id'], -3, 3) : '';\n\t\t\t\t\t$value['channel'][$key]['setting']['secret_key'] = $val['setting']['secret_key'] ? substr($val['setting']['secret_key'], 0, 3) . '***' . substr($val['setting']['secret_key'], -3, 3) : '';\n\t\t\t\t\t$value['channel'][$key]['setting']['access_token_url'] = $val['setting']['access_token_url'] ? substr($val['setting']['access_token_url'], 0, 3) . '***' . substr($val['setting']['access_token_url'], -3, 3) : '';\n\t\t\t\t\t$value['channel'][$key]['setting']['user_info_url'] = $val['setting']['user_info_url'] ? substr($val['setting']['user_info_url'], 0, 3) . '***' . substr($val['setting']['user_info_url'], -3, 3) : '';\n\t\t\t\t}\n\t\t\t}\n\t\t\t$data->value = json_encode($value);\n\t\t\t$data->setting = $value;\n\t\t}\n\t\treturn $data;\n\t}\n\n\tpublic function save($key, $data)\n\t{\n\t\t$data = json_encode($data);\n\n\t\t$setting = $this->getByKey($key, 0);\n\t\tif (empty($setting)) {\n\t\t\tSetting::query()->create([\n\t\t\t\t'key' => $key,\n\t\t\t\t'value' => $data\n\t\t\t]);\n\t\t} else {\n\t\t\t$setting->value = $data;\n\t\t\t$setting->save();\n\t\t}\n\t\treturn true;\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/StarLogic.php",
    "content": "<?php\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\App\\Model\\Entity\\Star;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass StarLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tpublic function clearByDocumentId($documentId)\n\t{\n\t\tStar::query()->where('document_id', '=', $documentId)->delete();\n\t}\n\n\tpublic function clearByUid($userId)\n\t{\n\t\tStar::query()->where('user_id', '=', $userId)->delete();\n\t}\n\n\tpublic function clearByChapterId($chapterId)\n\t{\n\t\tStar::query()->where('chapter_id', '=', $chapterId)->delete();\n\t}\n}"
  },
  {
    "path": "app/Model/Logic/ThirdPartyLoginLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass ThirdPartyLoginLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tconst THIRD_PARTY_LOGIN_SETTING_KEY = 'third_party_login';\n\n\tpublic function __construct()\n\t{\n\t\t$setting = $this->getThirdPartyLoginSetting();\n\t\tif (empty($setting['channel'])) {\n\t\t\t//qq，微信为默认项\n\t\t\t$setting['channel'] = [\n\t\t\t\t'1' => [\n\t\t\t\t\t'is_default' => true,\n\t\t\t\t\t'setting' => [\n\t\t\t\t\t\t'name' => 'QQ',\n\t\t\t\t\t\t'logo' => 'http://cdn.w7.cc/web/resource/images/wechat/qqlogin.png'\n\t\t\t\t\t],\n\t\t\t\t\t'convert' => [\n\t\t\t\t\t\t'uid' => 'openid',\n\t\t\t\t\t\t'username' => 'nickname'\n\t\t\t\t\t]\n\t\t\t\t],\n\t\t\t\t'2' => [\n\t\t\t\t\t'is_default' => true,\n\t\t\t\t\t'setting' => [\n\t\t\t\t\t\t'name' => '微信',\n\t\t\t\t\t\t'logo' => 'http://cdn.w7.cc/web/resource/images/wechat/wxlogin.png'\n\t\t\t\t\t],\n\t\t\t\t\t'convert' => [\n\t\t\t\t\t\t'uid' => 'openid',\n\t\t\t\t\t\t'username' => 'nickname'\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t];\n\t\t\tSettingLogic::instance()->save(self::THIRD_PARTY_LOGIN_SETTING_KEY, $setting);\n\t\t}\n\t}\n\n\tpublic function getThirdPartyLoginSetting($hide = 0)\n\t{\n\t\t$setting = SettingLogic::instance()->getByKey(self::THIRD_PARTY_LOGIN_SETTING_KEY, $hide);\n\t\tif (!$setting) {\n\t\t\treturn [];\n\t\t}\n\n\t\treturn $setting->setting;\n\t}\n\n\tpublic function getThirdPartyLoginChannelById($id, $hide = 0)\n\t{\n\t\t$setting = $this->getThirdPartyLoginSetting($hide);\n\t\t$setting = $setting['channel'][$id] ?? [];\n\t\tif ($setting) {\n\t\t\t//判断是不是默认支持的\n\t\t\t$setting['is_default'] = $setting['is_default'] ?? false;\n\t\t}\n\n\t\treturn $setting;\n\t}\n\n\tpublic function deleteThirdPartyLoginChannelById($id)\n\t{\n\t\t$setting = $this->getThirdPartyLoginSetting();\n\t\tif (!empty($setting['channel'][$id])) {\n\t\t\t$loginSetting = $this->getDefaultLoginSetting();\n\t\t\tif (!empty($loginSetting['default_login_channel']) && $loginSetting['default_login_channel'] == $id) {\n\t\t\t\t$loginSetting['default_login_channel'] = '';\n\t\t\t\t$loginSetting['is_need_bind'] = '';\n\t\t\t\t$this->setDefaultLoginSetting($loginSetting);\n\t\t\t}\n\t\t\tunset($setting['channel'][$id]);\n\t\t\tSettingLogic::instance()->save(self::THIRD_PARTY_LOGIN_SETTING_KEY, $setting);\n\t\t}\n\n\t\treturn true;\n\t}\n\n\tpublic function addThirdPartyLoginChannel(array $config)\n\t{\n\t\t$setting = $this->getThirdPartyLoginSetting();\n\t\t$maxId = max(array_keys($setting['channel'])) + 1;\n\t\t$setting['channel'][$maxId] = $config;\n\t\tSettingLogic::instance()->save(self::THIRD_PARTY_LOGIN_SETTING_KEY, $setting);\n\t}\n\n\tpublic function updateThirdPartyLoginChannelById($id, array $config)\n\t{\n\t\t$setting = $this->getThirdPartyLoginSetting();\n\t\tif (empty($setting['channel'][$id])) {\n\t\t\tthrow new \\RuntimeException('该授权方式不存在');\n\t\t}\n\t\tif (empty($config['convert'])) {\n\t\t\t$config['convert'] = $setting['channel'][$id]['convert'];\n\t\t}\n\t\t$config['is_default'] = $setting['channel'][$id]['is_default'] ?? false;\n\t\t$setting['channel'][$id] = $config;\n\t\tSettingLogic::instance()->save(self::THIRD_PARTY_LOGIN_SETTING_KEY, $setting);\n\n\t\tif (empty($config['setting']['enable'])) {\n\t\t\t$loginSetting = $this->getDefaultLoginSetting();\n\t\t\tif (!empty($loginSetting['default_login_channel']) && $loginSetting['default_login_channel'] == $id) {\n\t\t\t\t$loginSetting['default_login_channel'] = '';\n\t\t\t\t$this->setDefaultLoginSetting($loginSetting);\n\t\t\t}\n\t\t}\n\t}\n\n\tpublic function setDefaultLoginSetting(array $data)\n\t{\n\t\t$setting = $this->getThirdPartyLoginSetting();\n\t\t$setting['default_login_setting'] = $data;\n\t\tSettingLogic::instance()->save(self::THIRD_PARTY_LOGIN_SETTING_KEY, $setting);\n\t}\n\n\tpublic function getDefaultLoginSetting()\n\t{\n\t\t$setting = $this->getThirdPartyLoginSetting();\n\t\treturn $setting['default_login_setting'] ?? [];\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/UserLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\App\\Model\\Entity\\User;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass UserLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tconst USER_LOGOUT_AFTER_CHANGE_PWD = 'user:logout:after:change:pwd:id:%s';\n\n\t/**\n\t * 根据用户名获取用户\n\t * @param $username\n\t * @return array|\\Illuminate\\Database\\Eloquent\\Builder|\\Illuminate\\Database\\Eloquent\\Model|null|object\n\t */\n\tpublic function getByUserName($username)\n\t{\n\t\treturn User::query()->where('username', $username)->first();\n\t}\n\n\tpublic function getByUid($uid)\n\t{\n\t\treturn User::query()->where('id', $uid)->first();\n\t}\n\n\tpublic function createUser($data)\n\t{\n\t\t$user = $this->getByUserName($data['username']);\n\t\tif ($user) {\n\t\t\tthrow new \\RuntimeException('用户名已经存在');\n\t\t}\n\n\t\t$data['userpass'] = $this->userPwdEncryption($data['username'], $data['userpass']);\n\t\t$user = User::query()->create($data);\n\t\tif (!$user) {\n\t\t\tthrow new \\RuntimeException('用户添加失败');\n\t\t}\n\n\t\treturn $user->id;\n\t}\n\n\n\tpublic function createBucket($username, $avatar = '') {\n\t\t$user = $this->getByUserName($username);\n\t\tif ($user) {\n\t\t\treturn $user->id;\n\t\t}\n\n\t\t$user = User::query()->create([\n\t\t\t'username' => $username,\n\t\t\t'userpass' => '',\n\t\t\t'remark' => '',\n\t\t\t'is_ban' => 0,\n\t\t\t'group_id' => 0,\n\t\t\t'avatar' => $avatar\n\t\t]);\n\n\t\tif (!$user) {\n\t\t\tthrow new \\RuntimeException('用户添加失败');\n\t\t}\n\n\t\treturn $user->id;\n\t}\n\n\tpublic function updateUser($userInfo)\n\t{\n\t\t$user = isset($userInfo['id']) ? $this->getByUid($userInfo['id']) : $this->getByUserName($userInfo['username']);\n\t\tif ($user && $userInfo['id'] != $user->id) {\n\t\t\tthrow new \\RuntimeException('用户名已经存在');\n\t\t}\n\n\t\tif (!empty($userInfo['userpass'])) {\n\t\t\t$userInfo['userpass'] = $this->userPwdEncryption($userInfo['username'], $userInfo['userpass']);\n\t\t\t//修改完密码后强制退出\n\t\t\ticache()->delete(sprintf(self::USER_LOGOUT_AFTER_CHANGE_PWD, $userInfo['id']));\n\t\t}\n\n\t\t$result = User::query()->where('id', $userInfo['id'])->update($userInfo);\n\t\tif (!$result) {\n\t\t\tthrow new \\RuntimeException('修改用户信息失败');\n\t\t}\n\n\t\treturn $result;\n\t}\n\n\tpublic function deleteByIds(array $ids)\n\t{\n\t\t$docLogic = new DocumentLogic();\n\n\t\t$delNum = 0;\n\t\tforeach ($ids as $k => $val) {\n\t\t\t$res = $docLogic->getDocByCreatorId($val);\n\t\t\tif (!$res) {\n\t\t\t\t/**\n\t\t\t\t * @var User $user\n\t\t\t\t */\n\t\t\t\t$user = $this->getByUid($val);\n\t\t\t\tif ($user && !$user->isFounder) {\n\t\t\t\t\tif (User::destroy($val)) {\n\t\t\t\t\t\tDocumentPermissionLogic::instance()->clearByUid($val);\n\t\t\t\t\t\tStarLogic::instance()->clearByUid($val);\n\t\t\t\t\t\tUserOperateLogic::instance()->clearByUid($val);\n\t\t\t\t\t\t$delNum++;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn $delNum;\n\t}\n\n\tpublic function userPwdEncryption($username, $userpass)\n\t{\n\t\treturn md5(md5($username.$userpass));\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/UserOperateLogic.php",
    "content": "<?php\n\nnamespace W7\\App\\Model\\Logic;\n\nuse phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses;\nuse W7\\App\\Model\\Entity\\UserOperateLog;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass UserOperateLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tpublic function getByChapterAndOperate($chapterId, $operate)\n\t{\n\t\treturn UserOperateLog::query()->where('chapter_id', '=', $chapterId)->where('operate', '=', $operate)->first();\n\t}\n\n\tpublic function clearByUid($userId)\n\t{\n\t\treturn UserOperateLog::query()->where('user_id', '=', $userId)->delete();\n\t}\n\n\tpublic function clearByDocId($documentId)\n\t{\n\t\treturn UserOperateLog::query()->where('document_id', '=', $documentId)->delete();\n\t}\n\n\tpublic function lists($where = [], $page = 1, $size = 20, $hasCreateChapter = false){\n\t\t$query = UserOperateLog::query()\n\t\t\t->with(['user','document','document.user'=>function($query){\n\t\t\t\t$query->select(['id','username','avatar']);\n\t\t\t}]);\n\t\tif (!empty($where['user_id']))\t$query->where('user_id',$where['user_id']);\n\t\tif (!empty($where['operate'])) {\n\t\t\t(!$hasCreateChapter && in_array(UserOperateLog::CREATE, $where['operate']))\n\t\t\t? $query->where(function ($query) use($where){\n\t\t\t\t$query->where(function($query){\n\t\t\t\t\t$query->where('operate',UserOperateLog::CREATE)->where('chapter_id',0);\n\t\t\t\t})->orWhere(function ($query) use($where){\n\t\t\t\t\t$query->whereIn('operate',array_diff($where['operate'],[UserOperateLog::CREATE]));\n\t\t\t\t});\n\t\t\t  })\n\t\t\t: $query->whereIn('operate',$where['operate']);\n\t\t}\n\n\t\treturn $query->orderBy('id','desc')->paginate($size,['*'],'',$page);\n\t}\n}\n"
  },
  {
    "path": "app/Model/Logic/UserShareLogic.php",
    "content": "<?php\n\nnamespace W7\\App\\Model\\Logic;\n\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass UserShareLogic extends BaseLogic\n{\n\tuse InstanceTraiter;\n\n\tconst SHARE_KEY = 'e8598e0ed61835892a79acdffa7f4f95';\n\n\tpublic function getShareUrl($userId, $documentId, $chapterId)\n\t{\n\t\treturn rtrim(ienv('API_HOST'), '/') . '/chapter/' . $documentId. '?id=' . $chapterId . '&share_key=' . urlencode(authcode($userId . '-' . $chapterId, 'ENCODED', self::SHARE_KEY));\n\t}\n\n\tpublic function getUidAndChapterByShareKey($shareKey)\n\t{\n\t\t$data = urldecode(authcode($shareKey, 'DECODE', self::SHARE_KEY));\n\t\t$data = explode('-', $data);\n\t\tif (count($data) != 2) {\n\t\t\tthrow new \\RuntimeException('share key error');\n\t\t}\n\n\t\treturn $data;\n\t}\n}"
  },
  {
    "path": "app/Model/Service/AES.php",
    "content": "<?php\n\n\nnamespace W7\\App\\Model\\Service;\n\n\nclass AES\n{\n\t/**\n\t * @desc：php aes加密解密类\n\t * @author gl\n\t * @date 2019/08/31\n\t */\n\tprotected $cipher = 'aes-128-ecb';\n\t/**\n\t * CI_Aes key\n\t *\n\t * @var string\n\t */\n\tprotected $key;\n\t/**\n\t * CI_Aes constructor\n\t * @param string $key Configuration parameter\n\t */\n\n\tpublic function __construct($key=\"w7document\"){\n\t\t$this->key = $key;\n\t}\n\n\t/**\n\t * Initialize\n\t *\n\t * @param array $params Configuration parameters\n\t * @return CI_Encryption\n\t */\n\tpublic function initialize($params)\n\t{\n\t\tif (!empty($params) && is_array($params)) {\n\t\t\tforeach ($params as $key => $val) {\n\t\t\t\t$this->$key = $val;\n\t\t\t}\n\t\t}\n\t}\n\t/**\n\t * Encrypt\n\t *\n\t * @param string $data Input data\n\t * @return string\n\t */\n\tpublic function encrypt($data) {\n\t\t$endata =  openssl_encrypt($data, $this->cipher, $this->key, OPENSSL_RAW_DATA);\n\t\treturn  bin2hex($endata);\n\t}\n\n\t/**\n\t * Decrypt\n\t *\n\t * @param string $data Encrypted data\n\t * @return string\n\t */\n\tpublic function decrypt($data) {\n\t\tif(!ctype_alnum($data)){\n\t\t\treturn false;\n\t\t}\n\t\tif(strlen($data)%2!=0){\n\t\t\treturn false;\n\t\t}\n\t\t$encrypted = hex2bin($data);\n\t\treturn openssl_decrypt($encrypted, $this->cipher, $this->key, OPENSSL_RAW_DATA);\n\t}\n}\n"
  },
  {
    "path": "app/Model/Service/CdnLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Service;\n\nuse Qcloud\\Cos\\Client;\nuse W7\\App\\Model\\Logic\\SettingLogic;\nuse W7\\Core\\Database\\LogicAbstract;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\n/**\n * Class CdnLogic\n * @package W7\\App\\Model\\Service\n */\nclass CdnLogic extends LogicAbstract\n{\n\tuse InstanceTraiter;\n\n\tprivate $bucketSpace = [];\n\tprivate $client = [];\n\t/**\n\t * 当前指定的通道\n\t * @var string\n\t */\n\tprivate $channel = '';\n\n\tpublic function __construct()\n\t{\n\t}\n\n\t/**\n\t * @param string $channel\n\t * @return mixed\n\t * @throws \\Throwable\n\t */\n\tpublic function connection($channel = '')\n\t{\n\t\tif (empty($channel)) {\n\t\t\t$channel = $this->channel;\n\t\t}\n\n\t\tif (empty($channel)) {\n\t\t\tthrow new \\RuntimeException('Please set bucket');\n\t\t}\n\n\t\tif (empty($this->client[$channel])) {\n\t\t\ttry {\n\t\t\t\t$this->client[$channel] = new Client([\n\t\t\t\t\t'region' => $this->bucketSpace[$channel]['region'],\n\t\t\t\t\t'schema' => 'https',\n\t\t\t\t\t'credentials' => [\n\t\t\t\t\t\t'secretId' => $this->bucketSpace[$channel]['secretId'],\n\t\t\t\t\t\t'secretKey' => $this->bucketSpace[$channel]['secretKey'],\n\t\t\t\t\t]\n\t\t\t\t]);\n\t\t\t} catch (\\Throwable $e) {\n\t\t\t\tthrow $e;\n\t\t\t}\n\t\t}\n\t\treturn $this->client[$channel];\n\t}\n\n\t/**\n\t * 设置当前存储的通道\n\t * @param $channel\n\t * @param bool $runTest\n\t * @return $this\n\t */\n\tpublic function channel($channel, $runTestBucket = false)\n\t{\n\t\t//从库里读取配置\n\t\t$setting = SettingLogic::instance()->getByKey($channel, 0);\n\n\t\tif (empty($setting)) {\n\t\t\tthrow new \\RuntimeException('请先配置上传参数');\n\t\t}\n\n\t\t$cosSetting = $setting->setting;\n\t\t$this->bucketSpace[$channel] = [\n\t\t\t'secretId' => $cosSetting['secret_id'],\n\t\t\t'secretKey' => $cosSetting['secret_key'],\n\t\t\t'bucket' => $cosSetting['bucket'],\n\t\t\t'rootUrl' => $cosSetting['url'],\n\t\t\t'region' => $cosSetting['region'],\n\t\t\t'rootPath' => $cosSetting['path'],\n\t\t];\n\n\t\tif (empty($channel) || empty($this->bucketSpace[$channel])) {\n\t\t\tthrow new \\RuntimeException('Invalid bucket name');\n\t\t}\n\n\t\tif (!empty($this->bucketSpace[$channel]['rootUrl'])) {\n\t\t\t$rootUrls = parse_url($this->bucketSpace[$channel]['rootUrl']);\n\t\t\tif (empty($rootUrls['host'])) {\n\t\t\t\tthrow new \\RuntimeException('Invalid root url');\n\t\t\t}\n\t\t}\n\n\t\tif ($runTestBucket) {\n\t\t\ttry {\n\t\t\t\t//重置缓存，重新加载\n\t\t\t\t$this->client = [];\n\t\t\t\t$isExistsBucket = $this->connection($channel)->headBucket([\n\t\t\t\t\t'Bucket' => $this->bucketSpace[$channel]['bucket'],\n\t\t\t\t]);\n\t\t\t} catch (\\Throwable $e) {\n\t\t\t\tthrow new \\RuntimeException($e->getMessage(), $e->getCode());\n\t\t\t}\n\t\t}\n\n\t\t$this->channel = $channel;\n\n\t\treturn $this;\n\t}\n\n\t/**\n\t * 上传一个文件\n\t * @param 上传到COS的路径，以/开头 $uploadPath\n\t * @param 文件在本地的物理绝对路径 $realPath\n\t * @return string 文件在COS上的URL\n\t */\n\tpublic function uploadFile($uploadPath, $realPath)\n\t{\n\t\t$uploadPath = $this->replacePublicRootPath($uploadPath);\n\t\ttry {\n\t\t\t$result = $this->connection()->putObject([\n\t\t\t\t'Key' => $uploadPath,\n\t\t\t\t'Bucket' => $this->bucketSpace[$this->channel]['bucket'],\n\t\t\t\t'Body' => fopen($realPath, 'rb'),\n\t\t\t]);\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new \\RuntimeException($e->getMessage(), $e->getCode());\n\t\t}\n        $url = $result['Location'];\n        if (!(strpos($url, 'http://') !== false || strpos($url, 'https://') !== false)) {\n            $url = 'https://' . $url;\n        }\n        return $this->replacePublicRootUrl($url);\n\t}\n\n\t/**\n\t * 获取目录下的所有文件\n\t * @param $dir\n\t * @return array\n\t */\n\tpublic function getDirFiles($dir = ''): array\n\t{\n\t\ttry {\n\t\t\t$dir = $this->replacePublicRootPath($dir);\n\t\t\t$dir = ltrim($dir, '/');\n\n\t\t\t$result = $this->connection()->listObjects([\n\t\t\t\t'Prefix' => $dir,\n\t\t\t\t'Bucket' => $this->bucketSpace[$this->channel]['bucket']\n\t\t\t]);\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new \\RuntimeException($e->getMessage(), $e->getCode());\n\t\t}\n\t\treturn (array)$result['Contents'];\n\t}\n\n\t/**\n\t * 获取已上传文件的URL\n\t * @param $uploadFile 文件存在cos上的路径\n\t * @param $timeout 设置获取此地址的有效时间\n\t * @return string cos的url\n\t */\n\tpublic function getFileUrl($uploadFile, $timeout = null)\n\t{\n\t\tif (!is_null($timeout)) {\n\t\t\t$timeout = \"+{$timeout} seconds\";\n\t\t}\n\t\t$uploadFile = $this->replacePublicRootPath($uploadFile);\n\t\ttry {\n\t\t\t$result = $this->connection()->getObjectUrl($this->bucketSpace[$this->channel]['bucket'], $uploadFile, $timeout);\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new \\RuntimeException($e->getMessage(), $e->getCode());\n\t\t}\n\n\t\treturn $result;\n\t}\n\n\tpublic function deleteFile($uploadFile)\n\t{\n\t\tif (empty($uploadFile)) {\n\t\t\tthrow new \\RuntimeException('Invalid file path');\n\t\t}\n\n\t\tif (!is_array($uploadFile)) {\n\t\t\t$uploadFile = [$uploadFile];\n\t\t}\n\t\t$objects = [];\n\n\t\tforeach ($uploadFile as $row) {\n\t\t\t$row = ltrim($row, '/');\n\t\t\t$objects[] = [\n\t\t\t\t'Key' => $this->replacePublicRootPath($uploadFile),\n\t\t\t];\n\t\t}\n\n\t\ttry {\n\t\t\t$result = $this->connection()->deleteObjects([\n\t\t\t\t'Bucket' => $this->bucketSpace[$this->channel]['bucket'],\n\t\t\t\t'Objects' => $objects,\n\t\t\t]);\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new \\RuntimeException($e->getMessage(), $e->getCode());\n\t\t}\n\n\t\treturn true;\n\t}\n\n\tpublic function deletePath($path)\n\t{\n\t\t$pathList = $this->getDirFiles($path);\n\t\tif (empty($pathList)) {\n\t\t\treturn true;\n\t\t}\n\t\ttry {\n\t\t\t$result = $this->connection()->deleteObjects([\n\t\t\t\t'Bucket' => $this->bucketSpace[$this->channel]['bucket'],\n\t\t\t\t'Objects' => $pathList,\n\t\t\t]);\n\t\t} catch (\\Throwable $e) {\n\t\t\tthrow new \\RuntimeException($e->getMessage(), $e->getCode());\n\t\t}\n\n\t\treturn true;\n\t}\n\n\tpublic function convertUrl($uploadPath, $returnOld = false)\n\t{\n\t\t$uploadPath = ltrim($uploadPath, '/');\n\n\t\tif (!empty($this->bucketSpace[$this->channel]['rootUrl']) && empty($returnOld)) {\n\t\t\treturn sprintf('%s/%s', $this->bucketSpace[$this->channel]['rootUrl'], $uploadPath);\n\t\t}\n\t\treturn sprintf('https://%s.cos.%s.myqcloud.com/%s', $this->bucketSpace[$this->channel]['bucket'], $this->bucketSpace[$this->channel]['region'], $uploadPath);\n\t}\n\n\t/**\n\t * 替换COS的默认地址为用户设置过的根域名\n\t * @param $url\n\t * @return string\n\t */\n\tprivate function replacePublicRootUrl($url)\n\t{\n\t\tif (empty($this->bucketSpace[$this->channel]['rootUrl'])) {\n\t\t\treturn $url;\n\t\t}\n\t\t$oldUrl = $this->convertUrl('', true);\n\t\t$oldHost = parse_url($oldUrl, PHP_URL_HOST);\n\t\t$rootUrlHost = parse_url($this->bucketSpace[$this->channel]['rootUrl'], PHP_URL_HOST);\n\n\t\treturn str_replace($oldHost, $rootUrlHost, $url);\n\t}\n\n\t/**\n\t * 替换COS设置的统一根目录\n\t */\n\tprivate function replacePublicRootPath($path)\n\t{\n\t\treturn $this->bucketSpace[$this->channel]['rootPath'] . '/' . ltrim($path, '/');\n\t}\n}\n"
  },
  {
    "path": "app/Model/Service/DbCacheLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Service;\n\nuse W7\\App\\Model\\Entity\\Cache;\nuse W7\\Core\\Database\\LogicAbstract;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass DbCacheLogic extends LogicAbstract\n{\n\tuse InstanceTraiter;\n\n\tpublic function set($key, $value, $ttl = null)\n\t{\n\t\tif ($ttl) {\n\t\t\t$ttl = time() + $ttl;\n\t\t}\n\t\t$row = Cache::query()->where('key', '=', $key)->first();\n\t\tif ($row) {\n\t\t\t$row->update(['value' => $value, 'expired_at' => $ttl ?? 0]);\n\t\t} else {\n\t\t\tCache::create(['key' => $key, 'value' => $value, 'expired_at' => $ttl ?? 0]);\n\t\t}\n\t\treturn true;\n\t}\n\n\tpublic function get($key, $default = null)\n\t{\n\t\t$row = Cache::query()->where('key', '=', $key)->first();\n\t\t$ret = $row ? $row->value : $default;\n\t\tif ($row && $row->expired_at && $row->expired_at < time()) {\n\t\t\t$row->delete();\n\t\t\t$ret = false;\n\t\t}\n\t\treturn $ret;\n\t}\n\n\tpublic function has($key)\n\t{\n\t\t$row = $this->get($key);\n\t\treturn $row ? true : false;\n\t}\n\n\tpublic function setMultiple($values, $ttl = null)\n\t{\n\t\tforeach ($values as $k => $v) {\n\t\t\t$this->set($k, $v, $ttl);\n\t\t}\n\t\treturn true;\n\t}\n\n\tpublic function getMultiple($keys, $default = null)\n\t{\n\t\t$data = [];\n\t\tforeach ($keys as $k) {\n\t\t\t$data[] = $this->get($k) ?? $default;\n\t\t}\n\t\treturn $data;\n\t}\n\n\tpublic function delete($key)\n\t{\n\t\t$ret = false;\n\t\t$row = Cache::query()->where('key', '=', $key)->first();\n\t\tif ($row) {\n\t\t\t$row->delete();\n\t\t\t$ret = true;\n\t\t}\n\t\treturn $ret;\n\t}\n\n\tpublic function deleteMultiple($keys)\n\t{\n\t\tforeach ($keys as $k) {\n\t\t\t$this->delete($k);\n\t\t}\n\t\treturn true;\n\t}\n\n\tpublic function clear()\n\t{\n\t\tCache::query()->truncate();\n\t\treturn true;\n\t}\n}\n"
  },
  {
    "path": "app/Model/Service/SessionLogic.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Model\\Service;\n\nuse W7\\App\\Model\\Entity\\Session;\nuse W7\\Core\\Database\\LogicAbstract;\nuse W7\\Core\\Helper\\Traiter\\InstanceTraiter;\n\nclass SessionLogic extends LogicAbstract\n{\n\tuse InstanceTraiter;\n\n\tpublic function getBySessionId($sessionId)\n\t{\n\t\treturn Session::query()->where('session_id', '=', $sessionId)->first();\n\t}\n\n\tpublic function deleteBySessionId($sessionId)\n\t{\n\t\treturn Session::query()->where('session_id', '=', $sessionId)->delete();\n\t}\n}\n"
  },
  {
    "path": "app/Model/Validate/index.html",
    "content": ""
  },
  {
    "path": "app/Process/index.html",
    "content": ""
  },
  {
    "path": "app/Provider/Socialite/ServiceProvider.php",
    "content": "<?php\n\nnamespace W7\\App\\Provider\\Socialite;\n\nuse Overtrue\\Socialite\\SocialiteManager;\nuse Symfony\\Component\\Finder\\Finder;\nuse W7\\Core\\Provider\\ProviderAbstract;\n\nclass ServiceProvider extends ProviderAbstract\n{\n\tpublic function register()\n\t{\n\t\t$this->registerSocialiteManager();\n\t\t$this->registerThirdPartyLogin();\n\t}\n\n\tprivate function registerSocialiteManager()\n\t{\n\t\tiloader()->set(SocialiteManager::class, function() {\n\t\t\treturn new SocialiteManager([]);\n\t\t});\n\t}\n\n\tprivate function registerThirdPartyLogin()\n\t{\n\t\t$thirdPartyLogins = [];\n\t\tforeach ((new Finder)->in(__DIR__ . '/ThirdPartyLogin/')->files() as $file) {\n\t\t\tif ($file->getExtension() !== 'php') {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif (strrchr($file->getFilename(), 'Trait') === false) {\n\t\t\t\t$fileName = substr($file->getBasename(), 0, -4);\n\t\t\t\t$thirdPartyLogins[] = '\\\\W7\\\\App\\\\Provider\\\\Socialite\\\\ThirdPartyLogin\\\\' . $fileName;\n\t\t\t}\n\t\t}\n\n\t\t/**\n\t\t * @var SocialiteManager $socialite\n\t\t */\n\t\t$socialite = iloader()->get(SocialiteManager::class);\n\t\tforeach ($thirdPartyLogins as $name => $thirdPartyLogin) {\n\t\t\t$obj = new $thirdPartyLogin($socialite->getRequest(), '', '', '');\n\t\t\t$appId = $obj->getAppUnionId();\n\t\t\t$socialite->extend($appId, function ($config) use ($socialite, $thirdPartyLogin, $appId) {\n\t\t\t\t$redirectUrl = empty($config['redirect_url']) ? ienv('API_HOST') . 'login?app_id=' . $appId : $config['redirect_url'];\n\t\t\t\treturn new $thirdPartyLogin(\n\t\t\t\t\t$socialite->getRequest(),\n\t\t\t\t\t$config['client_id'],\n\t\t\t\t\t$config['client_secret'],\n\t\t\t\t\t$redirectUrl\n\t\t\t\t);\n\t\t\t});\n\t\t}\n\t}\n}"
  },
  {
    "path": "app/Provider/Socialite/ThirdPartyLogin/OauthTrait.php",
    "content": "<?php\n\nnamespace W7\\App\\Provider\\Socialite\\ThirdPartyLogin;\n\nuse W7\\App\\Model\\Logic\\ThirdPartyLoginLogic;\nuse Overtrue\\Socialite\\User;\nuse RuntimeException;\nuse W7\\Http\\Message\\Server\\Response;\n\ntrait OauthTrait\n{\n\tprotected $config;\n\tprotected $convert;\n\n\tprivate function initConfig()\n\t{\n\t\t$config = iloader()->get(ThirdPartyLoginLogic::class)->getThirdPartyLoginChannelById($this->getAppUnionId());\n\t\tif (!$config['setting']) {\n\t\t\tthrow new \\RuntimeException('授权登陆方式 ' . $this->getAppUnionId() . ' 不存在');\n\t\t}\n\t\t$this->config = $config['setting'];\n\t\t$this->convert = $config['convert'] ?? [];\n\t}\n\n\tabstract public function getAppUnionId();\n\n\t/**\n\t * Get the token URL for the provider.\n\t *\n\t * @return string\n\t */\n\tprotected function getTokenUrl()\n\t{\n\t\t$this->initConfig();\n\t\treturn $this->config['access_token_url'];\n\t}\n\n\tprotected function getUserInfoUrl()\n\t{\n\t\t$this->initConfig();\n\t\treturn $this->config['user_info_url'];\n\t}\n\n\t/**\n\t * Map the raw user array to a Socialite User instance.\n\t *\n\t * @param array $user\n\t *\n\t * @return \\Overtrue\\Socialite\\User\n\t */\n\tprotected function mapUserToObject(array $user)\n\t{\n\t\t$this->initConfig();\n\t\tif (empty($this->convert)) {\n\t\t\tthrow new RuntimeException('自定义授权转换配置错误');\n\t\t}\n\t\t$userConvert = [];\n\t\tforeach ($this->convert as $key => $value) {\n\t\t\t$userConvert[$key] = $this->arrayItem($user, $value);\n\t\t}\n\t\treturn new User($userConvert);\n\t}\n\n\tpublic function logout(Response $response): Response\n\t{\n\t\treturn $response->redirect(ienv('API_HOST') . 'login');\n\t}\n}"
  },
  {
    "path": "app/Provider/Socialite/ThirdPartyLogin/QQOauth.php",
    "content": "<?php\n\nnamespace W7\\App\\Provider\\Socialite\\ThirdPartyLogin;\n\nuse Overtrue\\Socialite\\Providers\\QQProvider;\nuse Overtrue\\Socialite\\AccessTokenInterface;\n\nclass QQOauth extends QQProvider\n{\n\tuse OauthTrait;\n\n\tpublic function getAppUnionId()\n\t{\n\t\treturn '1';\n\t}\n\n\t/**\n\t * Get the token URL for the provider.\n\t *\n\t * @return string\n\t */\n\tprotected function getTokenUrl()\n\t{\n\t\treturn parent::getTokenUrl();\n\t}\n\n\tprotected function getUserByToken(AccessTokenInterface $token)\n\t{\n\t\t$url = $this->baseUrl.'/oauth2.0/me?access_token='.$token->getToken();\n\t\t$this->withUnionId && $url .= '&unionid=1';\n\n\t\t$response = $this->getHttpClient()->get($url);\n\n\t\t$me = json_decode($this->removeCallback($response->getBody()->getContents()), true);\n\t\t$this->openId = $me['openid'];\n\t\t$this->unionId = isset($me['unionid']) ? $me['unionid'] : '';\n\n\t\t$queries = [\n\t\t\t'access_token' => $token->getToken(),\n\t\t\t'openid' => $this->openId,\n\t\t\t'oauth_consumer_key' => $this->clientId,\n\t\t];\n\n\t\t$response = $this->getHttpClient()->get($this->baseUrl.'/user/get_user_info?'.http_build_query($queries));\n\t\t$info = json_decode($this->removeCallback($response->getBody()->getContents()), true);\n\t\t$info['openid'] = $this->openId;\n\t\treturn $info;\n\t}\n}"
  },
  {
    "path": "app/Provider/Socialite/ThirdPartyLogin/We7Oauth.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nnamespace W7\\App\\Provider\\Socialite\\ThirdPartyLogin;\n\nuse GuzzleHttp\\Client;\nuse Overtrue\\Socialite\\ProviderInterface;\nuse Overtrue\\Socialite\\Providers\\AbstractProvider;\nuse Overtrue\\Socialite\\AccessTokenInterface;\nuse W7\\Http\\Message\\Server\\Response;\n\nclass We7Oauth extends AbstractProvider implements ProviderInterface\n{\n    use OauthTrait;\n\n    public function getAppUnionId()\n    {\n        return '3';\n    }\n\n    protected function getAuthUrl($state)\n    {\n        $data = [\n            'redirect' => $this->redirectUrl,\n            'appid' => $this->clientId\n        ];\n\n        $headers = [];\n        if (ienv('OAUTH_USER_AGENT')) {\n            $headers['User-Agent'] = ienv('OAUTH_USER_AGENT');\n        }\n        $response = (new Client())->post('http://api.w7.cc/oauth/login-url/index', [\n            'form_params' => $data,\n            'headers' => $headers\n        ]);\n\n        $result = $response->getBody()->getContents();\n        if (empty($result)) {\n            throw new \\RuntimeException('获取授权地址错误');\n        }\n\n        $result = json_decode($result, true);\n        if (!empty($result['error'])) {\n            throw new \\RuntimeException($result['error']);\n        }\n\n        return $result['url'];\n    }\n\n    /**\n     * Get the Post fields for the token request.\n     *\n     * @param string $code\n     *\n     * @return array\n     */\n    protected function getTokenFields($code)\n    {\n        $data = [\n            'appid' => $this->clientId,\n            'code' => $code\n        ];\n        $data['sign'] = $this->getSign($data, $this->clientSecret);\n        return $data;\n    }\n\n    public function getSign($data, $appsecret = '')\n    {\n        unset($data['sign']);\n\n        ksort($data, SORT_STRING);\n        reset($data);\n\n        $sign = md5(http_build_query($data, '', '&') . $appsecret);\n        return $sign;\n    }\n\n    /**\n     * Get the access token for the given code.\n     *\n     * @param string $code\n     *\n     * @return \\Overtrue\\Socialite\\AccessToken\n     */\n    public function getAccessToken($code)\n    {\n        $formParams = $this->getTokenFields($code);\n        $response = $this->getHttpClient()->post($this->getTokenUrl(), [\n            'form_params' => $formParams,\n        ]);\n\n        $data = \\json_decode($response->getBody()->getContents(), true);\n        $data['access_token'] = $data['accessToken'];\n        return $this->parseAccessToken(\\json_encode($data));\n    }\n\n    /**\n     * Get the raw user for the given access token.\n     * @param AccessTokenInterface $token\n     * @return mixed\n     */\n    protected function getUserByToken(AccessTokenInterface $token)\n    {\n        $data = [\n            'access_token' => $token->getToken()\n        ];\n\n        $response = $this->getHttpClient()->post($this->getUserInfoUrl(), [\n            'form_params' => $data\n        ]);\n\n        return \\json_decode($response->getBody()->getContents(), true);\n    }\n\n    public function logout(Response $psrResponse): Response\n    {\n        $data = [\n            'redirect_url' => ienv('API_HOST') . 'admin-login'\n        ];\n\n        $headers = [];\n        if (ienv('OAUTH_USER_AGENT')) {\n            $headers['User-Agent'] = ienv('OAUTH_USER_AGENT');\n        }\n        $response = (new Client())->post('http://api.w7.cc/oauth/logout-url/index', [\n            'form_params' => $data,\n            'headers' => $headers\n        ]);\n\n        $result = $response->getBody()->getContents();\n        if (empty($result)) {\n            throw new \\RuntimeException('获取退出授权地址错误');\n        }\n\n        $result = json_decode($result, true);\n        if (!empty($result['error'])) {\n            throw new \\RuntimeException($result['error']);\n        }\n\n        return $psrResponse->redirect($result['url']);\n    }\n}\n"
  },
  {
    "path": "app/Provider/Socialite/ThirdPartyLogin/WechatOauth.php",
    "content": "<?php\n\nnamespace W7\\App\\Provider\\Socialite\\ThirdPartyLogin;\n\nuse Overtrue\\Socialite\\Providers\\WeChatProvider;\n\nclass WechatOauth extends WeChatProvider\n{\n\tuse OauthTrait;\n\n\tpublic function getAppUnionId()\n\t{\n\t\treturn '2';\n\t}\n\n\t/**\n\t * Get the token URL for the provider.\n\t * @return mixed\n\t */\n\tprotected function getTokenUrl()\n\t{\n\t\treturn parent::getTokenUrl();\n\t}\n}"
  },
  {
    "path": "app/Task/index.html",
    "content": ""
  },
  {
    "path": "app/View/index.html",
    "content": ""
  },
  {
    "path": "bin/gerent",
    "content": "#!/usr/bin/env sh\n\ndir=$(cd \"${0%[/\\\\]*}\" > /dev/null; cd '../vendor/bin' && pwd)\ncur_dir=$(cd \"${0%[/\\\\]*}\" > /dev/null; cd '../' && pwd)\n\nif [ -d /proc/cygdrive ]; then\ncase $(which php) in\n$(readlink -n /proc/cygdrive)/*)\n# We are in Cygwin using Windows php, so the path must be translated\ndir=$(cygpath -m \"$dir\");\n;;\nesac\nfi\n\n\"${dir}/rangine-gerent\" \"$@\" --app-path=${cur_dir}\n"
  },
  {
    "path": "bin/server",
    "content": "#!/usr/bin/env sh\n\ndir=$(cd \"${0%[/\\\\]*}\" > /dev/null; cd '../vendor/bin' && pwd)\ncur_dir=$(cd \"${0%[/\\\\]*}\" > /dev/null; cd '../' && pwd)\n\nif [ -d /proc/cygdrive ]; then\ncase $(which php) in\n$(readlink -n /proc/cygdrive)/*)\n# We are in Cygwin using Windows php, so the path must be translated\ndir=$(cygpath -m \"$dir\");\n;;\nesac\nfi\n\n\"${dir}/rangine-server\" \"$@\" --app-path=${cur_dir}\n"
  },
  {
    "path": "composer.json",
    "content": "{\n\t\"name\": \"w7/document-api\",\n\t\"type\": \"project\",\n\t\"description\": \"基于软擎框架的开源文档系统\",\n\t\"license\": \"Apache-2.0\",\n\t\"keywords\": [\n\t\t\"we7\",\n\t\t\"swoole\",\n\t\t\"rangine\"\n\t],\n\t\"homepage\": \"https://www.rangine.com/\",\n\t\"authors\": [\n\t\t{\n\t\t\t\"name\": \"we7team\",\n\t\t\t\"email\": \"donknap@gmail.com\"\n\t\t}\n\t],\n\t\"autoload\": {\n\t\t\"psr-4\": {\n\t\t\t\"W7\\\\App\\\\\": \"app/\",\n\t\t\t\"W7\\\\Tests\\\\\" : \"tests/\"\n\t\t},\n\t\t\"files\": [\n\t\t\t\"config/define.php\",\n\t\t\t\"app/Helper/Functions.php\"\n\t\t],\n\t\t\"classmap\": [\n\t\t\t\"database/seeds\",\n\t\t\t\"database/migrations\"\n\t\t]\n\t},\n\t\"require\": {\n\t\t\"w7/rangine\": \"2.4.19\",\n\t\t\"w7/rangine-crontab\": \"^1.1.0\",\n\t\t\"ext-json\": \"*\",\n\t\t\"gregwar/captcha\": \"^1.1\",\n\t\t\"qcloud/cos-sdk-v5\": \"^1.3\",\n\t\t\"overtrue/socialite\": \"^2.0\"\n\t},\n\t\"require-dev\": {\n\t\t\"phpunit/phpunit\": \"^7.0\",\n\t\t\"squizlabs/php_codesniffer\": \"*\",\n\t\t\"friendsofphp/php-cs-fixer\": \"^2.15\",\n\t\t\"w7/rangine-debugger\": \"^1.1.0\"\n\t},\n\t\"repositories\": {\n\t\t\"packagist\": {\n\t\t\t\"type\": \"composer\",\n\t\t\t\"url\": \"https://mirrors.aliyun.com/composer/\"\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "config/app.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nreturn [\n\t'setting' => [\n\t\t'env' => ienv('SETTING_DEVELOPMENT', DEVELOPMENT),\n\t\t'error_reporting' => ienv('SETTING_ERROR_REPORTING', E_ALL ^ E_NOTICE ^ E_WARNING ^ E_DEPRECATED ^ E_USER_DEPRECATED),\n\t\t'server' => ienv('SETTING_SERVERS', 'http'),\n\t\t'basedir' => [\n\t\t\tBASE_PATH,\n\t\t]\n\t],\n\t'cache' => [\n\t\t'default' => [\n\t\t\t'driver' => ienv('CACHE_DEFAULT_DRIVER', 'redis'),\n\t\t\t'host' => ienv('CACHE_DEFAULT_HOST', '127.0.0.1'),\n\t\t\t'port' => ienv('CACHE_DEFAULT_PORT', '6379'),\n\t\t\t'timeout' => ienv('CACHE_DEFAULT_TIMEOUT', 30),\n\t\t\t'password' => ienv('CACHE_DEFAULT_PASSWORD', ''),\n\t\t\t'database' => ienv('CACHE_DEFAULT_DATABASE', '0'),\n\t\t],\n\t],\n\t'database' => [\n\t\t'default' => [\n\t\t\t'driver' => ienv('DATABASE_DEFAULT_DRIVER', 'mysql'),\n\t\t\t'database' => ienv('DATABASE_DEFAULT_DATABASE', ''),\n\t\t\t'host' => ienv('DATABASE_DEFAULT_HOST', '127.0.0.1'),\n\t\t\t'username' => ienv('DATABASE_DEFAULT_USERNAME', 'root'),\n\t\t\t'password' => ienv('DATABASE_DEFAULT_PASSWORD', ''),\n\t\t\t'charset' => 'utf8mb4',\n\t\t\t'collation' => 'utf8mb4_general_ci',\n\t\t\t'prefix' => ienv('DATABASE_DEFAULT_PREFIX', 'ims_'),\n\t\t\t'port' => ienv('DATABASE_DEFAULT_PORT', 3306),\n\t\t\t'strict' => false\n\t\t],\n\t],\n\t'view' => [\n\t\t'template_path' => [\n\t\t\t'public' => BASE_PATH . '/public'\n\t\t]\n\t],\n\t'session' => [\n\t\t'expires' => 86400,\n\t\t'handler' => ienv('SESSION_HANDLER', 'cache')\n\t],\n\t'cookie' => [\n\t\t'path' => ienv('COOKIE_PATH', '/'),\n\t\t'http_only' => ienv('COOKIE_HTTP_ONLY', false),\n\t\t'domain' => ienv('COOKIE_DOMAIN', ''),\n\t\t'secure' => ienv('COOKIE_SECURE', false),\n\t\t'expires' => ienv('COOKIE_EXPIRES', 0),//不设置，默认取session.gc_maxlifetime配置\n\t],\n\n\t'pool' => [\n\t\t'database' => [\n\t\t\t'default' => [\n\t\t\t\t'enable' => ienv('POOL_DATABASE_DEFAULT_ENABLE', true),\n\t\t\t\t'max' => ienv('POOL_DATABASE_DEFAULT_MAX', 100),\n\t\t\t],\n\t\t],\n\t\t'cache' => [\n\t\t\t'default' => [\n\t\t\t\t'enable' => ienv('POOL_CACHE_DEFAULT_ENABLE', false),\n\t\t\t\t'max' => ienv('POOL_CACHE_DEFAULT_MAX', 100),\n\t\t\t],\n\t\t]\n\t],\n];\n"
  },
  {
    "path": "config/crontab.php",
    "content": "<?php\n/**\n * 最多1024个定时任务\n * @author donknap\n * @date 18-11-10 上午11:13\n */\nreturn [\n\n];"
  },
  {
    "path": "config/define.php",
    "content": "<?php\n/**\n * 自定义一些常量，可以项目中使用\n */\n\n// Constants\n! defined('DS') && define('DS', DIRECTORY_SEPARATOR);\n\n// App name\n! defined('APP_NAME') && define('APP_NAME', 'w7');\n\n// Project base path\n! defined('BASE_PATH') && define('BASE_PATH', dirname(__DIR__, 1));\n! defined('APP_PATH') && define('APP_PATH', BASE_PATH. DIRECTORY_SEPARATOR. 'app');\n! defined('RUNTIME_PATH') && define('RUNTIME_PATH', BASE_PATH. DIRECTORY_SEPARATOR. 'runtime');\n! defined('CDN_URL') && define('CDN_URL', \"//cdn.w7.cc/\");\n\n//应用常量\n! defined('APP_AUTH_ALL') && define('APP_AUTH_ALL', 'all');\n! defined('DOCUMENT_INFO') && define('DOCUMENT_INFO', 'document_info_');\n! defined('DOCUMENT_INFO_CACHE_TIME') && define('DOCUMENT_INFO_CACHE_TIME', 31536000);\n"
  },
  {
    "path": "config/log.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nreturn [\n\t'default' => 'stack',\n\n\t'channel' => [\n\t\t'stack' => [\n\t\t\t'driver' => 'stack',\n\t\t\t'channel' => ['single'],\n\t\t],\n\t\t'single' => [\n\t\t\t'driver' => 'daily',\n\t\t\t'path' => RUNTIME_PATH . DS . 'logs' . DS . 'w7.log',\n\t\t\t'level' => ienv('LOG_CHANNEL_SINGLE_LEVEL', 'debug'),\n\t\t\t'days' => '1',\n\t\t],\n\t\t'test' => [\n\t\t\t'driver' => 'daily',\n\t\t\t'path' => RUNTIME_PATH . DS . 'logs' . DS . 'test.log',\n\t\t\t'level' => 'debug',\n\t\t\t'days' => 7,\n\t\t],\n\t\t'error' => [\n\t\t\t'driver' => 'daily',\n\t\t\t'path' => RUNTIME_PATH . DS . 'logs' . DS . 'error.log',\n\t\t\t'level' => 'debug',\n\t\t\t'days' => 7,\n\t\t]\n\t],\n];\n"
  },
  {
    "path": "config/server.php",
    "content": "<?php\n/**\n * @author donknap\n * @date 18-7-18 下午5:41\n */\n\n$serverSetting = [\n\t'common' => [\n\t\t'pname' => 'document_open',\n\t\t'pid_file' => '/tmp/swoole.pid',\n\t\t'max_request' => 10000,\n\t\t'worker_num' => ienv('SERVER_COMMON_WORKER_NUM', 2),\n\t\t'task_worker_num' => ienv('SERVER_COMMON_TASK_WORKER_NUM', 1),\n\t\t'package_max_length' => ienv('SERVER_COMMON_PACKAGE_MAX_LENGTH', 5242880), // 5M\n\t\t'buffer_output_size' => ienv('SERVER_COMMON_BUFFER_MAX_LENGTH', 10485760) // 10*1024*1024\n\t],\n\t'tcp' => [\n\t\t'host' => '0.0.0.0',\n\t\t'port' => ienv('SERVER_TCP_PORT', '9999')\n\t],\n\t'http' => [\n\t\t'host' => '0.0.0.0',\n\t\t'port' => ienv('SERVER_HTTP_PORT', '99')\n\t],\n];\n\nreturn $serverSetting;\n"
  },
  {
    "path": "database/index.html",
    "content": ""
  },
  {
    "path": "database/migrations/2020_01_02_194246_create_user_third_party.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass CreateUserThirdParty extends Migration {\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up() {\n\t\t$this->schema->create('user_third_party', function (Blueprint $table) {\n\t\t\t$table->increments('id');\n\t\t\t$table->integer('uid');\n\t\t\t$table->string('openid', '200');\n\t\t\t$table->string('username', '100');\n\t\t\t$table->smallInteger('source');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down() {\n\t\t $this->schema->dropIfExists('user_third_party');\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2020_02_17_121335_alter_setting.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass AlterSetting extends Migration {\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up() {\n\t\t$this->schema->table('setting', function (Blueprint $table) {\n\t\t\t$table->text('value')->after('key')->change();\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down() {\n\t\t$this->schema->table('setting', function (Blueprint $table) {\n\t\t\t$table->string('value', 1000)->after('key')->change();\n\t\t});\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2020_03_02_153429_create_app.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass CreateApp extends Migration {\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up() {\n\t\t$this->schema->create('app', function (Blueprint $table) {\n\t\t\t$table->increments('id');\n\t\t\t$table->string('name', '30');\n\t\t\t$table->string('appid', '18');\n\t\t\t$table->string('appsecret', '64');\n\t\t\t$table->integer('user_id')->nullable(true)->default(0)->comment('用户id,一个appid对应一个用户');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down() {\n\t\t $this->schema->dropIfExists('app');\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2020_03_03_152902_alter_star.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass AlterStar extends Migration {\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up() {\n\t\t$this->schema->table('user_star', function (Blueprint $table) {\n\t\t\t$table->integer('chapter_id')->after('document_id')->nullable()->default(0);\n\t\t\t$table->dropUnique('user_id');\n\t\t\t$table->unique(['user_id', 'document_id', 'chapter_id'], 'user_document_chapter');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down() {\n\t\t$this->schema->table('user_star', function (Blueprint $table) {\n\t\t\t$table->dropUnique('user_document_chapter');\n\t\t\t$table->dropColumn('chapter_id');\n\t\t\t$table->unique(['user_id', 'document_id'], 'user_id');\n\t\t});\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2020_03_03_154818_alter_document.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass AlterDocument extends Migration {\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up() {\n\t\t$this->schema->table('document', function (Blueprint $table) {\n\t\t\t$table->string('cover', 120)->after('creator_id')->nullable()->default('')->comment('文档封面');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down() {\n\t\t$this->schema->table('document', function (Blueprint $table) {\n\t\t\t$table->dropColumn('cover');\n\t\t});\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2020_03_23_114510_table_operate_log.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass TableOperateLog extends Migration {\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up() {\n\t\t$this->schema->table('user_operate_log', function (Blueprint $table) {\n\t\t\t$table->integer('target_user_id')->after('chapter_id')->nullable()->default(0)->comment('目标用户id,比如文档转让的目标用户id');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down() {\n\t\t$this->schema->table('user_operate_log', function (Blueprint $table) {\n\t\t\t$table->dropColumn('target_user_id');\n\t\t});\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2020_04_07_145338_create_document_chapter_api.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass CreateDocumentChapterApi extends Migration\n{\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up()\n\t{\n\t\t$this->schema->create('document_chapter_api', function (Blueprint $table) {\n\t\t\t$table->increments('id');\n\t\t\t$table->integer('chapter_id')->default(0)->comment('章节ID');\n\t\t\t$table->string('url', 255)->default('')->comment('接口地址');\n\t\t\t$table->tinyInteger('method')->comment('请求方法:1、GET,2、POST,3、PUT,4、OPTIONS,5、DELETE');\n\t\t\t$table->integer('status_code')->default(200)->comment('状态码');\n\t\t\t$table->string('description', 255)->default('')->comment('接口描述');\n\t\t\t$table->tinyInteger('body_param_location')->default(3)->comment('body_param默认请求方式');\n\t\t\t$table->index('chapter_id');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down()\n\t{\n\t\t$this->schema->dropIfExists('document_chapter_api');\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2020_04_07_145420_create_document_chapter_api_param.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass CreateDocumentChapterApiParam extends Migration\n{\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up()\n\t{\n\t\t$this->schema->create('document_chapter_api_param', function (Blueprint $table) {\n\t\t\t$table->increments('id');\n\t\t\t$table->integer('chapter_id')->default(0)->comment('章节ID');\n\t\t\t$table->integer('parent_id')->default(0)->comment('上级ID');\n\t\t\t$table->tinyInteger('location')->comment('请求类型：1request.header,2request.query3requeset.body.form-data4requeset.body.x-www-form-urlencoded5requeset.body.raw6requeset.body.binary 7reponse.header8、reponse.body.form9、requeset.body.x-www-form-urlencoded10、requeset.body.raw11、requeset.body.binary');\n\t\t\t$table->tinyInteger('type')->comment('数据类型:1、int2、string...');\n\t\t\t$table->string('name', 255)->default('')->comment('数据键值');\n\t\t\t$table->string('description', 255)->default('')->comment('数据键值描述');\n\t\t\t$table->tinyInteger('enabled')->default(1)->comment('是否必填1否2是');\n\t\t\t$table->string('default_value', 255)->default('')->comment('初始值');\n\t\t\t$table->index('chapter_id');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down()\n\t{\n\t\t$this->schema->dropIfExists('document_chapter_api_param');\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2020_04_07_151451_create_document_chapter_api_extend.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass CreateDocumentChapterApiExtend extends Migration\n{\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up()\n\t{\n\t\t$this->schema->create('document_chapter_api_extend', function (Blueprint $table) {\n\t\t\t$table->increments('id');\n\t\t\t$table->integer('chapter_id')->default(0)->comment('章节ID');\n\t\t\t$table->longText('extend')->default('')->comment('扩展markdown格式数据');\n\t\t\t$table->index('chapter_id');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down()\n\t{\n\t\t$this->schema->dropIfExists('document_chapter_api_extend');\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2020_05_27_092518_create_document_chapter_api_reponse_table.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass CreateDocumentChapterApiReponseTable2020_05_27_092518 extends Migration\n{\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up()\n\t{\n\t\t$this->schema->create('document_chapter_api_reponse', function (Blueprint $table) {\n\t\t\t$table->bigIncrements('id');\n\t\t\t$table->integer('chapter_id')->default(0)->comment('章节ID');\n\t\t\t$table->string('description', 255)->default('')->comment('响应描述');\n\t\t\t$table->index('chapter_id');\n\t\t});\n\t\t$this->schema->table('document_chapter_api_param', function (Blueprint $table) {\n\t\t\t$table->integer('reponse_id')->after('location')->default(0)->comment('响应数据ID');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down()\n\t{\n\t\t$this->schema->dropIfExists('document_chapter_api_reponse');\n\t\t$this->schema->table('document_chapter_api_param', function (Blueprint $table) {\n\t\t\t$table->dropColumn('reponse_id');\n\t\t});\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2020_06_11_145556_add_rule_to_document_chapter_api_param_table.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass AddRuleToDocumentChapterApiParamTable2020_06_11_145556 extends Migration\n{\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up()\n\t{\n\t\t$this->schema->table('document_chapter_api_param', function (Blueprint $table) {\n\t\t\t$table->string('rule', 255)->after('enabled')->default('')->comment('moke规则');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down()\n\t{\n\t\t$this->schema->table('document_chapter_api_param', function (Blueprint $table) {\n\t\t\t$table->dropColumn('rule');\n\t\t});\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2021_03_03_170511_create_document_feedback_table.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass CreateDocumentFeedbackTable2021_03_03_170511 extends Migration {\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up() {\n\t\t$this->schema->create('document_feedback', function (Blueprint $table) {\n\t\t\t$table->bigIncrements('id');\n\t\t\t$table->integer('user_id')->nullable()->default(0);\n\t\t\t$table->integer('document_id')->nullable()->default(0);\n\t\t\t$table->tinyInteger('status')->nullable()->default(0)->comment('状态:0：未查看 1：已查看');\n\t\t\t$table->string('type', '200');\n\t\t\t$table->string('content','300');\n\t\t\t$table->string('images', '500');\n\t\t\t$table->integer('created_at')->nullable()->default(0);\n\t\t\t$table->integer('updated_at')->nullable()->default(0);\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down() {\n\t\t$this->schema->dropIfExists('document_feedback');\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2021_03_05_142937_create_document_chapter_api_data_table.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass CreateDocumentChapterApiDataTable2021_03_05_142937 extends Migration {\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up() {\n\t\t$this->schema->create('document_chapter_api_data', function (Blueprint $table) {\n\t\t\t$table->bigIncrements('id');\n\t\t\t$table->integer('chapter_id')->default(0)->comment('章节ID');\n\t\t\t$table->string('respond', 500)->default('')->comment('响应数据');\n\t\t\t$table->index('chapter_id');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down() {\n\t\t$this->schema->dropIfExists('document_chapter_api_data');\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2021_03_08_164459_alter_respond_to_document_chapter_api_data_table.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass AlterRespondToDocumentChapterApiDataTable2021_03_08_164459 extends Migration {\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up() {\n\t\t$this->schema->table('document_chapter_api_data', function (Blueprint $table) {\n\t\t\t$table->longText('respond')->default('')->comment('响应数据')->change();\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down() {\n\t\t$this->schema->table('document_chapter_api_data', function (Blueprint $table) {\n\t\t\t//\n\t\t});\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2021_03_16_104941_create_document_home_table.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass CreateDocumentHomeTable2021_03_16_104941 extends Migration {\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up() {\n\t\t$this->schema->create('document_home', function (Blueprint $table) {\n\t\t\t$table->bigIncrements('id');\n\t\t\t$table->tinyInteger('type')->comment('首页类型:1、公告,2、首页类型一,3、首页类型二');\n\t\t\t$table->integer('sort')->default(0)->comment('排序值');\n\t\t\t$table->string('logo', 255)->default('')->comment('图标');\n\t\t\t$table->string('url', 255)->default('')->comment('访问地址');\n\t\t\t$table->integer('document_id')->default(0)->comment('文档id');\n\t\t\t$table->integer('user_id')->default(0)->comment('用户id');\n\t\t\t$table->string('description', 255)->default('')->comment('文档简介');\n\t\t\t$table->integer('created_at')->nullable()->default(0);\n\t\t\t$table->integer('updated_at')->nullable()->default(0);\n\t\t\t$table->index('document_id');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down() {\n\t\t$this->schema->dropIfExists('document_home');\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2021_03_29_110505_create_document_search_hot_table.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass CreateDocumentSearchHotTable2021_03_29_110505 extends Migration {\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up() {\n\t\t$this->schema->create('document_search_hot', function (Blueprint $table) {\n\t\t\t$table->bigIncrements('id');\n\t\t\t$table->string('search_word', 255)->default('')->comment('搜索词');\n\t\t\t$table->integer('created_at')->nullable()->default(0);\n\t\t\t$table->integer('updated_at')->nullable()->default(0);\n\t\t\t$table->index('search_word');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down() {\n\t\t$this->schema->dropIfExists('document_search_hot');\n\t}\n}\n"
  },
  {
    "path": "database/migrations/2021_04_09_100433_alter_user_table.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse W7\\DatabaseTool\\Migrate\\Migration;\n\nclass AlterUserTable2021_04_09_100433 extends Migration {\n\t/**\n\t * Run the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function up() {\n\t\t$this->schema->table('user', function (Blueprint $table) {\n\t\t\t//\n\t\t\t$table->string('avatar')->default('')->after('userpass')->comment('用户头像');\n\t\t\t$table->string('company')->default('')->after('group_id')->comment('公司和职称');\n\t\t\t$table->string('resume')->default('')->after('company')->comment('个人简历');\n\t\t\t$table->string('skill')->default('')->after('resume')->comment('技能');\n\t\t\t$table->string('address')->default('')->after('skill')->comment('所在城市');\n\t\t});\n\t}\n\n\t/**\n\t * Reverse the migrations.\n\t *\n\t * @return void\n\t */\n\tpublic function down() {\n\t\t$this->schema->table('user', function (Blueprint $table) {\n\t\t\t//\n\t\t\t$table->dropColumn(['company','resume','skill','address']);\n\t\t});\n\t}\n}\n"
  },
  {
    "path": "database/migrations/index.html",
    "content": ""
  },
  {
    "path": "database/seeds/DatabaseSeeder.php",
    "content": "<?php\n\nuse W7\\DatabaseTool\\Seed\\Seeder;\n\nclass DatabaseSeeder extends Seeder {\n\t/**\n\t * Run the database seeds.\n\t *\n\t * @return void\n\t */\n\tpublic function run() {\n\t\t//\n\t}\n}\n"
  },
  {
    "path": "database/seeds/index.html",
    "content": ""
  },
  {
    "path": "docs/.gitignore",
    "content": "apidoc\nnode_modules\npackage-lock.json\n"
  },
  {
    "path": "docs/build-dev.sh",
    "content": "#!/bin/sh\n\n# set these paths to match your environment\nrm -rf ../public/docs/*\nnode_modules/apidoc/bin/apidoc -c \"./frontend\" -f \".*\\\\.php$\" -i ../app/Controller -o ../public/docs/web/v1\n"
  },
  {
    "path": "docs/build.sh",
    "content": "#!/bin/sh\n\n# set these paths to match your environment\nrm -rf ./apidoc/*\nnode_modules/apidoc/bin/apidoc -c \"./frontend\" -f \".*\\\\.php$\" -i ../app/Controller -o ./apidoc/web/v1\n\n"
  },
  {
    "path": "docs/frontend/apidoc.json",
    "content": "{\n\t\"name\": \"文档-前端接口\",\n\t\"version\": \"0.1.0\",\n\t\"description\": \"前端接口相关接口文档\",\n\t\"url\": \"/\"\n}\n"
  },
  {
    "path": "docs/package.json",
    "content": "{\n  \"name\": \"document-docs\",\n  \"version\": \"1.0.0\",\n  \"description\": \"A api docs project!\",\n  \"dependencies\": {\n    \"apidoc\": \"^0.17.7\"\n  },\n  \"devDependencies\": {},\n  \"author\": \"linjiangl\",\n  \"license\": \"MIT\"\n}\n"
  },
  {
    "path": "install/document.sql",
    "content": "/*\nNavicat MySQL Data Transfer\n\nSource Server         : test\nSource Server Version : 50562\nSource Host           : 212.64.83.243:3306\nSource Database       : document_test4\n\nTarget Server Type    : MYSQL\nTarget Server Version : 50562\nFile Encoding         : 65001\n\nDate: 2020-07-15 11:02:17\n*/\n\nSET FOREIGN_KEY_CHECKS=0;\n\n-- ----------------------------\n-- Table structure for ims_app\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_app`;\nCREATE TABLE `ims_app` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `name` varchar(30) NOT NULL,\n  `appid` varchar(18) NOT NULL,\n  `appsecret` varchar(64) NOT NULL,\n  `user_id` int(11) DEFAULT '0' COMMENT '用户id,一个appid对应一个用户',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_app\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_cache\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_cache`;\nCREATE TABLE `ims_cache` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `key` varchar(100) NOT NULL,\n  `value` text NOT NULL,\n  `expired_at` int(11) NOT NULL DEFAULT '0',\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `key` (`key`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_cache\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_document\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_document`;\nCREATE TABLE `ims_document` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `name` varchar(60) NOT NULL DEFAULT '',\n  `description` varchar(255) DEFAULT '' COMMENT '描述',\n  `creator_id` int(11) NOT NULL DEFAULT '0' COMMENT '创建者id',\n  `cover` varchar(120) DEFAULT '' COMMENT '文档封面',\n  `is_public` tinyint(1) NOT NULL DEFAULT '2' COMMENT '文档是否为公有文档 1:公有,2:私有',\n  `created_at` int(11) NOT NULL DEFAULT '0',\n  `updated_at` int(11) NOT NULL DEFAULT '0',\n  PRIMARY KEY (`id`),\n  KEY `creator_id` (`creator_id`),\n  KEY `updated_at` (`updated_at`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_document\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_document_chapter\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_document_chapter`;\nCREATE TABLE `ims_document_chapter` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `parent_id` int(11) NOT NULL DEFAULT '0',\n  `name` varchar(60) NOT NULL DEFAULT '' COMMENT '文档名称',\n  `document_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '壳id',\n  `sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序，越大越靠前',\n  `is_dir` tinyint(1) DEFAULT '0' COMMENT '当前章节是否是目录(1：是，0：否)',\n  `levels` tinyint(3) unsigned NOT NULL DEFAULT '0',\n  `default_show_chapter_id` int(11) DEFAULT '0' COMMENT '默认显示的章节',\n  `created_at` int(11) NOT NULL DEFAULT '0',\n  `updated_at` int(11) NOT NULL DEFAULT '0',\n  PRIMARY KEY (`id`),\n  KEY `parent_id` (`parent_id`,`document_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_document_chapter\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_document_chapter_api\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_document_chapter_api`;\nCREATE TABLE `ims_document_chapter_api` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `chapter_id` int(11) NOT NULL DEFAULT '0' COMMENT '章节ID',\n  `url` varchar(255) NOT NULL DEFAULT '' COMMENT '接口地址',\n  `method` tinyint(4) NOT NULL COMMENT '请求方法:1、GET,2、POST,3、PUT,4、OPTIONS,5、DELETE',\n  `status_code` int(11) NOT NULL DEFAULT '200' COMMENT '状态码',\n  `description` varchar(255) NOT NULL DEFAULT '' COMMENT '接口描述',\n  `body_param_location` tinyint(4) NOT NULL DEFAULT '3' COMMENT 'body_param默认请求方式',\n  PRIMARY KEY (`id`),\n  KEY `document_chapter_api_chapter_id_index` (`chapter_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_document_chapter_api\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_document_chapter_api_extend\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_document_chapter_api_extend`;\nCREATE TABLE `ims_document_chapter_api_extend` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `chapter_id` int(11) NOT NULL DEFAULT '0' COMMENT '章节ID',\n  `extend` longtext NOT NULL COMMENT '扩展markdown格式数据',\n  PRIMARY KEY (`id`),\n  KEY `document_chapter_api_extend_chapter_id_index` (`chapter_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_document_chapter_api_extend\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_document_chapter_api_param\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_document_chapter_api_param`;\nCREATE TABLE `ims_document_chapter_api_param` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `chapter_id` int(11) NOT NULL DEFAULT '0' COMMENT '章节ID',\n  `parent_id` int(11) NOT NULL DEFAULT '0' COMMENT '上级ID',\n  `location` tinyint(4) NOT NULL COMMENT '请求类型：1request.header,2request.query3requeset.body.form-data4requeset.body.x-www-form-urlencoded5requeset.body.raw6requeset.body.binary 7reponse.header8、reponse.body.form9、requeset.body.x-www-form-urlencoded10、requeset.body.raw11、requeset.body.binary',\n  `reponse_id` int(11) NOT NULL DEFAULT '0' COMMENT '响应数据ID',\n  `type` tinyint(4) NOT NULL COMMENT '数据类型:1、int2、string...',\n  `name` varchar(255) NOT NULL DEFAULT '' COMMENT '数据键值',\n  `description` varchar(255) NOT NULL DEFAULT '' COMMENT '数据键值描述',\n  `enabled` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否必填1否2是',\n  `rule` varchar(255) NOT NULL DEFAULT '' COMMENT 'moke规则',\n  `default_value` varchar(255) NOT NULL DEFAULT '' COMMENT '初始值',\n  PRIMARY KEY (`id`),\n  KEY `document_chapter_api_param_chapter_id_index` (`chapter_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_document_chapter_api_param\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_document_chapter_api_reponse\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_document_chapter_api_reponse`;\nCREATE TABLE `ims_document_chapter_api_reponse` (\n  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,\n  `chapter_id` int(11) NOT NULL DEFAULT '0' COMMENT '章节ID',\n  `description` varchar(255) NOT NULL DEFAULT '' COMMENT '响应描述',\n  PRIMARY KEY (`id`),\n  KEY `document_chapter_api_reponse_chapter_id_index` (`chapter_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_document_chapter_api_reponse\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_document_chapter_content\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_document_chapter_content`;\nCREATE TABLE `ims_document_chapter_content` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `chapter_id` int(11) NOT NULL,\n  `content` longtext,\n  `layout` tinyint(1) NOT NULL COMMENT '章节格式 1 markdown 2 富文本',\n  PRIMARY KEY (`id`),\n  KEY `chapter_id` (`chapter_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_document_chapter_content\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_document_permission\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_document_permission`;\nCREATE TABLE `ims_document_permission` (\n  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,\n  `user_id` int(11) NOT NULL,\n  `document_id` int(11) NOT NULL COMMENT '文档id',\n  `permission` tinyint(4) NOT NULL COMMENT '用户在文档中的权限(1: 管理员,2:操作员,3:阅读者)',\n  `created_at` int(11) NOT NULL DEFAULT '0',\n  `updated_at` int(11) NOT NULL DEFAULT '0',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT;\n\n-- ----------------------------\n-- Records of ims_document_permission\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_migration\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_migration`;\nCREATE TABLE `ims_migration` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `migration` varchar(255) NOT NULL,\n  `batch` int(11) NOT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_migration\n-- ----------------------------\nINSERT INTO `ims_migration` VALUES ('1', '2020_01_02_194246_create_user_third_party', '1');\nINSERT INTO `ims_migration` VALUES ('2', '2020_02_17_121335_alter_setting', '1');\nINSERT INTO `ims_migration` VALUES ('3', '2020_03_02_153429_create_app', '1');\nINSERT INTO `ims_migration` VALUES ('4', '2020_03_03_152902_alter_star', '1');\nINSERT INTO `ims_migration` VALUES ('5', '2020_03_03_154818_alter_document', '1');\nINSERT INTO `ims_migration` VALUES ('6', '2020_03_23_114510_table_operate_log', '1');\nINSERT INTO `ims_migration` VALUES ('7', '2020_04_07_145338_create_document_chapter_api', '1');\nINSERT INTO `ims_migration` VALUES ('8', '2020_04_07_145420_create_document_chapter_api_param', '1');\nINSERT INTO `ims_migration` VALUES ('9', '2020_04_07_151451_create_document_chapter_api_extend', '1');\nINSERT INTO `ims_migration` VALUES ('10', '2020_05_27_092518_create_document_chapter_api_reponse_table', '1');\nINSERT INTO `ims_migration` VALUES ('11', '2020_06_11_145556_add_rule_to_document_chapter_api_param_table', '1');\n\n-- ----------------------------\n-- Table structure for ims_session\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_session`;\nCREATE TABLE `ims_session` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `session_id` varchar(50) NOT NULL,\n  `data` varchar(1000) NOT NULL,\n  `expired_at` int(11) NOT NULL,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `session_id` (`session_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8;\n\n-- ----------------------------\n-- Records of ims_session\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_setting\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_setting`;\nCREATE TABLE `ims_setting` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `key` varchar(60) NOT NULL,\n  `value` text NOT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_setting\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_user\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_user`;\nCREATE TABLE `ims_user` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `username` varchar(20) NOT NULL DEFAULT '' COMMENT '用户名',\n  `userpass` varchar(255) NOT NULL DEFAULT '' COMMENT '登录密码',\n  `remark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注',\n  `is_ban` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '1:禁止,0:正常',\n  `has_privilege` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否具有特权 0:无,1:有',\n  `group_id` int(11) DEFAULT '0',\n  `created_at` int(11) NOT NULL DEFAULT '0',\n  `updated_at` int(11) NOT NULL DEFAULT '0',\n  PRIMARY KEY (`id`),\n  KEY `idx_username` (`username`)\n) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_user\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_user_operate_log\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_user_operate_log`;\nCREATE TABLE `ims_user_operate_log` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `user_id` int(11) NOT NULL COMMENT '操作人id',\n  `document_id` int(11) NOT NULL,\n  `chapter_id` int(11) NOT NULL COMMENT '章节id',\n  `target_user_id` int(11) DEFAULT '0' COMMENT '目标用户id,比如文档转让的目标用户id',\n  `operate` tinyint(4) NOT NULL COMMENT '操作（1：新增，2：编辑，3：删除）',\n  `remark` varchar(120) DEFAULT '',\n  `created_at` int(11) NOT NULL COMMENT '操作时间',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_user_operate_log\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_user_star\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_user_star`;\nCREATE TABLE `ims_user_star` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `user_id` int(11) NOT NULL,\n  `document_id` int(11) NOT NULL,\n  `chapter_id` int(11) DEFAULT '0',\n  `created_at` int(11) NOT NULL,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `user_document_chapter` (`user_id`,`document_id`,`chapter_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_user_star\n-- ----------------------------\n\n-- ----------------------------\n-- Table structure for ims_user_third_party\n-- ----------------------------\nDROP TABLE IF EXISTS `ims_user_third_party`;\nCREATE TABLE `ims_user_third_party` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `uid` int(11) NOT NULL,\n  `openid` varchar(200) NOT NULL,\n  `username` varchar(100) NOT NULL,\n  `source` smallint(6) NOT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n-- ----------------------------\n-- Records of ims_user_third_party\n-- ----------------------------\n"
  },
  {
    "path": "mockApi/.gitignore",
    "content": "logs/\nnpm-debug.log\nyarn-error.log\nnode_modules/\npackage-lock.json\nyarn.lock\ncoverage/\n.idea/\nrun/\n.DS_Store\n*.sw*\n*.un~\ntypings/\n.nyc_output/\n"
  },
  {
    "path": "mockApi/app.js",
    "content": "const express = require('express')\nconst app = express()\nconst port = 9529\n\n//mock数据转化\nconst makeMockData = (data) => {\n\tif(data.body&&data.body){\n\t\tvar Mock = require('mockjs')\n\t\tvar newData=Mock.mock(treeToTemplate(data.body,1));\n\t\treturn romoveSlash(newData);\n\t}\n\treturn data.body;\n}\n\n//pm2 start  node -- app.js\n//POST中间件\nconst bodyParser = require('body-parser');\napp.use(bodyParser.json());//数据JSON类型\napp.use(bodyParser.urlencoded({ extended: false }));//解析post请求数据\n\n//路由\napp.all('/buildMock', (req, res, next) => res.json(makeMockData(req)))\n\n//启动服务\napp.listen(port, () => console.log(`app listening at http://localhost:${port}`))\n\n\n// num为1，对函数类型、正则执行函数，得到函数返回值\nfunction treeToTemplate(tree, num = 0) {\n\tfunction parse(item, result) {\n\t\tlet rule = item.rule ? ('|' + item.rule) : '';\n\t\tlet value = item.default_value;\n\t\tif (item.default_value && item.default_value.indexOf('[') === 0 && item.default_value.substring(item.default_value.length - 1) === ']') {\n\t\t\ttry {\n\t\t\t\tlet reg = /\\s*/g;\n\t\t\t\tlet reg2 = /\\\"/g;\n\t\t\t\tvalue = value.substring(1, value.length - 1).replace(reg, '').replace(reg2, '').split(',');\n\t\t\t\t// console.error(123)\n\t\t\t\t// console.log(value)\n\t\t\t\tresult[item.name + rule] = value\n\t\t\t\t// result[item.name + rule] = vm.run(`(${item.value})`)\n\t\t\t} catch (e) {\n\t\t\t\tresult[item.name + rule] = value\n\t\t\t}\n\t\t} else {\n\t\t\tif (item.name.length) {\n\t\t\t\tswitch (item.type) {\n\t\t\t\t\tcase 1:\n\t\t\t\t\t\t// String\n\t\t\t\t\t\tresult[item.name + rule] = value\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 2:\n\t\t\t\t\t\t// Number\n\t\t\t\t\t\tif (value === '') value = 1\n\t\t\t\t\t\tlet parsed = parseFloat(value)\n\t\t\t\t\t\tif (!isNaN(parsed)) value = parsed\n\t\t\t\t\t\tresult[item.name + rule] = value\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 3:\n\t\t\t\t\t\t// Boolean\n\t\t\t\t\t\tif (value === 'true') value = true\n\t\t\t\t\t\tif (value === 'false') value = false\n\t\t\t\t\t\tif (value === '0') value = false\n\t\t\t\t\t\tvalue = !!value\n\t\t\t\t\t\tresult[item.name + rule] = value\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 4:\n\t\t\t\t\t\tif(item.children) {\n\t\t\t\t\t\t\t// Object\n\t\t\t\t\t\t\tif (value) {\n\t\t\t\t\t\t\t\t// result[item.name + rule] = vm.run(`(${item.value})`)\n\t\t\t\t\t\t\t\tresult[item.name + rule] = {};\n\t\t\t\t\t\t\t\titem.children.forEach((child) => {\n\t\t\t\t\t\t\t\t\tparse(child, result[item.name + rule])\n\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tresult[item.name + rule] = {}\n\t\t\t\t\t\t\t\titem.children.forEach((child) => {\n\t\t\t\t\t\t\t\t\tparse(child, result[item.name + rule])\n\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}else{\n\t\t\t\t\t\t\tresult[item.name + rule] = {}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 5:\n\t\t\t\t\t\t// Array\n\t\t\t\t\t\tif (value) {\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t// result[item.name + rule] = vm.run(`(${item.value})`)\n\t\t\t\t\t\t\t\tresult[item.name + rule] = value\n\t\t\t\t\t\t\t} catch (e) {\n\t\t\t\t\t\t\t\tresult[item.name + rule] = item.value\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tif(item.children){\n\t\t\t\t\t\t\t\tresult[item.name + rule] = item.children.length ? [{}] : []\n\t\t\t\t\t\t\t\titem.children.forEach((child) => {\n\t\t\t\t\t\t\t\t\tparse(child, result[item.name + rule][0])\n\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t}else{\n\t\t\t\t\t\t\t\tresult[item.name + rule] = []\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 6:\n\t\t\t\t\t\t// Function\n\t\t\t\t\t\tif (num == 1) {\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t// 1\n\t\t\t\t\t\t\t\tlet fun = eval(item.default_value);\n\t\t\t\t\t\t\t\tresult[item.name + rule] = fun();\n\n\t\t\t\t\t\t\t\t// 2\n\t\t\t\t\t\t\t\t// let funcTest = new Function('return ' + item.default_value);\n\t\t\t\t\t\t\t\t// result[item.name + rule] = funcTest()()\n\t\t\t\t\t\t\t} catch (e) {\n\t\t\t\t\t\t\t\t// console.error(e);\n\t\t\t\t\t\t\t\tconsole.warn(`TreeToTemplate ${e.message}: ${item.type} { ${item.name}${rule}: ${item.default_value} }`) // 怎么消除异常值？\n\t\t\t\t\t\t\t\tresult[item.name + rule] = item.default_value\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tresult[item.name + rule] = value\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 7:\n\t\t\t\t\t\t// RegExp\n\t\t\t\t\t\tif (num == 1) {\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\tresult[item.name + rule] = new RegExp(item.default_value);\n\t\t\t\t\t\t\t} catch (e) {\n\t\t\t\t\t\t\t\tconsole.warn(`TreeToTemplate ${e.message}: ${item.type} { ${item.name}${rule}: ${item.default_value} }`) // 怎么消除异常值？\n\t\t\t\t\t\t\t\tresult[item.name + rule] = item.default_value\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tlet reg = /\\\\/g;\n\t\t\t\t\t\t\tresult[item.name + rule] = item.default_value.replace(reg,\"\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak\n\t\t\t\t\tcase 8:\n\t\t\t\t\t\t// Null\n\t\t\t\t\t\t// tslint:disable-next-line: no-null-keyword\n\t\t\t\t\t\tresult[item.name + rule] = null\n\t\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\tlet result = {}\n\tif (tree.length) {\n\t\ttree.forEach(child => {\n\t\t\tparse(child, result)\n\t\t})\n\t}\n\treturn result\n}\n\n// 移除mock生成数据的'/'\nfunction romoveSlash(obj) {\n\tlet newObj = {}\n\tlet reg = /\\//g;\n\tfor (let item in obj) {\n\t\tif (typeof obj[item] == 'string' && reg.test(obj[item])) {\n\t\t\tnewObj[item] = obj[item].replace(reg,\"\");\n\t\t} else {\n\t\t\tnewObj[item] = obj[item]\n\t\t}\n\t}\n\treturn newObj\n}\n\n\n"
  },
  {
    "path": "mockApi/package.json",
    "content": "{\n\t\"name\": \"mokeserver\",\n\t\"version\": \"1.0.0\",\n\t\"description\": \"\",\n\t\"main\": \"app.js\",\n\t\"scripts\": {\n\t\t\"server\": \"node app.js\",\n\t\t\"pm2-start\": \"pm2 start app.js --watch\",\n\t\t\"pm2-stop\": \"pm2 stop app.js --watch\",\n\t\t\"test\": \"echo \\\"Error: no test specified\\\" && exit 1\"\n\t},\n\t\"author\": \"\",\n\t\"license\": \"ISC\",\n\t\"dependencies\": {\n\t\t\"body-parser\": \"^1.19.0\",\n\t\t\"express\": \"^4.17.1\",\n\t\t\"mockjs\": \"^1.1.0\"\n\t}\n}\n"
  },
  {
    "path": "public/css/app.45a4fd9d.css",
    "content": "body{color:#4d4d4d}body,body p{padding:0;margin:0}body a{color:inherit;text-decoration:none}html,html body{height:100%}*{-webkit-box-sizing:border-box;box-sizing:border-box}* :focus{outline:none}.el-button--text{padding:0}.el-message--info{background-color:rgba(49,49,49,.6);color:#fff;top:50%!important;-webkit-transform:translateX(-50%);transform:translateX(-50%);text-align:center;min-width:auto}.el-message--info .el-message__icon{display:none}.el-message--info .el-message__content{color:#fff;text-align:center}.w7-dialog .el-dialog{width:800px}.w7-dialog .el-dialog textarea{border-radius:0}.w7-dialog .el-dialog .el-dialog__header{padding:30px;padding-bottom:60px}.w7-dialog .el-dialog .el-dialog__title{color:#4d4d4d}.w7-dialog .el-dialog .el-dialog__headerbtn{top:30px;right:30px;font-size:22px}.w7-dialog .el-dialog .el-dialog__headerbtn .el-dialog__close{color:#999}.w7-dialog .el-dialog .el-dialog__body{padding:0 96px 70px 96px}.w7-dialog .el-dialog .el-dialog__body .el-cascader,.w7-dialog .el-dialog .el-dialog__body .el-select{width:100%}.w7-dialog .el-dialog .el-dialog__body .el-form .el-form-item:last-child{margin-bottom:0}.w7-dialog .el-dialog .el-dialog__footer{padding-top:20px;border-top:1px solid #edeef0}.w7-dialog .el-dialog .el-dialog__footer .el-button+.el-button{margin-left:20px}.w7-table{margin-top:30px}.w7-table .el-table__header thead tr th>.cell{font-family:PingFang-SC-Regular;font-size:14px;font-weight:400;color:#4d4d4d}.w7-table .doc-icons .name{cursor:pointer;margin-right:15px;margin-left:15px}.w7-table .doc-icons .name:hover{color:#3296fa}.w7-table .doc-icons .wi-star{margin-right:15px}.w7-table .oper .wi{margin-left:15px;font-size:16px;color:#b3b3b3;cursor:pointer}.w7-table .oper .wi.checked,.w7-table .oper .wi:hover{color:#3296fa}.w7-table .oper .wi.checked:hover{color:#b3b3b3}.el-pagination{float:right;margin-top:30px}.el-pagination .btn-next,.el-pagination .btn-prev{padding:0 10px!important}.w7-tree{font-size:14px}.w7-tree .el-tree-node__content{height:40px}.w7-tree.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{background-color:transparent}.w7-tree .el-tree-node__content:hover{background-color:#fff}.w7-tree .el-tree__empty-text{width:100%}.admin-view-menu.el-menu{margin:25px 20px;border-right:0}.admin-view-menu.el-menu .el-menu-item{margin:10px 0;height:40px;line-height:40px}.admin-view-menu.el-menu .el-menu-item.is-active{color:#4096f9;background-color:#e6f2ff;border-radius:4px}.admin-view-menu.el-menu .el-menu-item i{margin-right:20px;font-size:18px}.admin-view-menu.el-menu .el-submenu .el-submenu__title{height:40px;line-height:40px}.admin-view-menu.el-menu .el-submenu .el-submenu__title:hover{color:#4096f9;background-color:#e6f2ff;border-radius:4px}.admin-view-menu.el-menu .el-submenu .el-submenu__title .wi{margin-right:20px;font-size:18px}.admin-view-menu.el-menu .el-submenu .el-menu-item{padding-left:60px!important}.admin-view-menu .line{margin:18px 0;height:1px;background-color:#f7f9fc}.w7-form__no-required-icon .el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap>.el-form-item__label:before,.w7-form__no-required-icon .el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:before{content:\"\"}.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap>.el-form-item__label:before,.el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:before{margin-left:-10px}.color-blue{color:#4096f9}.color-yellow{color:#ff9c00}.fl{float:left}.fr{float:right}.text-over{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wi.wi-oper{color:#b3b3b3;cursor:pointer}.wi.wi-oper:hover{color:#3296fa}.layout-container{min-height:calc(100vh - 140px)}.page-head{padding:30px 0 40px;font-size:20px;color:#4d4d4d;letter-spacing:1px}.page-head a:hover{color:#3296fa}.search-box{display:-webkit-box;display:-ms-flexbox;display:flex;height:34px}.search-box .search-box-input{-webkit-box-flex:1;-ms-flex:1;flex:1}.search-box .search-box-input .demo-input-suffix{width:240px}.search-box .search-box-input .el-input,.search-box .search-box-input .el-select{margin-right:20px}.search-box .el-input__icon:hover{cursor:pointer}.w7-footer{font-size:14px;line-height:80px;color:#999;text-align:center}.we7-empty{padding:30px 0;width:100%;text-align:center;font-style:14px;color:#909399}.we7-label{display:inline-block;padding:0 5px;color:#ff8600;background:#fff1de;border-radius:4px}.we7-label .font{font-size:14px;margin-left:5px}.we7-panel-form{margin-bottom:30px;font-size:14px}.we7-panel-form.edit .el-form-item{padding-bottom:0;border-bottom:0}.we7-panel-form.edit .el-form-item .el-select{width:50%}.we7-panel-form.edit .el-form-item .el-select .el-input{width:100%}.we7-panel-form.edit .el-form-item .el-input{width:50%}.we7-panel-form__header{margin-top:30px;padding:15px;color:#999;line-height:1;background-color:#f7f8fa;border-bottom:1px solid #e8e9eb}.we7-panel-form__header span:first-child{margin-right:20px}.we7-panel-form__header .el-icon-info{margin-right:5px}.we7-panel-form__header .el-button--text{float:right;padding:0}.we7-panel-form__body .el-form-item{margin-bottom:0;padding:15px 20px;border-bottom:1px solid #e8e9eb}.we7-panel-form__body .el-form-item__error{padding-top:0}.we7-panel-form__body .avatar-uploader .el-upload{border-radius:50%;border:1px dashed #999;cursor:pointer;overflow:hidden}.we7-panel-form__body .avatar-uploader-icon{width:55px;height:55px;color:#000;font-size:20px;line-height:55px;text-align:center}.we7-panel-form__body .avatar{width:55px;height:55px;display:block;border-radius:50%}.we7-panel-form__item{display:table;width:100%;padding:20px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;vertical-align:middle;background-color:#fff;border-bottom:1px solid #e8e9eb}.we7-panel-form__item,.we7-panel-form__item:hover{-webkit-box-sizing:border-box;box-sizing:border-box}.we7-panel-form__item:hover{background-color:#f4f6f9}.we7-panel-form__label{display:table-cell;min-width:220px;vertical-align:middle}.we7-panel-form__value{display:table-cell;width:100%;color:#999;vertical-align:middle}.we7-panel-form__action{text-align:right;display:table-cell;min-width:200px;vertical-align:middle}.we7-help-block{color:#999;line-height:1.5}.admin-login{min-height:100vh;background-color:#fff;background-image:url(../img/login-bg.5a9966fc.png);background-position:50%;background-size:cover;background-repeat:space;position:relative;font-size:14px;line-height:1}.admin-login .login-box{width:470px;margin:0 auto;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.admin-login .login-box h2{margin:0;color:#4d4d4d;font-size:56px;font-weight:100;text-align:center;margin-bottom:30px}.admin-login .el-tabs__header{text-align:center;margin-bottom:0}.admin-login .el-tabs__nav-wrap{display:inline-block}.admin-login .el-tabs__nav-wrap:after{display:none}.admin-login .login-form .el-input{margin-top:30px}.admin-login .login-form .el-input input{border-radius:0;border-left:0;border-right:0;border-top:0;outline:0;color:#a1a1a1;padding-left:50px}.admin-login .login-form .el-input input:focus{border-color:#dcdfe6}.admin-login .login-form .el-input__icon{color:#a1a1a1;font-size:20px}.admin-login .login-form .el-input .el-input-group__append{background-color:unset;border-radius:0;padding:0;font-size:0;border:0;border-bottom:1px solid #dcdfe6!important}.admin-login .login-form .el-input .el-input-group__append img{width:120px;cursor:pointer;height:32px}.admin-login .login-action{text-align:right;margin-top:40px;border-bottom:1px solid #dcdfe6}.admin-login .login-thirdParty{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:20px}.admin-login .login-thirdParty .title{line-height:40px}.admin-login .login-thirdParty .icon-list{max-width:360px;overflow:hidden}.admin-login .login-thirdParty .icon-list .icon-block{margin-left:10px;width:40px;height:40px;border-radius:50%;cursor:pointer}.admin-login .login-btn{display:block;width:100%;border-radius:25px;color:#4d4d4d;padding:0;height:50px;line-height:50px;margin-top:50px}.admin-login .footer{position:fixed;left:0;right:0;bottom:30px;text-align:center;color:#999;font-size:14px}.dialog-setting .el-dialog{border-radius:0}.dialog-setting .el-dialog .el-dialog__header{padding:30px 20px;padding-bottom:30px}.dialog-setting .el-dialog .el-dialog__header .el-dialog__headerbtn{top:31px;right:20px;font-size:20px}.dialog-setting .el-dialog .el-dialog__body{padding:0}.hljs{background:#eee!important}.markdown-body,.markdown-body pre,.markdown-body textarea{font-size:14px!important}.markdown-body .highlight pre,.markdown-body code,.markdown-body pre{background-color:#eee!important}.reset-element .el-table .el-table__header thead tr th{color:#333;font-weight:400;background-color:#f8f8f8}"
  },
  {
    "path": "public/css/chunk-06ade0a7.d9d343de.css",
    "content": ".editors .v-note-wrapper[data-v-7d82a91c]{margin:30px 0;z-index:10}.editors .v-note-wrapper .v-note-panel .v-note-show[data-v-7d82a91c]{max-width:760px}.chapter-title[data-v-7d82a91c]{font-size:20px;letter-spacing:1px;color:#4d4d4d}.CodeMirror{font-family:monospace;height:300px;color:#000;direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor-mark{background-color:rgba(20,255,20,.5)}.cm-animate-fat-cursor,.cm-fat-cursor-mark{-webkit-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite}.cm-animate-fat-cursor{width:auto;border:0;background-color:#7e7}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:0;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-type,.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-invalidchar,.cm-s-default .cm-error{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:#fff}.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-50px;margin-right:-50px;padding-bottom:50px;height:100%;outline:none;position:relative}.CodeMirror-sizer{position:relative;border-right:50px solid transparent}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{position:absolute;z-index:6;display:none;outline:none}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-50px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:none!important;border:none!important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::selection{background-color:transparent}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{border-radius:0;border-width:0;background:transparent;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:contextual;font-variant-ligatures:contextual}.CodeMirror-wrap pre.CodeMirror-line,.CodeMirror-wrap pre.CodeMirror-line-like{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-code{outline:none}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{-webkit-box-sizing:content-box;box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:\"\"}span.CodeMirror-selectedtext{background:none}.cm-s-base16-light.CodeMirror{background:#f5f5f5;color:#202020}.cm-s-base16-light div.CodeMirror-selected{background:#e0e0e0}.cm-s-base16-light .CodeMirror-line::selection,.cm-s-base16-light .CodeMirror-line>span::selection,.cm-s-base16-light .CodeMirror-line>span>span::selection{background:#e0e0e0}.cm-s-base16-light .CodeMirror-line::-moz-selection,.cm-s-base16-light .CodeMirror-line>span::-moz-selection,.cm-s-base16-light .CodeMirror-line>span>span::-moz-selection{background:#e0e0e0}.cm-s-base16-light .CodeMirror-gutters{background:#f5f5f5;border-right:0}.cm-s-base16-light .CodeMirror-guttermarker{color:#ac4142}.cm-s-base16-light .CodeMirror-guttermarker-subtle,.cm-s-base16-light .CodeMirror-linenumber{color:#b0b0b0}.cm-s-base16-light .CodeMirror-cursor{border-left:1px solid #505050}.cm-s-base16-light span.cm-comment{color:#8f5536}.cm-s-base16-light span.cm-atom,.cm-s-base16-light span.cm-number{color:#aa759f}.cm-s-base16-light span.cm-attribute,.cm-s-base16-light span.cm-property{color:#90a959}.cm-s-base16-light span.cm-keyword{color:#ac4142}.cm-s-base16-light span.cm-string{color:#f4bf75}.cm-s-base16-light span.cm-variable{color:#90a959}.cm-s-base16-light span.cm-variable-2{color:#6a9fb5}.cm-s-base16-light span.cm-def{color:#d28445}.cm-s-base16-light span.cm-bracket{color:#202020}.cm-s-base16-light span.cm-tag{color:#ac4142}.cm-s-base16-light span.cm-link{color:#aa759f}.cm-s-base16-light span.cm-error{background:#ac4142;color:#505050}.cm-s-base16-light .CodeMirror-activeline-background{background:#dddcdc}.cm-s-base16-light .CodeMirror-matchingbracket{color:#f5f5f5!important;background-color:#6a9fb5!important}.w7-document-chapter[data-v-8863de70]{margin-left:-15px;padding-left:260px;position:relative}.w7-document-chapter .w7-aside-chapter[data-v-8863de70]{border-left:1px solid #eee;border-right:1px solid #eee;background-color:#f7f8fa;position:fixed;bottom:0;left:0;top:60px;z-index:1501}.w7-document-chapter .w7-aside-chapter .w7-aside-chapter-head[data-v-8863de70]{margin:40px 0}.w7-document-chapter .w7-aside-chapter .w7-aside-chapter-head p[data-v-8863de70]{font-size:16px;color:#4d4d4d;text-align:center}.w7-document-chapter .w7-aside-chapter .search-box[data-v-8863de70]{margin:0 20px 20px}.w7-document-chapter .icon-box[data-v-8863de70]{padding:0 30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:30px;color:#3296fa}.w7-document-chapter .icon-box .el-tooltip[data-v-8863de70]{cursor:pointer}.w7-document-chapter .icon-box .wq[data-v-8863de70]{font-size:22px}.w7-document-chapter .tree-warpper[data-v-8863de70]{height:calc(100vh - 300px)}.w7-document-chapter .tree-warpper[data-v-8863de70] .el-scrollbar__wrap{overflow-x:hidden}.w7-document-chapter .menu-bar[data-v-8863de70]{position:fixed;font-size:14px;color:#4d4d4d;background-color:#fff;-webkit-box-shadow:2px 0 10px 4px hsla(0,0%,85.9%,.53);box-shadow:2px 0 10px 4px hsla(0,0%,85.9%,.53);z-index:10000}.w7-document-chapter .menu-bar.bottom[data-v-8863de70]:after{content:\" \";position:absolute;display:block;top:-8px;left:50px;width:0;height:0;border-color:transparent;border-style:solid;border-width:8px;border-top-width:0;border-bottom-color:#fff}.w7-document-chapter .menu-bar.top[data-v-8863de70]:after{content:\" \";position:absolute;display:block;left:50px;width:0;height:0;border-color:transparent;border-style:solid;border-width:8px;border-bottom-width:0;border-top-color:#fff}.w7-document-chapter .menu-bar ul[data-v-8863de70]{margin:0;padding:10px 0}.w7-document-chapter .menu-bar li[data-v-8863de70]{padding:0 14px;width:150px;line-height:34px;-webkit-box-sizing:border-box;box-sizing:border-box;list-style:none}.w7-document-chapter .menu-bar li[data-v-8863de70]:hover{color:#3296fa;cursor:pointer}.w7-tree[data-v-8863de70]{background:transparent}.w7-tree .el-tree-node__content[data-v-8863de70]{position:relative}.w7-tree .el-tree-node__content:hover .custom-tree-node .point3[data-v-8863de70],.w7-tree .el-tree-node__content:hover .custom-tree-node .shortcut[data-v-8863de70]{display:inline-block}.w7-tree .el-tree-node__content .custom-tree-node[data-v-8863de70]{width:100%}.w7-tree .el-tree-node__content .custom-tree-node .node-info[data-v-8863de70],.w7-tree .el-tree-node__content .custom-tree-node[data-v-8863de70]{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.w7-tree .el-tree-node__content .custom-tree-node .node-info .wq[data-v-8863de70]{color:#ffcd2c;font-size:18px}.w7-tree .el-tree-node__content .custom-tree-node .node-info .wq.wq-mulu[data-v-8863de70]{font-size:16px}.w7-tree .el-tree-node__content .custom-tree-node .node-info .text-over[data-v-8863de70]{-webkit-box-flex:1;-ms-flex:1;flex:1;width:0;margin-left:10px;padding-right:10px}.w7-tree .el-tree-node__content .custom-tree-node .shortcut[data-v-8863de70]{display:none;margin-right:10px}.w7-tree .el-tree-node__content .custom-tree-node .shortcut .wq[data-v-8863de70]{color:#ffcd2c}.w7-tree .el-tree-node__content .custom-tree-node .point3[data-v-8863de70]{display:none;color:#b6b5b5}.w7-tree .el-tree-node__content .custom-tree-node .point3[data-v-8863de70]:hover{color:#3296fa}.w7-tree .el-tree-node__content .custom-tree-node .point3 span[data-v-8863de70]{display:block;font-size:30px;margin-top:-23px;margin-right:10px}.w7-tree .el-tree-node__content .custom-tree-node .doc-default[data-v-8863de70]{position:absolute;top:0;left:0;width:26px;height:26px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTQyM0RDNEQ2MUNEMTFFQThCM0RBMkI4NjA4QzI5MDQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTQyM0RDNEU2MUNEMTFFQThCM0RBMkI4NjA4QzI5MDQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5NDIzREM0QjYxQ0QxMUVBOEIzREEyQjg2MDhDMjkwNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5NDIzREM0QzYxQ0QxMUVBOEIzREEyQjg2MDhDMjkwNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp/Qe/oAAAMaSURBVHjatJVbSFRBGMe/mTlH1229pNvdesg0Mm+UCUUaiEVRvqRpoL1EQW+BVEsUPRTdXrYoyyDL0i50e3HrxS6GgZTmbbFMKQvLTFwC1+uue2aa2Vzbzb16+eDAnOHM+c3/+/7zDWKMgT9xt4Uifa1CxVgt+7UEKP/1qA1gfyqWkT+gK+8U+WYjtcZEoq6+IbbMbAG/Y2ssXno6i/zAvj68/FYJEhAxXjUPnazeK8OKKGTyB7I7EWsERIy9gm43UXyriVqCCEBYMMDTdlpa3kwND/IkbdICVOZt7Z4UrDq8kQw53j2mrrSBkpI6xSbGB9YRaXEY0BMv/9bo/BYCWTFYgGFoDHB1J82p72aPnJU4QzwqKuY1cUBEPGxVbG19LLN4h/RcvOuqFGj5xeB7PysM5mo1QajNG8QtiNeDlI3XxBG/RwAiVIis1KLNl7ZLprgoVBcbhcDYy1SnXiu0+ittFd8VJuMQd5BJqbvDLXxh3MIy38IYnbygJFsaTotG6vtGmmpop7p2E9sl5vMTsOZIunuIC4inSuZ1sUaHIdBvI/Cqk6XUdtFCvutDzgvEGTq4nqSdrVHqHHN5CThUl04GvZnDDrr+npJr9YpNQMwWBjvjccq+taT5RqOSxNNo9PaDAp6uog1k1JfV8eMPFAkIt6uhIleC3NVY122GyhC+80WhyLiEwz2FUOIPxK5ozVUrC1cBGApk6BlgMF+DoOoz7eCpiasskIBD7SorWqihtZdlB5IuF0WEF31kDKC8WTkeqUZgo/YOEJe8ENVUfqLQ8JPCsw52ZsAC2c4WDgRiV5RRamWD42bOicdF+YlYPzcEQVMPBS0H13yjJt4dtI4FvtzlURF1agxPPlI9P+0m0zCDOTKCe0Zaw7v2BITXL3wqEBHS/xP8LGl5l+a1YcMvvtAMZ8jRDGKGKYbk7g4590YRdVP7aisBpc7dpDCHs5LpQnxeE9wc00qX19RN110BKeItKGImIW5BAnJsE+mHGQ4JI9feFeiJ91uRVfmnZLYgE6DM5ThhNtLlEhdrbcHiTprt548AAwDrc6pzJlPtpgAAAABJRU5ErkJggg==)}.w7-document-chapter .chapter-title[data-v-8863de70]{margin-bottom:30px}.w7-document-chapter .api .api-con[data-v-8863de70]{margin-bottom:50px}.w7-document-chapter .api .api-con .top[data-v-8863de70]{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:20px}.w7-document-chapter .api .api-con .top .line-wrap[data-v-8863de70],.w7-document-chapter .api .api-con .top[data-v-8863de70]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.w7-document-chapter .api .api-con .top .line-wrap .line[data-v-8863de70]{width:3px;height:18px;background:#999;margin-right:10px}.w7-document-chapter .api .api-con .top .line-wrap .text[data-v-8863de70]{color:#666;font-size:18px;font-weight:600}.w7-document-chapter .api .api-con .top .line-wrap img[data-v-8863de70]{margin-left:10px;cursor:pointer}.w7-document-chapter .api .api-con .top .el-button[data-v-8863de70]{margin-left:10px}.w7-document-chapter .api .api-con .c-con[data-v-8863de70]{border:1px solid #eee;border-radius:2px;padding:15px 20px;margin-bottom:20px}.w7-document-chapter .api .api-con .c-con[data-v-8863de70] .el-tabs__header{margin-bottom:25px}.w7-document-chapter .api .api-con .c-con[data-v-8863de70] .type-body .el-form-item{margin-bottom:20px}.w7-document-chapter .api .api-con .c-con[data-v-8863de70] .type-body .el-form-item .el-form-item__content,.w7-document-chapter .api .api-con .c-con[data-v-8863de70] .type-body .el-form-item .el-form-item__label{height:auto;line-height:normal}.w7-document-chapter .api .api-con .c-con .custom-tree-node[data-v-8863de70]{width:100%}.w7-document-chapter .api .api-con .c-con .el-row .el-form-item[data-v-8863de70]{margin-bottom:10px}.w7-document-chapter .api .api-con .c-con .el-row .el-form-item.rule-question[data-v-8863de70]{position:relative}.w7-document-chapter .api .api-con .c-con .el-row .el-form-item.rule-question .rule-icon[data-v-8863de70]{position:absolute;right:10px;color:#999;font-size:12px;line-height:40px}.w7-document-chapter .api .api-con .c-con .el-row .el-form-item.rule-question .rule-icon[data-v-8863de70]:hover{color:#3296fa}.w7-document-chapter .api .api-con .c-con .el-row:last-of-type .el-col .el-form-item[data-v-8863de70]{margin-bottom:0}.w7-document-chapter .api .api-con .c-con .el-row .el-checkbox[data-v-8863de70]{margin:10px 10px 0 15px}.w7-document-chapter .api .api-con .c-con .add[data-v-8863de70],.w7-document-chapter .api .api-con .c-con .delete[data-v-8863de70]{margin-left:10px;height:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;float:left;font-size:24px;cursor:pointer}.w7-document-chapter .api .api-con .c-con[data-v-8863de70] .el-tabs .el-tree>.el-tree-node:nth-last-child(2) .delete{display:none}.w7-document-chapter .api .api-con .c-bottom .mock .m-tit[data-v-8863de70]{color:#333;margin-bottom:10px;font-size:14px}.w7-document-chapter .api .api-con .c-bottom .mock .m-tit .el-icon-refresh[data-v-8863de70]{color:#3296fa;font-weight:600;font-size:15px;cursor:pointer}.w7-document-chapter .api .api-con .c-bottom .mock .m-con[data-v-8863de70]{border:1px solid #eee;border-radius:2px;background-color:#bbb;max-height:90vh;height:100%;overflow:auto;padding:15px}.w7-document-chapter .api .api-con .c-bottom .mock .m-con pre[data-v-8863de70]{margin:0}.w7-document-chapter .api .api-con .el-select[data-v-8863de70]{width:100%}.w7-document-chapter .api .api-con.response-api .c-con[data-v-8863de70] .el-tree>.el-tree-node:nth-last-child(2) .delete{display:none}.w7-document-chapter .api .api-con[data-v-8863de70] .el-tree-node__content{height:40px;margin-bottom:10px}.w7-document-chapter .api .api-con[data-v-8863de70] .el-tree-node__content:hover{background-color:transparent}.w7-document-chapter .api .api-con[data-v-8863de70] .el-input__inner{border:none;border-bottom:1px solid #dcdfe6;border-radius:0}.w7-document-chapter .api .basic-information .mock-api[data-v-8863de70] .el-form-item__content{display:inline-block;width:calc(100% - 105px);cursor:pointer}.w7-document-chapter .api .basic-information .mock-api[data-v-8863de70] .el-form-item__content input{padding:0 0 0 10px;cursor:pointer}.api[data-v-8863de70] .el-tree-node:focus>.el-tree-node__content{background-color:transparent}[v-cloak]{display:none!important}.mock-api-tip{top:270px!important;left:580px!important}.hljs{background-color:#bbb!important}.w7-tree.el-tree--highlight-current .el-tree-node__children .is-checked[data-active=tree-active]>.el-tree-node__content,.w7-tree.el-tree--highlight-current .el-tree-node__children .is-current[data-active=tree-active]>.el-tree-node__content,.w7-tree.el-tree--highlight-current>.is-checked[data-active=tree-active]>.el-tree-node__content,.w7-tree.el-tree--highlight-current>.is-current[data-active=tree-active]>.el-tree-node__content{background-color:#fff!important}"
  },
  {
    "path": "public/css/chunk-079f5797.5ffb7ccc.css",
    "content": ".w7-table .oper .wi{margin-left:25px}.w7-table .oper .wq{margin-left:25px;font-size:16px;cursor:pointer;color:#666;outline:0}"
  },
  {
    "path": "public/css/chunk-07e6273c.8f6be2eb.css",
    "content": ".setting-nav .page-head{padding-bottom:20px}.setting-nav .we7-panel-form__header{margin-top:5px}.setting-nav .demo-input-btn{width:100%;text-align:right}.setting-nav .demo-input-btn .add-menu{padding:9px 30px}.setting-nav .w7-table{margin-top:20px}"
  },
  {
    "path": "public/css/chunk-10615ad3.8f32f691.css",
    "content": "li[data-v-cc65867e],ul[data-v-cc65867e]{list-style:none;margin:0;padding:0}.install .i-header[data-v-cc65867e]{font-size:32px;color:#333;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:50px}.install .i-header img[data-v-cc65867e]{margin-right:10px}.install .i-con .c-top[data-v-cc65867e]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:40px;font-size:28px}.install .i-con .c-top img[data-v-cc65867e]{margin-right:10px}.install .i-con .c-top .num[data-v-cc65867e]{color:#39b54a}.install .i-con .c-top .num.error[data-v-cc65867e]{color:#e63d2e}.install .i-con ul[data-v-cc65867e]{padding:50px 0 100px 50px}.install .i-con ul li[data-v-cc65867e]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-size:14px;margin-bottom:20px}.install .i-con ul li.li1[data-v-cc65867e]{color:#999;margin-bottom:30px;font-size:16px}.install .i-con ul li .l-left[data-v-cc65867e]{width:250px}.install .i-con ul li .l-center[data-v-cc65867e]{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.install .i-con ul li .l-center img[data-v-cc65867e]{margin-right:10px}.install .i-con ul li .l-right[data-v-cc65867e]{width:100px;text-align:right}.install .i-con ul li .l-right span[data-v-cc65867e]{color:#e63d2e}.install .i-con .c-bottom[data-v-cc65867e]{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.install .i-con .c-bottom .btn[data-v-cc65867e]{color:#fff;background-color:#3296fa;width:270px;line-height:60px;text-align:center;cursor:pointer}"
  },
  {
    "path": "public/css/chunk-1e630799.23444e38.css",
    "content": ".container[data-v-1598ee81]{padding:0 40px}.el-input__icon[data-v-1598ee81]{color:#3296fa}.btns[data-v-1598ee81]{margin-top:20px}.btns button[data-v-1598ee81]{margin:0 20px;padding:12px 30px}.btns .el-pagination[data-v-1598ee81]{margin-top:0}"
  },
  {
    "path": "public/css/chunk-20afbe1d.9cfc489e.css",
    "content": ".account-info .el-main[data-v-25228318]{padding:0 25px 0 15px}.account-info .page-head[data-v-25228318]{padding-bottom:0}"
  },
  {
    "path": "public/css/chunk-211c6b12.9850dd89.css",
    "content": "[data-v-ca45b106]::-webkit-scrollbar{width:7px;height:7px;background-color:#f5f5f5}[data-v-ca45b106]::-webkit-scrollbar-track{box-shadow:inset 0 0 6px rgba(0,0,0,.3);-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);border-radius:10px;background-color:#f5f5f5}[data-v-ca45b106]::-webkit-scrollbar-thumb{border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.1);-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.1);background-color:#c8c8c8}.el-main[data-v-ca45b106]{min-height:630px;margin-bottom:50px}.el-main .share .share-block[data-v-ca45b106]:hover{color:#3296fa}.el-main .share .share-block:hover i[data-v-ca45b106]{color:#3296fa!important}.w7-aside-home-content[data-v-ca45b106] .el-scrollbar__view{border-radius:5px}.w7-aside-home-content[data-v-ca45b106] .el-scrollbar__view .el-tree-node__expand-icon{position:absolute;right:0;z-index:2;color:#606266;font-size:16px}.w7-aside-home-content[data-v-ca45b106] .el-scrollbar__view .el-tree-node__expand-icon:before{top:0!important;-webkit-transform:translateY(0)!important;transform:translateY(0)!important;margin-top:0!important;position:static!important;content:\"\\E6E0\";font-size:16px}.w7-aside-home-content[data-v-ca45b106] .el-scrollbar__view .el-tree-node__expand-icon.expanded{-webkit-transform:unset;transform:unset}.w7-aside-home-content[data-v-ca45b106] .el-scrollbar__view .el-tree-node__expand-icon.expanded:before{content:\"\\E790\"}.w7-aside-home-content[data-v-ca45b106] .el-scrollbar__view .el-tree-node__expand-icon.is-leaf{color:transparent}.w7-aside-home-content[data-v-ca45b106] .el-scrollbar__view .custom-tree-node{padding-left:30px!important}.w7-aside-home-content[data-v-ca45b106] .el-scrollbar__view .el-tree .el-tree-node:nth-last-child(2) .custom-tree-node{border-bottom:none}.w7-aside-home-content[data-v-ca45b106] .el-scrollbar__view .el-tree-node__expand-icon.expanded:before{content:\"\\E6DF\"!important}[data-v-ca45b106] .feedText .el-textarea__inner{height:94px}.view .document-name[data-v-ca45b106]{padding:35px 0 0;color:#333;font-size:26px;text-align:center}.view .search-wrap[data-v-ca45b106]{padding:35px 290px 0 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:10px}.view .search-wrap .navigation span.last-active[data-v-ca45b106]{color:#3296fa}.view .search-wrap .el-input[data-v-ca45b106]{width:440px}.view .search-wrap .el-input[data-v-ca45b106] .el-input__suffix{right:0}.view .search-wrap .el-input[data-v-ca45b106] .el-input__suffix .el-input__suffix-inner{color:#fff;background-color:#383d41;border-radius:0 3px 3px 0;height:100%;display:block;cursor:pointer}.view .search-wrap .el-input[data-v-ca45b106] .el-input__suffix .el-input__suffix-inner .el-icon-search{width:60px;font-size:20px}.view .catalog[data-v-ca45b106]{color:#333;font-size:16px;margin-bottom:20px}.view .catalog[data-v-ca45b106],.view .img-dialog[data-v-ca45b106]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.view .img-dialog[data-v-ca45b106]{position:fixed;background-color:rgba(0,0,0,.3);width:100%;height:100%;z-index:9999;left:0;top:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:pointer}.view .img-dialog .img-wrap[data-v-ca45b106]{max-height:100vh;overflow-y:auto}.view .img-dialog .img-wrap img[data-v-ca45b106]{max-width:1800px;height:auto}.view #feedBtn[data-v-ca45b106]{display:none;background-color:#fff;border:1px solid #00a4ff;color:#00a4ff;width:100px;height:40px;position:absolute;z-index:999}.view #feedBtn[data-v-ca45b106]:hover{background-color:#00a4ff;color:#fff}.view #feedBtn:hover span.triangle-1[data-v-ca45b106]{border-top-color:#00a4ff}.view #feedBtn i[data-v-ca45b106]{position:absolute;left:8px;top:14px;font-size:12px}.view #feedBtn span[data-v-ca45b106]{display:inline-block;padding-left:8px}.view #feedBtn span.triangle[data-v-ca45b106]{position:absolute;width:0;height:0;padding:0;left:50%;margin-left:-4px;border:8px solid transparent;border-top-color:#00a4ff;top:38px;z-index:1}.view #feedBtn span.triangle-1[data-v-ca45b106]{position:absolute;width:0;height:0;padding:0;left:50%;margin-left:-3px;border:7px solid transparent;border-top-color:#fff;top:38px;z-index:1}@media screen and (max-width:768px){.view .search-wrap[data-v-ca45b106]{padding:35px 0 0 0}.view .search-wrap .el-input[data-v-ca45b106]{width:200px}.home-container .el-main .warpper .markdown-body .markdown-content[data-v-ca45b106]{padding-right:0}}body{background-color:#fff}.hide .el-upload--picture-card{display:none}.transition--300{-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.toc{overflow-y:auto}.toc>.toc-list{overflow:hidden}.toc>.toc-list li{list-style:none}.toc-list{margin:0;padding-left:10px}a.toc-link{color:currentColor}.is-collapsible{overflow:hidden;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.is-collapsed{max-height:0}.is-collapsed .toc-link:before{height:0}.is-position-fixed{position:fixed!important;top:0}.is-active-link{color:#3296fa!important}.toc-link:before{background-color:#eee;content:\"\";height:32px;left:0;position:absolute;width:2px}.is-active-link:before{background-color:#3296fa}.chapter-warpper>.el-scrollbar>.el-scrollbar__wrap{overflow:hidden}.chapter-warpper .share-wechat{position:fixed;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);padding:10px;width:240px;background:#fff;border:1px solid #d8d8d8;z-index:10000;font-size:12px}.chapter-warpper .share-wechat .head{position:relative;height:16px;font-weight:700;line-height:16px;color:#000}.chapter-warpper .share-wechat .head .el-icon-close{position:absolute;right:0;top:0;font-size:16px;cursor:pointer}.chapter-warpper .share-wechat .content{padding:20px 40px}.chapter-warpper .share-wechat .foot{line-height:22px;color:#666}.home-container{position:relative}.home-container .w7-aside-home{min-width:221px;width:calc(50% - 440px)!important;position:fixed;top:165px;height:calc(100vh - 60px)}.home-container .w7-aside-home .w7-aside-home-box{padding-left:calc(100% - 260px)}.home-container .w7-aside-home .w7-aside-home-head{font-size:16px;padding:40px 0 30px;font-weight:600;text-align:center}.home-container .w7-aside-home .w7-aside-home-search{position:relative;padding-bottom:30px;margin-bottom:20px;margin-right:20px;border-bottom:1px solid #e1e3e6}.home-container .w7-aside-home .w7-aside-home-content{height:650px}.home-container .w7-aside-home .w7-aside-home-content .el-scrollbar__wrap{overflow-x:auto}.home-container .w7-aside-home .w7-tree{font-size:14px;background:#f7f8fa}.home-container .w7-aside-home .w7-tree .el-tree-node__content{position:relative;height:auto;overflow:hidden}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:20px;z-index:1;height:40px}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node.doc{z-index:3}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .text-over{-webkit-box-flex:1;-ms-flex:1;flex:1;width:0;margin-left:10px;padding-right:10px}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .text-over .level1{font-size:16px;color:#333}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .text-over .level2{font-size:14px;color:#666}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .text-over .level3,.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .text-over .level4,.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .text-over .level5{font-size:12px;color:#999}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .el-icon-caret-right{margin-left:-20px;cursor:pointer;color:#c0c4cc;font-size:12px;padding:5px}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content{border-left:2px solid transparent}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content .text-over{-webkit-box-flex:1;-ms-flex:1;flex:1;width:0;margin-left:10px;padding-right:10px}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content .text-over .level1{font-size:16px;color:#333}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content .text-over .level2{font-size:14px;color:#666}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content .text-over .level3,.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content .text-over .level4,.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content .text-over .level50{font-size:12px;color:#999}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content:hover .text-over span{color:#3296fa}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node.is-current{border-left:2px solid #3296fa}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node.is-current .text-over span{color:#3296fa!important}.home-container .w7-aside-home .w7-tree .is-current .el-tree-node__content{background-color:#f0f2f5}.home-container .w7-aside-home.fix-top{top:110px}.home-container .el-main{padding:0;padding-left:calc(50% - 420px)}@media (max-width:1420px){.home-container .el-main{padding-left:260px}}.home-container .el-main .line{border-bottom:1px solid #eee}.home-container .el-main .warpper{font-size:14px;color:#333;max-width:1200px}.home-container .el-main .warpper .markdown-body .markdown-content{margin-right:30px;padding-right:290px;width:100%}.home-container .el-main .warpper .markdown-body .markdown-content h2{border-bottom:none}.home-container .el-main .warpper .markdown-body .markdown-content img{max-width:100%;cursor:pointer}.home-container .el-main .warpper .markdown-body .markdown-content table tr th{width:300px;white-space:nowrap}.home-container .el-main .warpper .markdown-body .markdown-content table tr td:first-child{white-space:nowrap}.home-container .el-main .warpper .markdown-body .markdown-menu{width:240px;font-size:14px;line-height:1;background-color:#fff;top:222px;-webkit-box-sizing:border-box;box-sizing:border-box;position:fixed;z-index:1000;right:26px;max-height:650px;min-height:650px;overflow-y:auto}@media (min-width:1600px){.home-container .el-main .warpper .markdown-body .markdown-menu{left:calc(50% + 530px);right:unset}}.home-container .el-main .warpper .markdown-body .markdown-menu .el-scrollbar__wrap{overflow-x:auto}.home-container .el-main .warpper .markdown-body .markdown-menu h3,.home-container .el-main .warpper .markdown-body .markdown-menu p:first-child{margin-top:0;margin-bottom:0;font-size:0}.home-container .el-main .warpper .markdown-body .markdown-menu li,.home-container .el-main .warpper .markdown-body .markdown-menu ul{list-style:none;padding:0;margin-top:0}.home-container .el-main .warpper .markdown-body .markdown-menu ul{padding-left:20px}.home-container .el-main .warpper .markdown-body .markdown-menu a{color:#989898;display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:100%;height:32px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.home-container .el-main .warpper .markdown-body .markdown-menu a:hover{color:#3296fa;text-decoration:none}.home-container .el-main .warpper .markdown-body .markdown-menu.fix-top{top:110px}.home-container .el-main .warpper .article .title{font-size:20px}.home-container .el-main .warpper .article .info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:15px;padding-right:290px}.home-container .el-main .warpper .article .info .time{margin-right:30px;font-size:12px;color:#999}.home-container .el-main .warpper .article .info .author{-webkit-box-flex:1;-ms-flex:1;flex:1;font-size:12px;color:#999}.home-container .el-main .warpper .article .info .share{display:-webkit-box;display:-ms-flexbox;display:flex}.home-container .el-main .warpper .article .info .share-block{margin-left:5px;width:30px;height:30px;color:#989898;line-height:27px;text-align:center;border:1px solid #eee;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer}.home-container .el-main .warpper .article .info .share-block:first-child{margin-left:0}.home-container .el-main .warpper .article .info .share-block.checked,.home-container .el-main .warpper .article .info .share-block:hover{border-color:#3296fa;color:#3296fa}.home-container .el-main .warpper .article-list .highlight{color:#3296fa}.home-container .el-main .warpper .article-list .back{margin-top:30px}.home-container .el-main .warpper .article-list .number-result{margin-top:10px;margin-bottom:50px}.home-container .el-main .warpper .article-list .list-content{margin-bottom:60px}.home-container .el-main .warpper .article-list .list-content .header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:10px}.home-container .el-main .warpper .article-list .list-content .header .title{font-size:20px;cursor:pointer}.home-container .el-main .warpper .article-list .list-content .header .info{padding-top:7px}.home-container .el-main .warpper .article-list .list-content .header .info span{margin-left:23px;color:#999}.home-container .el-main .warpper .article-list .list-content .content{color:#999;line-height:24px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;margin-left:0;cursor:pointer}.home-container .el-main .warpper .article-list .no-result{padding:200px 0;color:#8d8d8d;font-size:24px;font-weight:400;font-style:normal;text-align:center;line-height:40px;height:40px}.hljs{background:#eee!important}.markdown-body .markdown-content{width:0}.markdown-body .markdown-content :focus{outline:none}.markdown-body .highlight pre,.markdown-body code,.markdown-body pre{background-color:#eee!important}.w7-top{width:40px;height:42px;padding-top:8px;background-color:#000;color:#fff;text-align:center;font-size:10px;line-height:1}.w7-top i{font-size:20px}@media screen and (max-width:768px){.navBtn{display:block;position:absolute;top:40px;left:20px}.navBtn i{font-size:28px}.shadow{width:100%;height:100%;position:fixed;background:rgba(0,0,0,.5);z-index:100}.admin-view>.el-header,.markdown-menu,.share{display:none!important}.home-container .w7-aside-home{display:none}.home-container .w7-aside-home.phone{position:absolute;left:0;top:0;z-index:101;display:block}.admin-content{padding-top:0!important}.home-container .el-main{padding-left:0}.chapter-warpper .warpper{margin-top:0!important;margin-left:0!important;padding:20px}.home-container .el-main .warpper .article .info{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-right:0}.home-container .el-main .warpper .article .info .time{margin-right:0}.home-container .el-main .warpper .article .info .author{text-align:right}}"
  },
  {
    "path": "public/css/chunk-22e40c8e.2d7343f0.css",
    "content": ".setting-login .page-head{padding-bottom:0}.setting-login .textBtn{padding-left:0}"
  },
  {
    "path": "public/css/chunk-25f82f1a.3e053f1b.css",
    "content": ".install .i-header[data-v-39e9c0e4]{font-size:32px;color:#333;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:50px}.install .i-header img[data-v-39e9c0e4]{margin-right:10px}.install .i-con[data-v-39e9c0e4]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.install .i-con .c-top[data-v-39e9c0e4]{width:650px;margin-bottom:50px}.install .i-con .c-top .t-tit[data-v-39e9c0e4]{text-align:right;margin-bottom:50px;color:#333;font-size:28px}.install .i-con .c-top .loading[data-v-39e9c0e4]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.install .i-con .c-top .loading img[data-v-39e9c0e4]{margin-bottom:20px}.install .i-con .c-top .loading .text[data-v-39e9c0e4]{color:#333;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.install .i-con .c-top .loading .text i[data-v-39e9c0e4]{margin-left:5px;font-size:20px}.install .i-con .c-top[data-v-39e9c0e4] .el-form-item__label{padding-right:30px}.install .i-con .c-top[data-v-39e9c0e4] .el-select{width:100%}.install .i-con .c-bottom[data-v-39e9c0e4]{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:70px}.install .i-con .c-bottom .btn[data-v-39e9c0e4]{color:#fff;background-color:#3296fa;width:270px;line-height:60px;text-align:center;cursor:pointer}.install .success[data-v-39e9c0e4]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-top:150px}.install .success .s-top[data-v-39e9c0e4]{margin-bottom:30px}.install .success .s-top .top[data-v-39e9c0e4]{font-size:30px;color:#333;margin-bottom:20px}.install .success .s-top .top i[data-v-39e9c0e4]{color:#3bb64c;font-size:30px;margin-right:10px}.install .success .s-top .center[data-v-39e9c0e4]{margin-bottom:10px;padding-left:45px}.install .success .s-top .bottom[data-v-39e9c0e4]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:125px}.install .success .s-top .bottom span[data-v-39e9c0e4]{background-color:#d9dde0;color:#333;padding:5px 45px;font-size:14px;border:1px solid #ddd;cursor:pointer}.install .success .c-bottom[data-v-39e9c0e4]{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:70px}.install .success .c-bottom .btn[data-v-39e9c0e4]{color:#fff;background-color:#3296fa;width:270px;line-height:60px;text-align:center;cursor:pointer}"
  },
  {
    "path": "public/css/chunk-3337dd8f.3c05d3bd.css",
    "content": ".setting-thirdParty .page-head{padding-bottom:0}"
  },
  {
    "path": "public/css/chunk-3bcf66f7.0b7a87d8.css",
    "content": ".setting-store .page-head[data-v-65f326c0]{padding-bottom:0}.we7-topLine[data-v-65f326c0]{height:10px;border-top:2px solid #f0f0f4;margin-top:15px}.container[data-v-65f326c0]{padding:0 40px}.baseInfo[data-v-65f326c0]{width:100px;height:50px;border-bottom:2px solid #2679ec;font-size:14px;line-height:50px;text-align:center;color:#2679ec;cursor:pointer}.we7-panel-form__body .el-form-item[data-v-65f326c0]{border-top:1px solid #e8e9eb!important;border-bottom:none}"
  },
  {
    "path": "public/css/chunk-416ef35e.8e4636b1.css",
    "content": ".user-permission .el-aside{padding-left:20px}.user-permission .el-main{padding:0}.user-permission .el-table,.user-permission .el-table tr,.user-permission .el-table tr th{background-color:#fcfcfc!important}.user-permission .el-table--enable-row-hover .el-table__body tr:hover>td{background-color:#fff}.user-permission .select-power .el-select{margin-right:20px;width:200px}.user-permission .select-power .demo-input-suffix{-webkit-box-flex:1;-ms-flex:1;flex:1}.user-permission .select-power .demo-input-suffix .el-input{width:300px}.user-permission .select-power .more-edit{text-align:right;color:#3296fa;cursor:pointer}.user-permission .btns{margin-top:20px}.user-permission .el-table .cell{overflow:auto!important}.user-permission .el-table .cell .wi-folder{color:#ffcd2c}.user-permission .get-more{margin:20px auto;text-align:center}.container[data-v-5df92025]{padding:0 40px}.title[data-v-5df92025]{margin-bottom:30px;width:100%;height:30px;font-size:14px;background-color:#fcfcfc;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.title .title-line[data-v-5df92025]{width:110px;height:2px;background:#3296fa;margin:0 30px}.title .active[data-v-5df92025]{color:#3296fa}"
  },
  {
    "path": "public/css/chunk-457e440b.d1b08c94.css",
    "content": "li[data-v-0d4061d4],ul[data-v-0d4061d4]{margin:0;padding:0;list-style-type:none}.home-search[data-v-0d4061d4]{background-color:#f9f9f9;padding:30px 0}.home-search .w1200[data-v-0d4061d4]{width:1200px;margin:0 auto}.home-search .search-wrap[data-v-0d4061d4]{width:1200px;margin:0 auto 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.home-search .search-wrap[data-v-0d4061d4] .el-input .el-input__inner{height:60px;line-height:60px;border-radius:60px 0 0 60px;padding-left:40px}.home-search .search-wrap .search-btn[data-v-0d4061d4]{width:110px;height:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-color:#383c40;border-radius:0 60px 60px 0;color:#fff;cursor:pointer}.home-search .search-total[data-v-0d4061d4]{color:#333;font-size:14px;text-align:center;margin-bottom:35px}.home-search .search-total span[data-v-0d4061d4]{color:#e63e2e}.home-search .search-list[data-v-0d4061d4]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.home-search .search-list .left[data-v-0d4061d4]{width:180px;background-color:#fff;margin-right:25px;padding:20px;max-width:500px;overflow-y:auto}.home-search .search-list .left .l-tit[data-v-0d4061d4]{margin-bottom:20px}.home-search .search-list .left .l-tit .text[data-v-0d4061d4]{margin-bottom:15px;color:#000;font-size:16px;font-weight:600}.home-search .search-list .left .l-tit .line[data-v-0d4061d4]{position:relative;height:1px;background-color:#ddd}.home-search .search-list .left .l-tit .line span[data-v-0d4061d4]{background-color:#2d5fff;height:3px;width:20px;position:absolute;left:0;top:-2px}.home-search .search-list .left ul li[data-v-0d4061d4]{font-size:14px;color:#444;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:10px 0;cursor:pointer}.home-search .search-list .left ul li[data-v-0d4061d4]:hover{color:#3296fa}.home-search .search-list .right[data-v-0d4061d4]{background-color:#fff;-webkit-box-flex:1;-ms-flex:1;flex:1;padding:20px}.home-search .search-list .right .r-con[data-v-0d4061d4]{padding-bottom:35px;cursor:pointer}.home-search .search-list .right .r-con .tit[data-v-0d4061d4]{font-size:18px;font-weight:600;color:#000;border-bottom:1px solid #ddd;padding-bottom:15px;margin-bottom:15px}.home-search .search-list .right .r-con .p[data-v-0d4061d4]{line-height:24px;font-size:14px;color:#444;margin-bottom:10px}.home-search .search-list .right .r-con .nav[data-v-0d4061d4]{color:#333;font-size:14px;font-weight:600}.home-search .search-list .right[data-v-0d4061d4] .el-pagination{margin-top:10px}"
  },
  {
    "path": "public/css/chunk-564fade6.0e433876.css",
    "content": ""
  },
  {
    "path": "public/css/chunk-56652b45.339826ab.css",
    "content": ".admin-login[data-v-2a74da90]{background:url(../img/login_bg.cfc5367a.png) no-repeat 50%}.admin-login[data-v-2a74da90] .login-form .users{position:relative}.admin-login[data-v-2a74da90] .login-form .users .background{position:absolute;top:36px;left:8px;width:30px;height:30px;z-index:1000}.admin-login[data-v-2a74da90] .login-form .users .background img{width:100%;height:100%}.admin-login[data-v-2a74da90] .login-form .passwords{position:relative}.admin-login[data-v-2a74da90] .login-form .passwords .background{position:absolute;top:36px;left:8px;width:30px;height:30px;z-index:1000}.admin-login[data-v-2a74da90] .login-form .passwords .background img{width:100%;height:100%}.admin-login[data-v-2a74da90] .login-form .codes{position:relative}.admin-login[data-v-2a74da90] .login-form .codes .background{position:absolute;top:36px;left:8px;width:30px;height:30px;z-index:1000}.admin-login[data-v-2a74da90] .login-form .codes .background img{width:100%;height:100%}.admin-login[data-v-2a74da90] .login-form .el-input input{border-radius:20px;border-top:1px solid #dcdfe6!important;border-left:1px solid #dcdfe6!important;border-right:1px solid #dcdfe6!important}.admin-login[data-v-2a74da90] .login-form .el-input__icon{color:#fff;font-size:20px;width:40px;background-color:#2679ec;border-radius:20px;-webkit-transform:scale(.618);transform:scale(.618)}.admin-login[data-v-2a74da90] .login-btn{color:#fff;background-color:#2679ec;border:none}"
  },
  {
    "path": "public/css/chunk-57425795.c9955d2b.css",
    "content": ".el-main[data-v-70c2a92a]{padding:0 25px 20px 15px}"
  },
  {
    "path": "public/css/chunk-5b1f82de.316d8ff0.css",
    "content": ".setting[data-v-4599d29e]{padding:30px 0}.setting .title[data-v-4599d29e]{font-size:16px;font-weight:600;margin-bottom:30px}.setting .el-table .el-table__body tbody tr td .cell a[data-v-4599d29e]:hover{color:#4096f9}.setting .el-table .el-table__body tbody tr td .cell .nav-icon[data-v-4599d29e]{width:50px;height:50px}.setting .tab-wrap[data-v-4599d29e]{position:relative}.setting .tab-wrap .add[data-v-4599d29e]{position:absolute;right:0;top:0}.setting .reset-element .el-table .el-table__body tbody tr td .edit[data-v-4599d29e]{color:#4096f9;cursor:pointer}.setting .reset-element .el-table .el-table__body tbody tr td .remove[data-v-4599d29e]{color:#f56c6c;margin-left:10px;cursor:pointer}.setting .avatar-uploader[data-v-4599d29e] .el-upload{border:1px solid #d9d9d9;border-radius:6px;cursor:pointer;position:relative;overflow:hidden}.setting .avatar-uploader[data-v-4599d29e] .el-upload:hover{border-color:#409eff}.setting .avatar-uploader[data-v-4599d29e] .avatar-uploader-icon{font-size:28px;color:#8c939d;width:100px;height:100px;line-height:100px;text-align:center}.setting .avatar-uploader[data-v-4599d29e] .avatar{width:100px;height:100px;display:block}.setting[data-v-4599d29e] .el-dialog .el-dialog__body .el-form .el-form-item .el-autocomplete,.setting[data-v-4599d29e] .el-dialog .el-dialog__body .el-form .el-form-item .el-input-number,.setting[data-v-4599d29e] .el-dialog .el-dialog__body .el-form .el-form-item .el-select{width:230px}.setting[data-v-4599d29e] .el-dialog .el-dialog__body .el-form .el-form-item .el-input-number .el-input__inner{text-align:left}.setting[data-v-091246e5]{padding:30px 0}.setting .title[data-v-091246e5]{font-size:16px;font-weight:600;margin-bottom:30px}.setting table[data-v-091246e5]{width:100%;border-spacing:0}.setting table tr th[data-v-091246e5]{background-color:#f8f8f8;padding:10px;text-align:center;font-size:14px}.setting table tr td[data-v-091246e5]{padding:15px 10px;text-align:center;font-size:14px;border-bottom:1px solid #ddd}.setting table tr td span[data-v-091246e5]{color:#4096f9;cursor:pointer}.setting .avatar-uploader[data-v-091246e5] .el-upload{border:1px solid #d9d9d9;border-radius:6px;cursor:pointer;position:relative;overflow:hidden}.setting .avatar-uploader[data-v-091246e5] .el-upload:hover{border-color:#409eff}.setting .avatar-uploader[data-v-091246e5] .avatar-uploader-icon{font-size:28px;color:#8c939d;width:178px;height:178px;line-height:178px;text-align:center}.setting .avatar-uploader[data-v-091246e5] .avatar{width:178px;height:178px;display:block}"
  },
  {
    "path": "public/css/chunk-654f0b98.193fcd50.css",
    "content": ".pagination-wrap .el-pagination[data-v-749b2369]{float:none;text-align:center}.card-box[data-v-749b2369]{margin-top:30px;width:90%}.card-warpper[data-v-749b2369]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -10px}.w7-card[data-v-749b2369]{position:relative;margin:10px 20px 10px 10px;width:215px;height:300px;-webkit-transition:.3s;transition:.3s;-webkit-box-sizing:border-box;box-sizing:border-box;background-position:50%;background-size:100% 100%;background-repeat:no-repeat;background-color:#e6f2ff;border-radius:10px 20px 20px 10px}.w7-card .w7-card-title[data-v-749b2369]{font-size:16px;color:#333;padding:0 10px;margin-top:100px;height:64px;line-height:32px;color:#2f2f2f;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-align:center;-webkit-box-pack:center}.w7-card .w7-card-title.has-cover[data-v-749b2369]{background-image:-webkit-gradient(linear,left top,right top,from(#e7f3ff),to(#f5f9fd));background-image:linear-gradient(90deg,#e7f3ff,#f5f9fd)}.w7-card .mask-icon[data-v-749b2369]{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:-12px}.w7-card .time-wrap[data-v-749b2369]{position:absolute;bottom:30px;right:10px;text-align:right}.w7-card .time-wrap .wi-lock[data-v-749b2369]{font-size:22px;color:#999;margin-bottom:15px}.w7-card .time-wrap .w7-card-time[data-v-749b2369]{font-size:14px;color:#818d9b}.w7-card.has-cover .icon-box[data-v-749b2369]{background-color:rgba(0,0,0,.2)}.w7-card .icon-box[data-v-749b2369]{display:none;position:absolute;width:100%;left:0;right:3px;bottom:0;padding:10px;text-align:right;background-color:#b7cee8;border-radius:0 0 20px 10px}.w7-card .icon-box i[data-v-749b2369]{color:#fff;font-size:24px;position:relative;margin-left:20px}.w7-card .icon-box i .pos-box[data-v-749b2369]{position:absolute;top:20px;left:-10px;display:none;text-align:center;width:40px;height:20px;line-height:16px;background:#000;color:#fff;font-size:14px}.w7-card .icon-box i .pos-box .arr-box[data-v-749b2369]{position:relative;width:100%;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box;background:#000;border:2px solid #000}.w7-card .icon-box i .arrow[data-v-749b2369]{width:0;height:0;position:absolute;border:5px solid transparent;border-bottom-color:#000;top:-10px;left:30%}.w7-card .icon-box i[data-v-749b2369]:hover{color:#3296fa}.w7-card .icon-box i:hover .pos-box[data-v-749b2369]{display:block}.w7-card .icon-box img[data-v-749b2369]{margin-left:10px}.w7-card .el-icon-lock[data-v-749b2369]:hover{color:#fff}.w7-card .mask[data-v-749b2369]{position:absolute;left:0;top:0;width:100%;height:100%;background-color:hsla(0,0%,100%,.6);z-index:2}.w7-card .mask-content[data-v-749b2369]{position:absolute;left:0;top:0;width:100%;height:100%;z-index:3}.w7-card[data-v-749b2369]:hover{cursor:pointer;border-color:#bdddfd;-webkit-transform:translateY(-10px);transform:translateY(-10px)}.w7-card:hover .w7-card-title[data-v-749b2369]{color:#3296fa}.w7-card:hover .icon-box[data-v-749b2369]{display:block}.w7-card:hover .time-wrap[data-v-749b2369]{bottom:60px}.add-project[data-v-749b2369]{background:#fff;color:#b6b5b5;background:#f5f5f5;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.add-project img[data-v-749b2369]{margin-bottom:10px}.add-project .add-text[data-v-749b2369]{font-size:16px;color:#2f2f2f}.ownership[data-v-749b2369]{margin-left:120px}.el-dialog__footer[data-v-749b2369]{border-top:1px solid #eee}.redBtn[data-v-749b2369]{color:#eb2e56}.transfer-tip[data-v-749b2369]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:-10px;margin-bottom:15px}.transfer-tip i[data-v-749b2369]{margin-right:10px;font-size:18px;color:#f76260}"
  },
  {
    "path": "public/css/chunk-65eafec3.169b0d4d.css",
    "content": ".w7-aside-home-content[data-v-731e09c6] .el-scrollbar__view{border-radius:5px}.w7-aside-home-content[data-v-731e09c6] .el-scrollbar__view .el-tree-node__expand-icon{position:absolute;right:0;z-index:2;color:#606266;font-size:16px}.w7-aside-home-content[data-v-731e09c6] .el-scrollbar__view .el-tree-node__expand-icon:before{top:0!important;-webkit-transform:translateY(0)!important;transform:translateY(0)!important;margin-top:0!important;position:static!important;content:\"\\E6E0\";font-size:16px}.w7-aside-home-content[data-v-731e09c6] .el-scrollbar__view .el-tree-node__expand-icon.expanded{-webkit-transform:unset;transform:unset}.w7-aside-home-content[data-v-731e09c6] .el-scrollbar__view .el-tree-node__expand-icon.expanded:before{content:\"\\E790\"}.w7-aside-home-content[data-v-731e09c6] .el-scrollbar__view .el-tree-node__expand-icon.is-leaf{color:transparent}.w7-aside-home-content[data-v-731e09c6] .el-scrollbar__view .custom-tree-node{padding-left:10px!important}.w7-aside-home-content[data-v-731e09c6] .el-scrollbar__view .el-tree .el-tree-node:nth-last-child(2) .custom-tree-node{border-bottom:none}.w7-aside-home-content[data-v-731e09c6] .el-scrollbar__view .el-tree-node__expand-icon.expanded:before{content:\"\\E6DF\"!important}.container .document-name[data-v-731e09c6]{padding:35px 0;color:#333;font-size:26px;text-align:center}.container .search-results[data-v-731e09c6]{min-height:600px;padding-right:290px}.container .search-results .search-wrap[data-v-731e09c6]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:25px}.container .search-results .search-wrap .total[data-v-731e09c6]{color:#333}.container .search-results .search-wrap .total span[data-v-731e09c6]{color:#ff3939}.container .search-results .search-wrap .el-input[data-v-731e09c6]{width:440px}.container .search-results .search-wrap .el-input[data-v-731e09c6] .el-input__suffix{right:0}.container .search-results .search-wrap .el-input[data-v-731e09c6] .el-input__suffix .el-input__suffix-inner{color:#fff;background-color:#383d41;border-radius:0 3px 3px 0;height:100%;display:block;cursor:pointer}.container .search-results .search-wrap .el-input[data-v-731e09c6] .el-input__suffix .el-input__suffix-inner .el-icon-search{width:60px;font-size:20px}.container .search-results .con[data-v-731e09c6]{margin-bottom:25px}.container .search-results .con .name[data-v-731e09c6]{font-size:18px;color:#333;margin-bottom:10px;cursor:pointer}.container .search-results .con .content[data-v-731e09c6]{color:#666;line-height:1.6;cursor:pointer;margin-bottom:8px}.container .search-results .con .navigation[data-v-731e09c6]{color:#666;line-height:1.6;cursor:pointer}.container .search-results .con .navigation[data-v-731e09c6]:hover{color:#3296fa}.container .pagination-wrap[data-v-731e09c6]{overflow:hidden;margin-bottom:50px}body{background-color:#fff}.transition--300{-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.toc{overflow-y:auto}.toc>.toc-list{overflow:hidden;position:relative}.toc>.toc-list li{list-style:none}.toc-list{margin:0;padding-left:10px}a.toc-link{color:currentColor;height:100%}.is-collapsible{overflow:hidden;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.is-collapsed{max-height:0}.is-position-fixed{position:fixed!important;top:0}.is-active-link{color:#3296fa!important}.toc-link:before{background-color:#eee;content:\" \";display:inline-block;height:inherit;left:0;margin-top:-8px;position:absolute;width:2px}.is-active-link:before{background-color:#3296fa}.chapter-warpper .share-wechat{position:fixed;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);padding:10px;width:240px;background:#fff;border:1px solid #d8d8d8;z-index:10000;font-size:12px}.chapter-warpper .share-wechat .head{position:relative;height:16px;font-weight:700;line-height:16px;color:#000}.chapter-warpper .share-wechat .head .el-icon-close{position:absolute;right:0;top:0;font-size:16px;cursor:pointer}.chapter-warpper .share-wechat .content{padding:20px 40px}.chapter-warpper .share-wechat .foot{line-height:22px;color:#666}.home-container{position:relative}.home-container .w7-aside-home{min-width:221px;width:calc(50% - 440px)!important;position:fixed;top:165px;height:calc(100vh - 60px)}.home-container .w7-aside-home .w7-aside-home-box{padding-left:calc(100% - 260px)}.home-container .w7-aside-home .w7-aside-home-head{font-size:16px;padding:40px 0 30px;font-weight:600;text-align:center}.home-container .w7-aside-home .w7-aside-home-search{position:relative;padding-bottom:30px;margin-bottom:20px;margin-right:20px;border-bottom:1px solid #e1e3e6}.home-container .w7-aside-home .w7-aside-home-content{height:650px}.home-container .w7-aside-home .w7-aside-home-content .el-scrollbar__wrap{overflow-x:auto}.home-container .w7-aside-home .w7-tree{font-size:14px;background:#f7f8fa}.home-container .w7-aside-home .w7-tree .el-tree-node__content{position:relative;height:auto;overflow:hidden}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:20px;z-index:1;height:40px}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node.doc{z-index:3}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .text-over{-webkit-box-flex:1;-ms-flex:1;flex:1;width:0;margin-left:10px;padding-right:10px}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .text-over .level1{font-size:16px;color:#333}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .text-over .level2{font-size:14px;color:#666}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .text-over .level3,.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .text-over .level4,.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .text-over .level5{font-size:12px;color:#999}.home-container .w7-aside-home .w7-tree .el-tree-node__content .custom-tree-node .el-icon-caret-right{margin-left:-20px;cursor:pointer;color:#c0c4cc;font-size:12px;padding:5px}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content{border-left:2px solid transparent}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content .text-over{-webkit-box-flex:1;-ms-flex:1;flex:1;width:0;margin-left:10px;padding-right:10px}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content .text-over .level1{font-size:16px;color:#333}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content .text-over .level2{font-size:14px;color:#666}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content .text-over .level3,.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content .text-over .level4,.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content .text-over .level50{font-size:12px;color:#999}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node .el-tree-node__content:hover .text-over span{color:#3296fa}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node.is-current{border-left:2px solid #3296fa}.home-container .w7-aside-home .w7-tree .el-tree-node__children .el-tree-node.is-current .text-over span{color:#3296fa!important}.home-container .w7-aside-home .w7-tree .is-current .el-tree-node__content{background-color:#f0f2f5}.home-container .w7-aside-home.fix-top{top:110px}.home-container .el-main{padding:0;padding-left:calc(50% - 420px)}@media (max-width:1420px){.home-container .el-main{padding-left:260px}}.home-container .el-main .line{border-bottom:1px solid #eee}.home-container .el-main .warpper{font-size:14px;color:#333;max-width:1200px}.home-container .el-main .warpper .markdown-body .markdown-content{margin-right:30px;padding-right:290px;width:100%}.home-container .el-main .warpper .markdown-body .markdown-content h2{border-bottom:none}.home-container .el-main .warpper .markdown-body .markdown-content img{max-width:100%;cursor:pointer}.home-container .el-main .warpper .markdown-body .markdown-content table tr th{width:300px;white-space:nowrap}.home-container .el-main .warpper .markdown-body .markdown-content table tr td:first-child{white-space:nowrap}.home-container .el-main .warpper .markdown-body .markdown-menu{width:240px;font-size:14px;line-height:1;background-color:#fff;top:222px;-webkit-box-sizing:border-box;box-sizing:border-box;position:fixed;z-index:1000;right:26px;max-height:650px;min-height:650px;overflow-y:auto}@media (min-width:1600px){.home-container .el-main .warpper .markdown-body .markdown-menu{left:calc(50% + 530px);right:unset}}.home-container .el-main .warpper .markdown-body .markdown-menu .el-scrollbar__wrap{overflow-x:auto}.home-container .el-main .warpper .markdown-body .markdown-menu h3,.home-container .el-main .warpper .markdown-body .markdown-menu p:first-child{margin-top:0;margin-bottom:0;font-size:0}.home-container .el-main .warpper .markdown-body .markdown-menu li,.home-container .el-main .warpper .markdown-body .markdown-menu ul{list-style:none;padding:0;margin-top:0}.home-container .el-main .warpper .markdown-body .markdown-menu ul{padding-left:20px}.home-container .el-main .warpper .markdown-body .markdown-menu ol{margin-bottom:20px}.home-container .el-main .warpper .markdown-body .markdown-menu a{color:#989898;display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:100%;height:32px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.home-container .el-main .warpper .markdown-body .markdown-menu a:hover{color:#3296fa;text-decoration:none}.home-container .el-main .warpper .markdown-body .markdown-menu.fix-top{top:110px}.home-container .el-main .warpper .article .title{font-size:20px}.home-container .el-main .warpper .article .info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:15px;padding-right:290px}.home-container .el-main .warpper .article .info .time{margin-right:30px;font-size:12px;color:#999}.home-container .el-main .warpper .article .info .author{-webkit-box-flex:1;-ms-flex:1;flex:1;font-size:12px;color:#999}.home-container .el-main .warpper .article .info .share{display:-webkit-box;display:-ms-flexbox;display:flex}.home-container .el-main .warpper .article .info .share-block{margin-left:5px;width:30px;height:30px;color:#989898;line-height:27px;text-align:center;border:1px solid #eee;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer}.home-container .el-main .warpper .article .info .share-block:first-child{margin-left:0}.home-container .el-main .warpper .article .info .share-block.checked,.home-container .el-main .warpper .article .info .share-block:hover{border-color:#3296fa;color:#3296fa}.home-container .el-main .warpper .article-list .highlight{color:#3296fa}.home-container .el-main .warpper .article-list .back{margin-top:30px}.home-container .el-main .warpper .article-list .number-result{margin-top:10px;margin-bottom:50px}.home-container .el-main .warpper .article-list .list-content{margin-bottom:60px}.home-container .el-main .warpper .article-list .list-content .header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:10px}.home-container .el-main .warpper .article-list .list-content .header .title{font-size:20px;cursor:pointer}.home-container .el-main .warpper .article-list .list-content .header .info{padding-top:7px}.home-container .el-main .warpper .article-list .list-content .header .info span{margin-left:23px;color:#999}.home-container .el-main .warpper .article-list .list-content .content{color:#999;line-height:24px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;margin-left:0;cursor:pointer}.home-container .el-main .warpper .article-list .no-result{padding:200px 0;color:#8d8d8d;font-size:24px;font-weight:400;font-style:normal;text-align:center;line-height:40px;height:40px}.hljs{background:#eee!important}.markdown-body .markdown-content{width:0}.markdown-body .markdown-content :focus{outline:none}.markdown-body .highlight pre,.markdown-body code,.markdown-body pre{background-color:#eee!important}.w7-top{width:40px;height:42px;padding-top:8px;background-color:#000;color:#fff;text-align:center;font-size:10px;line-height:1}.w7-top i{font-size:20px}@media screen and (max-width:500px){.admin-view>.el-header,.markdown-menu,.share,.w7-aside-home{display:none!important}.admin-content{padding-top:0!important}.home-container .el-main{padding-left:0}.chapter-warpper .warpper{margin-top:0!important;margin-left:0!important;padding:20px}.home-container .el-main .warpper .article .info{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-right:0}.home-container .el-main .warpper .article .info .time{margin-right:0}.home-container .el-main .warpper .article .info .author{text-align:right}.container .search-results{padding-right:0!important}.container .search-results .search-wrap .el-input{width:200px!important}}"
  },
  {
    "path": "public/css/chunk-6a2c3c1a.356edd1a.css",
    "content": ".admin-view>.el-header[data-v-19a9d71c]{position:fixed;left:0;top:0;right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 50px;font-size:14px;z-index:999}.admin-view>.el-header .logo[data-v-19a9d71c]{margin-right:20px;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:24px;cursor:pointer}.admin-view>.el-header .logo .wi[data-v-19a9d71c]{font-size:30px;padding-right:20px}.admin-view>.el-header.white[data-v-19a9d71c]{color:#4d4d4d;background-color:#fff;border-bottom:1px solid #e5e5e5}.admin-view>.el-header.white .logo .wi[data-v-19a9d71c]{color:#3296fa}.admin-view>.el-header.white #w7-nav-menu[data-v-19a9d71c],.admin-view>.el-header.white #w7-nav-menu ul[data-v-19a9d71c]{background-color:#fff}.admin-view>.el-header.black[data-v-19a9d71c]{color:#fff;background-color:#383d41}.admin-view>.el-header.black .logo .wi[data-v-19a9d71c]{color:#f7f8fa}.admin-view>.el-header.black .user[data-v-19a9d71c]:hover{background:#40485b}.admin-view>.el-header.black .user #w7-nav-menu[data-v-19a9d71c]{color:#fff;background:#40485b}.admin-view>.el-header.black .user #w7-nav-menu ul[data-v-19a9d71c]{border-left:3px solid #383d41;border-right:3px solid #383d41;background-color:#40485b}.admin-view>.el-header.black .user #w7-nav-menu ul li[data-v-19a9d71c]:hover{color:#3296fa;background:#343b4e}.admin-view>.el-header .menu-line[data-v-19a9d71c]{margin-left:10px;margin-right:28px;width:1px;height:24px;background-color:#e5e5e5}.admin-view>.el-header .menu-icon[data-v-19a9d71c]{margin-right:10px;width:24px;height:24px;line-height:24px;color:#999;background-color:#f2f3f5;text-align:center;border-radius:4px;cursor:pointer}.admin-view>.el-header .menu-icon[data-v-19a9d71c]:hover{color:#fff;background-color:#3296fa}.admin-view>.el-header .el-icon-arrow-right[data-v-19a9d71c]{color:#d6d6d6}.admin-view>.el-header .menu[data-v-19a9d71c]{-webkit-box-flex:1;-ms-flex:1;flex:1;width:0;padding-left:75px}.admin-view>.el-header .menu .doc-name[data-v-19a9d71c]{margin-left:10px}.admin-view>.el-header .item[data-v-19a9d71c]{display:inline-block;padding:0 20px;margin:0 6px}.admin-view>.el-header .item.router-link-active[data-v-19a9d71c],.admin-view>.el-header .item[data-v-19a9d71c]:hover{color:#3296fa}.admin-view>.el-header .user[data-v-19a9d71c]{width:120px;line-height:60px;text-align:center;cursor:pointer}.admin-view>.el-header .user:hover #w7-nav-menu[data-v-19a9d71c]{display:block}.admin-view>.el-header .user .username[data-v-19a9d71c]:hover{color:#3296fa}.admin-view>.el-header .user #w7-nav-menu[data-v-19a9d71c]{background-color:#fff;display:none;position:fixed;top:60px;right:50px;font-size:14px;text-align:center;-webkit-box-shadow:0 2px 10px 0 rgba(82,185,198,.1);box-shadow:0 2px 10px 0 rgba(82,185,198,.1);border-radius:0;border:0;z-index:9999;border-radius:10px}.admin-view>.el-header .user #w7-nav-menu ul[data-v-19a9d71c]{margin:0;padding:7px 0}.admin-view>.el-header .user #w7-nav-menu li[data-v-19a9d71c]{list-style:none;line-height:32px}.admin-view>.el-header .user #w7-nav-menu ul li[data-v-19a9d71c]:hover{color:#3296fa}.admin-view .admin-view-aside[data-v-19a9d71c]{background-color:#f7f8fa}.admin-view .admin-view-menu[data-v-19a9d71c]{background-color:#f0f2f5;margin-top:40px}.admin-view .admin-view-menu .el-menu-item[data-v-19a9d71c]{height:40px;line-height:40px}.admin-view .admin-view-menu .el-menu-item i[data-v-19a9d71c]{font-size:20px}.admin-view .el-main[data-v-19a9d71c]{padding:30px}.admin-view .menu-bar[data-v-19a9d71c]{width:120px}.admin-view .admin-content[data-v-19a9d71c]{padding-top:60px}.admin-view .w7-footer[data-v-19a9d71c]{padding-left:170px;line-height:30px}.admin-view .w7-footer .footer-law[data-v-19a9d71c]{width:100%;color:#616161;text-align:center;font-size:14px;padding-bottom:20px}@media screen and (max-width:500px){.admin-view .w7-footer[data-v-19a9d71c]{padding-left:10px}}"
  },
  {
    "path": "public/css/chunk-7060d2be.ba342d3f.css",
    "content": ".install .success[data-v-4052ffba]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-top:150px}.install .success .s-top[data-v-4052ffba]{margin-bottom:30px}.install .success .s-top .top[data-v-4052ffba]{font-size:30px;color:#333;margin-bottom:20px}.install .success .s-top .top i[data-v-4052ffba]{color:#3bb64c;font-size:30px;margin-right:10px}.install .success .s-top .center[data-v-4052ffba]{margin-bottom:10px;padding-left:45px}.install .success .s-top .bottom[data-v-4052ffba]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:125px}.install .success .s-top .bottom span[data-v-4052ffba]{background-color:#d9dde0;color:#333;padding:5px 45px;font-size:14px;border:1px solid #ddd;cursor:pointer}.install .success .c-bottom[data-v-4052ffba]{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:70px}.install .success .c-bottom .btn[data-v-4052ffba]{color:#fff;background-color:#3296fa;width:270px;line-height:60px;text-align:center;cursor:pointer}"
  },
  {
    "path": "public/css/chunk-71aaa888.b923ac67.css",
    "content": ".setting-store .page-head{padding-bottom:0}"
  },
  {
    "path": "public/css/chunk-73af5400.9b10b85b.css",
    "content": ".install-wrap[data-v-af400938]{position:relative;width:100%;min-height:100vh;background:#fff url(../img/login-bg.5a9966fc.png) no-repeat 50%/cover;left:0;top:0}.install-wrap .i-header[data-v-af400938]{font-size:24px;color:#333;margin-bottom:50px;height:60px;padding-left:50px}.install-wrap .i-header[data-v-af400938],.install-wrap .i-header span[data-v-af400938]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.install-wrap .i-header span[data-v-af400938]{cursor:pointer}.install-wrap .i-header span .wi-wendang-logo[data-v-af400938]{margin-right:20px;font-size:30px}.install-wrap .install-con[data-v-af400938]{width:1200px;margin:0 auto;min-height:740px}.install-wrap footer[data-v-af400938]{line-height:30px;padding-bottom:20px;text-align:center;color:#616161;font-size:14px}"
  },
  {
    "path": "public/css/chunk-775b8fab.d326fcb8.css",
    "content": ".setting-nav .page-head{padding-bottom:20px}.setting-nav .we7-panel-form__header{margin-top:5px}.setting-nav .demo-input-btn{width:100%;text-align:right}.setting-nav .demo-input-btn .add-menu{padding:9px 30px}.setting-nav .w7-table,.submit{margin-top:20px}"
  },
  {
    "path": "public/css/chunk-a3879d6c.ffbb8d99.css",
    "content": ".admin-login{min-height:100vh;background-color:#fff;background-image:url(../img/login_bg.cfc5367a.png);background-position:50%;background-size:cover;background-repeat:space;position:relative;font-size:14px;line-height:1}.admin-login .login-box{width:660px;margin:0 auto;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.admin-login .login-box .bind{margin-bottom:30px}.admin-login .login-box .bind .top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0 190px;margin-bottom:30px}.admin-login .login-box .bind .top .text{color:#333}.admin-login .login-box .bind .p1{color:#666;text-align:center;margin-bottom:8px}.admin-login .login-box .bind .p2{color:#333;text-align:center}.admin-login .login-box h2{margin:0;color:#4d4d4d;font-size:56px;font-weight:100;text-align:center;margin-bottom:30px}.admin-login .el-tabs__header{text-align:center;margin-bottom:0}.admin-login .el-tabs__nav-wrap{display:inline-block}.admin-login .el-tabs__nav-wrap:after{display:none}.admin-login .login-form .el-input{margin-top:30px}.admin-login .login-form .el-input input{border-radius:20px;border-left:1px solid #dedfe6!important;border-right:1px solid #dedfe6!important;border-top:1px solid #dedfe6!important;outline:0;color:#a1a1a1;padding-left:50px}.admin-login .login-form .el-input input:focus{border-color:#dcdfe6}.admin-login .login-form .el-input__icon{color:#fff;font-size:20px;width:40px;background-color:#2679ec;border-radius:20px;-webkit-transform:scale(.618);transform:scale(.618)}.admin-login .login-form .el-input .el-input-group__append{background-color:unset;border-radius:0;padding:0;font-size:0;border:0}.admin-login .login-form .el-input .el-input-group__append img{width:120px;cursor:pointer;height:32px}.admin-login .login-btn{display:block;width:100%;border-radius:25px;color:#fff;background-color:#2679ec;padding:0;height:50px;line-height:50px;margin-top:50px;border:none}.admin-login .footer{position:fixed;left:0;right:0;bottom:30px;text-align:center;color:#999;font-size:14px}.admin-login[data-v-780cb3f1] .user .el-input__inner{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADDUlEQVRYR8WXT1IaURDGv2ZQyQ4qsA5WBbbBE0ROEDxBzAk0O8hG3AR2wROoJ9CcQDxBYAtWSdZSpUtE4Eu9B4NvhmHmjaZKFiyYnn6//vO6PwRv/JE3Ph+xAPL1+/Tm4/QLKHkISyTSywCEHc6kPXnnXA/qmQfbwKwACj/uS8LpEYCKjWMSZwTPb5q5dpR9KICKeGM0/SWC/ShHQc8VyFPK+R6WkbUAKmpwciqQ0ksOX75DDJhw9vo/M50gP4EA88OnVwKjxq+gIPAAccpBECsAOu2P09v/dbjLrSCe6OwMmpmBGcsKQKF21xbIZ6uAya62E/lkY0+i3W9my2sBCtXhvghOI52Rx+NUsuU2l76eo8khRNRNCf2Q+NZvZs9cI08GirWhSs+HMA9+B6atVQDEoNfMbq8AFGtDdccvQg8Hr/uN3G6YjWUJ93qN7KWunuusUBueCfD1pdEv/ViUkcB5v5HVs2UJYJP+GVmOmm4fq3e7CZGriEx2+o3cjh+AcRsoyN6qDwD0GlkdvP7KV+/zmzK9tQBYuUb+dyx7AOMtJ6NukQZYLJs/UQDq+atvweIQt5xmD0SWYAlIqY9TiRPvHJgdQFi3CULZeDKgfijWhvYAi1PUZNN1FIRezSAoTw/oMsQZwbZhrrMju71mTm/Z5zlQHbZEcBDqez77LyHSmZEe1ZMQSYNUTitRu4HESb+ZPfQCzFVPcCOS3RlwGDUDXHg9C4DWOpAxnW13K3p2QWAZyO44ldyNo/P01Z4vqLYfgr5x7gEImmImbdzSB80XirNjCpNVPWD0gp82LoC/uc3au74CJVmxetdRqSPYedpKluOm33U+V1eTK60rjc43AwkEMOunpBTJPdsGNBtRRC60tAvpo7WqeKENW+6KVkOH4HEUiOojgRy5w8lcvUEljPxjsthuasRqpaQVLnEpEC0uSTyIIE0wD0HFELN/SdRN+fUiAPdKbYymFQGV7gsXoMTvmUj7pvG+ZdO0kRnwO1GlSY4mpQSe5z8hA4KDSSrZiduwsQFsoopj8w85b5UwNkDVfAAAAABJRU5ErkJggg==) no-repeat 6px 4px;background-size:30px 30px}.admin-login[data-v-780cb3f1] .pwd .el-input__inner{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAACrElEQVRYR8VXS3LaQBDtlkRgF1MR6+Aqm23ICQw3sG/g3ADvIJuwitg5N0huYG4AnCBkC1QF1pAy2WELqVM9IKLPSDN8qtCGAqZ7Xr/+PSGc+cEz3w97Abj+/FwFz78BpFsGjgg1/iSCvgiEsAumMRh/LQ51A9MCcNWc1wzA74BQ1nJMMPWBPk06pQ2wjCcTQLn9fJFbeU9BpCpn8f+ZGbdg3k3bxWWabSoAQTd5PQS42Pfi8HkCWAKa9bS0SAHw5Ujez2MuTrCB5kcZiAQAQfuL9/vYyBMAAJZu3ryMpyMB4Lo17yPgTVb0RPAXABoumKLIcuDVEKENAO8Vdv1xx66Hz0QAiGpH7Cmon73mzSpHwucBLZo4xQEz92a17gPihyx7n6ge7o4IgEprMVVFwQ7WBWuYe1n3ELAq2h9o6OaturVaV5UBEExHHfsyALkDoFt4I8fGq9afhgH0GI7UB3yYOO++VVoLUhUvhQpyB0DmVOaIAVSa8zYgfom2G/H04/ppqAAEYPncfwY0io8N0gCoLo2BHYydkhjj+gCIfr0WrFrWVGOHOsVIQEkAqtzFqzcrYp1uYiYjDJwdgGoAyRhgGyCk+HBRMSBNwUEAmgux5cYdO7KwDgKgakMZA6IduTM6JfEZPCoA8jZUbEBpCpqL+y0DP/YBIB1E7CBrFJ+wC2Yjx94pq32W0d3Isbs6A6fSWrBmfJKdzVxGbJBWjLxwiOBBpfM4/4jwGCyqtAmYWEbBD1sdOEWEtzrR6p5hDeEWzLJSkAgWTizJhIAxzJqWJAsiEqLU9/rHMpF1eWQUy6jc6MN1VyXR0tLAE8/NW7cHyXJJX3OvZ2q+kM3MJ7pXFaySgXhknBYiv4bgb17NtuKVI+XvBEYX0eif/NVMt9IPOaf1bniIY12bf7ZOhzAhOjIGAAAAAElFTkSuQmCC) no-repeat 6px 4px;background-size:30px 30px}.admin-login[data-v-780cb3f1] .vrcode .el-input__inner{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADo0lEQVRYR8VXW0gUURj+/tnd2oc2U9fCeqgF3bS3iEySLpAUBlEUQUHWkz4kvdZsQdaD67xGGKEQlUI9dJEogu5FEtj1JbNdxYJKzF0trbztzh9nxG0vMzvjZjmPc/7Ld77//79zDmGWP5rl/LAMYEUtz5mYGNhAqloBYDUIS8BYKDbAQB8BX0BoB9Nt+9zcJx0nadzK5iwBKJDDuyVSTwGUbyUowL3M0qGgknvVzD4tAM+xwaX2aLSRCJvNAumtM+NOxGar7qnL/mjkbwjA6wvtYPBZAi3KJPmUD4P7mKX9XUruHb04ugAKjvRvI4laCZD+JvkfEFBV4vJuf97D5HgpADTa1egbAhbMRPJ4JibYXvpByf4QHzcRQDU7CnNCz4holZXk5SvmYP9aJ2pahjE8yuYujOeBgdwyNNLElHECAO/RgT1g9ZJRJJeTUJRvQ3G+HTtXOVGcb9NMh0YZ996O417HOD5/i6KzN2oMhqS9AX/OZR0ATF5fqBsgT7J3iceB5qr55juMs2jviaCy6buODwcC9e4igDTKYgwUHA6XSjZ+ppdlZgEATLaVQX/2mwQAXrn/BIhq/wcAFfB11buVBACFcuguEcozBSAov9A2goZ9Li2EcQkAIVBBxb0liYFQJwjLMwHgv/UT116O4cHhbMx3TlY1HQAw3gcU0QdxPVAoh74RIcsMgBg3kexAmVMbvbqbP7Xub67Kik2FGQBmfA8qbk1nYk1oFcC73qjW3WIUh0ZVbeRE8hKPPQG7SQlSAXhl6yX4NKiipmVISy7EaKru8QgyKcFDImzUK4EQoBfHcxKWhPjUNA+jodIVq3u8wfVXY5Cv/NDVDoMmNB5DEUWP5nTKVNk0hPaemOImmOqOYTohEt5CgluqsiDYMPvS7V746gqR+O31hToB8holEIp4ptKVFoSYCEG90eHEzMGg4l6eIsUiqdlhJGyWLJCg7HaldL1IePr+L1xoG01PkPFhNOlX6Ot/QqB1ZjQLNoQWFC+24/rLMZxvGzE/kpmfBpS8hNgpBV0mDy5zUPT1v7iQRCT7muT7ocGVLLRdktBqxoLVdQZUZt7UpeQ9SvYxbOkCObyZSL04K5fSKZSeoz8WOXjkHEBbre423o6BGxFyVvf45/UZ+ZsPtWhMObyLSD09nYcJQAcD9W7TMloCINCLp1lkLLwexBVglDCwmIDJNwPhKxifATxnSbrtcOQ8ntGnWSb0W/WxzIDVgNO1+w3cr6Mw+iVR1gAAAABJRU5ErkJggg==) no-repeat 6px 4px;background-size:30px 30px}"
  },
  {
    "path": "public/css/chunk-ab7deece.39a1833e.css",
    "content": ".we7-document-history .search-box{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.we7-document-history .search-box .demo-input-suffix{margin-right:20px}"
  },
  {
    "path": "public/css/chunk-b09d1c24.5230f4f0.css",
    "content": ".home ul[data-v-688d267c]{list-style-type:none;margin:0;padding:0}.home .w1200[data-v-688d267c]{width:1200px;margin:0 auto}.home .hot[data-v-688d267c]{cursor:pointer}.home .banner[data-v-688d267c]{width:100%;height:300px;background-position:50%;background-repeat:no-repeat;padding-top:40px}.home .banner .title[data-v-688d267c]{font-size:52px;color:#000;text-align:center}.home .banner .search-wrap[data-v-688d267c]{width:1200px;margin:25px auto 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.home .banner .search-wrap[data-v-688d267c] .el-input .el-input__inner{height:60px;line-height:60px;border-radius:60px 0 0 60px;padding-left:40px}.home .banner .search-wrap .search-btn[data-v-688d267c]{width:110px;height:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-color:#2679ec;border-radius:0 60px 60px 0;cursor:pointer}.home .banner .href[data-v-688d267c]{text-align:center;color:#005ddc;font-size:14px}.home .banner .href a[data-v-688d267c]{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.home .banner .href a[data-v-688d267c]:hover{text-decoration:underline}.home .banner .href a em[data-v-688d267c]{font-style:normal;margin:0 10px;position:relative;top:-1px}.home .announcement[data-v-688d267c]{padding-top:70px}.home .announcement .title[data-v-688d267c]{font-size:18px;color:#000;font-weight:600;margin-bottom:10px}.home .announcement .title .text[data-v-688d267c]{margin-bottom:20px}.home .announcement .title .line[data-v-688d267c]{position:relative;height:1px;background-color:#ddd}.home .announcement .title .line span[data-v-688d267c]{background-color:#2d5fff;height:3px;width:20px;position:absolute;left:25px;top:-2px}.home .announcement .notice-wrap[data-v-688d267c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.home .announcement .notice-wrap ul[data-v-688d267c]{width:calc(50% - 80px)}.home .announcement .notice-wrap ul li[data-v-688d267c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:15px 0;border-bottom:1px dashed #eee}.home .announcement .notice-wrap ul li .con-left[data-v-688d267c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:calc(100% - 60px)}.home .announcement .notice-wrap ul li .con-left .new[data-v-688d267c]{width:36px;height:18px;background-color:#ffe5e8;color:#dc0c0c;font-size:12px;line-height:18px;text-align:center}.home .announcement .notice-wrap ul li .con-left .new.new2[data-v-688d267c]{background-color:#f5f5f5;color:#666}.home .announcement .notice-wrap ul li .con-left .popover-wrap[data-v-688d267c]{width:80%;margin-left:10px}.home .announcement .notice-wrap ul li .con-left .popover-wrap a[data-v-688d267c]{display:block;cursor:pointer;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:14px}.home .announcement .notice-wrap ul li .con-left .popover-wrap a[data-v-688d267c]:hover{color:#005ddc}.home .announcement .notice-wrap ul li .time[data-v-688d267c]{color:#666;font-size:12px}.home .type-1[data-v-688d267c]{padding-top:80px}.home .type-1 .el-row .el-col[data-v-688d267c]:nth-child(n+5){margin-top:30px}.home .type-1 .el-row .el-col .con[data-v-688d267c]{text-align:center;cursor:pointer}.home .type-1 .el-row .el-col .con>img[data-v-688d267c]{width:135px;height:150px;margin-bottom:30px}.home .type-1 .el-row .el-col .con .document-name[data-v-688d267c]{font-size:18px;color:#000;font-weight:600;margin-bottom:8px}.home .type-1 .el-row .el-col .con .description[data-v-688d267c]{font-size:14px;color:#666;min-height:20px;height:40px;line-height:20px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;margin-bottom:8px}.home .type-1 .el-row .el-col .con .view[data-v-688d267c]{color:#005ddc;font-size:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:pointer}.home .type-2[data-v-688d267c]{padding:80px 0}.home .type-2 .el-row .el-col[data-v-688d267c]:nth-child(n+5){margin-top:40px}.home .type-2 .el-row .el-col .con[data-v-688d267c]{padding:30px;background-color:#f8f8f8;border-radius:8px;min-height:300px;max-height:300px}.home .type-2 .el-row .el-col .con .document-name[data-v-688d267c]{color:#000;font-size:18px;font-weight:600;margin-bottom:10px}.home .type-2 .el-row .el-col .con .line[data-v-688d267c]{width:30px;height:4px;background-color:#005ddc;margin-bottom:35px}.home .type-2 .el-row .el-col .con ul li[data-v-688d267c]{color:#333;margin-bottom:15px;cursor:pointer;font-size:14px}.home .type-2 .el-row .el-col .con ul li[data-v-688d267c]:last-child{margin-bottom:0}.home .type-2 .el-row .el-col .con[data-v-688d267c]:hover{background:#2679ec url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIMAAAB9CAYAAACBBdAPAAAEMUlEQVR4nO2d23LaMBRFTZNAaMAJkDQNpP//mTsPdinlFgOS9pa0NbMeOtOZ2ues6nIkmaZxu7kBGAG4A/AAYAxgsse4577/eyP2M7td2fokPgKYA3iOyLz/d+7Y7+zWbBM/i5z0S3kCcM+OTfGt79pj/48PTQtgzI5dEa3vitkJDckjO6ZZNQBTgaSlYMqOtWRDN/6zk8PkgZ0DekM34WInQokndk6SNnRr/VYg8MrM2XmK2gD8EAhybrQoqfAF9wSWommaBvnVBdSZsXN6cUM9y0MGE3Z+BzV0mzvsYJWOvgzwkGAZ4IKRZWga9waWodkuF9lBqRUdGdCdCGIHpGY0ZICHBQX4MggEwbBlgOcHanBkgItIiqSXAd2ZQ/aLG7YMKO/sYUmkk8EiyJNGBouQBfFlgItJuRBXBniymBPxZICXj7kRRwa4oJQj0WRgv5hRkEHgpYyCDPDuY86EkwFeQuZOGBngW00lEEwG9osYBRngeUIp3CYDfJy9JG6Wgf0CRkEGeHgojetkgPcdSuRqGdgPbhRkgK/Fl8pVMrAf2ijIAE8aS2a4DPAZhdK5SAZ/TKtshskAb0TVwGAZ2A9qFGSA5wq1MEgGzxXqYJAM7Ic0CjLAX2eviW9lYD+gUZABvhoXikXPsufvn18Enm2wDOyHy4VXAGsAfwKxBvCGThjLIMwCwHvAxF8iyIoiA7xNvcsKwCdBgHP8SikDOwFsloICxBbDMuzxWyC51/KJ2+YZhzKgziEi5ARQgWUoGdiJSclGIHEqUlQrw4dAolIypKYx2Reh9ELTm0BiWKwvlaHkM465rA5ic2roOJCBnbAYvAokQI1NjTK4NzjP7lJ0sitCSfOFF4FA58I7jsgwE0hiCFYCAc6NDfZkYCcxBIxNpFJoS5Kh9AKSZRiIJ4qhZEDen+OxCIFlyPX3ICxCBBlyrDx6jhBJBnZiLyXncweqZClDzZtNlmEHVxYtwxZ2wEomKxm8cogtA/K4cu95QiIZ1D/w6XlCQhnUt67ZQaqFtgEwFki4hwc+rfrPCbEDVBPSMpR2sUUdaRnYwakNWRlcU7AMeIaXklQZ1FYT3pomyqBWZ2AHpVbkKpC1XYhVQm5vgh2QmpHatfSdSMvgXkEEy2D0ZPCGFB8ZGdiBMEL3JtiBMCI3qpYCgTAidy29Va2BxC1sdhCMZTB70GVYCATBHJGB8XtUri/o8J8MjK1sn13Q4Z8MpKGCHQBjGcwQGVJXItkBMGdkSD1vYAfAnJKBMFSwA2BEZHCNQYujMqT6jSp/41mLQxkS9g4+86gFVQZXH7U4KUOKocIyaHFchkS9g2XQ4idTBs8ZhDgpQi9D7AKUVxNCnJUhQe/gOoMO0yEyxD7jwA6CAT6+FSFR78AORO2sB4vQy9BahiI5vXo4I8MI3ad+YtCapJydG3wBONSSugm5Y4UAAAAASUVORK5CYII=) no-repeat 100% 100%}.home .type-2 .el-row .el-col .con:hover .document-name[data-v-688d267c]{color:#fff}.home .type-2 .el-row .el-col .con:hover .line[data-v-688d267c]{background-color:#fff}.home .type-2 .el-row .el-col .con:hover ul li[data-v-688d267c]{color:#fff}"
  },
  {
    "path": "public/css/chunk-b9b22232.3c05d3bd.css",
    "content": ".setting-thirdParty .page-head{padding-bottom:0}"
  },
  {
    "path": "public/css/chunk-bd264252.3d26cc4c.css",
    "content": ".document-setting .edit-role-change[data-v-63bdab51]{width:120px}.document-setting[data-v-63bdab51] .delete-doc{-webkit-box-shadow:0 1px 3px transparent!important;box-shadow:0 1px 3px transparent!important}.document-setting[data-v-63bdab51] .delete-doc .el-dialog{margin-top:300px!important}.document-setting .document-setting-warpper{display:-webkit-box;display:-ms-flexbox;display:flex;border-top:1px solid #e5e5e5}.document-setting .nav{width:150px;border-right:1px solid #e5e5e5}.document-setting .nav-item{width:149px;position:relative;padding-left:30px;height:40px;line-height:40px;border-bottom:1px solid #eee;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer}.document-setting .nav-item:hover{color:#59a5f9}.document-setting .nav-item.active{color:#59a5f9;background-color:#f5f5f5}.document-setting .nav-item .light-line{position:absolute;top:0;left:0;width:3px;height:100%;background:#3296fa}.document-setting .nav-item .redDot{position:absolute;display:block;top:8px;right:55px;width:6px;height:6px;background:red;border-radius:50%}.document-setting .content{-webkit-box-flex:1;-ms-flex:1;flex:1;height:510px;-webkit-box-sizing:border-box;box-sizing:border-box}.document-setting .content .upload-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.document-setting .content .project{padding:50px 100px}.document-setting .content .project .el-form-item__content{width:490px}.document-setting .content .project .cover-warpper{position:relative;margin-bottom:10px}.document-setting .content .project .cover-warpper .el-upload{display:-webkit-box;display:-ms-flexbox;display:flex}.document-setting .content .project .cover-warpper .el-upload .cover-img{margin-right:20px;width:200px;height:100px;background:#e6f2ff;border:1px solid #eee;-webkit-box-sizing:border-box;box-sizing:border-box}.document-setting .content .project .cover-warpper .el-upload .cover-img img{width:100%;height:100%}.document-setting .content .project .cover-warpper .el-upload .cover-btn{text-align:left}.document-setting .content .project .cover-warpper .el-upload__tip{margin-top:0;color:#ccc;line-height:36px}.document-setting .content .project .cover-warpper .cover-default{margin-top:10px}.document-setting .content .project .btns{padding-top:25px;text-align:center}.document-setting .content .project .btns .el-button+.el-button{margin-left:20px}.document-setting .content .manage{padding:20px 35px 0 30px}.document-setting .content .manage .top{padding-bottom:20px;text-align:right}.document-setting .content .manage .w7-table{margin-top:0;overflow:inherit}.document-setting .content .manage .w7-table .el-table td,.document-setting .content .manage .w7-table .el-table th{padding:6px 0;position:relative}.document-setting .content .manage .w7-table .identity{margin:0 auto;width:78px;line-height:28px;color:#45bb7f;text-align:center;background-color:#c1fbde;border:1px solid #4dc88a;border-radius:4px}.document-setting .content .manage .w7-table .oper .edit-role{position:absolute;top:42px;right:0;width:360px;height:150px;background-color:#fff;border-radius:5px;-webkit-box-shadow:0 3px 18px 1px rgba(194,192,192,.85);box-shadow:0 3px 18px 1px rgba(194,192,192,.85);z-index:9999}.document-setting .content .manage .w7-table .oper .edit-role:before{content:\"\";position:absolute;top:-10px;right:40px;width:0;height:0;border-color:transparent;border-style:solid;border-width:10px;border-top-width:0;border-bottom-color:#fff}.document-setting .content .manage .w7-table .oper .edit-role-content{padding:28px 25px 28px 23px}.document-setting .content .manage .w7-table .oper .edit-role-content .label{display:inline-block;width:40px;text-align:left}.document-setting .content .manage .w7-table .oper .edit-role-content .el-select{width:270px}.document-setting .content .manage .w7-table .oper .edit-role-foot{text-align:center}.document-setting .content .manage .w7-table .oper .edit-role-foot .el-button{padding:9px 34px}.document-setting .content .feed,.document-setting .content .history{padding:40px 50px}.document-setting .content .feed .w7-table,.document-setting .content .history .w7-table{margin-top:0}.document-setting .add-manage-header,.document-setting .feedDetailHeader{position:absolute;top:0;left:0;padding:30px 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:1000px;background-color:#fff;-webkit-box-sizing:border-box;box-sizing:border-box}.document-setting .add-manage-header .el-link,.document-setting .feedDetailHeader .el-link{line-height:24px;font-size:18px}.document-setting .add-manage-header .el-icon-close,.document-setting .feedDetailHeader .el-icon-close{font-size:20px}.document-setting .add-manage-body{padding:50px 0 50px 360px;border-top:1px solid #e5e5e5}.document-setting .add-manage-body .add-manage-footer{padding:100px 0 0 100px}.document-setting .feedDetail{padding:50px 0 50px 30px;border-top:1px solid #e5e5e5}.document-setting .feedDetail .item{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;padding-bottom:30px}.document-setting .feedDetail .item .lef{padding-right:20px;color:#999;width:90px}.document-setting .feedDetail .item .rig{padding-right:30px;-webkit-box-flex:1;-ms-flex:1;flex:1}"
  },
  {
    "path": "public/css/chunk-d779deb8.207190f3.css",
    "content": ".admin-setting .el-menu-item .menu-name{display:inline-block;max-width:130px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.admin-setting .el-main{padding:0 25px 0 15px}"
  },
  {
    "path": "public/css/chunk-f66a53c0.e0f01506.css",
    "content": ".pagination-wrap[data-v-5afe36eb]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.pagination-wrap[data-v-5afe36eb] .el-pagination{float:none}.doc_box[data-v-5afe36eb]{opacity:1;border-radius:2px;margin-top:20px;padding-bottom:20px;border-bottom:1px solid #eee}.doc_title .detail[data-v-5afe36eb]{cursor:pointer}.f_div[data-v-5afe36eb]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.collection[data-v-5afe36eb]{margin-left:6px;font-size:12px;font-family:PingFang SC Medium;line-height:17px;color:#999;opacity:1}.time[data-v-5afe36eb]{font-size:12px;color:#999;opacity:1;position:absolute;right:4%;bottom:-62px}.doc_title[data-v-5afe36eb]{margin-top:20px}.doc_title>span[data-v-5afe36eb]{font-size:16px;font-family:\"\\5FAE\\8F6F\\96C5\\9ED1\";font-weight:700;line-height:22px;color:#333;opacity:1}.doc_t3[data-v-5afe36eb]{margin-top:10px}.doc_t3>p[data-v-5afe36eb]{width:717px;height:auto;word-break:break-all;word-wrap:break-word;overflow:hidden;font-size:14px;font-family:PingFang SC Medium;line-height:24px;color:#333}[data-v-a46f0322] .el-tabs__item{height:80px!important;line-height:80px!important}.dt_box[data-v-a46f0322]{height:154px;margin-top:25px;margin-left:12px;border-bottom:1px solid #eee}.f_div[data-v-a46f0322]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.Collection[data-v-a46f0322]{margin-left:6px;font-size:14px;line-height:20px;color:#999;opacity:1}.time[data-v-a46f0322]{font-size:12px;color:#999;opacity:1;position:absolute;right:6%}.left_avg[data-v-a46f0322]{width:65px;height:65px}.left_avg .el-avatar[data-v-a46f0322]{width:100%;height:100%}.xx[data-v-a46f0322]{margin-top:23px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.xx .dynamic[data-v-a46f0322]{margin-left:15px;cursor:pointer}.xx .dynamic .user[data-v-a46f0322]{margin-bottom:10px}[data-v-a46f0322] .el-avatar--large{width:64px;height:64px}.xx_user[data-v-a46f0322]{line-height:20px;height:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.xx_user>span[data-v-a46f0322]{font-size:14px;line-height:20px;color:#777;opacity:1}.user[data-v-a46f0322]{font-size:16px;line-height:22px;color:#333;opacity:1}.create_p[data-v-a46f0322]{width:700px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:14px;line-height:20px;color:#555;opacity:1}.el-card[data-v-a46f0322] .el-card__body{padding-bottom:40px}.container-right[data-v-55790ccc]{margin-left:15px}.right_t1_d[data-v-55790ccc]{height:56px;background:#2679ec;opacity:1;border-radius:2px;text-align:center;line-height:56px;-webkit-transform:all .8s;transform:all .8s}.right_t1_d span[data-v-55790ccc]{font-size:16px;line-height:22px;color:#fff;opacity:1}.right_t1_d[data-v-55790ccc]:hover{opacity:.8;cursor:pointer}.right_t2_d[data-v-55790ccc]{width:329px;height:56px;margin-top:12px;background:#fff;border:1px solid #ddd;opacity:1;border-radius:2px;text-align:center;line-height:56px;-webkit-transform:all .8s;transform:all .8s}.right_t2_d span[data-v-55790ccc]{color:#888}.right_t2_d[data-v-55790ccc]:hover{opacity:.8;cursor:pointer;-webkit-box-shadow:0 0 5px #000;box-shadow:0 0 5px #000}.right_t2_d>span[data-v-55790ccc]:hover{color:#2679ec}.right_t3_d[data-v-55790ccc]{width:329px;height:284px;background:#fff;opacity:1;border-radius:2px;margin-top:16px}.text[data-v-55790ccc]{font-size:14px;padding-bottom:20px;border-bottom:1px solid #eee}.item[data-v-55790ccc]{margin-bottom:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.item[data-v-55790ccc] .el-form-item{margin-bottom:0;width:100%}.item[data-v-55790ccc] .el-form-item .el-form-item__content{line-height:normal}.item[data-v-55790ccc] .el-form-item .el-form-item__content .el-input{font-size:14px}.item[data-v-55790ccc] .el-form-item .el-form-item__content .el-input input{border-color:transparent}.item[data-v-55790ccc] .el-form-item .el-form-item__content .el-input.edit{border:1px solid #dcdfe6}.clearfix[data-v-55790ccc]:after,.clearfix[data-v-55790ccc]:before{display:table;content:\"\"}.clearfix[data-v-55790ccc]:after{clear:both}.profile[data-v-55790ccc]{padding-bottom:18px;border-bottom:3px solid #2679ec;font-size:16px;color:#333}.upload-demo[data-v-55790ccc] .el-button--small{padding:4px 7px}.upload-demo[data-v-55790ccc]{margin-left:2px}.w7-dialog .ownership[data-v-55790ccc]{padding-left:105px!important}.header_bg_box[data-v-1cccdd02]{width:1200px;height:100px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.avg[data-v-1cccdd02],.header_bg_box[data-v-1cccdd02]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.avg[data-v-1cccdd02]{width:110px;height:110px;border-radius:50%;background:#fff;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;overflow:hidden}.avg[data-v-1cccdd02] .avatar-uploader{width:100%;height:100%}.avg[data-v-1cccdd02] .avatar-uploader .el-upload{width:100%;height:100%;position:relative}.avg[data-v-1cccdd02] .avatar-uploader .el-upload:hover .upload-shadow{display:-webkit-box;display:-ms-flexbox;display:flex}.avg[data-v-1cccdd02] .avatar-uploader .el-upload .avatar{width:100%;height:100%;border-radius:50%}.avg[data-v-1cccdd02] .avatar-uploader .el-upload .upload-shadow{position:absolute;width:110px;height:110px;background-color:rgba(0,0,0,.5);left:0;top:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;font-size:14px;display:none}.user_info[data-v-1cccdd02]{margin-left:32px}.user_info_name[data-v-1cccdd02]{font-size:24px;font-family:PingFang SC Medium;color:#fff;letter-spacing:3px;opacity:1}.user_info_w7[data-v-1cccdd02]{margin-top:21px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.user_info_w7>span[data-v-1cccdd02]:first-child{font-size:14px;font-family:PingFang SC Light;line-height:20px;color:#fff;opacity:.8}.user_info_w7>span[data-v-1cccdd02]:nth-child(2){margin-left:14px;font-size:20px;font-family:PingFang SC Medium;line-height:28px;color:#fff;opacity:1}.user_info_w7>span[data-v-1cccdd02]:nth-child(3){margin-left:25px}.user_info_w7>span[data-v-1cccdd02]:nth-child(4){height:20px;font-size:14px;font-family:PingFang SC Light;line-height:20px;color:#fff;opacity:.8}.header_bg[data-v-44dd2dcb]{width:100%;height:220px;background:url(../img/banner.6b909abc.png) no-repeat 50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.content[data-v-44dd2dcb]{width:1200px;margin:15px auto 0;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:600px;margin-bottom:50px}.content .container-left[data-v-44dd2dcb]{width:calc(100% - 345px)}.content .container-right[data-v-44dd2dcb]{width:330px}"
  },
  {
    "path": "public/css/chunk-vendors.1603aa5b.css",
    "content": ".el-pagination--small .arrow.disabled,.el-table--hidden,.el-table .hidden-columns,.el-table td.is-hidden>*,.el-table th.is-hidden>*{visibility:hidden}.el-input__suffix,.el-tree.is-dragging .el-tree-node__content *{pointer-events:none}.el-dropdown .el-dropdown-selfdefine:focus:active,.el-dropdown .el-dropdown-selfdefine:focus:not(.focusing),.el-message__closeBtn:focus,.el-message__content:focus,.el-popover:focus,.el-popover:focus:active,.el-popover__reference:focus:hover,.el-popover__reference:focus:not(.focusing),.el-rate:active,.el-rate:focus,.el-tooltip:focus:hover,.el-tooltip:focus:not(.focusing),.el-upload-list__item.is-success:active,.el-upload-list__item.is-success:not(.focusing):focus{outline-width:0}@font-face{font-family:element-icons;src:url(../fonts/element-icons.535877f5.woff) format(\"woff\"),url(../fonts/element-icons.732389de.ttf) format(\"truetype\");font-weight:400;font-display:\"auto\";font-style:normal}[class*=\" el-icon-\"],[class^=el-icon-]{font-family:element-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;vertical-align:baseline;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-icon-ice-cream-round:before{content:\"\\E6A0\"}.el-icon-ice-cream-square:before{content:\"\\E6A3\"}.el-icon-lollipop:before{content:\"\\E6A4\"}.el-icon-potato-strips:before{content:\"\\E6A5\"}.el-icon-milk-tea:before{content:\"\\E6A6\"}.el-icon-ice-drink:before{content:\"\\E6A7\"}.el-icon-ice-tea:before{content:\"\\E6A9\"}.el-icon-coffee:before{content:\"\\E6AA\"}.el-icon-orange:before{content:\"\\E6AB\"}.el-icon-pear:before{content:\"\\E6AC\"}.el-icon-apple:before{content:\"\\E6AD\"}.el-icon-cherry:before{content:\"\\E6AE\"}.el-icon-watermelon:before{content:\"\\E6AF\"}.el-icon-grape:before{content:\"\\E6B0\"}.el-icon-refrigerator:before{content:\"\\E6B1\"}.el-icon-goblet-square-full:before{content:\"\\E6B2\"}.el-icon-goblet-square:before{content:\"\\E6B3\"}.el-icon-goblet-full:before{content:\"\\E6B4\"}.el-icon-goblet:before{content:\"\\E6B5\"}.el-icon-cold-drink:before{content:\"\\E6B6\"}.el-icon-coffee-cup:before{content:\"\\E6B8\"}.el-icon-water-cup:before{content:\"\\E6B9\"}.el-icon-hot-water:before{content:\"\\E6BA\"}.el-icon-ice-cream:before{content:\"\\E6BB\"}.el-icon-dessert:before{content:\"\\E6BC\"}.el-icon-sugar:before{content:\"\\E6BD\"}.el-icon-tableware:before{content:\"\\E6BE\"}.el-icon-burger:before{content:\"\\E6BF\"}.el-icon-knife-fork:before{content:\"\\E6C1\"}.el-icon-fork-spoon:before{content:\"\\E6C2\"}.el-icon-chicken:before{content:\"\\E6C3\"}.el-icon-food:before{content:\"\\E6C4\"}.el-icon-dish-1:before{content:\"\\E6C5\"}.el-icon-dish:before{content:\"\\E6C6\"}.el-icon-moon-night:before{content:\"\\E6EE\"}.el-icon-moon:before{content:\"\\E6F0\"}.el-icon-cloudy-and-sunny:before{content:\"\\E6F1\"}.el-icon-partly-cloudy:before{content:\"\\E6F2\"}.el-icon-cloudy:before{content:\"\\E6F3\"}.el-icon-sunny:before{content:\"\\E6F6\"}.el-icon-sunset:before{content:\"\\E6F7\"}.el-icon-sunrise-1:before{content:\"\\E6F8\"}.el-icon-sunrise:before{content:\"\\E6F9\"}.el-icon-heavy-rain:before{content:\"\\E6FA\"}.el-icon-lightning:before{content:\"\\E6FB\"}.el-icon-light-rain:before{content:\"\\E6FC\"}.el-icon-wind-power:before{content:\"\\E6FD\"}.el-icon-baseball:before{content:\"\\E712\"}.el-icon-soccer:before{content:\"\\E713\"}.el-icon-football:before{content:\"\\E715\"}.el-icon-basketball:before{content:\"\\E716\"}.el-icon-ship:before{content:\"\\E73F\"}.el-icon-truck:before{content:\"\\E740\"}.el-icon-bicycle:before{content:\"\\E741\"}.el-icon-mobile-phone:before{content:\"\\E6D3\"}.el-icon-service:before{content:\"\\E6D4\"}.el-icon-key:before{content:\"\\E6E2\"}.el-icon-unlock:before{content:\"\\E6E4\"}.el-icon-lock:before{content:\"\\E6E5\"}.el-icon-watch:before{content:\"\\E6FE\"}.el-icon-watch-1:before{content:\"\\E6FF\"}.el-icon-timer:before{content:\"\\E702\"}.el-icon-alarm-clock:before{content:\"\\E703\"}.el-icon-map-location:before{content:\"\\E704\"}.el-icon-delete-location:before{content:\"\\E705\"}.el-icon-add-location:before{content:\"\\E706\"}.el-icon-location-information:before{content:\"\\E707\"}.el-icon-location-outline:before{content:\"\\E708\"}.el-icon-location:before{content:\"\\E79E\"}.el-icon-place:before{content:\"\\E709\"}.el-icon-discover:before{content:\"\\E70A\"}.el-icon-first-aid-kit:before{content:\"\\E70B\"}.el-icon-trophy-1:before{content:\"\\E70C\"}.el-icon-trophy:before{content:\"\\E70D\"}.el-icon-medal:before{content:\"\\E70E\"}.el-icon-medal-1:before{content:\"\\E70F\"}.el-icon-stopwatch:before{content:\"\\E710\"}.el-icon-mic:before{content:\"\\E711\"}.el-icon-copy-document:before{content:\"\\E718\"}.el-icon-full-screen:before{content:\"\\E719\"}.el-icon-switch-button:before{content:\"\\E71B\"}.el-icon-aim:before{content:\"\\E71C\"}.el-icon-crop:before{content:\"\\E71D\"}.el-icon-odometer:before{content:\"\\E71E\"}.el-icon-time:before{content:\"\\E71F\"}.el-icon-bangzhu:before{content:\"\\E724\"}.el-icon-close-notification:before{content:\"\\E726\"}.el-icon-microphone:before{content:\"\\E727\"}.el-icon-turn-off-microphone:before{content:\"\\E728\"}.el-icon-position:before{content:\"\\E729\"}.el-icon-postcard:before{content:\"\\E72A\"}.el-icon-message:before{content:\"\\E72B\"}.el-icon-chat-line-square:before{content:\"\\E72D\"}.el-icon-chat-dot-square:before{content:\"\\E72E\"}.el-icon-chat-dot-round:before{content:\"\\E72F\"}.el-icon-chat-square:before{content:\"\\E730\"}.el-icon-chat-line-round:before{content:\"\\E731\"}.el-icon-chat-round:before{content:\"\\E732\"}.el-icon-set-up:before{content:\"\\E733\"}.el-icon-turn-off:before{content:\"\\E734\"}.el-icon-open:before{content:\"\\E735\"}.el-icon-connection:before{content:\"\\E736\"}.el-icon-link:before{content:\"\\E737\"}.el-icon-cpu:before{content:\"\\E738\"}.el-icon-thumb:before{content:\"\\E739\"}.el-icon-female:before{content:\"\\E73A\"}.el-icon-male:before{content:\"\\E73B\"}.el-icon-guide:before{content:\"\\E73C\"}.el-icon-news:before{content:\"\\E73E\"}.el-icon-price-tag:before{content:\"\\E744\"}.el-icon-discount:before{content:\"\\E745\"}.el-icon-wallet:before{content:\"\\E747\"}.el-icon-coin:before{content:\"\\E748\"}.el-icon-money:before{content:\"\\E749\"}.el-icon-bank-card:before{content:\"\\E74A\"}.el-icon-box:before{content:\"\\E74B\"}.el-icon-present:before{content:\"\\E74C\"}.el-icon-sell:before{content:\"\\E6D5\"}.el-icon-sold-out:before{content:\"\\E6D6\"}.el-icon-shopping-bag-2:before{content:\"\\E74D\"}.el-icon-shopping-bag-1:before{content:\"\\E74E\"}.el-icon-shopping-cart-2:before{content:\"\\E74F\"}.el-icon-shopping-cart-1:before{content:\"\\E750\"}.el-icon-shopping-cart-full:before{content:\"\\E751\"}.el-icon-smoking:before{content:\"\\E752\"}.el-icon-no-smoking:before{content:\"\\E753\"}.el-icon-house:before{content:\"\\E754\"}.el-icon-table-lamp:before{content:\"\\E755\"}.el-icon-school:before{content:\"\\E756\"}.el-icon-office-building:before{content:\"\\E757\"}.el-icon-toilet-paper:before{content:\"\\E758\"}.el-icon-notebook-2:before{content:\"\\E759\"}.el-icon-notebook-1:before{content:\"\\E75A\"}.el-icon-files:before{content:\"\\E75B\"}.el-icon-collection:before{content:\"\\E75C\"}.el-icon-receiving:before{content:\"\\E75D\"}.el-icon-suitcase-1:before{content:\"\\E760\"}.el-icon-suitcase:before{content:\"\\E761\"}.el-icon-film:before{content:\"\\E763\"}.el-icon-collection-tag:before{content:\"\\E765\"}.el-icon-data-analysis:before{content:\"\\E766\"}.el-icon-pie-chart:before{content:\"\\E767\"}.el-icon-data-board:before{content:\"\\E768\"}.el-icon-data-line:before{content:\"\\E76D\"}.el-icon-reading:before{content:\"\\E769\"}.el-icon-magic-stick:before{content:\"\\E76A\"}.el-icon-coordinate:before{content:\"\\E76B\"}.el-icon-mouse:before{content:\"\\E76C\"}.el-icon-brush:before{content:\"\\E76E\"}.el-icon-headset:before{content:\"\\E76F\"}.el-icon-umbrella:before{content:\"\\E770\"}.el-icon-scissors:before{content:\"\\E771\"}.el-icon-mobile:before{content:\"\\E773\"}.el-icon-attract:before{content:\"\\E774\"}.el-icon-monitor:before{content:\"\\E775\"}.el-icon-search:before{content:\"\\E778\"}.el-icon-takeaway-box:before{content:\"\\E77A\"}.el-icon-paperclip:before{content:\"\\E77D\"}.el-icon-printer:before{content:\"\\E77E\"}.el-icon-document-add:before{content:\"\\E782\"}.el-icon-document:before{content:\"\\E785\"}.el-icon-document-checked:before{content:\"\\E786\"}.el-icon-document-copy:before{content:\"\\E787\"}.el-icon-document-delete:before{content:\"\\E788\"}.el-icon-document-remove:before{content:\"\\E789\"}.el-icon-tickets:before{content:\"\\E78B\"}.el-icon-folder-checked:before{content:\"\\E77F\"}.el-icon-folder-delete:before{content:\"\\E780\"}.el-icon-folder-remove:before{content:\"\\E781\"}.el-icon-folder-add:before{content:\"\\E783\"}.el-icon-folder-opened:before{content:\"\\E784\"}.el-icon-folder:before{content:\"\\E78A\"}.el-icon-edit-outline:before{content:\"\\E764\"}.el-icon-edit:before{content:\"\\E78C\"}.el-icon-date:before{content:\"\\E78E\"}.el-icon-c-scale-to-original:before{content:\"\\E7C6\"}.el-icon-view:before{content:\"\\E6CE\"}.el-icon-loading:before{content:\"\\E6CF\"}.el-icon-rank:before{content:\"\\E6D1\"}.el-icon-sort-down:before{content:\"\\E7C4\"}.el-icon-sort-up:before{content:\"\\E7C5\"}.el-icon-sort:before{content:\"\\E6D2\"}.el-icon-finished:before{content:\"\\E6CD\"}.el-icon-refresh-left:before{content:\"\\E6C7\"}.el-icon-refresh-right:before{content:\"\\E6C8\"}.el-icon-refresh:before{content:\"\\E6D0\"}.el-icon-video-play:before{content:\"\\E7C0\"}.el-icon-video-pause:before{content:\"\\E7C1\"}.el-icon-d-arrow-right:before{content:\"\\E6DC\"}.el-icon-d-arrow-left:before{content:\"\\E6DD\"}.el-icon-arrow-up:before{content:\"\\E6E1\"}.el-icon-arrow-down:before{content:\"\\E6DF\"}.el-icon-arrow-right:before{content:\"\\E6E0\"}.el-icon-arrow-left:before{content:\"\\E6DE\"}.el-icon-top-right:before{content:\"\\E6E7\"}.el-icon-top-left:before{content:\"\\E6E8\"}.el-icon-top:before{content:\"\\E6E6\"}.el-icon-bottom:before{content:\"\\E6EB\"}.el-icon-right:before{content:\"\\E6E9\"}.el-icon-back:before{content:\"\\E6EA\"}.el-icon-bottom-right:before{content:\"\\E6EC\"}.el-icon-bottom-left:before{content:\"\\E6ED\"}.el-icon-caret-top:before{content:\"\\E78F\"}.el-icon-caret-bottom:before{content:\"\\E790\"}.el-icon-caret-right:before{content:\"\\E791\"}.el-icon-caret-left:before{content:\"\\E792\"}.el-icon-d-caret:before{content:\"\\E79A\"}.el-icon-share:before{content:\"\\E793\"}.el-icon-menu:before{content:\"\\E798\"}.el-icon-s-grid:before{content:\"\\E7A6\"}.el-icon-s-check:before{content:\"\\E7A7\"}.el-icon-s-data:before{content:\"\\E7A8\"}.el-icon-s-opportunity:before{content:\"\\E7AA\"}.el-icon-s-custom:before{content:\"\\E7AB\"}.el-icon-s-claim:before{content:\"\\E7AD\"}.el-icon-s-finance:before{content:\"\\E7AE\"}.el-icon-s-comment:before{content:\"\\E7AF\"}.el-icon-s-flag:before{content:\"\\E7B0\"}.el-icon-s-marketing:before{content:\"\\E7B1\"}.el-icon-s-shop:before{content:\"\\E7B4\"}.el-icon-s-open:before{content:\"\\E7B5\"}.el-icon-s-management:before{content:\"\\E7B6\"}.el-icon-s-ticket:before{content:\"\\E7B7\"}.el-icon-s-release:before{content:\"\\E7B8\"}.el-icon-s-home:before{content:\"\\E7B9\"}.el-icon-s-promotion:before{content:\"\\E7BA\"}.el-icon-s-operation:before{content:\"\\E7BB\"}.el-icon-s-unfold:before{content:\"\\E7BC\"}.el-icon-s-fold:before{content:\"\\E7A9\"}.el-icon-s-platform:before{content:\"\\E7BD\"}.el-icon-s-order:before{content:\"\\E7BE\"}.el-icon-s-cooperation:before{content:\"\\E7BF\"}.el-icon-bell:before{content:\"\\E725\"}.el-icon-message-solid:before{content:\"\\E799\"}.el-icon-video-camera:before{content:\"\\E772\"}.el-icon-video-camera-solid:before{content:\"\\E796\"}.el-icon-camera:before{content:\"\\E779\"}.el-icon-camera-solid:before{content:\"\\E79B\"}.el-icon-download:before{content:\"\\E77C\"}.el-icon-upload2:before{content:\"\\E77B\"}.el-icon-upload:before{content:\"\\E7C3\"}.el-icon-picture-outline-round:before{content:\"\\E75F\"}.el-icon-picture-outline:before{content:\"\\E75E\"}.el-icon-picture:before{content:\"\\E79F\"}.el-icon-close:before{content:\"\\E6DB\"}.el-icon-check:before{content:\"\\E6DA\"}.el-icon-plus:before{content:\"\\E6D9\"}.el-icon-minus:before{content:\"\\E6D8\"}.el-icon-help:before{content:\"\\E73D\"}.el-icon-s-help:before{content:\"\\E7B3\"}.el-icon-circle-close:before{content:\"\\E78D\"}.el-icon-circle-check:before{content:\"\\E720\"}.el-icon-circle-plus-outline:before{content:\"\\E723\"}.el-icon-remove-outline:before{content:\"\\E722\"}.el-icon-zoom-out:before{content:\"\\E776\"}.el-icon-zoom-in:before{content:\"\\E777\"}.el-icon-error:before{content:\"\\E79D\"}.el-icon-success:before{content:\"\\E79C\"}.el-icon-circle-plus:before{content:\"\\E7A0\"}.el-icon-remove:before{content:\"\\E7A2\"}.el-icon-info:before{content:\"\\E7A1\"}.el-icon-question:before{content:\"\\E7A4\"}.el-icon-warning-outline:before{content:\"\\E6C9\"}.el-icon-warning:before{content:\"\\E7A3\"}.el-icon-goods:before{content:\"\\E7C2\"}.el-icon-s-goods:before{content:\"\\E7B2\"}.el-icon-star-off:before{content:\"\\E717\"}.el-icon-star-on:before{content:\"\\E797\"}.el-icon-more-outline:before{content:\"\\E6CC\"}.el-icon-more:before{content:\"\\E794\"}.el-icon-phone-outline:before{content:\"\\E6CB\"}.el-icon-phone:before{content:\"\\E795\"}.el-icon-user:before{content:\"\\E6E3\"}.el-icon-user-solid:before{content:\"\\E7A5\"}.el-icon-setting:before{content:\"\\E6CA\"}.el-icon-s-tools:before{content:\"\\E7AC\"}.el-icon-delete:before{content:\"\\E6D7\"}.el-icon-delete-solid:before{content:\"\\E7C9\"}.el-icon-eleme:before{content:\"\\E7C7\"}.el-icon-platform-eleme:before{content:\"\\E7CA\"}.el-icon-loading{-webkit-animation:rotating 2s linear infinite;animation:rotating 2s linear infinite}.el-icon--right{margin-left:5px}.el-icon--left{margin-right:5px}@-webkit-keyframes rotating{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes rotating{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.el-pagination{white-space:nowrap;padding:2px 5px;color:#303133;font-weight:700}.el-pagination:after,.el-pagination:before{display:table;content:\"\"}.el-pagination:after{clear:both}.el-pagination button,.el-pagination span:not([class*=suffix]){display:inline-block;font-size:13px;min-width:35.5px;height:28px;line-height:28px;vertical-align:top;-webkit-box-sizing:border-box;box-sizing:border-box}.el-pagination .el-input__inner{text-align:center;-moz-appearance:textfield;line-height:normal}.el-pagination .el-input__suffix{right:0;-webkit-transform:scale(.8);transform:scale(.8)}.el-pagination .el-select .el-input{width:100px;margin:0 5px}.el-pagination .el-select .el-input .el-input__inner{padding-right:25px;border-radius:3px}.el-pagination button{border:none;padding:0 6px;background:0 0}.el-pagination button:focus{outline:0}.el-pagination button:hover{color:#409eff}.el-pagination button:disabled{color:#c0c4cc;background-color:#fff;cursor:not-allowed}.el-pagination .btn-next,.el-pagination .btn-prev{background:50% no-repeat #fff;background-size:16px;cursor:pointer;margin:0;color:#303133}.el-pagination .btn-next .el-icon,.el-pagination .btn-prev .el-icon{display:block;font-size:12px;font-weight:700}.el-pagination .btn-prev{padding-right:12px}.el-pagination .btn-next{padding-left:12px}.el-pagination .el-pager li.disabled{color:#c0c4cc;cursor:not-allowed}.el-pager li,.el-pager li.btn-quicknext:hover,.el-pager li.btn-quickprev:hover{cursor:pointer}.el-pagination--small .btn-next,.el-pagination--small .btn-prev,.el-pagination--small .el-pager li,.el-pagination--small .el-pager li.btn-quicknext,.el-pagination--small .el-pager li.btn-quickprev,.el-pagination--small .el-pager li:last-child{border-color:transparent;font-size:12px;line-height:22px;height:22px;min-width:22px}.el-pagination--small .more:before,.el-pagination--small li.more:before{line-height:24px}.el-pagination--small button,.el-pagination--small span:not([class*=suffix]){height:22px;line-height:22px}.el-pagination--small .el-pagination__editor,.el-pagination--small .el-pagination__editor.el-input .el-input__inner{height:22px}.el-pagination__sizes{margin:0 10px 0 0;font-weight:400;color:#606266}.el-pagination__sizes .el-input .el-input__inner{font-size:13px;padding-left:8px}.el-pagination__sizes .el-input .el-input__inner:hover{border-color:#409eff}.el-pagination__total{margin-right:10px;font-weight:400;color:#606266}.el-pagination__jump{margin-left:24px;font-weight:400;color:#606266}.el-pagination__jump .el-input__inner{padding:0 3px}.el-pagination__rightwrapper{float:right}.el-pagination__editor{line-height:18px;padding:0 2px;height:28px;text-align:center;margin:0 2px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:3px}.el-pager,.el-pagination.is-background .btn-next,.el-pagination.is-background .btn-prev{padding:0}.el-pagination__editor.el-input{width:50px}.el-pagination__editor.el-input .el-input__inner{height:28px}.el-pagination__editor .el-input__inner::-webkit-inner-spin-button,.el-pagination__editor .el-input__inner::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.el-pagination.is-background .btn-next,.el-pagination.is-background .btn-prev,.el-pagination.is-background .el-pager li{margin:0 5px;background-color:#f4f4f5;color:#606266;min-width:30px;border-radius:2px}.el-pagination.is-background .btn-next.disabled,.el-pagination.is-background .btn-next:disabled,.el-pagination.is-background .btn-prev.disabled,.el-pagination.is-background .btn-prev:disabled,.el-pagination.is-background .el-pager li.disabled{color:#c0c4cc}.el-pagination.is-background .el-pager li:not(.disabled):hover{color:#409eff}.el-pagination.is-background .el-pager li:not(.disabled).active{background-color:#409eff;color:#fff}.el-dialog,.el-pager li{background:#fff;-webkit-box-sizing:border-box}.el-pagination.is-background.el-pagination--small .btn-next,.el-pagination.is-background.el-pagination--small .btn-prev,.el-pagination.is-background.el-pagination--small .el-pager li{margin:0 3px;min-width:22px}.el-pager,.el-pager li{vertical-align:top;margin:0;display:inline-block}.el-pager{-ms-user-select:none;user-select:none;list-style:none;font-size:0}.el-date-table,.el-pager,.el-table th{-webkit-user-select:none;-moz-user-select:none}.el-pager .more:before{line-height:30px}.el-pager li{padding:0 4px;font-size:13px;min-width:35.5px;height:28px;line-height:28px;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center}.el-menu--collapse .el-menu .el-submenu,.el-menu--popup{min-width:200px}.el-pager li.btn-quicknext,.el-pager li.btn-quickprev{line-height:28px;color:#303133}.el-pager li.btn-quicknext.disabled,.el-pager li.btn-quickprev.disabled{color:#c0c4cc}.el-pager li.active+li{border-left:0}.el-pager li:hover{color:#409eff}.el-pager li.active{color:#409eff;cursor:default}@-webkit-keyframes v-modal-in{0%{opacity:0}}@-webkit-keyframes v-modal-out{to{opacity:0}}.el-dialog{position:relative;margin:0 auto 50px;border-radius:2px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.3);box-shadow:0 1px 3px rgba(0,0,0,.3);-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.el-dialog.is-fullscreen{width:100%;margin-top:0;margin-bottom:0;height:100%;overflow:auto}.el-dialog__wrapper{position:fixed;top:0;right:0;bottom:0;left:0;overflow:auto;margin:0}.el-dialog__header{padding:20px 20px 10px}.el-dialog__headerbtn{position:absolute;top:20px;right:20px;padding:0;background:0 0;border:none;outline:0;cursor:pointer;font-size:16px}.el-dialog__headerbtn .el-dialog__close{color:#909399}.el-dialog__headerbtn:focus .el-dialog__close,.el-dialog__headerbtn:hover .el-dialog__close{color:#409eff}.el-dialog__title{line-height:24px;font-size:18px;color:#303133}.el-dialog__body{padding:30px 20px;color:#606266;font-size:14px;word-break:break-all}.el-dialog__footer{padding:10px 20px 20px;text-align:right;-webkit-box-sizing:border-box;box-sizing:border-box}.el-dialog--center{text-align:center}.el-dialog--center .el-dialog__body{text-align:initial;padding:25px 25px 30px}.el-dialog--center .el-dialog__footer{text-align:inherit}.dialog-fade-enter-active{-webkit-animation:dialog-fade-in .3s;animation:dialog-fade-in .3s}.dialog-fade-leave-active{-webkit-animation:dialog-fade-out .3s;animation:dialog-fade-out .3s}@-webkit-keyframes dialog-fade-in{0%{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes dialog-fade-in{0%{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@-webkit-keyframes dialog-fade-out{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}}@keyframes dialog-fade-out{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}}.el-autocomplete{position:relative;display:inline-block}.el-autocomplete-suggestion{margin:5px 0;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);border-radius:4px;border:1px solid #e4e7ed;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#fff}.el-dropdown-menu,.el-menu--collapse .el-submenu .el-menu{z-index:10;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-autocomplete-suggestion__wrap{max-height:280px;padding:10px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.el-autocomplete-suggestion__list{margin:0;padding:0}.el-autocomplete-suggestion li{padding:0 20px;margin:0;line-height:34px;cursor:pointer;color:#606266;font-size:14px;list-style:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.el-autocomplete-suggestion li.highlighted,.el-autocomplete-suggestion li:hover{background-color:#f5f7fa}.el-autocomplete-suggestion li.divider{margin-top:6px;border-top:1px solid #000}.el-autocomplete-suggestion li.divider:last-child{margin-bottom:-6px}.el-autocomplete-suggestion.is-loading li{text-align:center;height:100px;line-height:100px;font-size:20px;color:#999}.el-autocomplete-suggestion.is-loading li:after{display:inline-block;content:\"\";height:100%;vertical-align:middle}.el-autocomplete-suggestion.is-loading li:hover{background-color:#fff}.el-autocomplete-suggestion.is-loading .el-icon-loading{vertical-align:middle}.el-dropdown{display:inline-block;position:relative;color:#606266;font-size:14px}.el-dropdown .el-button-group{display:block}.el-dropdown .el-button-group .el-button{float:none}.el-dropdown .el-dropdown__caret-button{padding-left:5px;padding-right:5px;position:relative;border-left:none}.el-dropdown .el-dropdown__caret-button:before{content:\"\";position:absolute;display:block;width:1px;top:5px;bottom:5px;left:0;background:hsla(0,0%,100%,.5)}.el-dropdown .el-dropdown__caret-button.el-button--default:before{background:rgba(220,223,230,.5)}.el-dropdown .el-dropdown__caret-button:hover:before{top:0;bottom:0}.el-dropdown .el-dropdown__caret-button .el-dropdown__icon{padding-left:0}.el-dropdown__icon{font-size:12px;margin:0 3px}.el-dropdown-menu{position:absolute;top:0;left:0;padding:10px 0;margin:5px 0;background-color:#fff;border:1px solid #ebeef5;border-radius:4px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-dropdown-menu__item{list-style:none;line-height:36px;padding:0 20px;margin:0;font-size:14px;color:#606266;cursor:pointer;outline:0}.el-dropdown-menu__item:focus,.el-dropdown-menu__item:not(.is-disabled):hover{background-color:#ecf5ff;color:#66b1ff}.el-dropdown-menu__item i{margin-right:5px}.el-dropdown-menu__item--divided{position:relative;margin-top:6px;border-top:1px solid #ebeef5}.el-dropdown-menu__item--divided:before{content:\"\";height:6px;display:block;margin:0 -20px;background-color:#fff}.el-dropdown-menu__item.is-disabled{cursor:default;color:#bbb;pointer-events:none}.el-dropdown-menu--medium{padding:6px 0}.el-dropdown-menu--medium .el-dropdown-menu__item{line-height:30px;padding:0 17px;font-size:14px}.el-dropdown-menu--medium .el-dropdown-menu__item.el-dropdown-menu__item--divided{margin-top:6px}.el-dropdown-menu--medium .el-dropdown-menu__item.el-dropdown-menu__item--divided:before{height:6px;margin:0 -17px}.el-dropdown-menu--small{padding:6px 0}.el-dropdown-menu--small .el-dropdown-menu__item{line-height:27px;padding:0 15px;font-size:13px}.el-dropdown-menu--small .el-dropdown-menu__item.el-dropdown-menu__item--divided{margin-top:4px}.el-dropdown-menu--small .el-dropdown-menu__item.el-dropdown-menu__item--divided:before{height:4px;margin:0 -15px}.el-dropdown-menu--mini{padding:3px 0}.el-dropdown-menu--mini .el-dropdown-menu__item{line-height:24px;padding:0 10px;font-size:12px}.el-dropdown-menu--mini .el-dropdown-menu__item.el-dropdown-menu__item--divided{margin-top:3px}.el-dropdown-menu--mini .el-dropdown-menu__item.el-dropdown-menu__item--divided:before{height:3px;margin:0 -10px}.el-menu{border-right:1px solid #e6e6e6;list-style:none;position:relative;margin:0;padding-left:0}.el-menu,.el-menu--horizontal>.el-menu-item:not(.is-disabled):focus,.el-menu--horizontal>.el-menu-item:not(.is-disabled):hover,.el-menu--horizontal>.el-submenu .el-submenu__title:hover{background-color:#fff}.el-menu:after,.el-menu:before{display:table;content:\"\"}.el-menu:after{clear:both}.el-menu.el-menu--horizontal{border-bottom:1px solid #e6e6e6}.el-menu--horizontal{border-right:none}.el-menu--horizontal>.el-menu-item{float:left;height:60px;line-height:60px;margin:0;border-bottom:2px solid transparent;color:#909399}.el-menu--horizontal>.el-menu-item a,.el-menu--horizontal>.el-menu-item a:hover{color:inherit}.el-menu--horizontal>.el-submenu{float:left}.el-menu--horizontal>.el-submenu:focus,.el-menu--horizontal>.el-submenu:hover{outline:0}.el-menu--horizontal>.el-submenu:focus .el-submenu__title,.el-menu--horizontal>.el-submenu:hover .el-submenu__title{color:#303133}.el-menu--horizontal>.el-submenu.is-active .el-submenu__title{border-bottom:2px solid #409eff;color:#303133}.el-menu--horizontal>.el-submenu .el-submenu__title{height:60px;line-height:60px;border-bottom:2px solid transparent;color:#909399}.el-menu--horizontal>.el-submenu .el-submenu__icon-arrow{position:static;vertical-align:middle;margin-left:8px;margin-top:-3px}.el-menu--horizontal .el-menu .el-menu-item,.el-menu--horizontal .el-menu .el-submenu__title{background-color:#fff;float:none;height:36px;line-height:36px;padding:0 10px;color:#909399}.el-menu--horizontal .el-menu .el-menu-item.is-active,.el-menu--horizontal .el-menu .el-submenu.is-active>.el-submenu__title{color:#303133}.el-menu--horizontal .el-menu-item:not(.is-disabled):focus,.el-menu--horizontal .el-menu-item:not(.is-disabled):hover{outline:0;color:#303133}.el-menu--horizontal>.el-menu-item.is-active{border-bottom:2px solid #409eff;color:#303133}.el-menu--collapse{width:64px}.el-menu--collapse>.el-menu-item [class^=el-icon-],.el-menu--collapse>.el-submenu>.el-submenu__title [class^=el-icon-]{margin:0;vertical-align:middle;width:24px;text-align:center}.el-menu--collapse>.el-menu-item .el-submenu__icon-arrow,.el-menu--collapse>.el-submenu>.el-submenu__title .el-submenu__icon-arrow{display:none}.el-menu--collapse>.el-menu-item span,.el-menu--collapse>.el-submenu>.el-submenu__title span{height:0;width:0;overflow:hidden;visibility:hidden;display:inline-block}.el-menu--collapse>.el-menu-item.is-active i{color:inherit}.el-menu--collapse .el-submenu{position:relative}.el-menu--collapse .el-submenu .el-menu{position:absolute;margin-left:5px;top:0;left:100%;border:1px solid #e4e7ed;border-radius:2px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-menu-item,.el-submenu__title{height:56px;line-height:56px;position:relative;-webkit-box-sizing:border-box;white-space:nowrap;list-style:none}.el-menu--collapse .el-submenu.is-opened>.el-submenu__title .el-submenu__icon-arrow{-webkit-transform:none;transform:none}.el-menu--popup{z-index:100;border:none;padding:5px 0;border-radius:2px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-menu--popup-bottom-start{margin-top:5px}.el-menu--popup-right-start{margin-left:5px;margin-right:5px}.el-menu-item{font-size:14px;color:#303133;padding:0 20px;cursor:pointer;-webkit-transition:border-color .3s,background-color .3s,color .3s;transition:border-color .3s,background-color .3s,color .3s;-webkit-box-sizing:border-box;box-sizing:border-box}.el-menu-item *{vertical-align:middle}.el-menu-item i{color:#909399}.el-menu-item:focus,.el-menu-item:hover{outline:0;background-color:#ecf5ff}.el-menu-item.is-disabled{opacity:.25;cursor:not-allowed;background:0 0!important}.el-menu-item [class^=el-icon-]{margin-right:5px;width:24px;text-align:center;font-size:18px;vertical-align:middle}.el-menu-item.is-active{color:#409eff}.el-menu-item.is-active i{color:inherit}.el-submenu{list-style:none;margin:0;padding-left:0}.el-submenu__title{font-size:14px;color:#303133;padding:0 20px;cursor:pointer;-webkit-transition:border-color .3s,background-color .3s,color .3s;transition:border-color .3s,background-color .3s,color .3s;-webkit-box-sizing:border-box;box-sizing:border-box}.el-submenu__title *{vertical-align:middle}.el-submenu__title i{color:#909399}.el-submenu__title:focus,.el-submenu__title:hover{outline:0;background-color:#ecf5ff}.el-submenu__title.is-disabled{opacity:.25;cursor:not-allowed;background:0 0!important}.el-submenu__title:hover{background-color:#ecf5ff}.el-submenu .el-menu{border:none}.el-submenu .el-menu-item{height:50px;line-height:50px;padding:0 45px;min-width:200px}.el-submenu__icon-arrow{position:absolute;top:50%;right:20px;margin-top:-7px;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;font-size:12px}.el-submenu.is-active .el-submenu__title{border-bottom-color:#409eff}.el-submenu.is-opened>.el-submenu__title .el-submenu__icon-arrow{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.el-submenu.is-disabled .el-menu-item,.el-submenu.is-disabled .el-submenu__title{opacity:.25;cursor:not-allowed;background:0 0!important}.el-submenu [class^=el-icon-]{vertical-align:middle;margin-right:5px;width:24px;text-align:center;font-size:18px}.el-menu-item-group>ul{padding:0}.el-menu-item-group__title{padding:7px 0 7px 20px;line-height:normal;font-size:12px;color:#909399}.el-radio-button__inner,.el-radio-group{display:inline-block;line-height:1;vertical-align:middle}.horizontal-collapse-transition .el-submenu__title .el-submenu__icon-arrow{-webkit-transition:.2s;transition:.2s;opacity:0}.el-radio-group{font-size:0}.el-radio-button{position:relative;display:inline-block;outline:0}.el-radio-button__inner{white-space:nowrap;background:#fff;border:1px solid #dcdfe6;font-weight:500;border-left:0;color:#606266;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;position:relative;cursor:pointer;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);padding:12px 20px;font-size:14px;border-radius:0}.el-radio-button__inner.is-round{padding:12px 20px}.el-radio-button__inner:hover{color:#409eff}.el-radio-button__inner [class*=el-icon-]{line-height:.9}.el-radio-button__inner [class*=el-icon-]+span{margin-left:5px}.el-radio-button:first-child .el-radio-button__inner{border-left:1px solid #dcdfe6;border-radius:4px 0 0 4px;-webkit-box-shadow:none!important;box-shadow:none!important}.el-radio-button__orig-radio{opacity:0;outline:0;position:absolute;z-index:-1}.el-radio-button__orig-radio:checked+.el-radio-button__inner{color:#fff;background-color:#409eff;border-color:#409eff;-webkit-box-shadow:-1px 0 0 0 #409eff;box-shadow:-1px 0 0 0 #409eff}.el-radio-button__orig-radio:disabled+.el-radio-button__inner{color:#c0c4cc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#ebeef5;-webkit-box-shadow:none;box-shadow:none}.el-radio-button__orig-radio:disabled:checked+.el-radio-button__inner{background-color:#f2f6fc}.el-radio-button:last-child .el-radio-button__inner{border-radius:0 4px 4px 0}.el-popover,.el-radio-button:first-child:last-child .el-radio-button__inner{border-radius:4px}.el-radio-button--medium .el-radio-button__inner{padding:10px 20px;font-size:14px;border-radius:0}.el-radio-button--medium .el-radio-button__inner.is-round{padding:10px 20px}.el-radio-button--small .el-radio-button__inner{padding:9px 15px;font-size:12px;border-radius:0}.el-radio-button--small .el-radio-button__inner.is-round{padding:9px 15px}.el-radio-button--mini .el-radio-button__inner{padding:7px 15px;font-size:12px;border-radius:0}.el-radio-button--mini .el-radio-button__inner.is-round{padding:7px 15px}.el-radio-button:focus:not(.is-focus):not(:active):not(.is-disabled){-webkit-box-shadow:0 0 2px 2px #409eff;box-shadow:0 0 2px 2px #409eff}.el-switch{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;font-size:14px;line-height:20px;height:20px;vertical-align:middle}.el-switch__core,.el-switch__label{display:inline-block;cursor:pointer}.el-switch.is-disabled .el-switch__core,.el-switch.is-disabled .el-switch__label{cursor:not-allowed}.el-switch__label{-webkit-transition:.2s;transition:.2s;height:20px;font-size:14px;font-weight:500;vertical-align:middle;color:#303133}.el-switch__label.is-active{color:#409eff}.el-switch__label--left{margin-right:10px}.el-switch__label--right{margin-left:10px}.el-switch__label *{line-height:1;font-size:14px;display:inline-block}.el-switch__input{position:absolute;width:0;height:0;opacity:0;margin:0}.el-switch__core{margin:0;position:relative;width:40px;height:20px;border:1px solid #dcdfe6;outline:0;border-radius:10px;-webkit-box-sizing:border-box;box-sizing:border-box;background:#dcdfe6;-webkit-transition:border-color .3s,background-color .3s;transition:border-color .3s,background-color .3s;vertical-align:middle}.el-switch__core:after{content:\"\";position:absolute;top:1px;left:1px;border-radius:100%;-webkit-transition:all .3s;transition:all .3s;width:16px;height:16px;background-color:#fff}.el-switch.is-checked .el-switch__core{border-color:#409eff;background-color:#409eff}.el-switch.is-checked .el-switch__core:after{left:100%;margin-left:-17px}.el-switch.is-disabled{opacity:.6}.el-switch--wide .el-switch__label.el-switch__label--left span{left:10px}.el-switch--wide .el-switch__label.el-switch__label--right span{right:10px}.el-switch .label-fade-enter,.el-switch .label-fade-leave-active{opacity:0}.el-select-dropdown{position:absolute;z-index:1001;border:1px solid #e4e7ed;border-radius:4px;background-color:#fff;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);-webkit-box-sizing:border-box;box-sizing:border-box;margin:5px 0}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected{color:#409eff;background-color:#fff}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.hover{background-color:#f5f7fa}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected:after{position:absolute;right:20px;font-family:element-icons;content:\"\\E6DA\";font-size:12px;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-select-dropdown .el-scrollbar.is-empty .el-select-dropdown__list{padding:0}.el-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:#999;font-size:14px}.el-select-dropdown__wrap{max-height:274px}.el-select-dropdown__list{list-style:none;padding:6px 0;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box}.el-select-dropdown__item{font-size:14px;padding:0 20px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#606266;height:34px;line-height:34px;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer}.el-select-dropdown__item.is-disabled{color:#c0c4cc;cursor:not-allowed}.el-select-dropdown__item.is-disabled:hover{background-color:#fff}.el-select-dropdown__item.hover,.el-select-dropdown__item:hover{background-color:#f5f7fa}.el-select-dropdown__item.selected{color:#409eff;font-weight:700}.el-select-group{margin:0;padding:0}.el-select-group__wrap{position:relative;list-style:none;margin:0;padding:0}.el-select-group__wrap:not(:last-of-type){padding-bottom:24px}.el-select-group__wrap:not(:last-of-type):after{content:\"\";position:absolute;display:block;left:20px;right:20px;bottom:12px;height:1px;background:#e4e7ed}.el-select-group__title{padding-left:20px;font-size:12px;color:#909399;line-height:30px}.el-select-group .el-select-dropdown__item{padding-left:20px}.el-select{display:inline-block;position:relative}.el-select .el-select__tags>span{display:contents}.el-select:hover .el-input__inner{border-color:#c0c4cc}.el-select .el-input__inner{cursor:pointer;padding-right:35px}.el-select .el-input__inner:focus{border-color:#409eff}.el-select .el-input .el-select__caret{color:#c0c4cc;font-size:14px;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-transform:rotate(180deg);transform:rotate(180deg);cursor:pointer}.el-select .el-input .el-select__caret.is-reverse{-webkit-transform:rotate(0);transform:rotate(0)}.el-select .el-input .el-select__caret.is-show-close{font-size:14px;text-align:center;-webkit-transform:rotate(180deg);transform:rotate(180deg);border-radius:100%;color:#c0c4cc;-webkit-transition:color .2s cubic-bezier(.645,.045,.355,1);transition:color .2s cubic-bezier(.645,.045,.355,1)}.el-select .el-input .el-select__caret.is-show-close:hover{color:#909399}.el-select .el-input.is-disabled .el-input__inner{cursor:not-allowed}.el-select .el-input.is-disabled .el-input__inner:hover{border-color:#e4e7ed}.el-select .el-input.is-focus .el-input__inner{border-color:#409eff}.el-select>.el-input{display:block}.el-select__input{border:none;outline:0;padding:0;margin-left:15px;color:#666;font-size:14px;-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;background-color:transparent}.el-select__input.is-mini{height:14px}.el-select__close{cursor:pointer;position:absolute;top:8px;z-index:1000;right:25px;color:#c0c4cc;line-height:18px;font-size:14px}.el-select__close:hover{color:#909399}.el-select__tags{position:absolute;line-height:normal;white-space:normal;z-index:1;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.el-select .el-tag__close{margin-top:-2px}.el-select .el-tag{-webkit-box-sizing:border-box;box-sizing:border-box;border-color:transparent;margin:2px 0 2px 6px;background-color:#f0f2f5}.el-select .el-tag__close.el-icon-close{background-color:#c0c4cc;right:-7px;top:0;color:#fff}.el-select .el-tag__close.el-icon-close:hover{background-color:#909399}.el-table,.el-table__expanded-cell{background-color:#fff}.el-select .el-tag__close.el-icon-close:before{display:block;-webkit-transform:translateY(.5px);transform:translateY(.5px)}.el-table{position:relative;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%;max-width:100%;font-size:14px;color:#606266}.el-table--mini,.el-table--small,.el-table__expand-icon{font-size:12px}.el-table__empty-block{min-height:60px;text-align:center;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-table__empty-text{line-height:60px;width:50%;color:#909399}.el-table__expand-column .cell{padding:0;text-align:center}.el-table__expand-icon{position:relative;cursor:pointer;color:#666;-webkit-transition:-webkit-transform .2s ease-in-out;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out;height:20px}.el-table__expand-icon--expanded{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.el-table__expand-icon>.el-icon{position:absolute;left:50%;top:50%;margin-left:-5px;margin-top:-5px}.el-table__expanded-cell[class*=cell]{padding:20px 50px}.el-table__expanded-cell:hover{background-color:transparent!important}.el-table__placeholder{display:inline-block;width:20px}.el-table__append-wrapper{overflow:hidden}.el-table--fit{border-right:0;border-bottom:0}.el-table--fit td.gutter,.el-table--fit th.gutter{border-right-width:1px}.el-table--scrollable-x .el-table__body-wrapper{overflow-x:auto}.el-table--scrollable-y .el-table__body-wrapper{overflow-y:auto}.el-table thead{color:#909399;font-weight:500}.el-table thead.is-group th{background:#f5f7fa}.el-table th,.el-table tr{background-color:#fff}.el-table td,.el-table th{padding:12px 0;min-width:0;-webkit-box-sizing:border-box;box-sizing:border-box;text-overflow:ellipsis;vertical-align:middle;position:relative;text-align:left}.el-table td.is-center,.el-table th.is-center{text-align:center}.el-table td.is-right,.el-table th.is-right{text-align:right}.el-table td.gutter,.el-table th.gutter{width:15px;border-right-width:0;border-bottom-width:0;padding:0}.el-table--medium td,.el-table--medium th{padding:10px 0}.el-table--small td,.el-table--small th{padding:8px 0}.el-table--mini td,.el-table--mini th{padding:6px 0}.el-table--border td:first-child .cell,.el-table--border th:first-child .cell,.el-table .cell{padding-left:10px}.el-table tr input[type=checkbox]{margin:0}.el-table td,.el-table th.is-leaf{border-bottom:1px solid #ebeef5}.el-table th.is-sortable{cursor:pointer}.el-table th{overflow:hidden;-ms-user-select:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.el-table th>.cell{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;vertical-align:middle;padding-left:10px;padding-right:10px;width:100%}.el-table th>.cell.highlight{color:#409eff}.el-table th.required>div:before{display:inline-block;content:\"\";width:8px;height:8px;border-radius:50%;background:#ff4d51;margin-right:5px;vertical-align:middle}.el-table td div{-webkit-box-sizing:border-box;box-sizing:border-box}.el-table td.gutter{width:0}.el-table .cell{-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;white-space:normal;word-break:break-all;line-height:23px;padding-right:10px}.el-table .cell.el-tooltip{white-space:nowrap;min-width:50px}.el-table--border,.el-table--group{border:1px solid #ebeef5}.el-table--border:after,.el-table--group:after,.el-table:before{content:\"\";position:absolute;background-color:#ebeef5;z-index:1}.el-table--border:after,.el-table--group:after{top:0;right:0;width:1px;height:100%}.el-table:before{left:0;bottom:0;width:100%;height:1px}.el-table--border{border-right:none;border-bottom:none}.el-table--border.el-loading-parent--relative{border-color:transparent}.el-table--border td,.el-table--border th,.el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed{border-right:1px solid #ebeef5}.el-table--border th.gutter:last-of-type{border-bottom:1px solid #ebeef5;border-bottom-width:1px}.el-table--border th,.el-table__fixed-right-patch{border-bottom:1px solid #ebeef5}.el-table__fixed,.el-table__fixed-right{position:absolute;top:0;left:0;overflow-x:hidden;overflow-y:hidden;-webkit-box-shadow:0 0 10px rgba(0,0,0,.12);box-shadow:0 0 10px rgba(0,0,0,.12)}.el-table__fixed-right:before,.el-table__fixed:before{content:\"\";position:absolute;left:0;bottom:0;width:100%;height:1px;background-color:#ebeef5;z-index:4}.el-table__fixed-right-patch{position:absolute;top:-1px;right:0;background-color:#fff}.el-table__fixed-right{top:0;left:auto;right:0}.el-table__fixed-right .el-table__fixed-body-wrapper,.el-table__fixed-right .el-table__fixed-footer-wrapper,.el-table__fixed-right .el-table__fixed-header-wrapper{left:auto;right:0}.el-table__fixed-header-wrapper{position:absolute;left:0;top:0;z-index:3}.el-table__fixed-footer-wrapper{position:absolute;left:0;bottom:0;z-index:3}.el-table__fixed-footer-wrapper tbody td{border-top:1px solid #ebeef5;background-color:#f5f7fa;color:#606266}.el-table__fixed-body-wrapper{position:absolute;left:0;top:37px;overflow:hidden;z-index:3}.el-table__body-wrapper,.el-table__footer-wrapper,.el-table__header-wrapper{width:100%}.el-table__footer-wrapper{margin-top:-1px}.el-table__footer-wrapper td{border-top:1px solid #ebeef5}.el-table__body,.el-table__footer,.el-table__header{table-layout:fixed;border-collapse:separate}.el-table__footer-wrapper,.el-table__header-wrapper{overflow:hidden}.el-table__footer-wrapper tbody td,.el-table__header-wrapper tbody td{background-color:#f5f7fa;color:#606266}.el-table__body-wrapper{overflow:hidden;position:relative}.el-table__body-wrapper.is-scrolling-left~.el-table__fixed,.el-table__body-wrapper.is-scrolling-none~.el-table__fixed,.el-table__body-wrapper.is-scrolling-none~.el-table__fixed-right,.el-table__body-wrapper.is-scrolling-right~.el-table__fixed-right{-webkit-box-shadow:none;box-shadow:none}.el-picker-panel,.el-table-filter{-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-table__body-wrapper .el-table--border.is-scrolling-right~.el-table__fixed-right{border-left:1px solid #ebeef5}.el-table .caret-wrapper{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:34px;width:24px;vertical-align:middle;cursor:pointer;overflow:initial;position:relative}.el-table .sort-caret{width:0;height:0;border:5px solid transparent;position:absolute;left:7px}.el-table .sort-caret.ascending{border-bottom-color:#c0c4cc;top:5px}.el-table .sort-caret.descending{border-top-color:#c0c4cc;bottom:7px}.el-table .ascending .sort-caret.ascending{border-bottom-color:#409eff}.el-table .descending .sort-caret.descending{border-top-color:#409eff}.el-table .hidden-columns{position:absolute;z-index:-1}.el-table--striped .el-table__body tr.el-table__row--striped td{background:#fafafa}.el-table--striped .el-table__body tr.el-table__row--striped.current-row td{background-color:#ecf5ff}.el-table__body tr.hover-row.current-row>td,.el-table__body tr.hover-row.el-table__row--striped.current-row>td,.el-table__body tr.hover-row.el-table__row--striped>td,.el-table__body tr.hover-row>td{background-color:#f5f7fa}.el-table__body tr.current-row>td{background-color:#ecf5ff}.el-table__column-resize-proxy{position:absolute;left:200px;top:0;bottom:0;width:0;border-left:1px solid #ebeef5;z-index:10}.el-table__column-filter-trigger{display:inline-block;line-height:34px;cursor:pointer}.el-table__column-filter-trigger i{color:#909399;font-size:12px;-webkit-transform:scale(.75);transform:scale(.75)}.el-table--enable-row-transition .el-table__body td{-webkit-transition:background-color .25s ease;transition:background-color .25s ease}.el-table--enable-row-hover .el-table__body tr:hover>td{background-color:#f5f7fa}.el-table--fluid-height .el-table__fixed,.el-table--fluid-height .el-table__fixed-right{bottom:0;overflow:hidden}.el-table [class*=el-table__row--level] .el-table__expand-icon{display:inline-block;width:20px;line-height:20px;height:20px;text-align:center;margin-right:3px}.el-table-column--selection .cell{padding-left:14px;padding-right:14px}.el-table-filter{border:1px solid #ebeef5;border-radius:2px;background-color:#fff;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);-webkit-box-sizing:border-box;box-sizing:border-box;margin:2px 0}.el-date-table td,.el-date-table td div{height:30px;-webkit-box-sizing:border-box}.el-table-filter__list{padding:5px 0;margin:0;list-style:none;min-width:100px}.el-table-filter__list-item{line-height:36px;padding:0 10px;cursor:pointer;font-size:14px}.el-table-filter__list-item:hover{background-color:#ecf5ff;color:#66b1ff}.el-table-filter__list-item.is-active{background-color:#409eff;color:#fff}.el-table-filter__content{min-width:100px}.el-table-filter__bottom{border-top:1px solid #ebeef5;padding:8px}.el-table-filter__bottom button{background:0 0;border:none;color:#606266;cursor:pointer;font-size:13px;padding:0 3px}.el-date-table.is-week-mode .el-date-table__row.current div,.el-date-table.is-week-mode .el-date-table__row:hover div,.el-date-table td.in-range div,.el-date-table td.in-range div:hover{background-color:#f2f6fc}.el-table-filter__bottom button:hover{color:#409eff}.el-table-filter__bottom button:focus{outline:0}.el-table-filter__bottom button.is-disabled{color:#c0c4cc;cursor:not-allowed}.el-table-filter__wrap{max-height:280px}.el-table-filter__checkbox-group{padding:10px}.el-table-filter__checkbox-group label.el-checkbox{display:block;margin-right:5px;margin-bottom:8px;margin-left:5px}.el-table-filter__checkbox-group .el-checkbox:last-child{margin-bottom:0}.el-date-table{font-size:12px;-ms-user-select:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.el-date-table.is-week-mode .el-date-table__row:hover td.available:hover{color:#606266}.el-date-table.is-week-mode .el-date-table__row:hover td:first-child div{margin-left:5px;border-top-left-radius:15px;border-bottom-left-radius:15px}.el-date-table.is-week-mode .el-date-table__row:hover td:last-child div{margin-right:5px;border-top-right-radius:15px;border-bottom-right-radius:15px}.el-date-table td{width:32px;padding:4px 0;text-align:center;cursor:pointer;position:relative}.el-date-table td,.el-date-table td div{-webkit-box-sizing:border-box;box-sizing:border-box}.el-date-table td div{padding:3px 0}.el-date-table td span{width:24px;height:24px;display:block;margin:0 auto;line-height:24px;position:absolute;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);border-radius:50%}.el-date-table td.next-month,.el-date-table td.prev-month{color:#c0c4cc}.el-date-table td.today{position:relative}.el-date-table td.today span{color:#409eff;font-weight:700}.el-date-table td.today.end-date span,.el-date-table td.today.start-date span{color:#fff}.el-date-table td.available:hover{color:#409eff}.el-date-table td.current:not(.disabled) span{color:#fff;background-color:#409eff}.el-date-table td.end-date div,.el-date-table td.start-date div{color:#fff}.el-date-table td.end-date span,.el-date-table td.start-date span{background-color:#409eff}.el-date-table td.start-date div{margin-left:5px;border-top-left-radius:15px;border-bottom-left-radius:15px}.el-date-table td.end-date div{margin-right:5px;border-top-right-radius:15px;border-bottom-right-radius:15px}.el-date-table td.disabled div{background-color:#f5f7fa;opacity:1;cursor:not-allowed;color:#c0c4cc}.el-date-table td.selected div{margin-left:5px;margin-right:5px;background-color:#f2f6fc;border-radius:15px}.el-date-table td.selected div:hover{background-color:#f2f6fc}.el-date-table td.selected span{background-color:#409eff;color:#fff;border-radius:15px}.el-date-table td.week{font-size:80%;color:#606266}.el-month-table,.el-year-table{font-size:12px;border-collapse:collapse}.el-date-table th{padding:5px;color:#606266;font-weight:400;border-bottom:1px solid #ebeef5}.el-month-table{margin:-1px}.el-month-table td{text-align:center;padding:8px 0;cursor:pointer}.el-month-table td div{height:48px;padding:6px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.el-month-table td.today .cell{color:#409eff;font-weight:700}.el-month-table td.today.end-date .cell,.el-month-table td.today.start-date .cell{color:#fff}.el-month-table td.disabled .cell{background-color:#f5f7fa;cursor:not-allowed;color:#c0c4cc}.el-month-table td.disabled .cell:hover{color:#c0c4cc}.el-month-table td .cell{width:60px;height:36px;display:block;line-height:36px;color:#606266;margin:0 auto;border-radius:18px}.el-month-table td .cell:hover{color:#409eff}.el-month-table td.in-range div,.el-month-table td.in-range div:hover{background-color:#f2f6fc}.el-month-table td.end-date div,.el-month-table td.start-date div{color:#fff}.el-month-table td.end-date .cell,.el-month-table td.start-date .cell{color:#fff;background-color:#409eff}.el-month-table td.start-date div{border-top-left-radius:24px;border-bottom-left-radius:24px}.el-month-table td.end-date div{border-top-right-radius:24px;border-bottom-right-radius:24px}.el-month-table td.current:not(.disabled) .cell{color:#409eff}.el-year-table{margin:-1px}.el-year-table .el-icon{color:#303133}.el-year-table td{text-align:center;padding:20px 3px;cursor:pointer}.el-year-table td.today .cell{color:#409eff;font-weight:700}.el-year-table td.disabled .cell{background-color:#f5f7fa;cursor:not-allowed;color:#c0c4cc}.el-year-table td.disabled .cell:hover{color:#c0c4cc}.el-year-table td .cell{width:48px;height:32px;display:block;line-height:32px;color:#606266;margin:0 auto}.el-year-table td .cell:hover,.el-year-table td.current:not(.disabled) .cell{color:#409eff}.el-date-range-picker{width:646px}.el-date-range-picker.has-sidebar{width:756px}.el-date-range-picker table{table-layout:fixed;width:100%}.el-date-range-picker .el-picker-panel__body{min-width:513px}.el-date-range-picker .el-picker-panel__content{margin:0}.el-date-range-picker__header{position:relative;text-align:center;height:28px}.el-date-range-picker__header [class*=arrow-left]{float:left}.el-date-range-picker__header [class*=arrow-right]{float:right}.el-date-range-picker__header div{font-size:16px;font-weight:500;margin-right:50px}.el-date-range-picker__content{float:left;width:50%;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:16px}.el-date-range-picker__content.is-left{border-right:1px solid #e4e4e4}.el-date-range-picker__content .el-date-range-picker__header div{margin-left:50px;margin-right:50px}.el-date-range-picker__editors-wrap{-webkit-box-sizing:border-box;box-sizing:border-box;display:table-cell}.el-date-range-picker__editors-wrap.is-right{text-align:right}.el-date-range-picker__time-header{position:relative;border-bottom:1px solid #e4e4e4;font-size:12px;padding:8px 5px 5px;display:table;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.el-date-range-picker__time-header>.el-icon-arrow-right{font-size:20px;vertical-align:middle;display:table-cell;color:#303133}.el-date-range-picker__time-picker-wrap{position:relative;display:table-cell;padding:0 5px}.el-date-range-picker__time-picker-wrap .el-picker-panel{position:absolute;top:13px;right:0;z-index:1;background:#fff}.el-date-picker{width:322px}.el-date-picker.has-sidebar.has-time{width:434px}.el-date-picker.has-sidebar{width:438px}.el-date-picker.has-time .el-picker-panel__body-wrapper{position:relative}.el-date-picker .el-picker-panel__content{width:292px}.el-date-picker table{table-layout:fixed;width:100%}.el-date-picker__editor-wrap{position:relative;display:table-cell;padding:0 5px}.el-date-picker__time-header{position:relative;border-bottom:1px solid #e4e4e4;font-size:12px;padding:8px 5px 5px;display:table;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.el-date-picker__header{margin:12px;text-align:center}.el-date-picker__header--bordered{margin-bottom:0;padding-bottom:12px;border-bottom:1px solid #ebeef5}.el-date-picker__header--bordered+.el-picker-panel__content{margin-top:0}.el-date-picker__header-label{font-size:16px;font-weight:500;padding:0 5px;line-height:22px;text-align:center;cursor:pointer;color:#606266}.el-date-picker__header-label.active,.el-date-picker__header-label:hover{color:#409eff}.el-date-picker__prev-btn{float:left}.el-date-picker__next-btn{float:right}.el-date-picker__time-wrap{padding:10px;text-align:center}.el-date-picker__time-label{float:left;cursor:pointer;line-height:30px;margin-left:10px}.time-select{margin:5px 0;min-width:0}.time-select .el-picker-panel__content{max-height:200px;margin:0}.time-select-item{padding:8px 10px;font-size:14px;line-height:20px}.time-select-item.selected:not(.disabled){color:#409eff;font-weight:700}.time-select-item.disabled{color:#e4e7ed;cursor:not-allowed}.time-select-item:hover{background-color:#f5f7fa;font-weight:700;cursor:pointer}.el-date-editor{position:relative;display:inline-block;text-align:left}.el-date-editor.el-input,.el-date-editor.el-input__inner{width:220px}.el-date-editor--monthrange.el-input,.el-date-editor--monthrange.el-input__inner{width:300px}.el-date-editor--daterange.el-input,.el-date-editor--daterange.el-input__inner,.el-date-editor--timerange.el-input,.el-date-editor--timerange.el-input__inner{width:350px}.el-date-editor--datetimerange.el-input,.el-date-editor--datetimerange.el-input__inner{width:400px}.el-date-editor--dates .el-input__inner{text-overflow:ellipsis;white-space:nowrap}.el-date-editor .el-icon-circle-close{cursor:pointer}.el-date-editor .el-range__icon{font-size:14px;margin-left:-5px;color:#c0c4cc;float:left;line-height:32px}.el-date-editor .el-range-input,.el-date-editor .el-range-separator{height:100%;margin:0;text-align:center;display:inline-block;font-size:14px}.el-date-editor .el-range-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;outline:0;padding:0;width:39%;color:#606266}.el-date-editor .el-range-input::-webkit-input-placeholder{color:#c0c4cc}.el-date-editor .el-range-input:-ms-input-placeholder{color:#c0c4cc}.el-date-editor .el-range-input::-ms-input-placeholder{color:#c0c4cc}.el-date-editor .el-range-input::-moz-placeholder{color:#c0c4cc}.el-date-editor .el-range-input::placeholder{color:#c0c4cc}.el-date-editor .el-range-separator{padding:0 5px;line-height:32px;width:5%;color:#303133}.el-date-editor .el-range__close-icon{font-size:14px;color:#c0c4cc;width:25px;display:inline-block;float:right;line-height:32px}.el-range-editor.el-input__inner{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:3px 10px}.el-range-editor .el-range-input{line-height:1}.el-range-editor.is-active,.el-range-editor.is-active:hover{border-color:#409eff}.el-range-editor--medium.el-input__inner{height:36px}.el-range-editor--medium .el-range-separator{line-height:28px;font-size:14px}.el-range-editor--medium .el-range-input{font-size:14px}.el-range-editor--medium .el-range__close-icon,.el-range-editor--medium .el-range__icon{line-height:28px}.el-range-editor--small.el-input__inner{height:32px}.el-range-editor--small .el-range-separator{line-height:24px;font-size:13px}.el-range-editor--small .el-range-input{font-size:13px}.el-range-editor--small .el-range__close-icon,.el-range-editor--small .el-range__icon{line-height:24px}.el-range-editor--mini.el-input__inner{height:28px}.el-range-editor--mini .el-range-separator{line-height:20px;font-size:12px}.el-range-editor--mini .el-range-input{font-size:12px}.el-range-editor--mini .el-range__close-icon,.el-range-editor--mini .el-range__icon{line-height:20px}.el-range-editor.is-disabled{background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed}.el-range-editor.is-disabled:focus,.el-range-editor.is-disabled:hover{border-color:#e4e7ed}.el-range-editor.is-disabled input{background-color:#f5f7fa;color:#c0c4cc;cursor:not-allowed}.el-range-editor.is-disabled input::-webkit-input-placeholder{color:#c0c4cc}.el-range-editor.is-disabled input:-ms-input-placeholder{color:#c0c4cc}.el-range-editor.is-disabled input::-ms-input-placeholder{color:#c0c4cc}.el-range-editor.is-disabled input::-moz-placeholder{color:#c0c4cc}.el-range-editor.is-disabled input::placeholder{color:#c0c4cc}.el-range-editor.is-disabled .el-range-separator{color:#c0c4cc}.el-picker-panel{color:#606266;border:1px solid #e4e7ed;box-shadow:0 2px 12px 0 rgba(0,0,0,.1);background:#fff;border-radius:4px;line-height:30px;margin:5px 0}.el-picker-panel,.el-popover,.el-time-panel{-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-picker-panel__body-wrapper:after,.el-picker-panel__body:after{content:\"\";display:table;clear:both}.el-picker-panel__content{position:relative;margin:15px}.el-picker-panel__footer{border-top:1px solid #e4e4e4;padding:4px;text-align:right;background-color:#fff;position:relative;font-size:0}.el-picker-panel__shortcut{display:block;width:100%;border:0;background-color:transparent;line-height:28px;font-size:14px;color:#606266;padding-left:12px;text-align:left;outline:0;cursor:pointer}.el-picker-panel__shortcut:hover{color:#409eff}.el-picker-panel__shortcut.active{background-color:#e6f1fe;color:#409eff}.el-picker-panel__btn{border:1px solid #dcdcdc;color:#333;line-height:24px;border-radius:2px;padding:0 20px;cursor:pointer;background-color:transparent;outline:0;font-size:12px}.el-picker-panel__btn[disabled]{color:#ccc;cursor:not-allowed}.el-picker-panel__icon-btn{font-size:12px;color:#303133;border:0;background:0 0;cursor:pointer;outline:0;margin-top:8px}.el-picker-panel__icon-btn:hover{color:#409eff}.el-picker-panel__icon-btn.is-disabled{color:#bbb}.el-picker-panel__icon-btn.is-disabled:hover{cursor:not-allowed}.el-picker-panel__link-btn{vertical-align:middle}.el-picker-panel [slot=sidebar],.el-picker-panel__sidebar{position:absolute;top:0;bottom:0;width:110px;border-right:1px solid #e4e4e4;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:6px;background-color:#fff;overflow:auto}.el-picker-panel [slot=sidebar]+.el-picker-panel__body,.el-picker-panel__sidebar+.el-picker-panel__body{margin-left:110px}.el-time-spinner.has-seconds .el-time-spinner__wrapper{width:33.3%}.el-time-spinner__wrapper{max-height:190px;overflow:auto;display:inline-block;width:50%;vertical-align:top;position:relative}.el-time-spinner__wrapper .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default){padding-bottom:15px}.el-time-spinner__input.el-input .el-input__inner,.el-time-spinner__list{padding:0;text-align:center}.el-time-spinner__wrapper.is-arrow{-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;overflow:hidden}.el-time-spinner__wrapper.is-arrow .el-time-spinner__list{-webkit-transform:translateY(-32px);transform:translateY(-32px)}.el-time-spinner__wrapper.is-arrow .el-time-spinner__item:hover:not(.disabled):not(.active){background:#fff;cursor:default}.el-time-spinner__arrow{font-size:12px;color:#909399;position:absolute;left:0;width:100%;z-index:1;text-align:center;height:30px;line-height:30px;cursor:pointer}.el-time-spinner__arrow:hover{color:#409eff}.el-time-spinner__arrow.el-icon-arrow-up{top:10px}.el-time-spinner__arrow.el-icon-arrow-down{bottom:10px}.el-time-spinner__input.el-input{width:70%}.el-time-spinner__list{margin:0;list-style:none}.el-time-spinner__list:after,.el-time-spinner__list:before{content:\"\";display:block;width:100%;height:80px}.el-time-spinner__item{height:32px;line-height:32px;font-size:12px;color:#606266}.el-time-spinner__item:hover:not(.disabled):not(.active){background:#f5f7fa;cursor:pointer}.el-time-spinner__item.active:not(.disabled){color:#303133;font-weight:700}.el-time-spinner__item.disabled{color:#c0c4cc;cursor:not-allowed}.el-time-panel{margin:5px 0;border:1px solid #e4e7ed;background-color:#fff;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);border-radius:2px;position:absolute;width:180px;left:0;z-index:1000;user-select:none;-webkit-box-sizing:content-box;box-sizing:content-box}.el-slider__button,.el-slider__button-wrapper,.el-time-panel{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.el-time-panel__content{font-size:0;position:relative;overflow:hidden}.el-time-panel__content:after,.el-time-panel__content:before{content:\"\";top:50%;position:absolute;margin-top:-15px;height:32px;z-index:-1;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:6px;text-align:left;border-top:1px solid #e4e7ed;border-bottom:1px solid #e4e7ed}.el-time-panel__content:after{left:50%;margin-left:12%;margin-right:12%}.el-time-panel__content:before{padding-left:50%;margin-right:12%;margin-left:12%}.el-time-panel__content.has-seconds:after{left:66.66667%}.el-time-panel__content.has-seconds:before{padding-left:33.33333%}.el-time-panel__footer{border-top:1px solid #e4e4e4;padding:4px;height:36px;line-height:25px;text-align:right;-webkit-box-sizing:border-box;box-sizing:border-box}.el-time-panel__btn{border:none;line-height:28px;padding:0 5px;margin:0 5px;cursor:pointer;background-color:transparent;outline:0;font-size:12px;color:#303133}.el-time-panel__btn.confirm{font-weight:800;color:#409eff}.el-time-range-picker{width:354px;overflow:visible}.el-time-range-picker__content{position:relative;text-align:center;padding:10px}.el-time-range-picker__cell{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:4px 7px 7px;width:50%;display:inline-block}.el-time-range-picker__header{margin-bottom:5px;text-align:center;font-size:14px}.el-time-range-picker__body{border-radius:2px;border:1px solid #e4e7ed}.el-popover{position:absolute;background:#fff;min-width:150px;border:1px solid #ebeef5;padding:12px;z-index:2000;color:#606266;line-height:1.4;text-align:justify;font-size:14px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);word-break:break-all}.el-popover--plain{padding:18px 20px}.el-popover__title{color:#303133;font-size:16px;line-height:1;margin-bottom:12px}.v-modal-enter{-webkit-animation:v-modal-in .2s ease;animation:v-modal-in .2s ease}.v-modal-leave{-webkit-animation:v-modal-out .2s ease forwards;animation:v-modal-out .2s ease forwards}@keyframes v-modal-in{0%{opacity:0}}@keyframes v-modal-out{to{opacity:0}}.v-modal{position:fixed;left:0;top:0;width:100%;height:100%;opacity:.5;background:#000}.el-popup-parent--hidden{overflow:hidden}.el-message-box{display:inline-block;width:420px;padding-bottom:10px;vertical-align:middle;background-color:#fff;border-radius:4px;border:1px solid #ebeef5;font-size:18px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);text-align:left;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden}.el-message-box__wrapper{position:fixed;top:0;bottom:0;left:0;right:0;text-align:center}.el-message-box__wrapper:after{content:\"\";display:inline-block;height:100%;width:0;vertical-align:middle}.el-message-box__header{position:relative;padding:15px 15px 10px}.el-message-box__title{padding-left:0;margin-bottom:0;font-size:18px;line-height:1;color:#303133}.el-message-box__headerbtn{position:absolute;top:15px;right:15px;padding:0;border:none;outline:0;background:0 0;font-size:16px;cursor:pointer}.el-form-item.is-error .el-input__inner,.el-form-item.is-error .el-input__inner:focus,.el-form-item.is-error .el-textarea__inner,.el-form-item.is-error .el-textarea__inner:focus,.el-message-box__input input.invalid,.el-message-box__input input.invalid:focus{border-color:#f56c6c}.el-message-box__headerbtn .el-message-box__close{color:#909399}.el-message-box__headerbtn:focus .el-message-box__close,.el-message-box__headerbtn:hover .el-message-box__close{color:#409eff}.el-message-box__content{padding:10px 15px;color:#606266;font-size:14px}.el-message-box__container{position:relative}.el-message-box__input{padding-top:15px}.el-message-box__status{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:24px!important}.el-message-box__status:before{padding-left:1px}.el-message-box__status+.el-message-box__message{padding-left:36px;padding-right:12px}.el-message-box__status.el-icon-success{color:#67c23a}.el-message-box__status.el-icon-info{color:#909399}.el-message-box__status.el-icon-warning{color:#e6a23c}.el-message-box__status.el-icon-error{color:#f56c6c}.el-message-box__message{margin:0}.el-message-box__message p{margin:0;line-height:24px}.el-message-box__errormsg{color:#f56c6c;font-size:12px;min-height:18px;margin-top:2px}.el-message-box__btns{padding:5px 15px 0;text-align:right}.el-message-box__btns button:nth-child(2){margin-left:10px}.el-message-box__btns-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.el-message-box--center{padding-bottom:30px}.el-message-box--center .el-message-box__header{padding-top:30px}.el-message-box--center .el-message-box__title{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.el-message-box--center .el-message-box__status{position:relative;top:auto;padding-right:5px;text-align:center;-webkit-transform:translateY(-1px);transform:translateY(-1px)}.el-message-box--center .el-message-box__message{margin-left:0}.el-message-box--center .el-message-box__btns,.el-message-box--center .el-message-box__content{text-align:center}.el-message-box--center .el-message-box__content{padding-left:27px;padding-right:27px}.msgbox-fade-enter-active{-webkit-animation:msgbox-fade-in .3s;animation:msgbox-fade-in .3s}.msgbox-fade-leave-active{-webkit-animation:msgbox-fade-out .3s;animation:msgbox-fade-out .3s}@-webkit-keyframes msgbox-fade-in{0%{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes msgbox-fade-in{0%{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@-webkit-keyframes msgbox-fade-out{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}}@keyframes msgbox-fade-out{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}}.el-breadcrumb{font-size:14px;line-height:1}.el-breadcrumb:after,.el-breadcrumb:before{display:table;content:\"\"}.el-breadcrumb:after{clear:both}.el-breadcrumb__separator{margin:0 9px;font-weight:700;color:#c0c4cc}.el-breadcrumb__separator[class*=icon]{margin:0 6px;font-weight:400}.el-breadcrumb__item{float:left}.el-breadcrumb__inner{color:#606266}.el-breadcrumb__inner.is-link,.el-breadcrumb__inner a{font-weight:700;text-decoration:none;-webkit-transition:color .2s cubic-bezier(.645,.045,.355,1);transition:color .2s cubic-bezier(.645,.045,.355,1);color:#303133}.el-breadcrumb__inner.is-link:hover,.el-breadcrumb__inner a:hover{color:#409eff;cursor:pointer}.el-breadcrumb__item:last-child .el-breadcrumb__inner,.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover,.el-breadcrumb__item:last-child .el-breadcrumb__inner a,.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover{font-weight:400;color:#606266;cursor:text}.el-breadcrumb__item:last-child .el-breadcrumb__separator{display:none}.el-form--label-left .el-form-item__label{text-align:left}.el-form--label-top .el-form-item__label{float:none;display:inline-block;text-align:left;padding:0 0 10px}.el-form--inline .el-form-item{display:inline-block;margin-right:10px;vertical-align:top}.el-form--inline .el-form-item__label{float:none;display:inline-block}.el-form--inline .el-form-item__content{display:inline-block;vertical-align:top}.el-form--inline.el-form--label-top .el-form-item__content{display:block}.el-form-item{margin-bottom:22px}.el-form-item:after,.el-form-item:before{display:table;content:\"\"}.el-form-item:after{clear:both}.el-form-item .el-form-item{margin-bottom:0}.el-form-item--mini.el-form-item,.el-form-item--small.el-form-item{margin-bottom:18px}.el-form-item .el-input__validateIcon{display:none}.el-form-item--medium .el-form-item__content,.el-form-item--medium .el-form-item__label{line-height:36px}.el-form-item--small .el-form-item__content,.el-form-item--small .el-form-item__label{line-height:32px}.el-form-item--small .el-form-item__error{padding-top:2px}.el-form-item--mini .el-form-item__content,.el-form-item--mini .el-form-item__label{line-height:28px}.el-form-item--mini .el-form-item__error{padding-top:1px}.el-form-item__label-wrap{float:left}.el-form-item__label-wrap .el-form-item__label{display:inline-block;float:none}.el-form-item__label{text-align:right;vertical-align:middle;float:left;font-size:14px;color:#606266;line-height:40px;padding:0 12px 0 0;-webkit-box-sizing:border-box;box-sizing:border-box}.el-form-item__content{line-height:40px;position:relative;font-size:14px}.el-form-item__content:after,.el-form-item__content:before{display:table;content:\"\"}.el-form-item__content:after{clear:both}.el-form-item__content .el-input-group{vertical-align:top}.el-form-item__error{color:#f56c6c;font-size:12px;line-height:1;padding-top:4px;position:absolute;top:100%;left:0}.el-form-item__error--inline{position:relative;top:auto;left:auto;display:inline-block;margin-left:10px}.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap>.el-form-item__label:before,.el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:before{content:\"*\";color:#f56c6c;margin-right:4px}.el-form-item.is-error .el-input-group__append .el-input__inner,.el-form-item.is-error .el-input-group__prepend .el-input__inner{border-color:transparent}.el-form-item.is-error .el-input__validateIcon{color:#f56c6c}.el-form-item--feedback .el-input__validateIcon{display:inline-block}.el-tabs__header{padding:0;position:relative;margin:0 0 15px}.el-tabs__active-bar{position:absolute;bottom:0;left:0;height:2px;background-color:#409eff;z-index:1;-webkit-transition:-webkit-transform .3s cubic-bezier(.645,.045,.355,1);transition:-webkit-transform .3s cubic-bezier(.645,.045,.355,1);transition:transform .3s cubic-bezier(.645,.045,.355,1);transition:transform .3s cubic-bezier(.645,.045,.355,1),-webkit-transform .3s cubic-bezier(.645,.045,.355,1);list-style:none}.el-tabs__new-tab{float:right;border:1px solid #d3dce6;height:18px;width:18px;line-height:18px;margin:12px 0 9px 10px;border-radius:3px;text-align:center;font-size:12px;color:#d3dce6;cursor:pointer;-webkit-transition:all .15s;transition:all .15s}.el-collapse-item__arrow,.el-tabs__nav{-webkit-transition:-webkit-transform .3s}.el-tabs__new-tab .el-icon-plus{-webkit-transform:scale(.8);transform:scale(.8)}.el-tabs__new-tab:hover{color:#409eff}.el-tabs__nav-wrap{overflow:hidden;margin-bottom:-1px;position:relative}.el-tabs__nav-wrap:after{content:\"\";position:absolute;left:0;bottom:0;width:100%;height:2px;background-color:#e4e7ed;z-index:1}.el-tabs--border-card>.el-tabs__header .el-tabs__nav-wrap:after,.el-tabs--card>.el-tabs__header .el-tabs__nav-wrap:after{content:none}.el-tabs__nav-wrap.is-scrollable{padding:0 20px;-webkit-box-sizing:border-box;box-sizing:border-box}.el-tabs__nav-scroll{overflow:hidden}.el-tabs__nav-next,.el-tabs__nav-prev{position:absolute;cursor:pointer;line-height:44px;font-size:12px;color:#909399}.el-tabs__nav-next{right:0}.el-tabs__nav-prev{left:0}.el-tabs__nav{white-space:nowrap;position:relative;transition:-webkit-transform .3s;-webkit-transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;float:left;z-index:2}.el-tabs__nav.is-stretch{min-width:100%;display:-webkit-box;display:-ms-flexbox;display:flex}.el-tabs__nav.is-stretch>*{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center}.el-tabs__item{padding:0 20px;height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;line-height:40px;display:inline-block;list-style:none;font-size:14px;font-weight:500;color:#303133;position:relative}.el-tabs__item:focus,.el-tabs__item:focus:active{outline:0}.el-tabs__item:focus.is-active.is-focus:not(:active){-webkit-box-shadow:0 0 2px 2px #409eff inset;box-shadow:inset 0 0 2px 2px #409eff;border-radius:3px}.el-tabs__item .el-icon-close{border-radius:50%;text-align:center;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);margin-left:5px}.el-tabs__item .el-icon-close:before{-webkit-transform:scale(.9);transform:scale(.9);display:inline-block}.el-tabs__item .el-icon-close:hover{background-color:#c0c4cc;color:#fff}.el-tabs__item.is-active{color:#409eff}.el-tabs__item:hover{color:#409eff;cursor:pointer}.el-tabs__item.is-disabled{color:#c0c4cc;cursor:default}.el-tabs__content{overflow:hidden;position:relative}.el-tabs--card>.el-tabs__header{border-bottom:1px solid #e4e7ed}.el-tabs--card>.el-tabs__header .el-tabs__nav{border:1px solid #e4e7ed;border-bottom:none;border-radius:4px 4px 0 0;-webkit-box-sizing:border-box;box-sizing:border-box}.el-tabs--card>.el-tabs__header .el-tabs__active-bar{display:none}.el-tabs--card>.el-tabs__header .el-tabs__item .el-icon-close{position:relative;font-size:12px;width:0;height:14px;vertical-align:middle;line-height:15px;overflow:hidden;top:-1px;right:-2px;-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.el-tabs--card>.el-tabs__header .el-tabs__item.is-active.is-closable .el-icon-close,.el-tabs--card>.el-tabs__header .el-tabs__item.is-closable:hover .el-icon-close{width:14px}.el-tabs--card>.el-tabs__header .el-tabs__item{border-bottom:1px solid transparent;border-left:1px solid #e4e7ed;-webkit-transition:color .3s cubic-bezier(.645,.045,.355,1),padding .3s cubic-bezier(.645,.045,.355,1);transition:color .3s cubic-bezier(.645,.045,.355,1),padding .3s cubic-bezier(.645,.045,.355,1)}.el-tabs--card>.el-tabs__header .el-tabs__item:first-child{border-left:none}.el-tabs--card>.el-tabs__header .el-tabs__item.is-closable:hover{padding-left:13px;padding-right:13px}.el-tabs--card>.el-tabs__header .el-tabs__item.is-active{border-bottom-color:#fff}.el-tabs--card>.el-tabs__header .el-tabs__item.is-active.is-closable{padding-left:20px;padding-right:20px}.el-tabs--border-card{background:#fff;border:1px solid #dcdfe6;-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.12),0 0 6px 0 rgba(0,0,0,.04);box-shadow:0 2px 4px 0 rgba(0,0,0,.12),0 0 6px 0 rgba(0,0,0,.04)}.el-tabs--border-card>.el-tabs__content{padding:15px}.el-tabs--border-card>.el-tabs__header{background-color:#f5f7fa;border-bottom:1px solid #e4e7ed;margin:0}.el-tabs--border-card>.el-tabs__header .el-tabs__item{-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);border:1px solid transparent;margin-top:-1px;color:#909399}.el-tabs--border-card>.el-tabs__header .el-tabs__item+.el-tabs__item,.el-tabs--border-card>.el-tabs__header .el-tabs__item:first-child{margin-left:-1px}.el-tabs--border-card>.el-tabs__header .el-tabs__item.is-active{color:#409eff;background-color:#fff;border-right-color:#dcdfe6;border-left-color:#dcdfe6}.el-tabs--border-card>.el-tabs__header .el-tabs__item:not(.is-disabled):hover{color:#409eff}.el-tabs--border-card>.el-tabs__header .el-tabs__item.is-disabled{color:#c0c4cc}.el-tabs--border-card>.el-tabs__header .is-scrollable .el-tabs__item:first-child{margin-left:0}.el-tabs--bottom .el-tabs__item.is-bottom:nth-child(2),.el-tabs--bottom .el-tabs__item.is-top:nth-child(2),.el-tabs--top .el-tabs__item.is-bottom:nth-child(2),.el-tabs--top .el-tabs__item.is-top:nth-child(2){padding-left:0}.el-tabs--bottom .el-tabs__item.is-bottom:last-child,.el-tabs--bottom .el-tabs__item.is-top:last-child,.el-tabs--top .el-tabs__item.is-bottom:last-child,.el-tabs--top .el-tabs__item.is-top:last-child{padding-right:0}.el-tabs--bottom.el-tabs--border-card>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--bottom.el-tabs--card>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--bottom .el-tabs--left>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--bottom .el-tabs--right>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--top.el-tabs--border-card>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--top.el-tabs--card>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--top .el-tabs--left>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--top .el-tabs--right>.el-tabs__header .el-tabs__item:nth-child(2){padding-left:20px}.el-tabs--bottom.el-tabs--border-card>.el-tabs__header .el-tabs__item:last-child,.el-tabs--bottom.el-tabs--card>.el-tabs__header .el-tabs__item:last-child,.el-tabs--bottom .el-tabs--left>.el-tabs__header .el-tabs__item:last-child,.el-tabs--bottom .el-tabs--right>.el-tabs__header .el-tabs__item:last-child,.el-tabs--top.el-tabs--border-card>.el-tabs__header .el-tabs__item:last-child,.el-tabs--top.el-tabs--card>.el-tabs__header .el-tabs__item:last-child,.el-tabs--top .el-tabs--left>.el-tabs__header .el-tabs__item:last-child,.el-tabs--top .el-tabs--right>.el-tabs__header .el-tabs__item:last-child{padding-right:20px}.el-tabs--bottom .el-tabs__header.is-bottom{margin-bottom:0;margin-top:10px}.el-tabs--bottom.el-tabs--border-card .el-tabs__header.is-bottom{border-bottom:0;border-top:1px solid #dcdfe6}.el-tabs--bottom.el-tabs--border-card .el-tabs__nav-wrap.is-bottom{margin-top:-1px;margin-bottom:0}.el-tabs--bottom.el-tabs--border-card .el-tabs__item.is-bottom:not(.is-active){border:1px solid transparent}.el-tabs--bottom.el-tabs--border-card .el-tabs__item.is-bottom{margin:0 -1px -1px}.el-tabs--left,.el-tabs--right{overflow:hidden}.el-tabs--left .el-tabs__header.is-left,.el-tabs--left .el-tabs__header.is-right,.el-tabs--left .el-tabs__nav-scroll,.el-tabs--left .el-tabs__nav-wrap.is-left,.el-tabs--left .el-tabs__nav-wrap.is-right,.el-tabs--right .el-tabs__header.is-left,.el-tabs--right .el-tabs__header.is-right,.el-tabs--right .el-tabs__nav-scroll,.el-tabs--right .el-tabs__nav-wrap.is-left,.el-tabs--right .el-tabs__nav-wrap.is-right{height:100%}.el-tabs--left .el-tabs__active-bar.is-left,.el-tabs--left .el-tabs__active-bar.is-right,.el-tabs--right .el-tabs__active-bar.is-left,.el-tabs--right .el-tabs__active-bar.is-right{top:0;bottom:auto;width:2px;height:auto}.el-tabs--left .el-tabs__nav-wrap.is-left,.el-tabs--left .el-tabs__nav-wrap.is-right,.el-tabs--right .el-tabs__nav-wrap.is-left,.el-tabs--right .el-tabs__nav-wrap.is-right{margin-bottom:0}.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-next,.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-next,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-next,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-next,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev{height:30px;line-height:30px;width:100%;text-align:center;cursor:pointer}.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-next i,.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev i,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-next i,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev i,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-next i,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev i,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-next i,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev i{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev{left:auto;top:0}.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-next,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-next,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-next,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-next{right:auto;bottom:0}.el-tabs--left .el-tabs__active-bar.is-left,.el-tabs--left .el-tabs__nav-wrap.is-left:after{right:0;left:auto}.el-tabs--left .el-tabs__nav-wrap.is-left.is-scrollable,.el-tabs--left .el-tabs__nav-wrap.is-right.is-scrollable,.el-tabs--right .el-tabs__nav-wrap.is-left.is-scrollable,.el-tabs--right .el-tabs__nav-wrap.is-right.is-scrollable{padding:30px 0}.el-tabs--left .el-tabs__nav-wrap.is-left:after,.el-tabs--left .el-tabs__nav-wrap.is-right:after,.el-tabs--right .el-tabs__nav-wrap.is-left:after,.el-tabs--right .el-tabs__nav-wrap.is-right:after{height:100%;width:2px;bottom:auto;top:0}.el-tabs--left .el-tabs__nav.is-left,.el-tabs--left .el-tabs__nav.is-right,.el-tabs--right .el-tabs__nav.is-left,.el-tabs--right .el-tabs__nav.is-right{float:none}.el-tabs--left .el-tabs__item.is-left,.el-tabs--left .el-tabs__item.is-right,.el-tabs--right .el-tabs__item.is-left,.el-tabs--right .el-tabs__item.is-right{display:block}.el-tabs--left.el-tabs--card .el-tabs__active-bar.is-left,.el-tabs--right.el-tabs--card .el-tabs__active-bar.is-right{display:none}.el-tabs--left .el-tabs__header.is-left{float:left;margin-bottom:0;margin-right:10px}.el-tabs--left .el-tabs__nav-wrap.is-left{margin-right:-1px}.el-tabs--left .el-tabs__item.is-left{text-align:right}.el-tabs--left.el-tabs--card .el-tabs__item.is-left{border-left:none;border-right:1px solid #e4e7ed;border-bottom:none;border-top:1px solid #e4e7ed;text-align:left}.el-tabs--left.el-tabs--card .el-tabs__item.is-left:first-child{border-right:1px solid #e4e7ed;border-top:none}.el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active{border:1px solid #e4e7ed;border-right-color:#fff;border-left:none;border-bottom:none}.el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active:first-child{border-top:none}.el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active:last-child{border-bottom:none}.el-tabs--left.el-tabs--card .el-tabs__nav{border-radius:4px 0 0 4px;border-bottom:1px solid #e4e7ed;border-right:none}.el-tabs--left.el-tabs--card .el-tabs__new-tab{float:none}.el-tabs--left.el-tabs--border-card .el-tabs__header.is-left{border-right:1px solid #dfe4ed}.el-tabs--left.el-tabs--border-card .el-tabs__item.is-left{border:1px solid transparent;margin:-1px 0 -1px -1px}.el-tabs--left.el-tabs--border-card .el-tabs__item.is-left.is-active{border-color:#d1dbe5 transparent}.el-tabs--right .el-tabs__header.is-right{float:right;margin-bottom:0;margin-left:10px}.el-tabs--right .el-tabs__nav-wrap.is-right{margin-left:-1px}.el-tabs--right .el-tabs__nav-wrap.is-right:after{left:0;right:auto}.el-tabs--right .el-tabs__active-bar.is-right{left:0}.el-tabs--right.el-tabs--card .el-tabs__item.is-right{border-bottom:none;border-top:1px solid #e4e7ed}.el-tabs--right.el-tabs--card .el-tabs__item.is-right:first-child{border-left:1px solid #e4e7ed;border-top:none}.el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active{border:1px solid #e4e7ed;border-left-color:#fff;border-right:none;border-bottom:none}.el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active:first-child{border-top:none}.el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active:last-child{border-bottom:none}.el-tabs--right.el-tabs--card .el-tabs__nav{border-radius:0 4px 4px 0;border-bottom:1px solid #e4e7ed;border-left:none}.el-tabs--right.el-tabs--border-card .el-tabs__header.is-right{border-left:1px solid #dfe4ed}.el-tabs--right.el-tabs--border-card .el-tabs__item.is-right{border:1px solid transparent;margin:-1px -1px -1px 0}.el-tabs--right.el-tabs--border-card .el-tabs__item.is-right.is-active{border-color:#d1dbe5 transparent}.slideInLeft-transition,.slideInRight-transition{display:inline-block}.slideInRight-enter{-webkit-animation:slideInRight-enter .3s;animation:slideInRight-enter .3s}.slideInRight-leave{position:absolute;left:0;right:0;-webkit-animation:slideInRight-leave .3s;animation:slideInRight-leave .3s}.slideInLeft-enter{-webkit-animation:slideInLeft-enter .3s;animation:slideInLeft-enter .3s}.slideInLeft-leave{position:absolute;left:0;right:0;-webkit-animation:slideInLeft-leave .3s;animation:slideInLeft-leave .3s}@-webkit-keyframes slideInRight-enter{0%{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(100%);transform:translateX(100%)}to{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight-enter{0%{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(100%);transform:translateX(100%)}to{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes slideInRight-leave{0%{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0);opacity:1}to{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(100%);transform:translateX(100%);opacity:0}}@keyframes slideInRight-leave{0%{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0);opacity:1}to{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(100%);transform:translateX(100%);opacity:0}}@-webkit-keyframes slideInLeft-enter{0%{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInLeft-enter{0%{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes slideInLeft-leave{0%{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0);opacity:1}to{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(-100%);transform:translateX(-100%);opacity:0}}@keyframes slideInLeft-leave{0%{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0);opacity:1}to{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(-100%);transform:translateX(-100%);opacity:0}}.el-tree{position:relative;cursor:default;background:#fff;color:#606266}.el-tree__empty-block{position:relative;min-height:60px;text-align:center;width:100%;height:100%}.el-tree__empty-text{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);color:#909399;font-size:14px}.el-tree__drop-indicator{position:absolute;left:0;right:0;height:1px;background-color:#409eff}.el-tree-node{white-space:nowrap;outline:0}.el-tree-node:focus>.el-tree-node__content{background-color:#f5f7fa}.el-tree-node.is-drop-inner>.el-tree-node__content .el-tree-node__label{background-color:#409eff;color:#fff}.el-tree-node__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:26px;cursor:pointer}.el-tree-node__content>.el-tree-node__expand-icon{padding:6px}.el-tree-node__content>label.el-checkbox{margin-right:8px}.el-tree-node__content:hover{background-color:#f5f7fa}.el-tree.is-dragging .el-tree-node__content{cursor:move}.el-tree.is-dragging.is-drop-not-allow .el-tree-node__content{cursor:not-allowed}.el-tree-node__expand-icon{cursor:pointer;color:#c0c4cc;font-size:12px;-webkit-transform:rotate(0);transform:rotate(0);-webkit-transition:-webkit-transform .3s ease-in-out;transition:-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out;transition:transform .3s ease-in-out,-webkit-transform .3s ease-in-out}.el-tree-node__expand-icon.expanded{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.el-tree-node__expand-icon.is-leaf{color:transparent;cursor:default}.el-tree-node__label{font-size:14px}.el-tree-node__loading-icon{margin-right:8px;font-size:14px;color:#c0c4cc}.el-tree-node>.el-tree-node__children{overflow:hidden;background-color:transparent}.el-tree-node.is-expanded>.el-tree-node__children{display:block}.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{background-color:#f0f7ff}.el-alert{width:100%;padding:8px 16px;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;position:relative;background-color:#fff;overflow:hidden;opacity:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:opacity .2s;transition:opacity .2s}.el-alert.is-light .el-alert__closebtn{color:#c0c4cc}.el-alert.is-dark .el-alert__closebtn,.el-alert.is-dark .el-alert__description{color:#fff}.el-alert.is-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.el-alert--success.is-light{background-color:#f0f9eb;color:#67c23a}.el-alert--success.is-light .el-alert__description{color:#67c23a}.el-alert--success.is-dark{background-color:#67c23a;color:#fff}.el-alert--info.is-light{background-color:#f4f4f5;color:#909399}.el-alert--info.is-dark{background-color:#909399;color:#fff}.el-alert--info .el-alert__description{color:#909399}.el-alert--warning.is-light{background-color:#fdf6ec;color:#e6a23c}.el-alert--warning.is-light .el-alert__description{color:#e6a23c}.el-alert--warning.is-dark{background-color:#e6a23c;color:#fff}.el-alert--error.is-light{background-color:#fef0f0;color:#f56c6c}.el-alert--error.is-light .el-alert__description{color:#f56c6c}.el-alert--error.is-dark{background-color:#f56c6c;color:#fff}.el-alert__content{display:table-cell;padding:0 8px}.el-alert__icon{font-size:16px;width:16px}.el-alert__icon.is-big{font-size:28px;width:28px}.el-alert__title{font-size:13px;line-height:18px}.el-alert__title.is-bold{font-weight:700}.el-alert .el-alert__description{font-size:12px;margin:5px 0 0}.el-alert__closebtn{font-size:12px;opacity:1;position:absolute;top:12px;right:15px;cursor:pointer}.el-alert-fade-enter,.el-alert-fade-leave-active,.el-loading-fade-enter,.el-loading-fade-leave-active,.el-notification-fade-leave-active{opacity:0}.el-alert__closebtn.is-customed{font-style:normal;font-size:13px;top:9px}.el-notification{display:-webkit-box;display:-ms-flexbox;display:flex;width:330px;padding:14px 26px 14px 13px;border-radius:8px;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #ebeef5;position:fixed;background-color:#fff;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);-webkit-transition:opacity .3s,left .3s,right .3s,top .4s,bottom .3s,-webkit-transform .3s;transition:opacity .3s,left .3s,right .3s,top .4s,bottom .3s,-webkit-transform .3s;transition:opacity .3s,transform .3s,left .3s,right .3s,top .4s,bottom .3s;transition:opacity .3s,transform .3s,left .3s,right .3s,top .4s,bottom .3s,-webkit-transform .3s;overflow:hidden}.el-notification.right{right:16px}.el-notification.left{left:16px}.el-notification__group{margin-left:13px;margin-right:8px}.el-notification__title{font-weight:700;font-size:16px;color:#303133;margin:0}.el-notification__content{font-size:14px;line-height:21px;margin:6px 0 0;color:#606266;text-align:justify}.el-notification__content p{margin:0}.el-notification__icon{height:24px;width:24px;font-size:24px}.el-notification__closeBtn{position:absolute;top:18px;right:15px;cursor:pointer;color:#909399;font-size:16px}.el-notification__closeBtn:hover{color:#606266}.el-notification .el-icon-success{color:#67c23a}.el-notification .el-icon-error{color:#f56c6c}.el-notification .el-icon-info{color:#909399}.el-notification .el-icon-warning{color:#e6a23c}.el-notification-fade-enter.right{right:0;-webkit-transform:translateX(100%);transform:translateX(100%)}.el-notification-fade-enter.left{left:0;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.el-input-number{position:relative;display:inline-block;width:180px;line-height:38px}.el-input-number .el-input{display:block}.el-input-number .el-input__inner{-webkit-appearance:none;padding-left:50px;padding-right:50px;text-align:center}.el-input-number__decrease,.el-input-number__increase{position:absolute;z-index:1;top:1px;width:40px;height:auto;text-align:center;background:#f5f7fa;color:#606266;cursor:pointer;font-size:13px}.el-input-number__decrease:hover,.el-input-number__increase:hover{color:#409eff}.el-input-number__decrease:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled),.el-input-number__increase:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled){border-color:#409eff}.el-input-number__decrease.is-disabled,.el-input-number__increase.is-disabled{color:#c0c4cc;cursor:not-allowed}.el-input-number__increase{right:1px;border-radius:0 4px 4px 0;border-left:1px solid #dcdfe6}.el-input-number__decrease{left:1px;border-radius:4px 0 0 4px;border-right:1px solid #dcdfe6}.el-input-number.is-disabled .el-input-number__decrease,.el-input-number.is-disabled .el-input-number__increase{border-color:#e4e7ed;color:#e4e7ed}.el-input-number.is-disabled .el-input-number__decrease:hover,.el-input-number.is-disabled .el-input-number__increase:hover{color:#e4e7ed;cursor:not-allowed}.el-input-number--medium{width:200px;line-height:34px}.el-input-number--medium .el-input-number__decrease,.el-input-number--medium .el-input-number__increase{width:36px;font-size:14px}.el-input-number--medium .el-input__inner{padding-left:43px;padding-right:43px}.el-input-number--small{width:130px;line-height:30px}.el-input-number--small .el-input-number__decrease,.el-input-number--small .el-input-number__increase{width:32px;font-size:13px}.el-input-number--small .el-input-number__decrease [class*=el-icon],.el-input-number--small .el-input-number__increase [class*=el-icon]{-webkit-transform:scale(.9);transform:scale(.9)}.el-input-number--small .el-input__inner{padding-left:39px;padding-right:39px}.el-input-number--mini{width:130px;line-height:26px}.el-input-number--mini .el-input-number__decrease,.el-input-number--mini .el-input-number__increase{width:28px;font-size:12px}.el-input-number--mini .el-input-number__decrease [class*=el-icon],.el-input-number--mini .el-input-number__increase [class*=el-icon]{-webkit-transform:scale(.8);transform:scale(.8)}.el-input-number--mini .el-input__inner{padding-left:35px;padding-right:35px}.el-input-number.is-without-controls .el-input__inner{padding-left:15px;padding-right:15px}.el-input-number.is-controls-right .el-input__inner{padding-left:15px;padding-right:50px}.el-input-number.is-controls-right .el-input-number__decrease,.el-input-number.is-controls-right .el-input-number__increase{height:auto;line-height:19px}.el-input-number.is-controls-right .el-input-number__decrease [class*=el-icon],.el-input-number.is-controls-right .el-input-number__increase [class*=el-icon]{-webkit-transform:scale(.8);transform:scale(.8)}.el-input-number.is-controls-right .el-input-number__increase{border-radius:0 4px 0 0;border-bottom:1px solid #dcdfe6}.el-input-number.is-controls-right .el-input-number__decrease{right:1px;bottom:1px;top:auto;left:auto;border-right:none;border-left:1px solid #dcdfe6;border-radius:0 0 4px}.el-input-number.is-controls-right[class*=medium] [class*=decrease],.el-input-number.is-controls-right[class*=medium] [class*=increase]{line-height:17px}.el-input-number.is-controls-right[class*=small] [class*=decrease],.el-input-number.is-controls-right[class*=small] [class*=increase]{line-height:15px}.el-input-number.is-controls-right[class*=mini] [class*=decrease],.el-input-number.is-controls-right[class*=mini] [class*=increase]{line-height:13px}.el-tooltip__popper{position:absolute;border-radius:4px;padding:10px;z-index:2000;font-size:12px;line-height:1.2;min-width:10px;word-wrap:break-word}.el-tooltip__popper .popper__arrow,.el-tooltip__popper .popper__arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.el-tooltip__popper .popper__arrow{border-width:6px}.el-tooltip__popper .popper__arrow:after{content:\" \";border-width:5px}.el-progress-bar__inner:after,.el-row:after,.el-row:before,.el-slider:after,.el-slider:before,.el-slider__button-wrapper:after,.el-upload-cover:after{content:\"\"}.el-tooltip__popper[x-placement^=top]{margin-bottom:12px}.el-tooltip__popper[x-placement^=top] .popper__arrow{bottom:-6px;border-top-color:#303133;border-bottom-width:0}.el-tooltip__popper[x-placement^=top] .popper__arrow:after{bottom:1px;margin-left:-5px;border-top-color:#303133;border-bottom-width:0}.el-tooltip__popper[x-placement^=bottom]{margin-top:12px}.el-tooltip__popper[x-placement^=bottom] .popper__arrow{top:-6px;border-top-width:0;border-bottom-color:#303133}.el-tooltip__popper[x-placement^=bottom] .popper__arrow:after{top:1px;margin-left:-5px;border-top-width:0;border-bottom-color:#303133}.el-tooltip__popper[x-placement^=right]{margin-left:12px}.el-tooltip__popper[x-placement^=right] .popper__arrow{left:-6px;border-right-color:#303133;border-left-width:0}.el-tooltip__popper[x-placement^=right] .popper__arrow:after{bottom:-5px;left:1px;border-right-color:#303133;border-left-width:0}.el-tooltip__popper[x-placement^=left]{margin-right:12px}.el-tooltip__popper[x-placement^=left] .popper__arrow{right:-6px;border-right-width:0;border-left-color:#303133}.el-tooltip__popper[x-placement^=left] .popper__arrow:after{right:1px;bottom:-5px;margin-left:-5px;border-right-width:0;border-left-color:#303133}.el-tooltip__popper.is-dark{background:#303133;color:#fff}.el-tooltip__popper.is-light{background:#fff;border:1px solid #303133}.el-tooltip__popper.is-light[x-placement^=top] .popper__arrow{border-top-color:#303133}.el-tooltip__popper.is-light[x-placement^=top] .popper__arrow:after{border-top-color:#fff}.el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow{border-bottom-color:#303133}.el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow:after{border-bottom-color:#fff}.el-tooltip__popper.is-light[x-placement^=left] .popper__arrow{border-left-color:#303133}.el-tooltip__popper.is-light[x-placement^=left] .popper__arrow:after{border-left-color:#fff}.el-tooltip__popper.is-light[x-placement^=right] .popper__arrow{border-right-color:#303133}.el-tooltip__popper.is-light[x-placement^=right] .popper__arrow:after{border-right-color:#fff}.el-slider:after,.el-slider:before{display:table}.el-slider__button-wrapper .el-tooltip,.el-slider__button-wrapper:after{vertical-align:middle;display:inline-block}.el-slider:after{clear:both}.el-slider__runway{width:100%;height:6px;margin:16px 0;background-color:#e4e7ed;border-radius:3px;position:relative;cursor:pointer;vertical-align:middle}.el-slider__runway.show-input{margin-right:160px;width:auto}.el-slider__runway.disabled{cursor:default}.el-slider__runway.disabled .el-slider__bar{background-color:#c0c4cc}.el-slider__runway.disabled .el-slider__button{border-color:#c0c4cc}.el-slider__runway.disabled .el-slider__button-wrapper.dragging,.el-slider__runway.disabled .el-slider__button-wrapper.hover,.el-slider__runway.disabled .el-slider__button-wrapper:hover{cursor:not-allowed}.el-slider__runway.disabled .el-slider__button.dragging,.el-slider__runway.disabled .el-slider__button.hover,.el-slider__runway.disabled .el-slider__button:hover{-webkit-transform:scale(1);transform:scale(1);cursor:not-allowed}.el-slider__button-wrapper,.el-slider__stop{-webkit-transform:translateX(-50%);position:absolute}.el-slider__input{float:right;margin-top:3px;width:130px}.el-slider__input.el-input-number--mini{margin-top:5px}.el-slider__input.el-input-number--medium{margin-top:0}.el-slider__input.el-input-number--large{margin-top:-2px}.el-slider__bar{height:6px;background-color:#409eff;border-top-left-radius:3px;border-bottom-left-radius:3px;position:absolute}.el-slider__button-wrapper{height:36px;width:36px;z-index:1001;top:-15px;-webkit-transform:translateX(-50%);transform:translateX(-50%);background-color:transparent;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:normal}.el-slider__button-wrapper:after{height:100%}.el-slider__button-wrapper.hover,.el-slider__button-wrapper:hover{cursor:-webkit-grab;cursor:grab}.el-slider__button-wrapper.dragging{cursor:-webkit-grabbing;cursor:grabbing}.el-slider__button{width:16px;height:16px;border:2px solid #409eff;background-color:#fff;border-radius:50%;-webkit-transition:.2s;transition:.2s;user-select:none}.el-image-viewer__btn,.el-slider__button,.el-step__icon-inner{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.el-slider__button.dragging,.el-slider__button.hover,.el-slider__button:hover{-webkit-transform:scale(1.2);transform:scale(1.2)}.el-slider__button.hover,.el-slider__button:hover{cursor:-webkit-grab;cursor:grab}.el-slider__button.dragging{cursor:-webkit-grabbing;cursor:grabbing}.el-slider__stop{height:6px;width:6px;border-radius:100%;background-color:#fff;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.el-slider__marks{top:0;left:12px;width:18px;height:100%}.el-slider__marks-text{position:absolute;-webkit-transform:translateX(-50%);transform:translateX(-50%);font-size:14px;color:#909399;margin-top:15px}.el-slider.is-vertical{position:relative}.el-slider.is-vertical .el-slider__runway{width:6px;height:100%;margin:0 16px}.el-slider.is-vertical .el-slider__bar{width:6px;height:auto;border-radius:0 0 3px 3px}.el-slider.is-vertical .el-slider__button-wrapper{top:auto;left:-15px}.el-slider.is-vertical .el-slider__button-wrapper,.el-slider.is-vertical .el-slider__stop{-webkit-transform:translateY(50%);transform:translateY(50%)}.el-slider.is-vertical.el-slider--with-input{padding-bottom:58px}.el-slider.is-vertical.el-slider--with-input .el-slider__input{overflow:visible;float:none;position:absolute;bottom:22px;width:36px;margin-top:15px}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input__inner{text-align:center;padding-left:5px;padding-right:5px}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__decrease,.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase{top:32px;margin-top:-1px;border:1px solid #dcdfe6;line-height:20px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__decrease{width:18px;right:18px;border-bottom-left-radius:4px}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase{width:19px;border-bottom-right-radius:4px}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase~.el-input .el-input__inner{border-bottom-left-radius:0;border-bottom-right-radius:0}.el-slider.is-vertical.el-slider--with-input .el-slider__input:hover .el-input-number__decrease,.el-slider.is-vertical.el-slider--with-input .el-slider__input:hover .el-input-number__increase{border-color:#c0c4cc}.el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__decrease,.el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__increase{border-color:#409eff}.el-slider.is-vertical .el-slider__marks-text{margin-top:0;left:15px;-webkit-transform:translateY(50%);transform:translateY(50%)}.el-loading-parent--relative{position:relative!important}.el-loading-parent--hidden{overflow:hidden!important}.el-loading-mask{position:absolute;z-index:2000;background-color:hsla(0,0%,100%,.9);margin:0;top:0;right:0;bottom:0;left:0;-webkit-transition:opacity .3s;transition:opacity .3s}.el-loading-mask.is-fullscreen{position:fixed}.el-loading-mask.is-fullscreen .el-loading-spinner{margin-top:-25px}.el-loading-mask.is-fullscreen .el-loading-spinner .circular{height:50px;width:50px}.el-loading-spinner{top:50%;margin-top:-21px;width:100%;text-align:center;position:absolute}.el-col-pull-0,.el-col-pull-1,.el-col-pull-2,.el-col-pull-3,.el-col-pull-4,.el-col-pull-5,.el-col-pull-6,.el-col-pull-7,.el-col-pull-8,.el-col-pull-9,.el-col-pull-10,.el-col-pull-11,.el-col-pull-13,.el-col-pull-14,.el-col-pull-15,.el-col-pull-16,.el-col-pull-17,.el-col-pull-18,.el-col-pull-19,.el-col-pull-20,.el-col-pull-21,.el-col-pull-22,.el-col-pull-23,.el-col-pull-24,.el-col-push-0,.el-col-push-1,.el-col-push-2,.el-col-push-3,.el-col-push-4,.el-col-push-5,.el-col-push-6,.el-col-push-7,.el-col-push-8,.el-col-push-9,.el-col-push-10,.el-col-push-11,.el-col-push-12,.el-col-push-13,.el-col-push-14,.el-col-push-15,.el-col-push-16,.el-col-push-17,.el-col-push-18,.el-col-push-19,.el-col-push-20,.el-col-push-21,.el-col-push-22,.el-col-push-23,.el-col-push-24,.el-row{position:relative}.el-loading-spinner .el-loading-text{color:#409eff;margin:3px 0;font-size:14px}.el-loading-spinner .circular{height:42px;width:42px;-webkit-animation:loading-rotate 2s linear infinite;animation:loading-rotate 2s linear infinite}.el-loading-spinner .path{-webkit-animation:loading-dash 1.5s ease-in-out infinite;animation:loading-dash 1.5s ease-in-out infinite;stroke-dasharray:90,150;stroke-dashoffset:0;stroke-width:2;stroke:#409eff;stroke-linecap:round}.el-loading-spinner i{color:#409eff}@-webkit-keyframes loading-rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes loading-rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-40px}to{stroke-dasharray:90,150;stroke-dashoffset:-120px}}@keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-40px}to{stroke-dasharray:90,150;stroke-dashoffset:-120px}}.el-row{-webkit-box-sizing:border-box;box-sizing:border-box}.el-row:after,.el-row:before{display:table}.el-row:after{clear:both}.el-row--flex{display:-webkit-box;display:-ms-flexbox;display:flex}.el-col-0,.el-row--flex:after,.el-row--flex:before{display:none}.el-row--flex.is-justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.el-row--flex.is-justify-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.el-row--flex.is-justify-space-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.el-row--flex.is-justify-space-around{-ms-flex-pack:distribute;justify-content:space-around}.el-row--flex.is-align-middle{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-row--flex.is-align-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}[class*=el-col-]{float:left;-webkit-box-sizing:border-box;box-sizing:border-box}.el-upload--picture-card,.el-upload-dragger{-webkit-box-sizing:border-box;cursor:pointer}.el-col-0{width:0}.el-col-offset-0{margin-left:0}.el-col-pull-0{right:0}.el-col-push-0{left:0}.el-col-1{width:4.16667%}.el-col-offset-1{margin-left:4.16667%}.el-col-pull-1{right:4.16667%}.el-col-push-1{left:4.16667%}.el-col-2{width:8.33333%}.el-col-offset-2{margin-left:8.33333%}.el-col-pull-2{right:8.33333%}.el-col-push-2{left:8.33333%}.el-col-3{width:12.5%}.el-col-offset-3{margin-left:12.5%}.el-col-pull-3{right:12.5%}.el-col-push-3{left:12.5%}.el-col-4{width:16.66667%}.el-col-offset-4{margin-left:16.66667%}.el-col-pull-4{right:16.66667%}.el-col-push-4{left:16.66667%}.el-col-5{width:20.83333%}.el-col-offset-5{margin-left:20.83333%}.el-col-pull-5{right:20.83333%}.el-col-push-5{left:20.83333%}.el-col-6{width:25%}.el-col-offset-6{margin-left:25%}.el-col-pull-6{right:25%}.el-col-push-6{left:25%}.el-col-7{width:29.16667%}.el-col-offset-7{margin-left:29.16667%}.el-col-pull-7{right:29.16667%}.el-col-push-7{left:29.16667%}.el-col-8{width:33.33333%}.el-col-offset-8{margin-left:33.33333%}.el-col-pull-8{right:33.33333%}.el-col-push-8{left:33.33333%}.el-col-9{width:37.5%}.el-col-offset-9{margin-left:37.5%}.el-col-pull-9{right:37.5%}.el-col-push-9{left:37.5%}.el-col-10{width:41.66667%}.el-col-offset-10{margin-left:41.66667%}.el-col-pull-10{right:41.66667%}.el-col-push-10{left:41.66667%}.el-col-11{width:45.83333%}.el-col-offset-11{margin-left:45.83333%}.el-col-pull-11{right:45.83333%}.el-col-push-11{left:45.83333%}.el-col-12{width:50%}.el-col-offset-12{margin-left:50%}.el-col-pull-12{position:relative;right:50%}.el-col-push-12{left:50%}.el-col-13{width:54.16667%}.el-col-offset-13{margin-left:54.16667%}.el-col-pull-13{right:54.16667%}.el-col-push-13{left:54.16667%}.el-col-14{width:58.33333%}.el-col-offset-14{margin-left:58.33333%}.el-col-pull-14{right:58.33333%}.el-col-push-14{left:58.33333%}.el-col-15{width:62.5%}.el-col-offset-15{margin-left:62.5%}.el-col-pull-15{right:62.5%}.el-col-push-15{left:62.5%}.el-col-16{width:66.66667%}.el-col-offset-16{margin-left:66.66667%}.el-col-pull-16{right:66.66667%}.el-col-push-16{left:66.66667%}.el-col-17{width:70.83333%}.el-col-offset-17{margin-left:70.83333%}.el-col-pull-17{right:70.83333%}.el-col-push-17{left:70.83333%}.el-col-18{width:75%}.el-col-offset-18{margin-left:75%}.el-col-pull-18{right:75%}.el-col-push-18{left:75%}.el-col-19{width:79.16667%}.el-col-offset-19{margin-left:79.16667%}.el-col-pull-19{right:79.16667%}.el-col-push-19{left:79.16667%}.el-col-20{width:83.33333%}.el-col-offset-20{margin-left:83.33333%}.el-col-pull-20{right:83.33333%}.el-col-push-20{left:83.33333%}.el-col-21{width:87.5%}.el-col-offset-21{margin-left:87.5%}.el-col-pull-21{right:87.5%}.el-col-push-21{left:87.5%}.el-col-22{width:91.66667%}.el-col-offset-22{margin-left:91.66667%}.el-col-pull-22{right:91.66667%}.el-col-push-22{left:91.66667%}.el-col-23{width:95.83333%}.el-col-offset-23{margin-left:95.83333%}.el-col-pull-23{right:95.83333%}.el-col-push-23{left:95.83333%}.el-col-24{width:100%}.el-col-offset-24{margin-left:100%}.el-col-pull-24{right:100%}.el-col-push-24{left:100%}@media only screen and (max-width:767px){.el-col-xs-0{display:none;width:0}.el-col-xs-offset-0{margin-left:0}.el-col-xs-pull-0{position:relative;right:0}.el-col-xs-push-0{position:relative;left:0}.el-col-xs-1{width:4.16667%}.el-col-xs-offset-1{margin-left:4.16667%}.el-col-xs-pull-1{position:relative;right:4.16667%}.el-col-xs-push-1{position:relative;left:4.16667%}.el-col-xs-2{width:8.33333%}.el-col-xs-offset-2{margin-left:8.33333%}.el-col-xs-pull-2{position:relative;right:8.33333%}.el-col-xs-push-2{position:relative;left:8.33333%}.el-col-xs-3{width:12.5%}.el-col-xs-offset-3{margin-left:12.5%}.el-col-xs-pull-3{position:relative;right:12.5%}.el-col-xs-push-3{position:relative;left:12.5%}.el-col-xs-4{width:16.66667%}.el-col-xs-offset-4{margin-left:16.66667%}.el-col-xs-pull-4{position:relative;right:16.66667%}.el-col-xs-push-4{position:relative;left:16.66667%}.el-col-xs-5{width:20.83333%}.el-col-xs-offset-5{margin-left:20.83333%}.el-col-xs-pull-5{position:relative;right:20.83333%}.el-col-xs-push-5{position:relative;left:20.83333%}.el-col-xs-6{width:25%}.el-col-xs-offset-6{margin-left:25%}.el-col-xs-pull-6{position:relative;right:25%}.el-col-xs-push-6{position:relative;left:25%}.el-col-xs-7{width:29.16667%}.el-col-xs-offset-7{margin-left:29.16667%}.el-col-xs-pull-7{position:relative;right:29.16667%}.el-col-xs-push-7{position:relative;left:29.16667%}.el-col-xs-8{width:33.33333%}.el-col-xs-offset-8{margin-left:33.33333%}.el-col-xs-pull-8{position:relative;right:33.33333%}.el-col-xs-push-8{position:relative;left:33.33333%}.el-col-xs-9{width:37.5%}.el-col-xs-offset-9{margin-left:37.5%}.el-col-xs-pull-9{position:relative;right:37.5%}.el-col-xs-push-9{position:relative;left:37.5%}.el-col-xs-10{width:41.66667%}.el-col-xs-offset-10{margin-left:41.66667%}.el-col-xs-pull-10{position:relative;right:41.66667%}.el-col-xs-push-10{position:relative;left:41.66667%}.el-col-xs-11{width:45.83333%}.el-col-xs-offset-11{margin-left:45.83333%}.el-col-xs-pull-11{position:relative;right:45.83333%}.el-col-xs-push-11{position:relative;left:45.83333%}.el-col-xs-12{width:50%}.el-col-xs-offset-12{margin-left:50%}.el-col-xs-pull-12{position:relative;right:50%}.el-col-xs-push-12{position:relative;left:50%}.el-col-xs-13{width:54.16667%}.el-col-xs-offset-13{margin-left:54.16667%}.el-col-xs-pull-13{position:relative;right:54.16667%}.el-col-xs-push-13{position:relative;left:54.16667%}.el-col-xs-14{width:58.33333%}.el-col-xs-offset-14{margin-left:58.33333%}.el-col-xs-pull-14{position:relative;right:58.33333%}.el-col-xs-push-14{position:relative;left:58.33333%}.el-col-xs-15{width:62.5%}.el-col-xs-offset-15{margin-left:62.5%}.el-col-xs-pull-15{position:relative;right:62.5%}.el-col-xs-push-15{position:relative;left:62.5%}.el-col-xs-16{width:66.66667%}.el-col-xs-offset-16{margin-left:66.66667%}.el-col-xs-pull-16{position:relative;right:66.66667%}.el-col-xs-push-16{position:relative;left:66.66667%}.el-col-xs-17{width:70.83333%}.el-col-xs-offset-17{margin-left:70.83333%}.el-col-xs-pull-17{position:relative;right:70.83333%}.el-col-xs-push-17{position:relative;left:70.83333%}.el-col-xs-18{width:75%}.el-col-xs-offset-18{margin-left:75%}.el-col-xs-pull-18{position:relative;right:75%}.el-col-xs-push-18{position:relative;left:75%}.el-col-xs-19{width:79.16667%}.el-col-xs-offset-19{margin-left:79.16667%}.el-col-xs-pull-19{position:relative;right:79.16667%}.el-col-xs-push-19{position:relative;left:79.16667%}.el-col-xs-20{width:83.33333%}.el-col-xs-offset-20{margin-left:83.33333%}.el-col-xs-pull-20{position:relative;right:83.33333%}.el-col-xs-push-20{position:relative;left:83.33333%}.el-col-xs-21{width:87.5%}.el-col-xs-offset-21{margin-left:87.5%}.el-col-xs-pull-21{position:relative;right:87.5%}.el-col-xs-push-21{position:relative;left:87.5%}.el-col-xs-22{width:91.66667%}.el-col-xs-offset-22{margin-left:91.66667%}.el-col-xs-pull-22{position:relative;right:91.66667%}.el-col-xs-push-22{position:relative;left:91.66667%}.el-col-xs-23{width:95.83333%}.el-col-xs-offset-23{margin-left:95.83333%}.el-col-xs-pull-23{position:relative;right:95.83333%}.el-col-xs-push-23{position:relative;left:95.83333%}.el-col-xs-24{width:100%}.el-col-xs-offset-24{margin-left:100%}.el-col-xs-pull-24{position:relative;right:100%}.el-col-xs-push-24{position:relative;left:100%}}@media only screen and (min-width:768px){.el-col-sm-0{display:none;width:0}.el-col-sm-offset-0{margin-left:0}.el-col-sm-pull-0{position:relative;right:0}.el-col-sm-push-0{position:relative;left:0}.el-col-sm-1{width:4.16667%}.el-col-sm-offset-1{margin-left:4.16667%}.el-col-sm-pull-1{position:relative;right:4.16667%}.el-col-sm-push-1{position:relative;left:4.16667%}.el-col-sm-2{width:8.33333%}.el-col-sm-offset-2{margin-left:8.33333%}.el-col-sm-pull-2{position:relative;right:8.33333%}.el-col-sm-push-2{position:relative;left:8.33333%}.el-col-sm-3{width:12.5%}.el-col-sm-offset-3{margin-left:12.5%}.el-col-sm-pull-3{position:relative;right:12.5%}.el-col-sm-push-3{position:relative;left:12.5%}.el-col-sm-4{width:16.66667%}.el-col-sm-offset-4{margin-left:16.66667%}.el-col-sm-pull-4{position:relative;right:16.66667%}.el-col-sm-push-4{position:relative;left:16.66667%}.el-col-sm-5{width:20.83333%}.el-col-sm-offset-5{margin-left:20.83333%}.el-col-sm-pull-5{position:relative;right:20.83333%}.el-col-sm-push-5{position:relative;left:20.83333%}.el-col-sm-6{width:25%}.el-col-sm-offset-6{margin-left:25%}.el-col-sm-pull-6{position:relative;right:25%}.el-col-sm-push-6{position:relative;left:25%}.el-col-sm-7{width:29.16667%}.el-col-sm-offset-7{margin-left:29.16667%}.el-col-sm-pull-7{position:relative;right:29.16667%}.el-col-sm-push-7{position:relative;left:29.16667%}.el-col-sm-8{width:33.33333%}.el-col-sm-offset-8{margin-left:33.33333%}.el-col-sm-pull-8{position:relative;right:33.33333%}.el-col-sm-push-8{position:relative;left:33.33333%}.el-col-sm-9{width:37.5%}.el-col-sm-offset-9{margin-left:37.5%}.el-col-sm-pull-9{position:relative;right:37.5%}.el-col-sm-push-9{position:relative;left:37.5%}.el-col-sm-10{width:41.66667%}.el-col-sm-offset-10{margin-left:41.66667%}.el-col-sm-pull-10{position:relative;right:41.66667%}.el-col-sm-push-10{position:relative;left:41.66667%}.el-col-sm-11{width:45.83333%}.el-col-sm-offset-11{margin-left:45.83333%}.el-col-sm-pull-11{position:relative;right:45.83333%}.el-col-sm-push-11{position:relative;left:45.83333%}.el-col-sm-12{width:50%}.el-col-sm-offset-12{margin-left:50%}.el-col-sm-pull-12{position:relative;right:50%}.el-col-sm-push-12{position:relative;left:50%}.el-col-sm-13{width:54.16667%}.el-col-sm-offset-13{margin-left:54.16667%}.el-col-sm-pull-13{position:relative;right:54.16667%}.el-col-sm-push-13{position:relative;left:54.16667%}.el-col-sm-14{width:58.33333%}.el-col-sm-offset-14{margin-left:58.33333%}.el-col-sm-pull-14{position:relative;right:58.33333%}.el-col-sm-push-14{position:relative;left:58.33333%}.el-col-sm-15{width:62.5%}.el-col-sm-offset-15{margin-left:62.5%}.el-col-sm-pull-15{position:relative;right:62.5%}.el-col-sm-push-15{position:relative;left:62.5%}.el-col-sm-16{width:66.66667%}.el-col-sm-offset-16{margin-left:66.66667%}.el-col-sm-pull-16{position:relative;right:66.66667%}.el-col-sm-push-16{position:relative;left:66.66667%}.el-col-sm-17{width:70.83333%}.el-col-sm-offset-17{margin-left:70.83333%}.el-col-sm-pull-17{position:relative;right:70.83333%}.el-col-sm-push-17{position:relative;left:70.83333%}.el-col-sm-18{width:75%}.el-col-sm-offset-18{margin-left:75%}.el-col-sm-pull-18{position:relative;right:75%}.el-col-sm-push-18{position:relative;left:75%}.el-col-sm-19{width:79.16667%}.el-col-sm-offset-19{margin-left:79.16667%}.el-col-sm-pull-19{position:relative;right:79.16667%}.el-col-sm-push-19{position:relative;left:79.16667%}.el-col-sm-20{width:83.33333%}.el-col-sm-offset-20{margin-left:83.33333%}.el-col-sm-pull-20{position:relative;right:83.33333%}.el-col-sm-push-20{position:relative;left:83.33333%}.el-col-sm-21{width:87.5%}.el-col-sm-offset-21{margin-left:87.5%}.el-col-sm-pull-21{position:relative;right:87.5%}.el-col-sm-push-21{position:relative;left:87.5%}.el-col-sm-22{width:91.66667%}.el-col-sm-offset-22{margin-left:91.66667%}.el-col-sm-pull-22{position:relative;right:91.66667%}.el-col-sm-push-22{position:relative;left:91.66667%}.el-col-sm-23{width:95.83333%}.el-col-sm-offset-23{margin-left:95.83333%}.el-col-sm-pull-23{position:relative;right:95.83333%}.el-col-sm-push-23{position:relative;left:95.83333%}.el-col-sm-24{width:100%}.el-col-sm-offset-24{margin-left:100%}.el-col-sm-pull-24{position:relative;right:100%}.el-col-sm-push-24{position:relative;left:100%}}@media only screen and (min-width:992px){.el-col-md-0{display:none;width:0}.el-col-md-offset-0{margin-left:0}.el-col-md-pull-0{position:relative;right:0}.el-col-md-push-0{position:relative;left:0}.el-col-md-1{width:4.16667%}.el-col-md-offset-1{margin-left:4.16667%}.el-col-md-pull-1{position:relative;right:4.16667%}.el-col-md-push-1{position:relative;left:4.16667%}.el-col-md-2{width:8.33333%}.el-col-md-offset-2{margin-left:8.33333%}.el-col-md-pull-2{position:relative;right:8.33333%}.el-col-md-push-2{position:relative;left:8.33333%}.el-col-md-3{width:12.5%}.el-col-md-offset-3{margin-left:12.5%}.el-col-md-pull-3{position:relative;right:12.5%}.el-col-md-push-3{position:relative;left:12.5%}.el-col-md-4{width:16.66667%}.el-col-md-offset-4{margin-left:16.66667%}.el-col-md-pull-4{position:relative;right:16.66667%}.el-col-md-push-4{position:relative;left:16.66667%}.el-col-md-5{width:20.83333%}.el-col-md-offset-5{margin-left:20.83333%}.el-col-md-pull-5{position:relative;right:20.83333%}.el-col-md-push-5{position:relative;left:20.83333%}.el-col-md-6{width:25%}.el-col-md-offset-6{margin-left:25%}.el-col-md-pull-6{position:relative;right:25%}.el-col-md-push-6{position:relative;left:25%}.el-col-md-7{width:29.16667%}.el-col-md-offset-7{margin-left:29.16667%}.el-col-md-pull-7{position:relative;right:29.16667%}.el-col-md-push-7{position:relative;left:29.16667%}.el-col-md-8{width:33.33333%}.el-col-md-offset-8{margin-left:33.33333%}.el-col-md-pull-8{position:relative;right:33.33333%}.el-col-md-push-8{position:relative;left:33.33333%}.el-col-md-9{width:37.5%}.el-col-md-offset-9{margin-left:37.5%}.el-col-md-pull-9{position:relative;right:37.5%}.el-col-md-push-9{position:relative;left:37.5%}.el-col-md-10{width:41.66667%}.el-col-md-offset-10{margin-left:41.66667%}.el-col-md-pull-10{position:relative;right:41.66667%}.el-col-md-push-10{position:relative;left:41.66667%}.el-col-md-11{width:45.83333%}.el-col-md-offset-11{margin-left:45.83333%}.el-col-md-pull-11{position:relative;right:45.83333%}.el-col-md-push-11{position:relative;left:45.83333%}.el-col-md-12{width:50%}.el-col-md-offset-12{margin-left:50%}.el-col-md-pull-12{position:relative;right:50%}.el-col-md-push-12{position:relative;left:50%}.el-col-md-13{width:54.16667%}.el-col-md-offset-13{margin-left:54.16667%}.el-col-md-pull-13{position:relative;right:54.16667%}.el-col-md-push-13{position:relative;left:54.16667%}.el-col-md-14{width:58.33333%}.el-col-md-offset-14{margin-left:58.33333%}.el-col-md-pull-14{position:relative;right:58.33333%}.el-col-md-push-14{position:relative;left:58.33333%}.el-col-md-15{width:62.5%}.el-col-md-offset-15{margin-left:62.5%}.el-col-md-pull-15{position:relative;right:62.5%}.el-col-md-push-15{position:relative;left:62.5%}.el-col-md-16{width:66.66667%}.el-col-md-offset-16{margin-left:66.66667%}.el-col-md-pull-16{position:relative;right:66.66667%}.el-col-md-push-16{position:relative;left:66.66667%}.el-col-md-17{width:70.83333%}.el-col-md-offset-17{margin-left:70.83333%}.el-col-md-pull-17{position:relative;right:70.83333%}.el-col-md-push-17{position:relative;left:70.83333%}.el-col-md-18{width:75%}.el-col-md-offset-18{margin-left:75%}.el-col-md-pull-18{position:relative;right:75%}.el-col-md-push-18{position:relative;left:75%}.el-col-md-19{width:79.16667%}.el-col-md-offset-19{margin-left:79.16667%}.el-col-md-pull-19{position:relative;right:79.16667%}.el-col-md-push-19{position:relative;left:79.16667%}.el-col-md-20{width:83.33333%}.el-col-md-offset-20{margin-left:83.33333%}.el-col-md-pull-20{position:relative;right:83.33333%}.el-col-md-push-20{position:relative;left:83.33333%}.el-col-md-21{width:87.5%}.el-col-md-offset-21{margin-left:87.5%}.el-col-md-pull-21{position:relative;right:87.5%}.el-col-md-push-21{position:relative;left:87.5%}.el-col-md-22{width:91.66667%}.el-col-md-offset-22{margin-left:91.66667%}.el-col-md-pull-22{position:relative;right:91.66667%}.el-col-md-push-22{position:relative;left:91.66667%}.el-col-md-23{width:95.83333%}.el-col-md-offset-23{margin-left:95.83333%}.el-col-md-pull-23{position:relative;right:95.83333%}.el-col-md-push-23{position:relative;left:95.83333%}.el-col-md-24{width:100%}.el-col-md-offset-24{margin-left:100%}.el-col-md-pull-24{position:relative;right:100%}.el-col-md-push-24{position:relative;left:100%}}@media only screen and (min-width:1200px){.el-col-lg-0{display:none;width:0}.el-col-lg-offset-0{margin-left:0}.el-col-lg-pull-0{position:relative;right:0}.el-col-lg-push-0{position:relative;left:0}.el-col-lg-1{width:4.16667%}.el-col-lg-offset-1{margin-left:4.16667%}.el-col-lg-pull-1{position:relative;right:4.16667%}.el-col-lg-push-1{position:relative;left:4.16667%}.el-col-lg-2{width:8.33333%}.el-col-lg-offset-2{margin-left:8.33333%}.el-col-lg-pull-2{position:relative;right:8.33333%}.el-col-lg-push-2{position:relative;left:8.33333%}.el-col-lg-3{width:12.5%}.el-col-lg-offset-3{margin-left:12.5%}.el-col-lg-pull-3{position:relative;right:12.5%}.el-col-lg-push-3{position:relative;left:12.5%}.el-col-lg-4{width:16.66667%}.el-col-lg-offset-4{margin-left:16.66667%}.el-col-lg-pull-4{position:relative;right:16.66667%}.el-col-lg-push-4{position:relative;left:16.66667%}.el-col-lg-5{width:20.83333%}.el-col-lg-offset-5{margin-left:20.83333%}.el-col-lg-pull-5{position:relative;right:20.83333%}.el-col-lg-push-5{position:relative;left:20.83333%}.el-col-lg-6{width:25%}.el-col-lg-offset-6{margin-left:25%}.el-col-lg-pull-6{position:relative;right:25%}.el-col-lg-push-6{position:relative;left:25%}.el-col-lg-7{width:29.16667%}.el-col-lg-offset-7{margin-left:29.16667%}.el-col-lg-pull-7{position:relative;right:29.16667%}.el-col-lg-push-7{position:relative;left:29.16667%}.el-col-lg-8{width:33.33333%}.el-col-lg-offset-8{margin-left:33.33333%}.el-col-lg-pull-8{position:relative;right:33.33333%}.el-col-lg-push-8{position:relative;left:33.33333%}.el-col-lg-9{width:37.5%}.el-col-lg-offset-9{margin-left:37.5%}.el-col-lg-pull-9{position:relative;right:37.5%}.el-col-lg-push-9{position:relative;left:37.5%}.el-col-lg-10{width:41.66667%}.el-col-lg-offset-10{margin-left:41.66667%}.el-col-lg-pull-10{position:relative;right:41.66667%}.el-col-lg-push-10{position:relative;left:41.66667%}.el-col-lg-11{width:45.83333%}.el-col-lg-offset-11{margin-left:45.83333%}.el-col-lg-pull-11{position:relative;right:45.83333%}.el-col-lg-push-11{position:relative;left:45.83333%}.el-col-lg-12{width:50%}.el-col-lg-offset-12{margin-left:50%}.el-col-lg-pull-12{position:relative;right:50%}.el-col-lg-push-12{position:relative;left:50%}.el-col-lg-13{width:54.16667%}.el-col-lg-offset-13{margin-left:54.16667%}.el-col-lg-pull-13{position:relative;right:54.16667%}.el-col-lg-push-13{position:relative;left:54.16667%}.el-col-lg-14{width:58.33333%}.el-col-lg-offset-14{margin-left:58.33333%}.el-col-lg-pull-14{position:relative;right:58.33333%}.el-col-lg-push-14{position:relative;left:58.33333%}.el-col-lg-15{width:62.5%}.el-col-lg-offset-15{margin-left:62.5%}.el-col-lg-pull-15{position:relative;right:62.5%}.el-col-lg-push-15{position:relative;left:62.5%}.el-col-lg-16{width:66.66667%}.el-col-lg-offset-16{margin-left:66.66667%}.el-col-lg-pull-16{position:relative;right:66.66667%}.el-col-lg-push-16{position:relative;left:66.66667%}.el-col-lg-17{width:70.83333%}.el-col-lg-offset-17{margin-left:70.83333%}.el-col-lg-pull-17{position:relative;right:70.83333%}.el-col-lg-push-17{position:relative;left:70.83333%}.el-col-lg-18{width:75%}.el-col-lg-offset-18{margin-left:75%}.el-col-lg-pull-18{position:relative;right:75%}.el-col-lg-push-18{position:relative;left:75%}.el-col-lg-19{width:79.16667%}.el-col-lg-offset-19{margin-left:79.16667%}.el-col-lg-pull-19{position:relative;right:79.16667%}.el-col-lg-push-19{position:relative;left:79.16667%}.el-col-lg-20{width:83.33333%}.el-col-lg-offset-20{margin-left:83.33333%}.el-col-lg-pull-20{position:relative;right:83.33333%}.el-col-lg-push-20{position:relative;left:83.33333%}.el-col-lg-21{width:87.5%}.el-col-lg-offset-21{margin-left:87.5%}.el-col-lg-pull-21{position:relative;right:87.5%}.el-col-lg-push-21{position:relative;left:87.5%}.el-col-lg-22{width:91.66667%}.el-col-lg-offset-22{margin-left:91.66667%}.el-col-lg-pull-22{position:relative;right:91.66667%}.el-col-lg-push-22{position:relative;left:91.66667%}.el-col-lg-23{width:95.83333%}.el-col-lg-offset-23{margin-left:95.83333%}.el-col-lg-pull-23{position:relative;right:95.83333%}.el-col-lg-push-23{position:relative;left:95.83333%}.el-col-lg-24{width:100%}.el-col-lg-offset-24{margin-left:100%}.el-col-lg-pull-24{position:relative;right:100%}.el-col-lg-push-24{position:relative;left:100%}}@media only screen and (min-width:1920px){.el-col-xl-0{display:none;width:0}.el-col-xl-offset-0{margin-left:0}.el-col-xl-pull-0{position:relative;right:0}.el-col-xl-push-0{position:relative;left:0}.el-col-xl-1{width:4.16667%}.el-col-xl-offset-1{margin-left:4.16667%}.el-col-xl-pull-1{position:relative;right:4.16667%}.el-col-xl-push-1{position:relative;left:4.16667%}.el-col-xl-2{width:8.33333%}.el-col-xl-offset-2{margin-left:8.33333%}.el-col-xl-pull-2{position:relative;right:8.33333%}.el-col-xl-push-2{position:relative;left:8.33333%}.el-col-xl-3{width:12.5%}.el-col-xl-offset-3{margin-left:12.5%}.el-col-xl-pull-3{position:relative;right:12.5%}.el-col-xl-push-3{position:relative;left:12.5%}.el-col-xl-4{width:16.66667%}.el-col-xl-offset-4{margin-left:16.66667%}.el-col-xl-pull-4{position:relative;right:16.66667%}.el-col-xl-push-4{position:relative;left:16.66667%}.el-col-xl-5{width:20.83333%}.el-col-xl-offset-5{margin-left:20.83333%}.el-col-xl-pull-5{position:relative;right:20.83333%}.el-col-xl-push-5{position:relative;left:20.83333%}.el-col-xl-6{width:25%}.el-col-xl-offset-6{margin-left:25%}.el-col-xl-pull-6{position:relative;right:25%}.el-col-xl-push-6{position:relative;left:25%}.el-col-xl-7{width:29.16667%}.el-col-xl-offset-7{margin-left:29.16667%}.el-col-xl-pull-7{position:relative;right:29.16667%}.el-col-xl-push-7{position:relative;left:29.16667%}.el-col-xl-8{width:33.33333%}.el-col-xl-offset-8{margin-left:33.33333%}.el-col-xl-pull-8{position:relative;right:33.33333%}.el-col-xl-push-8{position:relative;left:33.33333%}.el-col-xl-9{width:37.5%}.el-col-xl-offset-9{margin-left:37.5%}.el-col-xl-pull-9{position:relative;right:37.5%}.el-col-xl-push-9{position:relative;left:37.5%}.el-col-xl-10{width:41.66667%}.el-col-xl-offset-10{margin-left:41.66667%}.el-col-xl-pull-10{position:relative;right:41.66667%}.el-col-xl-push-10{position:relative;left:41.66667%}.el-col-xl-11{width:45.83333%}.el-col-xl-offset-11{margin-left:45.83333%}.el-col-xl-pull-11{position:relative;right:45.83333%}.el-col-xl-push-11{position:relative;left:45.83333%}.el-col-xl-12{width:50%}.el-col-xl-offset-12{margin-left:50%}.el-col-xl-pull-12{position:relative;right:50%}.el-col-xl-push-12{position:relative;left:50%}.el-col-xl-13{width:54.16667%}.el-col-xl-offset-13{margin-left:54.16667%}.el-col-xl-pull-13{position:relative;right:54.16667%}.el-col-xl-push-13{position:relative;left:54.16667%}.el-col-xl-14{width:58.33333%}.el-col-xl-offset-14{margin-left:58.33333%}.el-col-xl-pull-14{position:relative;right:58.33333%}.el-col-xl-push-14{position:relative;left:58.33333%}.el-col-xl-15{width:62.5%}.el-col-xl-offset-15{margin-left:62.5%}.el-col-xl-pull-15{position:relative;right:62.5%}.el-col-xl-push-15{position:relative;left:62.5%}.el-col-xl-16{width:66.66667%}.el-col-xl-offset-16{margin-left:66.66667%}.el-col-xl-pull-16{position:relative;right:66.66667%}.el-col-xl-push-16{position:relative;left:66.66667%}.el-col-xl-17{width:70.83333%}.el-col-xl-offset-17{margin-left:70.83333%}.el-col-xl-pull-17{position:relative;right:70.83333%}.el-col-xl-push-17{position:relative;left:70.83333%}.el-col-xl-18{width:75%}.el-col-xl-offset-18{margin-left:75%}.el-col-xl-pull-18{position:relative;right:75%}.el-col-xl-push-18{position:relative;left:75%}.el-col-xl-19{width:79.16667%}.el-col-xl-offset-19{margin-left:79.16667%}.el-col-xl-pull-19{position:relative;right:79.16667%}.el-col-xl-push-19{position:relative;left:79.16667%}.el-col-xl-20{width:83.33333%}.el-col-xl-offset-20{margin-left:83.33333%}.el-col-xl-pull-20{position:relative;right:83.33333%}.el-col-xl-push-20{position:relative;left:83.33333%}.el-col-xl-21{width:87.5%}.el-col-xl-offset-21{margin-left:87.5%}.el-col-xl-pull-21{position:relative;right:87.5%}.el-col-xl-push-21{position:relative;left:87.5%}.el-col-xl-22{width:91.66667%}.el-col-xl-offset-22{margin-left:91.66667%}.el-col-xl-pull-22{position:relative;right:91.66667%}.el-col-xl-push-22{position:relative;left:91.66667%}.el-col-xl-23{width:95.83333%}.el-col-xl-offset-23{margin-left:95.83333%}.el-col-xl-pull-23{position:relative;right:95.83333%}.el-col-xl-push-23{position:relative;left:95.83333%}.el-col-xl-24{width:100%}.el-col-xl-offset-24{margin-left:100%}.el-col-xl-pull-24{position:relative;right:100%}.el-col-xl-push-24{position:relative;left:100%}}@-webkit-keyframes progress{0%{background-position:0 0}to{background-position:32px 0}}.el-upload{display:inline-block;text-align:center;cursor:pointer;outline:0}.el-upload__input{display:none}.el-upload__tip{font-size:12px;color:#606266;margin-top:7px}.el-upload iframe{position:absolute;z-index:-1;top:0;left:0;opacity:0;filter:alpha(opacity=0)}.el-upload--picture-card{background-color:#fbfdff;border:1px dashed #c0ccda;border-radius:6px;-webkit-box-sizing:border-box;box-sizing:border-box;width:148px;height:148px;line-height:146px;vertical-align:top}.el-upload--picture-card i{font-size:28px;color:#8c939d}.el-upload--picture-card:hover,.el-upload:focus{border-color:#409eff;color:#409eff}.el-upload:focus .el-upload-dragger{border-color:#409eff}.el-upload-dragger{background-color:#fff;border:1px dashed #d9d9d9;border-radius:6px;-webkit-box-sizing:border-box;box-sizing:border-box;width:360px;height:180px;text-align:center;position:relative;overflow:hidden}.el-upload-dragger .el-icon-upload{font-size:67px;color:#c0c4cc;margin:40px 0 16px;line-height:50px}.el-upload-dragger+.el-upload__tip{text-align:center}.el-upload-dragger~.el-upload__files{border-top:1px solid #dcdfe6;margin-top:7px;padding-top:5px}.el-upload-dragger .el-upload__text{color:#606266;font-size:14px;text-align:center}.el-upload-dragger .el-upload__text em{color:#409eff;font-style:normal}.el-upload-dragger:hover{border-color:#409eff}.el-upload-dragger.is-dragover{background-color:rgba(32,159,255,.06);border:2px dashed #409eff}.el-upload-list{margin:0;padding:0;list-style:none}.el-upload-list__item{-webkit-transition:all .5s cubic-bezier(.55,0,.1,1);transition:all .5s cubic-bezier(.55,0,.1,1);font-size:14px;color:#606266;line-height:1.8;margin-top:5px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;width:100%}.el-upload-list__item .el-progress{position:absolute;top:20px;width:100%}.el-upload-list__item .el-progress__text{position:absolute;right:0;top:-13px}.el-upload-list__item .el-progress-bar{margin-right:0;padding-right:0}.el-upload-list__item:first-child{margin-top:10px}.el-upload-list__item .el-icon-upload-success{color:#67c23a}.el-upload-list__item .el-icon-close{display:none;position:absolute;top:5px;right:5px;cursor:pointer;opacity:.75;color:#606266}.el-upload-list__item .el-icon-close:hover{opacity:1}.el-upload-list__item .el-icon-close-tip{display:none;position:absolute;top:5px;right:5px;font-size:12px;cursor:pointer;opacity:1;color:#409eff}.el-upload-list__item:hover{background-color:#f5f7fa}.el-upload-list__item:hover .el-icon-close{display:inline-block}.el-upload-list__item:hover .el-progress__text{display:none}.el-upload-list__item.is-success .el-upload-list__item-status-label{display:block}.el-upload-list__item.is-success .el-upload-list__item-name:focus,.el-upload-list__item.is-success .el-upload-list__item-name:hover{color:#409eff;cursor:pointer}.el-upload-list__item.is-success:focus:not(:hover) .el-icon-close-tip{display:inline-block}.el-upload-list__item.is-success:active .el-icon-close-tip,.el-upload-list__item.is-success:focus .el-upload-list__item-status-label,.el-upload-list__item.is-success:hover .el-upload-list__item-status-label,.el-upload-list__item.is-success:not(.focusing):focus .el-icon-close-tip{display:none}.el-upload-list.is-disabled .el-upload-list__item:hover .el-upload-list__item-status-label{display:block}.el-upload-list__item-name{color:#606266;display:block;margin-right:40px;overflow:hidden;padding-left:4px;text-overflow:ellipsis;-webkit-transition:color .3s;transition:color .3s;white-space:nowrap}.el-upload-list__item-name [class^=el-icon]{height:100%;margin-right:7px;color:#909399;line-height:inherit}.el-upload-list__item-status-label{position:absolute;right:5px;top:0;line-height:inherit;display:none}.el-upload-list__item-delete{position:absolute;right:10px;top:0;font-size:12px;color:#606266;display:none}.el-upload-list__item-delete:hover{color:#409eff}.el-upload-list--picture-card{margin:0;display:inline;vertical-align:top}.el-upload-list--picture-card .el-upload-list__item{overflow:hidden;background-color:#fff;border:1px solid #c0ccda;border-radius:6px;-webkit-box-sizing:border-box;box-sizing:border-box;width:148px;height:148px;margin:0 8px 8px 0;display:inline-block}.el-upload-list--picture-card .el-upload-list__item .el-icon-check,.el-upload-list--picture-card .el-upload-list__item .el-icon-circle-check{color:#fff}.el-upload-list--picture-card .el-upload-list__item .el-icon-close,.el-upload-list--picture-card .el-upload-list__item:hover .el-upload-list__item-status-label{display:none}.el-upload-list--picture-card .el-upload-list__item:hover .el-progress__text{display:block}.el-upload-list--picture-card .el-upload-list__item-name{display:none}.el-upload-list--picture-card .el-upload-list__item-thumbnail{width:100%;height:100%}.el-upload-list--picture-card .el-upload-list__item-status-label{position:absolute;right:-15px;top:-6px;width:40px;height:24px;background:#13ce66;text-align:center;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-box-shadow:0 0 1pc 1px rgba(0,0,0,.2);box-shadow:0 0 1pc 1px rgba(0,0,0,.2)}.el-upload-list--picture-card .el-upload-list__item-status-label i{font-size:12px;margin-top:11px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.el-upload-list--picture-card .el-upload-list__item-actions{position:absolute;width:100%;height:100%;left:0;top:0;cursor:default;text-align:center;color:#fff;opacity:0;font-size:20px;background-color:rgba(0,0,0,.5);-webkit-transition:opacity .3s;transition:opacity .3s}.el-upload-list--picture-card .el-upload-list__item-actions:after{display:inline-block;content:\"\";height:100%;vertical-align:middle}.el-upload-list--picture-card .el-upload-list__item-actions span{display:none;cursor:pointer}.el-upload-list--picture-card .el-upload-list__item-actions span+span{margin-left:15px}.el-upload-list--picture-card .el-upload-list__item-actions .el-upload-list__item-delete{position:static;font-size:inherit;color:inherit}.el-upload-list--picture-card .el-upload-list__item-actions:hover{opacity:1}.el-upload-list--picture-card .el-upload-list__item-actions:hover span{display:inline-block}.el-upload-list--picture-card .el-progress{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);bottom:auto;width:126px}.el-upload-list--picture-card .el-progress .el-progress__text{top:50%}.el-upload-list--picture .el-upload-list__item{overflow:hidden;z-index:0;background-color:#fff;border:1px solid #c0ccda;border-radius:6px;-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:10px;padding:10px 10px 10px 90px;height:92px}.el-upload-list--picture .el-upload-list__item .el-icon-check,.el-upload-list--picture .el-upload-list__item .el-icon-circle-check{color:#fff}.el-upload-list--picture .el-upload-list__item:hover .el-upload-list__item-status-label{background:0 0;-webkit-box-shadow:none;box-shadow:none;top:-2px;right:-12px}.el-upload-list--picture .el-upload-list__item:hover .el-progress__text{display:block}.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name{line-height:70px;margin-top:0}.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name i{display:none}.el-upload-list--picture .el-upload-list__item-thumbnail{vertical-align:middle;display:inline-block;width:70px;height:70px;float:left;position:relative;z-index:1;margin-left:-80px;background-color:#fff}.el-upload-list--picture .el-upload-list__item-name{display:block;margin-top:20px}.el-upload-list--picture .el-upload-list__item-name i{font-size:70px;line-height:1;position:absolute;left:9px;top:10px}.el-upload-list--picture .el-upload-list__item-status-label{position:absolute;right:-17px;top:-7px;width:46px;height:26px;background:#13ce66;text-align:center;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-box-shadow:0 1px 1px #ccc;box-shadow:0 1px 1px #ccc}.el-upload-list--picture .el-upload-list__item-status-label i{font-size:12px;margin-top:12px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.el-upload-list--picture .el-progress{position:relative;top:-7px}.el-upload-cover{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;z-index:10;cursor:default}.el-upload-cover:after{display:inline-block;height:100%;vertical-align:middle}.el-upload-cover img{display:block;width:100%;height:100%}.el-upload-cover__label{position:absolute;right:-15px;top:-6px;width:40px;height:24px;background:#13ce66;text-align:center;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-box-shadow:0 0 1pc 1px rgba(0,0,0,.2);box-shadow:0 0 1pc 1px rgba(0,0,0,.2)}.el-upload-cover__label i{font-size:12px;margin-top:11px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);color:#fff}.el-upload-cover__progress{display:inline-block;vertical-align:middle;position:static;width:243px}.el-upload-cover__progress+.el-upload__inner{opacity:0}.el-upload-cover__content{position:absolute;top:0;left:0;width:100%;height:100%}.el-upload-cover__interact{position:absolute;bottom:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.72);text-align:center}.el-upload-cover__interact .btn{display:inline-block;color:#fff;font-size:14px;cursor:pointer;vertical-align:middle;-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);margin-top:60px}.el-upload-cover__interact .btn span{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.el-upload-cover__interact .btn:not(:first-child){margin-left:35px}.el-upload-cover__interact .btn:hover{-webkit-transform:translateY(-13px);transform:translateY(-13px)}.el-upload-cover__interact .btn:hover span{opacity:1}.el-upload-cover__interact .btn i{color:#fff;display:block;font-size:24px;line-height:inherit;margin:0 auto 5px}.el-upload-cover__title{position:absolute;bottom:0;left:0;background-color:#fff;height:36px;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:400;text-align:left;padding:0 10px;margin:0;line-height:36px;font-size:14px;color:#303133}.el-upload-cover+.el-upload__inner{opacity:0;position:relative;z-index:1}.el-progress{position:relative;line-height:1}.el-progress__text{font-size:14px;color:#606266;display:inline-block;vertical-align:middle;margin-left:10px;line-height:1}.el-progress__text i{vertical-align:middle;display:block}.el-progress--circle,.el-progress--dashboard{display:inline-block}.el-progress--circle .el-progress__text,.el-progress--dashboard .el-progress__text{position:absolute;top:50%;left:0;width:100%;text-align:center;margin:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.el-progress--circle .el-progress__text i,.el-progress--dashboard .el-progress__text i{vertical-align:middle;display:inline-block}.el-progress--without-text .el-progress__text{display:none}.el-progress--without-text .el-progress-bar{padding-right:0;margin-right:0;display:block}.el-progress-bar,.el-progress-bar__inner:after,.el-progress-bar__innerText,.el-spinner{display:inline-block;vertical-align:middle}.el-progress--text-inside .el-progress-bar{padding-right:0;margin-right:0}.el-progress.is-success .el-progress-bar__inner{background-color:#67c23a}.el-progress.is-success .el-progress__text{color:#67c23a}.el-progress.is-warning .el-progress-bar__inner{background-color:#e6a23c}.el-progress.is-warning .el-progress__text{color:#e6a23c}.el-progress.is-exception .el-progress-bar__inner{background-color:#f56c6c}.el-progress.is-exception .el-progress__text{color:#f56c6c}.el-progress-bar{padding-right:50px;width:100%;margin-right:-55px;-webkit-box-sizing:border-box;box-sizing:border-box}.el-progress-bar__outer{height:6px;border-radius:100px;background-color:#ebeef5;overflow:hidden;position:relative;vertical-align:middle}.el-progress-bar__inner{position:absolute;left:0;top:0;height:100%;background-color:#409eff;text-align:right;border-radius:100px;line-height:1;white-space:nowrap;-webkit-transition:width .6s ease;transition:width .6s ease}.el-card,.el-message{border-radius:4px;overflow:hidden}.el-progress-bar__inner:after{height:100%}.el-progress-bar__innerText{color:#fff;font-size:12px;margin:0 5px}@keyframes progress{0%{background-position:0 0}to{background-position:32px 0}}.el-time-spinner{width:100%;white-space:nowrap}.el-spinner-inner{-webkit-animation:rotate 2s linear infinite;animation:rotate 2s linear infinite;width:50px;height:50px}.el-spinner-inner .path{stroke:#ececec;stroke-linecap:round;-webkit-animation:dash 1.5s ease-in-out infinite;animation:dash 1.5s ease-in-out infinite}@-webkit-keyframes rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}to{stroke-dasharray:90,150;stroke-dashoffset:-124}}@keyframes dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}to{stroke-dasharray:90,150;stroke-dashoffset:-124}}.el-message{min-width:380px;-webkit-box-sizing:border-box;box-sizing:border-box;border-width:1px;border-style:solid;border-color:#ebeef5;position:fixed;left:50%;top:20px;-webkit-transform:translateX(-50%);transform:translateX(-50%);background-color:#edf2fc;-webkit-transition:opacity .3s,top .4s,-webkit-transform .4s;transition:opacity .3s,top .4s,-webkit-transform .4s;transition:opacity .3s,transform .4s,top .4s;transition:opacity .3s,transform .4s,top .4s,-webkit-transform .4s;padding:15px 15px 15px 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-message.is-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.el-message.is-closable .el-message__content{padding-right:16px}.el-message p{margin:0}.el-message--info .el-message__content{color:#909399}.el-message--success{background-color:#f0f9eb;border-color:#e1f3d8}.el-message--success .el-message__content{color:#67c23a}.el-message--warning{background-color:#fdf6ec;border-color:#faecd8}.el-message--warning .el-message__content{color:#e6a23c}.el-message--error{background-color:#fef0f0;border-color:#fde2e2}.el-message--error .el-message__content{color:#f56c6c}.el-message__icon{margin-right:10px}.el-message__content{padding:0;font-size:14px;line-height:1}.el-message__closeBtn{position:absolute;top:50%;right:15px;-webkit-transform:translateY(-50%);transform:translateY(-50%);cursor:pointer;color:#c0c4cc;font-size:16px}.el-message__closeBtn:hover{color:#909399}.el-message .el-icon-success{color:#67c23a}.el-message .el-icon-error{color:#f56c6c}.el-message .el-icon-info{color:#909399}.el-message .el-icon-warning{color:#e6a23c}.el-message-fade-enter,.el-message-fade-leave-active{opacity:0;-webkit-transform:translate(-50%,-100%);transform:translate(-50%,-100%)}.el-badge{position:relative;vertical-align:middle;display:inline-block}.el-badge__content{background-color:#f56c6c;border-radius:10px;color:#fff;display:inline-block;font-size:12px;height:18px;line-height:18px;padding:0 6px;text-align:center;white-space:nowrap;border:1px solid #fff}.el-badge__content.is-fixed{position:absolute;top:0;right:10px;-webkit-transform:translateY(-50%) translateX(100%);transform:translateY(-50%) translateX(100%)}.el-rate__icon,.el-rate__item{position:relative;display:inline-block}.el-badge__content.is-fixed.is-dot{right:5px}.el-badge__content.is-dot{height:8px;width:8px;padding:0;right:0;border-radius:50%}.el-badge__content--primary{background-color:#409eff}.el-badge__content--success{background-color:#67c23a}.el-badge__content--warning{background-color:#e6a23c}.el-badge__content--info{background-color:#909399}.el-badge__content--danger{background-color:#f56c6c}.el-card{border:1px solid #ebeef5;background-color:#fff;color:#303133;-webkit-transition:.3s;transition:.3s}.el-card.is-always-shadow,.el-card.is-hover-shadow:focus,.el-card.is-hover-shadow:hover{-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-card__header{padding:18px 20px;border-bottom:1px solid #ebeef5;-webkit-box-sizing:border-box;box-sizing:border-box}.el-card__body{padding:20px}.el-rate{height:20px;line-height:1}.el-rate__item{font-size:0;vertical-align:middle}.el-rate__icon{font-size:18px;margin-right:6px;color:#c0c4cc;-webkit-transition:.3s;transition:.3s}.el-rate__decimal,.el-rate__icon .path2{position:absolute;top:0;left:0}.el-rate__icon.hover{-webkit-transform:scale(1.15);transform:scale(1.15)}.el-rate__decimal{display:inline-block;overflow:hidden}.el-step.is-vertical,.el-steps{display:-webkit-box;display:-ms-flexbox}.el-rate__text{font-size:14px;vertical-align:middle}.el-steps{display:-webkit-box;display:-ms-flexbox;display:flex}.el-steps--simple{padding:13px 8%;border-radius:4px;background:#f5f7fa}.el-steps--horizontal{white-space:nowrap}.el-steps--vertical{height:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.el-step{position:relative;-ms-flex-negative:1;flex-shrink:1}.el-step:last-of-type .el-step__line{display:none}.el-step:last-of-type.is-flex{-ms-flex-preferred-size:auto!important;flex-basis:auto!important;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.el-step:last-of-type .el-step__description,.el-step:last-of-type .el-step__main{padding-right:0}.el-step__head{position:relative;width:100%}.el-step__head.is-process{color:#303133;border-color:#303133}.el-step__head.is-wait{color:#c0c4cc;border-color:#c0c4cc}.el-step__head.is-success{color:#67c23a;border-color:#67c23a}.el-step__head.is-error{color:#f56c6c;border-color:#f56c6c}.el-step__head.is-finish{color:#409eff;border-color:#409eff}.el-step__icon{position:relative;z-index:1;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:24px;height:24px;font-size:14px;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;-webkit-transition:.15s ease-out;transition:.15s ease-out}.el-step__icon.is-text{border-radius:50%;border:2px solid;border-color:inherit}.el-step__icon.is-icon{width:40px}.el-step__icon-inner{display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-align:center;font-weight:700;line-height:1;color:inherit}.el-step__icon-inner[class*=el-icon]:not(.is-status){font-size:25px;font-weight:400}.el-step__icon-inner.is-status{-webkit-transform:translateY(1px);transform:translateY(1px)}.el-step__line{position:absolute;border-color:inherit;background-color:#c0c4cc}.el-step__line-inner{display:block;border-width:1px;border-style:solid;border-color:inherit;-webkit-transition:.15s ease-out;transition:.15s ease-out;-webkit-box-sizing:border-box;box-sizing:border-box;width:0;height:0}.el-step__main{white-space:normal;text-align:left}.el-step__title{font-size:16px;line-height:38px}.el-step__title.is-process{font-weight:700;color:#303133}.el-step__title.is-wait{color:#c0c4cc}.el-step__title.is-success{color:#67c23a}.el-step__title.is-error{color:#f56c6c}.el-step__title.is-finish{color:#409eff}.el-step__description{padding-right:10%;margin-top:-5px;font-size:12px;line-height:20px;font-weight:400}.el-step__description.is-process{color:#303133}.el-step__description.is-wait{color:#c0c4cc}.el-step__description.is-success{color:#67c23a}.el-step__description.is-error{color:#f56c6c}.el-step__description.is-finish{color:#409eff}.el-step.is-horizontal{display:inline-block}.el-step.is-horizontal .el-step__line{height:2px;top:11px;left:0;right:0}.el-step.is-vertical{display:-webkit-box;display:-ms-flexbox;display:flex}.el-step.is-vertical .el-step__head{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;width:24px}.el-step.is-vertical .el-step__main{padding-left:10px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.el-step.is-vertical .el-step__title{line-height:24px;padding-bottom:8px}.el-step.is-vertical .el-step__line{width:2px;top:0;bottom:0;left:11px}.el-step.is-vertical .el-step__icon.is-icon{width:24px}.el-step.is-center .el-step__head,.el-step.is-center .el-step__main{text-align:center}.el-step.is-center .el-step__description{padding-left:20%;padding-right:20%}.el-step.is-center .el-step__line{left:50%;right:-50%}.el-step.is-simple{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-step.is-simple .el-step__head{width:auto;font-size:0;padding-right:10px}.el-step.is-simple .el-step__icon{background:0 0;width:16px;height:16px;font-size:12px}.el-step.is-simple .el-step__icon-inner[class*=el-icon]:not(.is-status){font-size:18px}.el-step.is-simple .el-step__icon-inner.is-status{-webkit-transform:scale(.8) translateY(1px);transform:scale(.8) translateY(1px)}.el-step.is-simple .el-step__main{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.el-step.is-simple .el-step__title{font-size:16px;line-height:20px}.el-step.is-simple:not(:last-of-type) .el-step__title{max-width:50%;word-break:break-all}.el-step.is-simple .el-step__arrow{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.el-step.is-simple .el-step__arrow:after,.el-step.is-simple .el-step__arrow:before{content:\"\";display:inline-block;position:absolute;height:15px;width:1px;background:#c0c4cc}.el-step.is-simple .el-step__arrow:before{-webkit-transform:rotate(-45deg) translateY(-4px);transform:rotate(-45deg) translateY(-4px);-webkit-transform-origin:0 0;transform-origin:0 0}.el-step.is-simple .el-step__arrow:after{-webkit-transform:rotate(45deg) translateY(4px);transform:rotate(45deg) translateY(4px);-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.el-step.is-simple:last-of-type .el-step__arrow{display:none}.el-carousel{position:relative}.el-carousel--horizontal{overflow-x:hidden}.el-carousel--vertical{overflow-y:hidden}.el-carousel__container{position:relative;height:300px}.el-carousel__arrow{border:none;outline:0;padding:0;margin:0;height:36px;width:36px;cursor:pointer;-webkit-transition:.3s;transition:.3s;border-radius:50%;background-color:rgba(31,45,61,.11);color:#fff;position:absolute;top:50%;z-index:10;-webkit-transform:translateY(-50%);transform:translateY(-50%);text-align:center;font-size:12px}.el-carousel__arrow--left{left:16px}.el-carousel__arrow--right{right:16px}.el-carousel__arrow:hover{background-color:rgba(31,45,61,.23)}.el-carousel__arrow i{cursor:pointer}.el-carousel__indicators{position:absolute;list-style:none;margin:0;padding:0;z-index:2}.el-carousel__indicators--horizontal{bottom:0;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.el-carousel__indicators--vertical{right:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.el-carousel__indicators--outside{bottom:26px;text-align:center;position:static;-webkit-transform:none;transform:none}.el-carousel__indicators--outside .el-carousel__indicator:hover button{opacity:.64}.el-carousel__indicators--outside button{background-color:#c0c4cc;opacity:.24}.el-carousel__indicators--labels{left:0;right:0;-webkit-transform:none;transform:none;text-align:center}.el-carousel__indicators--labels .el-carousel__button{height:auto;width:auto;padding:2px 18px;font-size:12px}.el-carousel__indicators--labels .el-carousel__indicator{padding:6px 4px}.el-carousel__indicator{background-color:transparent;cursor:pointer}.el-carousel__indicator:hover button{opacity:.72}.el-carousel__indicator--horizontal{display:inline-block;padding:12px 4px}.el-carousel__indicator--vertical{padding:4px 12px}.el-carousel__indicator--vertical .el-carousel__button{width:2px;height:15px}.el-carousel__indicator.is-active button{opacity:1}.el-carousel__button{display:block;opacity:.48;width:30px;height:2px;background-color:#fff;border:none;outline:0;padding:0;margin:0;cursor:pointer;-webkit-transition:.3s;transition:.3s}.el-carousel__item,.el-carousel__mask{height:100%;top:0;left:0;position:absolute}.carousel-arrow-left-enter,.carousel-arrow-left-leave-active{-webkit-transform:translateY(-50%) translateX(-10px);transform:translateY(-50%) translateX(-10px);opacity:0}.carousel-arrow-right-enter,.carousel-arrow-right-leave-active{-webkit-transform:translateY(-50%) translateX(10px);transform:translateY(-50%) translateX(10px);opacity:0}.el-carousel__item{width:100%;display:inline-block;overflow:hidden;z-index:0}.el-carousel__item.is-active{z-index:2}.el-carousel__item--card,.el-carousel__item.is-animating{-webkit-transition:-webkit-transform .4s ease-in-out;transition:-webkit-transform .4s ease-in-out;transition:transform .4s ease-in-out;transition:transform .4s ease-in-out,-webkit-transform .4s ease-in-out}.el-carousel__item--card{width:50%}.el-carousel__item--card.is-in-stage{cursor:pointer;z-index:1}.el-carousel__item--card.is-in-stage.is-hover .el-carousel__mask,.el-carousel__item--card.is-in-stage:hover .el-carousel__mask{opacity:.12}.el-carousel__item--card.is-active{z-index:2}.el-carousel__mask{width:100%;background-color:#fff;opacity:.24;-webkit-transition:.2s;transition:.2s}.el-fade-in-enter,.el-fade-in-leave-active,.el-fade-in-linear-enter,.el-fade-in-linear-leave,.el-fade-in-linear-leave-active,.fade-in-linear-enter,.fade-in-linear-leave,.fade-in-linear-leave-active{opacity:0}.el-fade-in-linear-enter-active,.el-fade-in-linear-leave-active,.fade-in-linear-enter-active,.fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.el-fade-in-enter-active,.el-fade-in-leave-active,.el-zoom-in-center-enter-active,.el-zoom-in-center-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.el-zoom-in-center-enter,.el-zoom-in-center-leave-active{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}.el-zoom-in-top-enter-active,.el-zoom-in-top-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);-webkit-transform-origin:center top;transform-origin:center top}.el-zoom-in-top-enter,.el-zoom-in-top-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.el-zoom-in-bottom-enter-active,.el-zoom-in-bottom-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);-webkit-transform-origin:center bottom;transform-origin:center bottom}.el-zoom-in-bottom-enter,.el-zoom-in-bottom-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.el-zoom-in-left-enter-active,.el-zoom-in-left-leave-active{opacity:1;-webkit-transform:scale(1);transform:scale(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);-webkit-transform-origin:top left;transform-origin:top left}.el-zoom-in-left-enter,.el-zoom-in-left-leave-active{opacity:0;-webkit-transform:scale(.45);transform:scale(.45)}.collapse-transition{-webkit-transition:height .3s ease-in-out,padding-top .3s ease-in-out,padding-bottom .3s ease-in-out;transition:height .3s ease-in-out,padding-top .3s ease-in-out,padding-bottom .3s ease-in-out}.horizontal-collapse-transition{-webkit-transition:width .3s ease-in-out,padding-left .3s ease-in-out,padding-right .3s ease-in-out;transition:width .3s ease-in-out,padding-left .3s ease-in-out,padding-right .3s ease-in-out}.el-list-enter-active,.el-list-leave-active{-webkit-transition:all 1s;transition:all 1s}.el-list-enter,.el-list-leave-active{opacity:0;-webkit-transform:translateY(-30px);transform:translateY(-30px)}.el-opacity-transition{-webkit-transition:opacity .3s cubic-bezier(.55,0,.1,1);transition:opacity .3s cubic-bezier(.55,0,.1,1)}.el-collapse{border-top:1px solid #ebeef5;border-bottom:1px solid #ebeef5}.el-collapse-item.is-disabled .el-collapse-item__header{color:#bbb;cursor:not-allowed}.el-collapse-item__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:48px;line-height:48px;background-color:#fff;color:#303133;cursor:pointer;border-bottom:1px solid #ebeef5;font-size:13px;font-weight:500;-webkit-transition:border-bottom-color .3s;transition:border-bottom-color .3s;outline:0}.el-collapse-item__arrow{margin:0 8px 0 auto;transition:-webkit-transform .3s;-webkit-transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;font-weight:300}.el-collapse-item__arrow.is-active{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.el-collapse-item__header.focusing:focus:not(:hover){color:#409eff}.el-collapse-item__header.is-active{border-bottom-color:transparent}.el-collapse-item__wrap{will-change:height;background-color:#fff;overflow:hidden;box-sizing:border-box;border-bottom:1px solid #ebeef5}.el-cascader__tags,.el-collapse-item__wrap,.el-tag{-webkit-box-sizing:border-box}.el-collapse-item__content{padding-bottom:25px;font-size:13px;color:#303133;line-height:1.769230769230769}.el-collapse-item:last-child{margin-bottom:-1px}.el-popper .popper__arrow,.el-popper .popper__arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.el-popper .popper__arrow{border-width:6px;-webkit-filter:drop-shadow(0 2px 12px rgba(0,0,0,.03));filter:drop-shadow(0 2px 12px rgba(0,0,0,.03))}.el-popper .popper__arrow:after{content:\" \";border-width:6px}.el-popper[x-placement^=top]{margin-bottom:12px}.el-popper[x-placement^=top] .popper__arrow{bottom:-6px;left:50%;margin-right:3px;border-top-color:#ebeef5;border-bottom-width:0}.el-popper[x-placement^=top] .popper__arrow:after{bottom:1px;margin-left:-6px;border-top-color:#fff;border-bottom-width:0}.el-popper[x-placement^=bottom]{margin-top:12px}.el-popper[x-placement^=bottom] .popper__arrow{top:-6px;left:50%;margin-right:3px;border-top-width:0;border-bottom-color:#ebeef5}.el-popper[x-placement^=bottom] .popper__arrow:after{top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.el-popper[x-placement^=right]{margin-left:12px}.el-popper[x-placement^=right] .popper__arrow{top:50%;left:-6px;margin-bottom:3px;border-right-color:#ebeef5;border-left-width:0}.el-popper[x-placement^=right] .popper__arrow:after{bottom:-6px;left:1px;border-right-color:#fff;border-left-width:0}.el-popper[x-placement^=left]{margin-right:12px}.el-popper[x-placement^=left] .popper__arrow{top:50%;right:-6px;margin-bottom:3px;border-right-width:0;border-left-color:#ebeef5}.el-popper[x-placement^=left] .popper__arrow:after{right:1px;bottom:-6px;margin-left:-6px;border-right-width:0;border-left-color:#fff}.el-tag{background-color:#ecf5ff;border-color:#d9ecff;display:inline-block;height:32px;padding:0 10px;line-height:30px;font-size:12px;color:#409eff;border-width:1px;border-style:solid;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;white-space:nowrap}.el-tag.is-hit{border-color:#409eff}.el-tag .el-tag__close{color:#409eff}.el-tag .el-tag__close:hover{color:#fff;background-color:#409eff}.el-tag.el-tag--info{background-color:#f4f4f5;border-color:#e9e9eb;color:#909399}.el-tag.el-tag--info.is-hit{border-color:#909399}.el-tag.el-tag--info .el-tag__close{color:#909399}.el-tag.el-tag--info .el-tag__close:hover{color:#fff;background-color:#909399}.el-tag.el-tag--success{background-color:#f0f9eb;border-color:#e1f3d8;color:#67c23a}.el-tag.el-tag--success.is-hit{border-color:#67c23a}.el-tag.el-tag--success .el-tag__close{color:#67c23a}.el-tag.el-tag--success .el-tag__close:hover{color:#fff;background-color:#67c23a}.el-tag.el-tag--warning{background-color:#fdf6ec;border-color:#faecd8;color:#e6a23c}.el-tag.el-tag--warning.is-hit{border-color:#e6a23c}.el-tag.el-tag--warning .el-tag__close{color:#e6a23c}.el-tag.el-tag--warning .el-tag__close:hover{color:#fff;background-color:#e6a23c}.el-tag.el-tag--danger{background-color:#fef0f0;border-color:#fde2e2;color:#f56c6c}.el-tag.el-tag--danger.is-hit{border-color:#f56c6c}.el-tag.el-tag--danger .el-tag__close{color:#f56c6c}.el-tag.el-tag--danger .el-tag__close:hover{color:#fff;background-color:#f56c6c}.el-tag .el-icon-close{border-radius:50%;text-align:center;position:relative;cursor:pointer;font-size:12px;height:16px;width:16px;line-height:16px;vertical-align:middle;top:-1px;right:-5px}.el-tag .el-icon-close:before{display:block}.el-tag--dark{background-color:#409eff;color:#fff}.el-tag--dark,.el-tag--dark.is-hit{border-color:#409eff}.el-tag--dark .el-tag__close{color:#fff}.el-tag--dark .el-tag__close:hover{color:#fff;background-color:#66b1ff}.el-tag--dark.el-tag--info{background-color:#909399;border-color:#909399;color:#fff}.el-tag--dark.el-tag--info.is-hit{border-color:#909399}.el-tag--dark.el-tag--info .el-tag__close{color:#fff}.el-tag--dark.el-tag--info .el-tag__close:hover{color:#fff;background-color:#a6a9ad}.el-tag--dark.el-tag--success{background-color:#67c23a;border-color:#67c23a;color:#fff}.el-tag--dark.el-tag--success.is-hit{border-color:#67c23a}.el-tag--dark.el-tag--success .el-tag__close{color:#fff}.el-tag--dark.el-tag--success .el-tag__close:hover{color:#fff;background-color:#85ce61}.el-tag--dark.el-tag--warning{background-color:#e6a23c;border-color:#e6a23c;color:#fff}.el-tag--dark.el-tag--warning.is-hit{border-color:#e6a23c}.el-tag--dark.el-tag--warning .el-tag__close{color:#fff}.el-tag--dark.el-tag--warning .el-tag__close:hover{color:#fff;background-color:#ebb563}.el-tag--dark.el-tag--danger{background-color:#f56c6c;border-color:#f56c6c;color:#fff}.el-tag--dark.el-tag--danger.is-hit{border-color:#f56c6c}.el-tag--dark.el-tag--danger .el-tag__close{color:#fff}.el-tag--dark.el-tag--danger .el-tag__close:hover{color:#fff;background-color:#f78989}.el-tag--plain{background-color:#fff;border-color:#b3d8ff;color:#409eff}.el-tag--plain.is-hit{border-color:#409eff}.el-tag--plain .el-tag__close{color:#409eff}.el-tag--plain .el-tag__close:hover{color:#fff;background-color:#409eff}.el-tag--plain.el-tag--info{background-color:#fff;border-color:#d3d4d6;color:#909399}.el-tag--plain.el-tag--info.is-hit{border-color:#909399}.el-tag--plain.el-tag--info .el-tag__close{color:#909399}.el-tag--plain.el-tag--info .el-tag__close:hover{color:#fff;background-color:#909399}.el-tag--plain.el-tag--success{background-color:#fff;border-color:#c2e7b0;color:#67c23a}.el-tag--plain.el-tag--success.is-hit{border-color:#67c23a}.el-tag--plain.el-tag--success .el-tag__close{color:#67c23a}.el-tag--plain.el-tag--success .el-tag__close:hover{color:#fff;background-color:#67c23a}.el-tag--plain.el-tag--warning{background-color:#fff;border-color:#f5dab1;color:#e6a23c}.el-tag--plain.el-tag--warning.is-hit{border-color:#e6a23c}.el-tag--plain.el-tag--warning .el-tag__close{color:#e6a23c}.el-tag--plain.el-tag--warning .el-tag__close:hover{color:#fff;background-color:#e6a23c}.el-tag--plain.el-tag--danger{background-color:#fff;border-color:#fbc4c4;color:#f56c6c}.el-tag--plain.el-tag--danger.is-hit{border-color:#f56c6c}.el-tag--plain.el-tag--danger .el-tag__close{color:#f56c6c}.el-tag--plain.el-tag--danger .el-tag__close:hover{color:#fff;background-color:#f56c6c}.el-tag--medium{height:28px;line-height:26px}.el-tag--medium .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.el-tag--small{height:24px;padding:0 8px;line-height:22px}.el-tag--small .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.el-tag--mini{height:20px;padding:0 5px;line-height:19px}.el-tag--mini .el-icon-close{margin-left:-3px;-webkit-transform:scale(.7);transform:scale(.7)}.el-cascader{display:inline-block;position:relative;font-size:14px;line-height:40px}.el-cascader:not(.is-disabled):hover .el-input__inner{cursor:pointer;border-color:#c0c4cc}.el-cascader .el-input .el-input__inner:focus,.el-cascader .el-input.is-focus .el-input__inner{border-color:#409eff}.el-cascader .el-input{cursor:pointer}.el-cascader .el-input .el-input__inner{text-overflow:ellipsis}.el-cascader .el-input .el-icon-arrow-down{-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;font-size:14px}.el-cascader .el-input .el-icon-arrow-down.is-reverse{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.el-cascader .el-input .el-icon-circle-close:hover{color:#909399}.el-cascader--medium{font-size:14px;line-height:36px}.el-cascader--small{font-size:13px;line-height:32px}.el-cascader--mini{font-size:12px;line-height:28px}.el-cascader.is-disabled .el-cascader__label{z-index:2;color:#c0c4cc}.el-cascader__dropdown{margin:5px 0;font-size:14px;background:#fff;border:1px solid #e4e7ed;border-radius:4px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-cascader__tags{position:absolute;left:0;right:30px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;line-height:normal;text-align:left;-webkit-box-sizing:border-box;box-sizing:border-box}.el-cascader__tags .el-tag{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:100%;margin:2px 0 2px 6px;text-overflow:ellipsis;background:#f0f2f5}.el-cascader__tags .el-tag:not(.is-hit){border-color:transparent}.el-cascader__tags .el-tag>span{-webkit-box-flex:1;-ms-flex:1;flex:1;overflow:hidden;text-overflow:ellipsis}.el-cascader__tags .el-tag .el-icon-close{-webkit-box-flex:0;-ms-flex:none;flex:none;background-color:#c0c4cc;color:#fff}.el-cascader__tags .el-tag .el-icon-close:hover{background-color:#909399}.el-cascader__suggestion-panel{border-radius:4px}.el-cascader__suggestion-list{max-height:204px;margin:0;padding:6px 0;font-size:14px;color:#606266;text-align:center}.el-cascader__suggestion-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:34px;padding:0 15px;text-align:left;outline:0;cursor:pointer}.el-cascader__suggestion-item:focus,.el-cascader__suggestion-item:hover{background:#f5f7fa}.el-cascader__suggestion-item.is-checked{color:#409eff;font-weight:700}.el-cascader__suggestion-item>span{margin-right:10px}.el-cascader__empty-text{margin:10px 0;color:#c0c4cc}.el-cascader__search-input{-webkit-box-flex:1;-ms-flex:1;flex:1;height:24px;min-width:60px;margin:2px 0 2px 15px;padding:0;color:#606266;border:none;outline:0;-webkit-box-sizing:border-box;box-sizing:border-box}.el-cascader__search-input::-webkit-input-placeholder{color:#c0c4cc}.el-cascader__search-input:-ms-input-placeholder{color:#c0c4cc}.el-cascader__search-input::-ms-input-placeholder{color:#c0c4cc}.el-cascader__search-input::-moz-placeholder{color:#c0c4cc}.el-cascader__search-input::placeholder{color:#c0c4cc}.el-color-predefine{font-size:12px;margin-top:8px;width:280px}.el-color-predefine,.el-color-predefine__colors{display:-webkit-box;display:-ms-flexbox;display:flex}.el-color-predefine__colors{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-wrap:wrap;flex-wrap:wrap}.el-color-predefine__color-selector{margin:0 0 8px 8px;width:20px;height:20px;border-radius:4px;cursor:pointer}.el-color-predefine__color-selector:nth-child(10n+1){margin-left:0}.el-color-predefine__color-selector.selected{-webkit-box-shadow:0 0 3px 2px #409eff;box-shadow:0 0 3px 2px #409eff}.el-color-predefine__color-selector>div{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;border-radius:3px}.el-color-predefine__color-selector.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-hue-slider{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;width:280px;height:12px;background-color:red;padding:0 2px}.el-color-hue-slider__bar{position:relative;background:-webkit-gradient(linear,left top,right top,color-stop(0,red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red);height:100%}.el-color-hue-slider__thumb{position:absolute;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0;width:4px;height:100%;border-radius:1px;background:#fff;border:1px solid #f0f0f0;-webkit-box-shadow:0 0 2px rgba(0,0,0,.6);box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.el-color-hue-slider.is-vertical{width:12px;height:180px;padding:2px 0}.el-color-hue-slider.is-vertical .el-color-hue-slider__bar{background:-webkit-gradient(linear,left top,left bottom,color-stop(0,red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(180deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.el-color-hue-slider.is-vertical .el-color-hue-slider__thumb{left:0;top:0;width:100%;height:4px}.el-color-svpanel{position:relative;width:280px;height:180px}.el-color-svpanel__black,.el-color-svpanel__white{position:absolute;top:0;left:0;right:0;bottom:0}.el-color-svpanel__white{background:-webkit-gradient(linear,left top,right top,from(#fff),to(hsla(0,0%,100%,0)));background:linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.el-color-svpanel__black{background:-webkit-gradient(linear,left bottom,left top,from(#000),to(transparent));background:linear-gradient(0deg,#000,transparent)}.el-color-svpanel__cursor{position:absolute}.el-color-svpanel__cursor>div{cursor:head;width:4px;height:4px;-webkit-box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);border-radius:50%;-webkit-transform:translate(-2px,-2px);transform:translate(-2px,-2px)}.el-color-alpha-slider{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;width:280px;height:12px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-alpha-slider__bar{position:relative;background:-webkit-gradient(linear,left top,right top,color-stop(0,hsla(0,0%,100%,0)),to(#fff));background:linear-gradient(90deg,hsla(0,0%,100%,0) 0,#fff);height:100%}.el-color-alpha-slider__thumb{position:absolute;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0;width:4px;height:100%;border-radius:1px;background:#fff;border:1px solid #f0f0f0;-webkit-box-shadow:0 0 2px rgba(0,0,0,.6);box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.el-color-alpha-slider.is-vertical{width:20px;height:180px}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__bar{background:-webkit-gradient(linear,left top,left bottom,color-stop(0,hsla(0,0%,100%,0)),to(#fff));background:linear-gradient(180deg,hsla(0,0%,100%,0) 0,#fff)}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__thumb{left:0;top:0;width:100%;height:4px}.el-color-dropdown{width:300px}.el-color-dropdown__main-wrapper{margin-bottom:6px}.el-color-dropdown__main-wrapper:after{content:\"\";display:table;clear:both}.el-color-dropdown__btns{margin-top:6px;text-align:right}.el-color-dropdown__value{float:left;line-height:26px;font-size:12px;color:#000;width:160px}.el-color-dropdown__btn{border:1px solid #dcdcdc;color:#333;line-height:24px;border-radius:2px;padding:0 20px;cursor:pointer;background-color:transparent;outline:0;font-size:12px}.el-color-dropdown__btn[disabled]{color:#ccc;cursor:not-allowed}.el-color-dropdown__btn:hover{color:#409eff;border-color:#409eff}.el-color-dropdown__link-btn{cursor:pointer;color:#409eff;text-decoration:none;padding:15px;font-size:12px}.el-color-dropdown__link-btn:hover{color:tint(#409eff,20%)}.el-color-picker{display:inline-block;position:relative;line-height:normal;height:40px}.el-color-picker.is-disabled .el-color-picker__trigger{cursor:not-allowed}.el-color-picker--medium{height:36px}.el-color-picker--medium .el-color-picker__trigger{height:36px;width:36px}.el-color-picker--medium .el-color-picker__mask{height:34px;width:34px}.el-color-picker--small{height:32px}.el-color-picker--small .el-color-picker__trigger{height:32px;width:32px}.el-color-picker--small .el-color-picker__mask{height:30px;width:30px}.el-color-picker--small .el-color-picker__empty,.el-color-picker--small .el-color-picker__icon{-webkit-transform:translate3d(-50%,-50%,0) scale(.8);transform:translate3d(-50%,-50%,0) scale(.8)}.el-color-picker--mini{height:28px}.el-color-picker--mini .el-color-picker__trigger{height:28px;width:28px}.el-color-picker--mini .el-color-picker__mask{height:26px;width:26px}.el-color-picker--mini .el-color-picker__empty,.el-color-picker--mini .el-color-picker__icon{-webkit-transform:translate3d(-50%,-50%,0) scale(.8);transform:translate3d(-50%,-50%,0) scale(.8)}.el-color-picker__mask{height:38px;width:38px;border-radius:4px;position:absolute;top:1px;left:1px;z-index:1;cursor:not-allowed;background-color:hsla(0,0%,100%,.7)}.el-color-picker__trigger{display:inline-block;height:40px;width:40px;padding:4px;border:1px solid #e6e6e6;border-radius:4px;font-size:0;cursor:pointer}.el-color-picker__color,.el-color-picker__trigger{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.el-color-picker__color{display:block;border:1px solid #999;border-radius:2px;width:100%;height:100%;text-align:center}.el-color-picker__color.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-picker__color-inner{position:absolute;left:0;top:0;right:0;bottom:0}.el-color-picker__empty,.el-color-picker__icon{top:50%;left:50%;font-size:12px;position:absolute}.el-color-picker__empty{color:#999}.el-color-picker__empty,.el-color-picker__icon{-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.el-color-picker__icon{display:inline-block;width:100%;color:#fff;text-align:center}.el-color-picker__panel{position:absolute;z-index:10;padding:6px;-webkit-box-sizing:content-box;box-sizing:content-box;background-color:#fff;border:1px solid #ebeef5;border-radius:4px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-textarea{position:relative;display:inline-block;width:100%;vertical-align:bottom;font-size:14px}.el-textarea__inner{display:block;resize:vertical;padding:5px 15px;line-height:1.5;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;font-size:inherit;color:#606266;background-color:#fff;background-image:none;border:1px solid #dcdfe6;border-radius:4px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-textarea__inner::-webkit-input-placeholder{color:#c0c4cc}.el-textarea__inner:-ms-input-placeholder{color:#c0c4cc}.el-textarea__inner::-ms-input-placeholder{color:#c0c4cc}.el-textarea__inner::-moz-placeholder{color:#c0c4cc}.el-textarea__inner::placeholder{color:#c0c4cc}.el-textarea__inner:hover{border-color:#c0c4cc}.el-textarea__inner:focus{outline:0;border-color:#409eff}.el-textarea .el-input__count{color:#909399;background:#fff;position:absolute;font-size:12px;bottom:5px;right:10px}.el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed}.el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner::-moz-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner::placeholder{color:#c0c4cc}.el-textarea.is-exceed .el-textarea__inner{border-color:#f56c6c}.el-textarea.is-exceed .el-input__count{color:#f56c6c}.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input::-webkit-scrollbar{z-index:11;width:6px}.el-input::-webkit-scrollbar:horizontal{height:6px}.el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.el-input::-webkit-scrollbar-corner,.el-input::-webkit-scrollbar-track{background:#fff}.el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.el-input .el-input__clear{color:#c0c4cc;font-size:14px;cursor:pointer;-webkit-transition:color .2s cubic-bezier(.645,.045,.355,1);transition:color .2s cubic-bezier(.645,.045,.355,1)}.el-input .el-input__clear:hover{color:#909399}.el-input .el-input__count{height:100%;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#909399;font-size:12px}.el-input .el-input__count .el-input__count-inner{background:#fff;line-height:normal;display:inline-block;padding:0 5px}.el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #dcdfe6;-webkit-box-sizing:border-box;box-sizing:border-box;color:#606266;display:inline-block;font-size:inherit;height:40px;line-height:40px;outline:0;padding:0 15px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.el-input__prefix,.el-input__suffix{position:absolute;top:0;-webkit-transition:all .3s;height:100%;color:#c0c4cc;text-align:center}.el-input__inner::-webkit-input-placeholder{color:#c0c4cc}.el-input__inner:-ms-input-placeholder{color:#c0c4cc}.el-input__inner::-ms-input-placeholder{color:#c0c4cc}.el-input__inner::-moz-placeholder{color:#c0c4cc}.el-input__inner::placeholder{color:#c0c4cc}.el-input__inner:hover{border-color:#c0c4cc}.el-input.is-active .el-input__inner,.el-input__inner:focus{border-color:#409eff;outline:0}.el-input__suffix{right:5px;-webkit-transition:all .3s;transition:all .3s}.el-input__suffix-inner{pointer-events:all}.el-input__prefix{left:5px}.el-input__icon,.el-input__prefix{-webkit-transition:all .3s;transition:all .3s}.el-input__icon{height:100%;width:25px;text-align:center;line-height:40px}.el-input__icon:after{content:\"\";height:100%;width:0;display:inline-block;vertical-align:middle}.el-input__validateIcon{pointer-events:none}.el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed}.el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner::-ms-input-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner::-moz-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner::placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__icon{cursor:not-allowed}.el-link,.el-transfer-panel__filter .el-icon-circle-close{cursor:pointer}.el-input.is-exceed .el-input__inner{border-color:#f56c6c}.el-input.is-exceed .el-input__suffix .el-input__count{color:#f56c6c}.el-input--suffix .el-input__inner{padding-right:30px}.el-input--prefix .el-input__inner{padding-left:30px}.el-input--medium{font-size:14px}.el-input--medium .el-input__inner{height:36px;line-height:36px}.el-input--medium .el-input__icon{line-height:36px}.el-input--small{font-size:13px}.el-input--small .el-input__inner{height:32px;line-height:32px}.el-input--small .el-input__icon{line-height:32px}.el-input--mini{font-size:12px}.el-input--mini .el-input__inner{height:28px;line-height:28px}.el-input--mini .el-input__icon{line-height:28px}.el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate;border-spacing:0}.el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.el-input-group__append,.el-input-group__prepend{background-color:#f5f7fa;color:#909399;vertical-align:middle;display:table-cell;position:relative;border:1px solid #dcdfe6;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.el-input-group--prepend .el-input__inner,.el-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0}.el-input-group--append .el-input__inner,.el-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0}.el-input-group__append:focus,.el-input-group__prepend:focus{outline:0}.el-input-group__append .el-button,.el-input-group__append .el-select,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select{display:inline-block;margin:-10px -20px}.el-input-group__append button.el-button,.el-input-group__append div.el-select .el-input__inner,.el-input-group__append div.el-select:hover .el-input__inner,.el-input-group__prepend button.el-button,.el-input-group__prepend div.el-select .el-input__inner,.el-input-group__prepend div.el-select:hover .el-input__inner{border-color:transparent;background-color:transparent;color:inherit;border-top:0;border-bottom:0}.el-input-group__append .el-button,.el-input-group__append .el-input,.el-input-group__prepend .el-button,.el-input-group__prepend .el-input{font-size:inherit}.el-input-group__prepend{border-right:0}.el-input-group__append{border-left:0}.el-input-group--append .el-select .el-input.is-focus .el-input__inner,.el-input-group--prepend .el-select .el-input.is-focus .el-input__inner{border-color:transparent}.el-input__inner::-ms-clear{display:none;width:0;height:0}.el-transfer{font-size:14px}.el-transfer__buttons{display:inline-block;vertical-align:middle;padding:0 30px}.el-transfer__button{display:block;margin:0 auto;padding:10px;border-radius:50%;color:#fff;background-color:#409eff;font-size:0}.el-transfer-panel__item+.el-transfer-panel__item,.el-transfer__button [class*=el-icon-]+span{margin-left:0}.el-transfer__button.is-with-texts{border-radius:4px}.el-transfer__button.is-disabled,.el-transfer__button.is-disabled:hover{border:1px solid #dcdfe6;background-color:#f5f7fa;color:#c0c4cc}.el-transfer__button:first-child{margin-bottom:10px}.el-transfer__button:nth-child(2){margin:0}.el-transfer__button i,.el-transfer__button span{font-size:14px}.el-transfer-panel{border:1px solid #ebeef5;border-radius:4px;overflow:hidden;background:#fff;display:inline-block;vertical-align:middle;width:200px;max-height:100%;-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.el-transfer-panel__body{height:246px}.el-transfer-panel__body.is-with-footer{padding-bottom:40px}.el-transfer-panel__list{margin:0;padding:6px 0;list-style:none;height:246px;overflow:auto;-webkit-box-sizing:border-box;box-sizing:border-box}.el-transfer-panel__list.is-filterable{height:194px;padding-top:0}.el-transfer-panel__item{height:30px;line-height:30px;padding-left:15px;display:block!important}.el-transfer-panel__item.el-checkbox{color:#606266}.el-transfer-panel__item:hover{color:#409eff}.el-transfer-panel__item.el-checkbox .el-checkbox__label{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:24px;line-height:30px}.el-transfer-panel__item .el-checkbox__input{position:absolute;top:8px}.el-transfer-panel__filter{text-align:center;margin:15px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:auto}.el-transfer-panel__filter .el-input__inner{height:32px;width:100%;font-size:12px;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:16px;padding-right:10px;padding-left:30px}.el-transfer-panel__filter .el-input__icon{margin-left:5px}.el-transfer-panel .el-transfer-panel__header{height:40px;line-height:40px;background:#f5f7fa;margin:0;padding-left:15px;border-bottom:1px solid #ebeef5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#000}.el-transfer-panel .el-transfer-panel__header .el-checkbox{display:block;line-height:40px}.el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label{font-size:16px;color:#303133;font-weight:400}.el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label span{position:absolute;right:15px;color:#909399;font-size:12px;font-weight:400}.el-divider__text,.el-link{font-weight:500;font-size:14px}.el-transfer-panel .el-transfer-panel__footer{height:40px;background:#fff;margin:0;padding:0;border-top:1px solid #ebeef5;position:absolute;bottom:0;left:0;width:100%;z-index:1}.el-transfer-panel .el-transfer-panel__footer:after{display:inline-block;content:\"\";height:100%;vertical-align:middle}.el-container,.el-timeline-item__node{display:-webkit-box;display:-ms-flexbox}.el-transfer-panel .el-transfer-panel__footer .el-checkbox{padding-left:20px;color:#606266}.el-transfer-panel .el-transfer-panel__empty{margin:0;height:30px;line-height:30px;padding:6px 15px 0;color:#909399;text-align:center}.el-transfer-panel .el-checkbox__label{padding-left:8px}.el-transfer-panel .el-checkbox__inner{height:14px;width:14px;border-radius:3px}.el-transfer-panel .el-checkbox__inner:after{height:6px;width:3px;left:4px}.el-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-preferred-size:auto;flex-basis:auto;-webkit-box-sizing:border-box;box-sizing:border-box;min-width:0}.el-container.is-vertical,.el-drawer{-webkit-box-orient:vertical;-webkit-box-direction:normal}.el-aside,.el-header{-webkit-box-sizing:border-box}.el-container.is-vertical{-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.el-header{padding:0 20px}.el-aside,.el-header{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0}.el-aside{overflow:auto}.el-footer,.el-main{-webkit-box-sizing:border-box}.el-main{display:block;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-preferred-size:auto;flex-basis:auto;overflow:auto;padding:20px}.el-footer,.el-main{-webkit-box-sizing:border-box;box-sizing:border-box}.el-footer{padding:0 20px;-ms-flex-negative:0;flex-shrink:0}.el-timeline{margin:0;font-size:14px;list-style:none}.el-timeline .el-timeline-item:last-child .el-timeline-item__tail{display:none}.el-timeline-item{position:relative;padding-bottom:20px}.el-timeline-item__wrapper{position:relative;padding-left:28px;top:-3px}.el-timeline-item__tail{position:absolute;left:4px;height:100%;border-left:2px solid #e4e7ed}.el-timeline-item__icon{color:#fff;font-size:13px}.el-timeline-item__node{position:absolute;background-color:#e4e7ed;border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-image__error,.el-timeline-item__dot{display:-webkit-box;display:-ms-flexbox}.el-timeline-item__node--normal{left:-1px;width:12px;height:12px}.el-timeline-item__node--large{left:-2px;width:14px;height:14px}.el-timeline-item__node--primary{background-color:#409eff}.el-timeline-item__node--success{background-color:#67c23a}.el-timeline-item__node--warning{background-color:#e6a23c}.el-timeline-item__node--danger{background-color:#f56c6c}.el-timeline-item__node--info{background-color:#909399}.el-timeline-item__dot{position:absolute;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-timeline-item__content{color:#303133}.el-timeline-item__timestamp{color:#909399;line-height:1;font-size:13px}.el-timeline-item__timestamp.is-top{margin-bottom:8px;padding-top:4px}.el-timeline-item__timestamp.is-bottom{margin-top:8px}.el-link{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;vertical-align:middle;position:relative;text-decoration:none;outline:0;padding:0}.el-link.is-underline:hover:after{content:\"\";position:absolute;left:0;right:0;height:0;bottom:0;border-bottom:1px solid #409eff}.el-link.el-link--default:after,.el-link.el-link--primary.is-underline:hover:after,.el-link.el-link--primary:after{border-color:#409eff}.el-link.is-disabled{cursor:not-allowed}.el-link [class*=el-icon-]+span{margin-left:5px}.el-link.el-link--default{color:#606266}.el-link.el-link--default:hover{color:#409eff}.el-link.el-link--default.is-disabled{color:#c0c4cc}.el-link.el-link--primary{color:#409eff}.el-link.el-link--primary:hover{color:#66b1ff}.el-link.el-link--primary.is-disabled{color:#a0cfff}.el-link.el-link--danger.is-underline:hover:after,.el-link.el-link--danger:after{border-color:#f56c6c}.el-link.el-link--danger{color:#f56c6c}.el-link.el-link--danger:hover{color:#f78989}.el-link.el-link--danger.is-disabled{color:#fab6b6}.el-link.el-link--success.is-underline:hover:after,.el-link.el-link--success:after{border-color:#67c23a}.el-link.el-link--success{color:#67c23a}.el-link.el-link--success:hover{color:#85ce61}.el-link.el-link--success.is-disabled{color:#b3e19d}.el-link.el-link--warning.is-underline:hover:after,.el-link.el-link--warning:after{border-color:#e6a23c}.el-link.el-link--warning{color:#e6a23c}.el-link.el-link--warning:hover{color:#ebb563}.el-link.el-link--warning.is-disabled{color:#f3d19e}.el-link.el-link--info.is-underline:hover:after,.el-link.el-link--info:after{border-color:#909399}.el-link.el-link--info{color:#909399}.el-link.el-link--info:hover{color:#a6a9ad}.el-link.el-link--info.is-disabled{color:#c8c9cc}.el-divider{background-color:#dcdfe6;position:relative}.el-divider--horizontal{display:block;height:1px;width:100%;margin:24px 0}.el-divider--vertical{display:inline-block;width:1px;height:1em;margin:0 8px;vertical-align:middle;position:relative}.el-divider__text{position:absolute;background-color:#fff;padding:0 20px;color:#303133}.el-image__error,.el-image__placeholder{background:#f5f7fa}.el-divider__text.is-left{left:20px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.el-divider__text.is-center{left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.el-divider__text.is-right{right:20px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.el-image__error,.el-image__inner,.el-image__placeholder{width:100%;height:100%}.el-image{position:relative;display:inline-block;overflow:hidden}.el-image__inner{vertical-align:top}.el-image__inner--center{position:relative;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);display:block}.el-image__error{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px;color:#c0c4cc;vertical-align:middle}.el-image__preview{cursor:pointer}.el-image-viewer__wrapper{position:fixed;top:0;right:0;bottom:0;left:0}.el-image-viewer__btn{position:absolute;z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:50%;opacity:.8;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box;user-select:none}.el-button,.el-checkbox,.el-image-viewer__btn{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.el-image-viewer__close{top:40px;right:40px;width:40px;height:40px;font-size:40px}.el-image-viewer__canvas{width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-image-viewer__actions{left:50%;bottom:30px;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:282px;height:44px;padding:0 23px;background-color:#606266;border-color:#fff;border-radius:22px}.el-image-viewer__actions__inner{width:100%;height:100%;text-align:justify;cursor:default;font-size:23px;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.el-image-viewer__next,.el-image-viewer__prev{top:50%;width:44px;height:44px;font-size:24px;color:#fff;background-color:#606266;border-color:#fff}.el-image-viewer__prev{left:40px}.el-image-viewer__next,.el-image-viewer__prev{-webkit-transform:translateY(-50%);transform:translateY(-50%)}.el-image-viewer__next{right:40px;text-indent:2px}.el-image-viewer__mask{position:absolute;width:100%;height:100%;top:0;left:0;opacity:.5;background:#000}.viewer-fade-enter-active{-webkit-animation:viewer-fade-in .3s;animation:viewer-fade-in .3s}.viewer-fade-leave-active{-webkit-animation:viewer-fade-out .3s;animation:viewer-fade-out .3s}@-webkit-keyframes viewer-fade-in{0%{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes viewer-fade-in{0%{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@-webkit-keyframes viewer-fade-out{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}}@keyframes viewer-fade-out{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}}.el-button{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #dcdfe6;color:#606266;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;-webkit-transition:.1s;transition:.1s;font-weight:500;padding:12px 20px;font-size:14px;border-radius:4px}.el-button+.el-button{margin-left:10px}.el-button:focus,.el-button:hover{color:#409eff;border-color:#c6e2ff;background-color:#ecf5ff}.el-button:active{color:#3a8ee6;border-color:#3a8ee6;outline:0}.el-button::-moz-focus-inner{border:0}.el-button [class*=el-icon-]+span{margin-left:5px}.el-button.is-plain:focus,.el-button.is-plain:hover{background:#fff;border-color:#409eff;color:#409eff}.el-button.is-active,.el-button.is-plain:active{color:#3a8ee6;border-color:#3a8ee6}.el-button.is-plain:active{background:#fff;outline:0}.el-button.is-disabled,.el-button.is-disabled:focus,.el-button.is-disabled:hover{color:#c0c4cc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#ebeef5}.el-button.is-disabled.el-button--text{background-color:transparent}.el-button.is-disabled.is-plain,.el-button.is-disabled.is-plain:focus,.el-button.is-disabled.is-plain:hover{background-color:#fff;border-color:#ebeef5;color:#c0c4cc}.el-button.is-loading{position:relative;pointer-events:none}.el-button.is-loading:before{pointer-events:none;content:\"\";position:absolute;left:-1px;top:-1px;right:-1px;bottom:-1px;border-radius:inherit;background-color:hsla(0,0%,100%,.35)}.el-button.is-round{border-radius:20px;padding:12px 23px}.el-button.is-circle{border-radius:50%;padding:12px}.el-button--primary{color:#fff;background-color:#409eff;border-color:#409eff}.el-button--primary:focus,.el-button--primary:hover{background:#66b1ff;border-color:#66b1ff;color:#fff}.el-button--primary.is-active,.el-button--primary:active{background:#3a8ee6;border-color:#3a8ee6;color:#fff}.el-button--primary:active{outline:0}.el-button--primary.is-disabled,.el-button--primary.is-disabled:active,.el-button--primary.is-disabled:focus,.el-button--primary.is-disabled:hover{color:#fff;background-color:#a0cfff;border-color:#a0cfff}.el-button--primary.is-plain{color:#409eff;background:#ecf5ff;border-color:#b3d8ff}.el-button--primary.is-plain:focus,.el-button--primary.is-plain:hover{background:#409eff;border-color:#409eff;color:#fff}.el-button--primary.is-plain:active{background:#3a8ee6;border-color:#3a8ee6;color:#fff;outline:0}.el-button--primary.is-plain.is-disabled,.el-button--primary.is-plain.is-disabled:active,.el-button--primary.is-plain.is-disabled:focus,.el-button--primary.is-plain.is-disabled:hover{color:#8cc5ff;background-color:#ecf5ff;border-color:#d9ecff}.el-button--success{color:#fff;background-color:#67c23a;border-color:#67c23a}.el-button--success:focus,.el-button--success:hover{background:#85ce61;border-color:#85ce61;color:#fff}.el-button--success.is-active,.el-button--success:active{background:#5daf34;border-color:#5daf34;color:#fff}.el-button--success:active{outline:0}.el-button--success.is-disabled,.el-button--success.is-disabled:active,.el-button--success.is-disabled:focus,.el-button--success.is-disabled:hover{color:#fff;background-color:#b3e19d;border-color:#b3e19d}.el-button--success.is-plain{color:#67c23a;background:#f0f9eb;border-color:#c2e7b0}.el-button--success.is-plain:focus,.el-button--success.is-plain:hover{background:#67c23a;border-color:#67c23a;color:#fff}.el-button--success.is-plain:active{background:#5daf34;border-color:#5daf34;color:#fff;outline:0}.el-button--success.is-plain.is-disabled,.el-button--success.is-plain.is-disabled:active,.el-button--success.is-plain.is-disabled:focus,.el-button--success.is-plain.is-disabled:hover{color:#a4da89;background-color:#f0f9eb;border-color:#e1f3d8}.el-button--warning{color:#fff;background-color:#e6a23c;border-color:#e6a23c}.el-button--warning:focus,.el-button--warning:hover{background:#ebb563;border-color:#ebb563;color:#fff}.el-button--warning.is-active,.el-button--warning:active{background:#cf9236;border-color:#cf9236;color:#fff}.el-button--warning:active{outline:0}.el-button--warning.is-disabled,.el-button--warning.is-disabled:active,.el-button--warning.is-disabled:focus,.el-button--warning.is-disabled:hover{color:#fff;background-color:#f3d19e;border-color:#f3d19e}.el-button--warning.is-plain{color:#e6a23c;background:#fdf6ec;border-color:#f5dab1}.el-button--warning.is-plain:focus,.el-button--warning.is-plain:hover{background:#e6a23c;border-color:#e6a23c;color:#fff}.el-button--warning.is-plain:active{background:#cf9236;border-color:#cf9236;color:#fff;outline:0}.el-button--warning.is-plain.is-disabled,.el-button--warning.is-plain.is-disabled:active,.el-button--warning.is-plain.is-disabled:focus,.el-button--warning.is-plain.is-disabled:hover{color:#f0c78a;background-color:#fdf6ec;border-color:#faecd8}.el-button--danger{color:#fff;background-color:#f56c6c;border-color:#f56c6c}.el-button--danger:focus,.el-button--danger:hover{background:#f78989;border-color:#f78989;color:#fff}.el-button--danger.is-active,.el-button--danger:active{background:#dd6161;border-color:#dd6161;color:#fff}.el-button--danger:active{outline:0}.el-button--danger.is-disabled,.el-button--danger.is-disabled:active,.el-button--danger.is-disabled:focus,.el-button--danger.is-disabled:hover{color:#fff;background-color:#fab6b6;border-color:#fab6b6}.el-button--danger.is-plain{color:#f56c6c;background:#fef0f0;border-color:#fbc4c4}.el-button--danger.is-plain:focus,.el-button--danger.is-plain:hover{background:#f56c6c;border-color:#f56c6c;color:#fff}.el-button--danger.is-plain:active{background:#dd6161;border-color:#dd6161;color:#fff;outline:0}.el-button--danger.is-plain.is-disabled,.el-button--danger.is-plain.is-disabled:active,.el-button--danger.is-plain.is-disabled:focus,.el-button--danger.is-plain.is-disabled:hover{color:#f9a7a7;background-color:#fef0f0;border-color:#fde2e2}.el-button--info{color:#fff;background-color:#909399;border-color:#909399}.el-button--info:focus,.el-button--info:hover{background:#a6a9ad;border-color:#a6a9ad;color:#fff}.el-button--info.is-active,.el-button--info:active{background:#82848a;border-color:#82848a;color:#fff}.el-button--info:active{outline:0}.el-button--info.is-disabled,.el-button--info.is-disabled:active,.el-button--info.is-disabled:focus,.el-button--info.is-disabled:hover{color:#fff;background-color:#c8c9cc;border-color:#c8c9cc}.el-button--info.is-plain{color:#909399;background:#f4f4f5;border-color:#d3d4d6}.el-button--info.is-plain:focus,.el-button--info.is-plain:hover{background:#909399;border-color:#909399;color:#fff}.el-button--info.is-plain:active{background:#82848a;border-color:#82848a;color:#fff;outline:0}.el-button--info.is-plain.is-disabled,.el-button--info.is-plain.is-disabled:active,.el-button--info.is-plain.is-disabled:focus,.el-button--info.is-plain.is-disabled:hover{color:#bcbec2;background-color:#f4f4f5;border-color:#e9e9eb}.el-button--text,.el-button--text.is-disabled,.el-button--text.is-disabled:focus,.el-button--text.is-disabled:hover,.el-button--text:active{border-color:transparent}.el-button--medium{padding:10px 20px;font-size:14px;border-radius:4px}.el-button--mini,.el-button--small{font-size:12px;border-radius:3px}.el-button--medium.is-round{padding:10px 20px}.el-button--medium.is-circle{padding:10px}.el-button--small,.el-button--small.is-round{padding:9px 15px}.el-button--small.is-circle{padding:9px}.el-button--mini,.el-button--mini.is-round{padding:7px 15px}.el-button--mini.is-circle{padding:7px}.el-button--text{color:#409eff;background:0 0;padding-left:0;padding-right:0}.el-button--text:focus,.el-button--text:hover{color:#66b1ff;border-color:transparent;background-color:transparent}.el-button--text:active{color:#3a8ee6;background-color:transparent}.el-button-group{display:inline-block;vertical-align:middle}.el-button-group:after,.el-button-group:before{display:table;content:\"\"}.el-button-group:after{clear:both}.el-button-group>.el-button{float:left;position:relative}.el-button-group>.el-button+.el-button{margin-left:0}.el-button-group>.el-button.is-disabled{z-index:1}.el-button-group>.el-button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.el-button-group>.el-button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.el-button-group>.el-button:first-child:last-child{border-radius:4px}.el-button-group>.el-button:first-child:last-child.is-round{border-radius:20px}.el-button-group>.el-button:first-child:last-child.is-circle{border-radius:50%}.el-button-group>.el-button:not(:first-child):not(:last-child){border-radius:0}.el-button-group>.el-button:not(:last-child){margin-right:-1px}.el-button-group>.el-button.is-active,.el-button-group>.el-button:active,.el-button-group>.el-button:focus,.el-button-group>.el-button:hover{z-index:1}.el-button-group>.el-dropdown>.el-button{border-top-left-radius:0;border-bottom-left-radius:0;border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--primary:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--primary:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--primary:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--success:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--success:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--success:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--warning:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--warning:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--warning:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--danger:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--danger:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--danger:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--info:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--info:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--info:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-calendar{background-color:#fff}.el-calendar__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:12px 20px;border-bottom:1px solid #ebeef5}.el-backtop,.el-page-header{display:-webkit-box;display:-ms-flexbox}.el-calendar__title{color:#000;-ms-flex-item-align:center;align-self:center}.el-calendar__body{padding:12px 20px 35px}.el-calendar-table{table-layout:fixed;width:100%}.el-calendar-table thead th{padding:12px 0;color:#606266;font-weight:400}.el-calendar-table:not(.is-range) td.next,.el-calendar-table:not(.is-range) td.prev{color:#c0c4cc}.el-backtop,.el-calendar-table td.is-today{color:#409eff}.el-calendar-table td{border-bottom:1px solid #ebeef5;border-right:1px solid #ebeef5;vertical-align:top;-webkit-transition:background-color .2s ease;transition:background-color .2s ease}.el-calendar-table td.is-selected{background-color:#f2f8fe}.el-calendar-table tr:first-child td{border-top:1px solid #ebeef5}.el-calendar-table tr td:first-child{border-left:1px solid #ebeef5}.el-calendar-table tr.el-calendar-table__row--hide-border td{border-top:none}.el-calendar-table .el-calendar-day{-webkit-box-sizing:border-box;box-sizing:border-box;padding:8px;height:85px}.el-calendar-table .el-calendar-day:hover{cursor:pointer;background-color:#f2f8fe}.el-backtop{position:fixed;background-color:#fff;width:40px;height:40px;border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:20px;-webkit-box-shadow:0 0 6px rgba(0,0,0,.12);box-shadow:0 0 6px rgba(0,0,0,.12);cursor:pointer;z-index:5}.el-backtop:hover{background-color:#f2f6fc}.el-page-header{line-height:24px}.el-page-header,.el-page-header__left{display:-webkit-box;display:-ms-flexbox;display:flex}.el-page-header__left{cursor:pointer;margin-right:40px;position:relative}.el-page-header__left:after{content:\"\";position:absolute;width:1px;height:16px;right:-20px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);background-color:#dcdfe6}.el-checkbox,.el-checkbox__input{display:inline-block;position:relative;white-space:nowrap}.el-page-header__left .el-icon-back{font-size:18px;margin-right:6px;-ms-flex-item-align:center;align-self:center}.el-page-header__title{font-size:14px;font-weight:500}.el-page-header__content{font-size:18px;color:#303133}.el-checkbox{color:#606266;font-size:14px;cursor:pointer;user-select:none;margin-right:30px}.el-checkbox,.el-checkbox-button__inner,.el-radio{font-weight:500;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.el-checkbox.is-bordered{padding:9px 20px 9px 10px;border-radius:4px;border:1px solid #dcdfe6;-webkit-box-sizing:border-box;box-sizing:border-box;line-height:normal;height:40px}.el-checkbox.is-bordered.is-checked{border-color:#409eff}.el-checkbox.is-bordered.is-disabled{border-color:#ebeef5;cursor:not-allowed}.el-checkbox.is-bordered+.el-checkbox.is-bordered{margin-left:10px}.el-checkbox.is-bordered.el-checkbox--medium{padding:7px 20px 7px 10px;border-radius:4px;height:36px}.el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__label{line-height:17px;font-size:14px}.el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__inner{height:14px;width:14px}.el-checkbox.is-bordered.el-checkbox--small{padding:5px 15px 5px 10px;border-radius:3px;height:32px}.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label{line-height:15px;font-size:12px}.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner{height:12px;width:12px}.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner:after{height:6px;width:2px}.el-checkbox.is-bordered.el-checkbox--mini{padding:3px 15px 3px 10px;border-radius:3px;height:28px}.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__label{line-height:12px;font-size:12px}.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner{height:12px;width:12px}.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner:after{height:6px;width:2px}.el-checkbox__input{cursor:pointer;outline:0;line-height:1;vertical-align:middle}.el-checkbox__input.is-disabled .el-checkbox__inner{background-color:#edf2fc;border-color:#dcdfe6;cursor:not-allowed}.el-checkbox__input.is-disabled .el-checkbox__inner:after{cursor:not-allowed;border-color:#c0c4cc}.el-checkbox__input.is-disabled .el-checkbox__inner+.el-checkbox__label{cursor:not-allowed}.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{background-color:#f2f6fc;border-color:#dcdfe6}.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner:after{border-color:#c0c4cc}.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner{background-color:#f2f6fc;border-color:#dcdfe6}.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner:before{background-color:#c0c4cc;border-color:#c0c4cc}.el-checkbox__input.is-checked .el-checkbox__inner,.el-checkbox__input.is-indeterminate .el-checkbox__inner{background-color:#409eff;border-color:#409eff}.el-checkbox__input.is-disabled+span.el-checkbox__label{color:#c0c4cc;cursor:not-allowed}.el-checkbox__input.is-checked .el-checkbox__inner:after{-webkit-transform:rotate(45deg) scaleY(1);transform:rotate(45deg) scaleY(1)}.el-checkbox__input.is-checked+.el-checkbox__label{color:#409eff}.el-checkbox__input.is-focus .el-checkbox__inner{border-color:#409eff}.el-checkbox__input.is-indeterminate .el-checkbox__inner:before{content:\"\";position:absolute;display:block;background-color:#fff;height:2px;-webkit-transform:scale(.5);transform:scale(.5);left:0;right:0;top:5px}.el-checkbox__input.is-indeterminate .el-checkbox__inner:after{display:none}.el-checkbox__inner{display:inline-block;position:relative;border:1px solid #dcdfe6;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box;width:14px;height:14px;background-color:#fff;z-index:1;-webkit-transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46);transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.el-checkbox__inner:hover{border-color:#409eff}.el-checkbox__inner:after{-webkit-box-sizing:content-box;box-sizing:content-box;content:\"\";border:1px solid #fff;border-left:0;border-top:0;height:7px;left:4px;position:absolute;top:1px;-webkit-transform:rotate(45deg) scaleY(0);transform:rotate(45deg) scaleY(0);width:3px;-webkit-transition:-webkit-transform .15s ease-in .05s;transition:-webkit-transform .15s ease-in .05s;transition:transform .15s ease-in .05s;transition:transform .15s ease-in .05s,-webkit-transform .15s ease-in .05s;-webkit-transform-origin:center;transform-origin:center}.el-checkbox__original{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.el-checkbox-button,.el-checkbox-button__inner{display:inline-block;position:relative}.el-checkbox__label{display:inline-block;padding-left:10px;line-height:19px;font-size:14px}.el-checkbox:last-of-type{margin-right:0}.el-checkbox-button__inner{line-height:1;white-space:nowrap;vertical-align:middle;cursor:pointer;background:#fff;border:1px solid #dcdfe6;border-left:0;color:#606266;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);padding:12px 20px;font-size:14px;border-radius:0}.el-checkbox-button__inner.is-round{padding:12px 20px}.el-checkbox-button__inner:hover{color:#409eff}.el-checkbox-button__inner [class*=el-icon-]{line-height:.9}.el-radio,.el-radio__input{line-height:1;outline:0;white-space:nowrap}.el-checkbox-button__inner [class*=el-icon-]+span{margin-left:5px}.el-checkbox-button__original{opacity:0;outline:0;position:absolute;margin:0;z-index:-1}.el-radio,.el-radio__inner,.el-radio__input{position:relative;display:inline-block}.el-checkbox-button.is-checked .el-checkbox-button__inner{color:#fff;background-color:#409eff;border-color:#409eff;-webkit-box-shadow:-1px 0 0 0 #8cc5ff;box-shadow:-1px 0 0 0 #8cc5ff}.el-checkbox-button.is-checked:first-child .el-checkbox-button__inner{border-left-color:#409eff}.el-checkbox-button.is-disabled .el-checkbox-button__inner{color:#c0c4cc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#ebeef5;-webkit-box-shadow:none;box-shadow:none}.el-checkbox-button.is-disabled:first-child .el-checkbox-button__inner{border-left-color:#ebeef5}.el-checkbox-button:first-child .el-checkbox-button__inner{border-left:1px solid #dcdfe6;border-radius:4px 0 0 4px;-webkit-box-shadow:none!important;box-shadow:none!important}.el-checkbox-button.is-focus .el-checkbox-button__inner{border-color:#409eff}.el-checkbox-button:last-child .el-checkbox-button__inner{border-radius:0 4px 4px 0}.el-checkbox-button--medium .el-checkbox-button__inner{padding:10px 20px;font-size:14px;border-radius:0}.el-checkbox-button--medium .el-checkbox-button__inner.is-round{padding:10px 20px}.el-checkbox-button--small .el-checkbox-button__inner{padding:9px 15px;font-size:12px;border-radius:0}.el-checkbox-button--small .el-checkbox-button__inner.is-round{padding:9px 15px}.el-checkbox-button--mini .el-checkbox-button__inner{padding:7px 15px;font-size:12px;border-radius:0}.el-checkbox-button--mini .el-checkbox-button__inner.is-round{padding:7px 15px}.el-checkbox-group{font-size:0}.el-radio,.el-radio--medium.is-bordered .el-radio__label{font-size:14px}.el-radio{color:#606266;cursor:pointer;margin-right:30px}.el-cascader-node>.el-radio,.el-radio:last-child{margin-right:0}.el-radio.is-bordered{padding:12px 20px 0 10px;border-radius:4px;border:1px solid #dcdfe6;-webkit-box-sizing:border-box;box-sizing:border-box;height:40px}.el-radio.is-bordered.is-checked{border-color:#409eff}.el-radio.is-bordered.is-disabled{cursor:not-allowed;border-color:#ebeef5}.el-radio__input.is-disabled .el-radio__inner,.el-radio__input.is-disabled.is-checked .el-radio__inner{background-color:#f5f7fa;border-color:#e4e7ed}.el-radio.is-bordered+.el-radio.is-bordered{margin-left:10px}.el-radio--medium.is-bordered{padding:10px 20px 0 10px;border-radius:4px;height:36px}.el-radio--mini.is-bordered .el-radio__label,.el-radio--small.is-bordered .el-radio__label{font-size:12px}.el-radio--medium.is-bordered .el-radio__inner{height:14px;width:14px}.el-radio--small.is-bordered{padding:8px 15px 0 10px;border-radius:3px;height:32px}.el-radio--small.is-bordered .el-radio__inner{height:12px;width:12px}.el-radio--mini.is-bordered{padding:6px 15px 0 10px;border-radius:3px;height:28px}.el-radio--mini.is-bordered .el-radio__inner{height:12px;width:12px}.el-radio__input{cursor:pointer;vertical-align:middle}.el-radio__input.is-disabled .el-radio__inner{cursor:not-allowed}.el-radio__input.is-disabled .el-radio__inner:after{cursor:not-allowed;background-color:#f5f7fa}.el-radio__input.is-disabled .el-radio__inner+.el-radio__label{cursor:not-allowed}.el-radio__input.is-disabled.is-checked .el-radio__inner:after{background-color:#c0c4cc}.el-radio__input.is-disabled+span.el-radio__label{color:#c0c4cc;cursor:not-allowed}.el-radio__input.is-checked .el-radio__inner{border-color:#409eff;background:#409eff}.el-radio__input.is-checked .el-radio__inner:after{-webkit-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1)}.el-radio__input.is-checked+.el-radio__label{color:#409eff}.el-radio__input.is-focus .el-radio__inner{border-color:#409eff}.el-radio__inner{border:1px solid #dcdfe6;border-radius:100%;width:14px;height:14px;background-color:#fff;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box}.el-radio__inner:hover{border-color:#409eff}.el-radio__inner:after{width:4px;height:4px;border-radius:100%;background-color:#fff;content:\"\";position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);-webkit-transition:-webkit-transform .15s ease-in;transition:-webkit-transform .15s ease-in;transition:transform .15s ease-in;transition:transform .15s ease-in,-webkit-transform .15s ease-in}.el-radio__original{opacity:0;outline:0;position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;margin:0}.el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner{-webkit-box-shadow:0 0 2px 2px #409eff;box-shadow:0 0 2px 2px #409eff}.el-radio__label{font-size:14px;padding-left:10px}.el-scrollbar{overflow:hidden;position:relative}.el-scrollbar:active>.el-scrollbar__bar,.el-scrollbar:focus>.el-scrollbar__bar,.el-scrollbar:hover>.el-scrollbar__bar{opacity:1;-webkit-transition:opacity .34s ease-out;transition:opacity .34s ease-out}.el-scrollbar__wrap{overflow:scroll;height:100%}.el-scrollbar__wrap--hidden-default{scrollbar-width:none}.el-scrollbar__wrap--hidden-default::-webkit-scrollbar{width:0;height:0}.el-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:rgba(144,147,153,.3);-webkit-transition:background-color .3s;transition:background-color .3s}.el-scrollbar__thumb:hover{background-color:rgba(144,147,153,.5)}.el-scrollbar__bar{position:absolute;right:2px;bottom:2px;z-index:1;border-radius:4px;opacity:0;-webkit-transition:opacity .12s ease-out;transition:opacity .12s ease-out}.el-scrollbar__bar.is-vertical{width:6px;top:2px}.el-scrollbar__bar.is-vertical>div{width:100%}.el-scrollbar__bar.is-horizontal{height:6px;left:2px}.el-scrollbar__bar.is-horizontal>div{height:100%}.el-cascader-panel{display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:4px;font-size:14px}.el-cascader-panel.is-bordered{border:1px solid #e4e7ed;border-radius:4px}.el-cascader-menu{min-width:180px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#606266;border-right:1px solid #e4e7ed}.el-cascader-menu:last-child{border-right:none}.el-cascader-menu:last-child .el-cascader-node{padding-right:20px}.el-cascader-menu__wrap{height:204px}.el-cascader-menu__list{position:relative;min-height:100%;margin:0;padding:6px 0;list-style:none;-webkit-box-sizing:border-box;box-sizing:border-box}.el-avatar,.el-drawer{-webkit-box-sizing:border-box;overflow:hidden}.el-cascader-menu__hover-zone{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none}.el-cascader-menu__empty-text{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-align:center;color:#c0c4cc}.el-cascader-node{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 30px 0 20px;height:34px;line-height:34px;outline:0}.el-cascader-node.is-selectable.in-active-path{color:#606266}.el-cascader-node.in-active-path,.el-cascader-node.is-active,.el-cascader-node.is-selectable.in-checked-path{color:#409eff;font-weight:700}.el-cascader-node:not(.is-disabled){cursor:pointer}.el-cascader-node:not(.is-disabled):focus,.el-cascader-node:not(.is-disabled):hover{background:#f5f7fa}.el-cascader-node.is-disabled{color:#c0c4cc;cursor:not-allowed}.el-cascader-node__prefix{position:absolute;left:10px}.el-cascader-node__postfix{position:absolute;right:10px}.el-cascader-node__label{-webkit-box-flex:1;-ms-flex:1;flex:1;padding:0 10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.el-cascader-node>.el-radio .el-radio__label{padding-left:0}.el-avatar{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;color:#fff;background:#c0c4cc;width:40px;height:40px;line-height:40px;font-size:14px}.el-avatar>img{display:block;height:100%;vertical-align:middle}.el-drawer,.el-drawer__header{display:-webkit-box;display:-ms-flexbox}.el-avatar--circle{border-radius:50%}.el-avatar--square{border-radius:4px}.el-avatar--icon{font-size:18px}.el-avatar--large{width:40px;height:40px;line-height:40px}.el-avatar--medium{width:36px;height:36px;line-height:36px}.el-avatar--small{width:28px;height:28px;line-height:28px}.el-drawer.btt,.el-drawer.ttb,.el-drawer__container{left:0;right:0;width:100%}.el-drawer.ltr,.el-drawer.rtl,.el-drawer__container{top:0;bottom:0;height:100%}@-webkit-keyframes el-drawer-fade-in{0%{opacity:0}to{opacity:1}}@keyframes el-drawer-fade-in{0%{opacity:0}to{opacity:1}}@-webkit-keyframes rtl-drawer-in{0%{-webkit-transform:translate(100%);transform:translate(100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes rtl-drawer-in{0%{-webkit-transform:translate(100%);transform:translate(100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes rtl-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translate(100%);transform:translate(100%)}}@keyframes rtl-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translate(100%);transform:translate(100%)}}@-webkit-keyframes ltr-drawer-in{0%{-webkit-transform:translate(-100%);transform:translate(-100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ltr-drawer-in{0%{-webkit-transform:translate(-100%);transform:translate(-100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ltr-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translate(-100%);transform:translate(-100%)}}@keyframes ltr-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translate(-100%);transform:translate(-100%)}}@-webkit-keyframes ttb-drawer-in{0%{-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ttb-drawer-in{0%{-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ttb-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@keyframes ttb-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@-webkit-keyframes btt-drawer-in{0%{-webkit-transform:translateY(100%);transform:translateY(100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes btt-drawer-in{0%{-webkit-transform:translateY(100%);transform:translateY(100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes btt-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translateY(100%);transform:translateY(100%)}}@keyframes btt-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translateY(100%);transform:translateY(100%)}}.el-drawer{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12);box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)}.el-drawer.rtl{-webkit-animation:rtl-drawer-out .3s;animation:rtl-drawer-out .3s;right:0}.el-drawer__open .el-drawer.rtl{-webkit-animation:rtl-drawer-in .3s 1ms;animation:rtl-drawer-in .3s 1ms}.el-drawer.ltr{-webkit-animation:ltr-drawer-out .3s;animation:ltr-drawer-out .3s;left:0}.el-drawer__open .el-drawer.ltr{-webkit-animation:ltr-drawer-in .3s 1ms;animation:ltr-drawer-in .3s 1ms}.el-drawer.ttb{-webkit-animation:ttb-drawer-out .3s;animation:ttb-drawer-out .3s;top:0}.el-drawer__open .el-drawer.ttb{-webkit-animation:ttb-drawer-in .3s 1ms;animation:ttb-drawer-in .3s 1ms}.el-drawer.btt{-webkit-animation:btt-drawer-out .3s;animation:btt-drawer-out .3s;bottom:0}.el-drawer__open .el-drawer.btt{-webkit-animation:btt-drawer-in .3s 1ms;animation:btt-drawer-in .3s 1ms}.el-drawer__wrapper{position:fixed;top:0;right:0;bottom:0;left:0;overflow:hidden;margin:0}.el-drawer__header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#72767b;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:32px;padding:20px 20px 0}.el-drawer__header>:first-child,.el-drawer__title{-webkit-box-flex:1;-ms-flex:1;flex:1}.el-drawer__title{margin:0;line-height:inherit;font-size:1rem}.el-drawer__close-btn{border:none;cursor:pointer;font-size:20px;color:inherit;background-color:transparent}.el-drawer__body{-webkit-box-flex:1;-ms-flex:1;flex:1}.el-drawer__body>*{-webkit-box-sizing:border-box;box-sizing:border-box}.el-drawer__container{position:relative}.el-drawer-fade-enter-active{-webkit-animation:el-drawer-fade-in .3s;animation:el-drawer-fade-in .3s}.el-drawer-fade-leave-active{animation:el-drawer-fade-in .3s reverse}.el-popconfirm__main{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-popconfirm__icon{margin-right:5px}.el-popconfirm__action{text-align:right;margin:0}@font-face{font-family:fontello;src:url(../fonts/fontello.e73a0647.eot);src:url(../fonts/fontello.e73a0647.eot#iefix) format(\"embedded-opentype\"),url(../fonts/fontello.8d4a4e6f.woff2) format(\"woff2\"),url(../fonts/fontello.a782baa8.woff) format(\"woff\"),url(../fonts/fontello.068ca2b3.ttf) format(\"truetype\"),url(../img/fontello.9354499c.svg#fontello) format(\"svg\");font-weight:400;font-style:normal}[class*=\" fa-mavon-\"]:before,[class^=fa-mavon-]:before{font-family:fontello;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-mavon-bold:before{content:\"\\E800\"}.fa-mavon-italic:before{content:\"\\E801\"}.fa-mavon-thumb-tack:before{content:\"\\E802\"}.fa-mavon-link:before{content:\"\\E803\"}.fa-mavon-picture-o:before{content:\"\\E804\"}.fa-mavon-repeat:before{content:\"\\E805\"}.fa-mavon-undo:before{content:\"\\E806\"}.fa-mavon-trash-o:before{content:\"\\E807\"}.fa-mavon-floppy-o:before{content:\"\\E808\"}.fa-mavon-compress:before{content:\"\\E809\"}.fa-mavon-eye:before{content:\"\\E80A\"}.fa-mavon-eye-slash:before{content:\"\\E80B\"}.fa-mavon-question-circle:before{content:\"\\E80C\"}.fa-mavon-times:before{content:\"\\E80D\"}.fa-mavon-align-left:before{content:\"\\E80F\"}.fa-mavon-align-center:before{content:\"\\E810\"}.fa-mavon-align-right:before{content:\"\\E811\"}.fa-mavon-arrows-alt:before{content:\"\\F0B2\"}.fa-mavon-bars:before{content:\"\\F0C9\"}.fa-mavon-list-ul:before{content:\"\\F0CA\"}.fa-mavon-list-ol:before{content:\"\\F0CB\"}.fa-mavon-strikethrough:before{content:\"\\F0CC\"}.fa-mavon-underline:before{content:\"\\F0CD\"}.fa-mavon-table:before{content:\"\\F0CE\"}.fa-mavon-columns:before{content:\"\\F0DB\"}.fa-mavon-quote-left:before{content:\"\\F10D\"}.fa-mavon-code:before{content:\"\\F121\"}.fa-mavon-superscript:before{content:\"\\F12B\"}.fa-mavon-subscript:before{content:\"\\F12C\"}.fa-mavon-header:before{content:\"\\F1DC\"}.fa-mavon-window-maximize:before{content:\"\\F2D0\"}.markdown-body strong{font-weight:bolder}.markdown-body .hljs-center{text-align:center}.markdown-body .hljs-right{text-align:right}.markdown-body .hljs-left{text-align:left}.hljs{display:block;overflow-x:auto;padding:.5em;background:#fff;color:#000}.hljs-comment,.hljs-quote,.hljs-variable{color:green}.hljs-built_in,.hljs-keyword,.hljs-name,.hljs-selector-tag,.hljs-tag{color:#00f}.hljs-addition,.hljs-attribute,.hljs-literal,.hljs-section,.hljs-string,.hljs-template-tag,.hljs-template-variable,.hljs-title,.hljs-type{color:#a31515}.hljs-deletion,.hljs-meta,.hljs-selector-attr,.hljs-selector-pseudo{color:#2b91af}.hljs-doctag{color:grey}.hljs-attr{color:red}.hljs-bullet,.hljs-link,.hljs-symbol{color:#00b0e8}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}"
  },
  {
    "path": "public/index.html",
    "content": "<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content=\"IE=edge\"><meta name=viewport content=\"width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=0\"><link rel=icon href=https://cdn.w7.cc/favicon.ico type=image/x-icon><link rel=stylesheet href=//at.alicdn.com/t/font_1570810_v4v2jk3uow.css><link rel=stylesheet href=//at.alicdn.com/t/font_1745829_0t4ihu7h1c2.css><link rel=stylesheet href=//at.alicdn.com/t/font_1151739_ktwszq0ukd8.css><link rel=stylesheet href=https://cdn.w7.cc/ued/wiki/static/css/github.min.css><link rel=stylesheet href=https://cdn.w7.cc/ued/wiki/static/css/github-markdown.min.css><link rel=stylesheet href=https://cdn.w7.cc/ued/wiki/static/css/katex.min.css><title>微擎文档管理系统</title><script src=https://cdn.w7.cc/ued/wiki/static/js/highlight.min.js></script><script src=https://cdn.w7.cc/ued/wiki/static/js/katex.min.js></script><link href=/css/app.45a4fd9d.css rel=preload as=style><link href=/css/chunk-vendors.1603aa5b.css rel=preload as=style><link href=/js/app.9dc9e499.js rel=preload as=script><link href=/js/chunk-vendors.26b96680.js rel=preload as=script><link href=/css/chunk-vendors.1603aa5b.css rel=stylesheet><link href=/css/app.45a4fd9d.css rel=stylesheet></head><body><noscript><strong>We're sorry but ued_apiserver doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/js/chunk-vendors.26b96680.js></script><script src=/js/app.9dc9e499.js></script></body></html>"
  },
  {
    "path": "public/js/app.9dc9e499.js",
    "content": "(function(n){function e(e){for(var a,c,o=e[0],d=e[1],i=e[2],h=0,f=[];h<o.length;h++)c=o[h],Object.prototype.hasOwnProperty.call(u,c)&&u[c]&&f.push(u[c][0]),u[c]=0;for(a in d)Object.prototype.hasOwnProperty.call(d,a)&&(n[a]=d[a]);l&&l(e);while(f.length)f.shift()();return r.push.apply(r,i||[]),t()}function t(){for(var n,e=0;e<r.length;e++){for(var t=r[e],a=!0,c=1;c<t.length;c++){var o=t[c];0!==u[o]&&(a=!1)}a&&(r.splice(e--,1),n=d(d.s=t[0]))}return n}var a={},c={app:0},u={app:0},r=[];function o(n){return d.p+\"js/\"+({}[n]||n)+\".\"+{\"chunk-079f5797\":\"19ae5348\",\"chunk-07e6273c\":\"1984b9b7\",\"chunk-10615ad3\":\"5901db24\",\"chunk-168777de\":\"cb8bf66b\",\"chunk-1e630799\":\"897fa4c7\",\"chunk-20afbe1d\":\"bcdaad46\",\"chunk-211c6b12\":\"01b14833\",\"chunk-22e40c8e\":\"f3e7130f\",\"chunk-25f82f1a\":\"e3262c66\",\"chunk-2d0ba2e6\":\"ba43e34b\",\"chunk-2d22276a\":\"90e5dc78\",\"chunk-3337dd8f\":\"e12552ed\",\"chunk-3bcf66f7\":\"da2788c2\",\"chunk-416ef35e\":\"e3de812c\",\"chunk-457e440b\":\"71326ed5\",\"chunk-564fade6\":\"23bb5ce8\",\"chunk-56652b45\":\"b9202ad0\",\"chunk-57425795\":\"4709a7c2\",\"chunk-5b1f82de\":\"b6b71a96\",\"chunk-65eafec3\":\"92b978b7\",\"chunk-6a2c3c1a\":\"5e3ea521\",\"chunk-7060d2be\":\"17de5f7a\",\"chunk-71aaa888\":\"7c8286dc\",\"chunk-73af5400\":\"5503ef14\",\"chunk-775b8fab\":\"3c36ea5b\",\"chunk-a3879d6c\":\"c1f2b764\",\"chunk-ab7deece\":\"198a94a8\",\"chunk-b09d1c24\":\"40e2b6cd\",\"chunk-b9b22232\":\"9694579b\",\"chunk-bd264252\":\"deae42c5\",\"chunk-06ade0a7\":\"a7e4c7a7\",\"chunk-654f0b98\":\"4b5aff3b\",\"chunk-f66a53c0\":\"e61a0c3e\",\"chunk-d779deb8\":\"cbfbc744\"}[n]+\".js\"}function d(e){if(a[e])return a[e].exports;var t=a[e]={i:e,l:!1,exports:{}};return n[e].call(t.exports,t,t.exports,d),t.l=!0,t.exports}d.e=function(n){var e=[],t={\"chunk-079f5797\":1,\"chunk-07e6273c\":1,\"chunk-10615ad3\":1,\"chunk-1e630799\":1,\"chunk-20afbe1d\":1,\"chunk-211c6b12\":1,\"chunk-22e40c8e\":1,\"chunk-25f82f1a\":1,\"chunk-3337dd8f\":1,\"chunk-3bcf66f7\":1,\"chunk-416ef35e\":1,\"chunk-457e440b\":1,\"chunk-564fade6\":1,\"chunk-56652b45\":1,\"chunk-57425795\":1,\"chunk-5b1f82de\":1,\"chunk-65eafec3\":1,\"chunk-6a2c3c1a\":1,\"chunk-7060d2be\":1,\"chunk-71aaa888\":1,\"chunk-73af5400\":1,\"chunk-775b8fab\":1,\"chunk-a3879d6c\":1,\"chunk-ab7deece\":1,\"chunk-b09d1c24\":1,\"chunk-b9b22232\":1,\"chunk-bd264252\":1,\"chunk-06ade0a7\":1,\"chunk-654f0b98\":1,\"chunk-f66a53c0\":1,\"chunk-d779deb8\":1};c[n]?e.push(c[n]):0!==c[n]&&t[n]&&e.push(c[n]=new Promise((function(e,t){for(var a=\"css/\"+({}[n]||n)+\".\"+{\"chunk-079f5797\":\"5ffb7ccc\",\"chunk-07e6273c\":\"8f6be2eb\",\"chunk-10615ad3\":\"8f32f691\",\"chunk-168777de\":\"31d6cfe0\",\"chunk-1e630799\":\"23444e38\",\"chunk-20afbe1d\":\"9cfc489e\",\"chunk-211c6b12\":\"9850dd89\",\"chunk-22e40c8e\":\"2d7343f0\",\"chunk-25f82f1a\":\"3e053f1b\",\"chunk-2d0ba2e6\":\"31d6cfe0\",\"chunk-2d22276a\":\"31d6cfe0\",\"chunk-3337dd8f\":\"3c05d3bd\",\"chunk-3bcf66f7\":\"0b7a87d8\",\"chunk-416ef35e\":\"8e4636b1\",\"chunk-457e440b\":\"d1b08c94\",\"chunk-564fade6\":\"0e433876\",\"chunk-56652b45\":\"339826ab\",\"chunk-57425795\":\"c9955d2b\",\"chunk-5b1f82de\":\"316d8ff0\",\"chunk-65eafec3\":\"169b0d4d\",\"chunk-6a2c3c1a\":\"356edd1a\",\"chunk-7060d2be\":\"ba342d3f\",\"chunk-71aaa888\":\"b923ac67\",\"chunk-73af5400\":\"9b10b85b\",\"chunk-775b8fab\":\"d326fcb8\",\"chunk-a3879d6c\":\"ffbb8d99\",\"chunk-ab7deece\":\"39a1833e\",\"chunk-b09d1c24\":\"5230f4f0\",\"chunk-b9b22232\":\"3c05d3bd\",\"chunk-bd264252\":\"3d26cc4c\",\"chunk-06ade0a7\":\"d9d343de\",\"chunk-654f0b98\":\"193fcd50\",\"chunk-f66a53c0\":\"e0f01506\",\"chunk-d779deb8\":\"207190f3\"}[n]+\".css\",u=d.p+a,r=document.getElementsByTagName(\"link\"),o=0;o<r.length;o++){var i=r[o],h=i.getAttribute(\"data-href\")||i.getAttribute(\"href\");if(\"stylesheet\"===i.rel&&(h===a||h===u))return e()}var f=document.getElementsByTagName(\"style\");for(o=0;o<f.length;o++){i=f[o],h=i.getAttribute(\"data-href\");if(h===a||h===u)return e()}var l=document.createElement(\"link\");l.rel=\"stylesheet\",l.type=\"text/css\",l.onload=e,l.onerror=function(e){var a=e&&e.target&&e.target.src||u,r=new Error(\"Loading CSS chunk \"+n+\" failed.\\n(\"+a+\")\");r.code=\"CSS_CHUNK_LOAD_FAILED\",r.request=a,delete c[n],l.parentNode.removeChild(l),t(r)},l.href=u;var s=document.getElementsByTagName(\"head\")[0];s.appendChild(l)})).then((function(){c[n]=0})));var a=u[n];if(0!==a)if(a)e.push(a[2]);else{var r=new Promise((function(e,t){a=u[n]=[e,t]}));e.push(a[2]=r);var i,h=document.createElement(\"script\");h.charset=\"utf-8\",h.timeout=120,d.nc&&h.setAttribute(\"nonce\",d.nc),h.src=o(n);var f=new Error;i=function(e){h.onerror=h.onload=null,clearTimeout(l);var t=u[n];if(0!==t){if(t){var a=e&&(\"load\"===e.type?\"missing\":e.type),c=e&&e.target&&e.target.src;f.message=\"Loading chunk \"+n+\" failed.\\n(\"+a+\": \"+c+\")\",f.name=\"ChunkLoadError\",f.type=a,f.request=c,t[1](f)}u[n]=void 0}};var l=setTimeout((function(){i({type:\"timeout\",target:h})}),12e4);h.onerror=h.onload=i,document.head.appendChild(h)}return Promise.all(e)},d.m=n,d.c=a,d.d=function(n,e,t){d.o(n,e)||Object.defineProperty(n,e,{enumerable:!0,get:t})},d.r=function(n){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(n,\"__esModule\",{value:!0})},d.t=function(n,e){if(1&e&&(n=d(n)),8&e)return n;if(4&e&&\"object\"===typeof n&&n&&n.__esModule)return n;var t=Object.create(null);if(d.r(t),Object.defineProperty(t,\"default\",{enumerable:!0,value:n}),2&e&&\"string\"!=typeof n)for(var a in n)d.d(t,a,function(e){return n[e]}.bind(null,a));return t},d.n=function(n){var e=n&&n.__esModule?function(){return n[\"default\"]}:function(){return n};return d.d(e,\"a\",e),e},d.o=function(n,e){return Object.prototype.hasOwnProperty.call(n,e)},d.p=\"/\",d.oe=function(n){throw n};var i=window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[],h=i.push.bind(i);i.push=e,i=i.slice();for(var f=0;f<i.length;f++)e(i[f]);var l=h;r.push([0,\"chunk-vendors\"]),t()})({0:function(n,e,t){n.exports=t(\"56d7\")},\"1c1e\":function(n,e,t){\"use strict\";var a=t(\"0122\"),c=t(\"bc3a\"),u=t.n(c),r=t(\"41cb\"),o=t(\"5c96\"),d=t(\"4328\"),i=t.n(d),h=u.a.create({withCredentials:!0});h.interceptors.request.use((function(n){return n.transformRequest=[function(n){return\"object\"!==Object(a[\"a\"])(n)||n instanceof FormData?n:i.a.stringify(n)}],n})),h.interceptors.response.use((function(n){return n.data.code>=200&&n.data.code<300?n.data:(444==n.data.code?(r[\"a\"].push(\"/admin-login?redirect_url=\"+window.location.href),o[\"Message\"].closeAll(),o[\"Message\"].error(n.data.message)):445==n.data.code?(o[\"Message\"].error(n.data.message),r[\"a\"].push(\"/\")):446==n.data.code?(o[\"Message\"].error(n.data.message),localStorage.recordHref=\"\",r[\"a\"].push(\"/\")):(o[\"Message\"].closeAll(),o[\"Message\"].error(n.data.message)),Promise.reject(n.data))}),(function(n){return Promise.reject(n.response)})),e[\"a\"]=h},\"41cb\":function(n,e,t){\"use strict\";var a=t(\"2b0e\"),c=t(\"8c4f\");a[\"default\"].use(c[\"a\"]);var u=c[\"a\"].prototype.push;c[\"a\"].prototype.push=function(n){return u.call(this,n).catch((function(n){return n}))};var r=new c[\"a\"]({mode:\"history\",routes:[{path:\"/\",redirect:\"/home\"},{path:\"/login\",name:\"adminLogin\",component:function(){return t.e(\"chunk-2d0ba2e6\").then(t.bind(null,\"35b0\"))}},{path:\"/admin-login\",name:\"adminLoginPage\",component:function(){return t.e(\"chunk-56652b45\").then(t.bind(null,\"2b83\"))}},{path:\"/bind\",name:\"adminBind\",component:function(){return t.e(\"chunk-a3879d6c\").then(t.bind(null,\"b863\"))}},{path:\"/install\",name:\"install\",redirect:\"/install/installOne\",component:function(){return t.e(\"chunk-73af5400\").then(t.bind(null,\"822d\"))},children:[{path:\"installOne\",name:\"installOne\",component:function(){return t.e(\"chunk-10615ad3\").then(t.bind(null,\"385c\"))}},{path:\"installTwo\",name:\"installTwo\",component:function(){return t.e(\"chunk-25f82f1a\").then(t.bind(null,\"c643\"))}},{path:\"installTree\",name:\"installTree\",component:function(){return t.e(\"chunk-7060d2be\").then(t.bind(null,\"25d6\"))}}]},{path:\"/mock/:document_id/:chapter_id\",name:\"mock\",component:function(){return t.e(\"chunk-168777de\").then(t.bind(null,\"6c8c\"))}},{path:\"/admin\",name:\"admin\",component:function(){return t.e(\"chunk-6a2c3c1a\").then(t.bind(null,\"ed3a\"))},children:[{path:\"document\",name:\"documentLayout\",component:function(){return t.e(\"chunk-57425795\").then(t.bind(null,\"794d\"))},children:[{path:\"index\",name:\"documentIndex\",component:function(){return Promise.all([t.e(\"chunk-bd264252\"),t.e(\"chunk-654f0b98\")]).then(t.bind(null,\"b56e\"))}},{path:\"chapter/:id\",name:\"chapter\",meta:{footerClass:\"float\"},component:function(){return Promise.all([t.e(\"chunk-bd264252\"),t.e(\"chunk-06ade0a7\")]).then(t.bind(null,\"1962\"))}},{path:\"recycle\",name:\"documentRecycle\",component:function(){return t.e(\"chunk-564fade6\").then(t.bind(null,\"9095\"))}},{path:\"star\",name:\"documentStar\",component:function(){return t.e(\"chunk-2d22276a\").then(t.bind(null,\"cf5f\"))}},{path:\"history\",name:\"documentHistory\",component:function(){return t.e(\"chunk-ab7deece\").then(t.bind(null,\"a3b9\"))}},{path:\"involved\",name:\"documentInvolved\",component:function(){return t.e(\"chunk-079f5797\").then(t.bind(null,\"9be8\"))}}]},{path:\"user\",name:\"userIndex\",component:function(){return t.e(\"chunk-1e630799\").then(t.bind(null,\"e378\"))}},{path:\"user/create\",name:\"baseInfo\",component:function(){return t.e(\"chunk-416ef35e\").then(t.bind(null,\"99a4\"))}},{path:\"user/:id\",name:\"userInfo\",component:function(){return t.e(\"chunk-416ef35e\").then(t.bind(null,\"99a4\"))}},{path:\"user/:id\",name:\"baseInfoId\",component:function(){return t.e(\"chunk-416ef35e\").then(t.bind(null,\"99a4\"))}},{path:\"user/detail/:id\",name:\"userDetail\",component:function(){return t.e(\"chunk-3bcf66f7\").then(t.bind(null,\"3d4e\"))}},{path:\"setting\",component:function(){return t.e(\"chunk-d779deb8\").then(t.bind(null,\"2ccb\"))},children:[{path:\"\",name:\"settingIndex\",component:function(){return t.e(\"chunk-71aaa888\").then(t.bind(null,\"0dd8\"))}},{path:\"third-party\",name:\"settingThirdParty\",component:function(){return t.e(\"chunk-3337dd8f\").then(t.bind(null,\"091d\"))}},{path:\"third-party-custom\",name:\"settingThirdPartyCustom\",component:function(){return t.e(\"chunk-b9b22232\").then(t.bind(null,\"08d8\"))}},{path:\"login\",name:\"settingLogin\",component:function(){return t.e(\"chunk-22e40c8e\").then(t.bind(null,\"b49c\"))}},{path:\"nav\",name:\"settingNav\",component:function(){return t.e(\"chunk-07e6273c\").then(t.bind(null,\"3c4d\"))}},{path:\"index/setting\",name:\"indexSetting\",component:function(){return t.e(\"chunk-5b1f82de\").then(t.bind(null,\"732d\"))}},{path:\"screenWords\",name:\"settingScreenWords\",component:function(){return t.e(\"chunk-775b8fab\").then(t.bind(null,\"bdf0\"))}}]},{path:\"account-info\",name:\"accountInfo\",component:function(){return t.e(\"chunk-20afbe1d\").then(t.bind(null,\"3310\"))}},{path:\"personal/center\",name:\"personalCenter\",component:function(){return Promise.all([t.e(\"chunk-bd264252\"),t.e(\"chunk-f66a53c0\")]).then(t.bind(null,\"4cbb\"))}},{path:\"search\",name:\"searchResults\",component:function(){return t.e(\"chunk-65eafec3\").then(t.bind(null,\"6d70\"))}}]},{path:\"\",name:\"layout\",component:function(){return t.e(\"chunk-6a2c3c1a\").then(t.bind(null,\"ed3a\"))},children:[{path:\"/chapter/:id\",name:\"viewHome\",component:function(){return t.e(\"chunk-211c6b12\").then(t.bind(null,\"7abe\"))}},{path:\"/home\",name:\"home\",component:function(){return t.e(\"chunk-b09d1c24\").then(t.bind(null,\"77b8\"))}},{path:\"/home/search\",name:\"homeSearch\",component:function(){return t.e(\"chunk-457e440b\").then(t.bind(null,\"5ff8\"))}}]}],scrollBehavior:function(n){return n.hash?{selector:n.hash}:{x:0,y:0}}});e[\"a\"]=r},\"4ec3\":function(n,e,t){\"use strict\";t.d(e,\"d\",(function(){return c})),t.d(e,\"c\",(function(){return u})),t.d(e,\"m\",(function(){return r})),t.d(e,\"w\",(function(){return o})),t.d(e,\"D\",(function(){return d})),t.d(e,\"i\",(function(){return i})),t.d(e,\"h\",(function(){return h})),t.d(e,\"u\",(function(){return f})),t.d(e,\"v\",(function(){return l})),t.d(e,\"y\",(function(){return s})),t.d(e,\"s\",(function(){return b})),t.d(e,\"t\",(function(){return m})),t.d(e,\"o\",(function(){return p})),t.d(e,\"n\",(function(){return k})),t.d(e,\"j\",(function(){return g})),t.d(e,\"e\",(function(){return v})),t.d(e,\"z\",(function(){return y})),t.d(e,\"b\",(function(){return O})),t.d(e,\"a\",(function(){return j})),t.d(e,\"A\",(function(){return P})),t.d(e,\"B\",(function(){return w})),t.d(e,\"C\",(function(){return I})),t.d(e,\"r\",(function(){return U})),t.d(e,\"x\",(function(){return S})),t.d(e,\"k\",(function(){return _})),t.d(e,\"g\",(function(){return L})),t.d(e,\"l\",(function(){return M})),t.d(e,\"p\",(function(){return x})),t.d(e,\"f\",(function(){return T})),t.d(e,\"q\",(function(){return A}));var a=t(\"1c1e\"),c=function(n){return Object(a[\"a\"])({url:\"/admin/document/create\",data:n,method:\"post\"})},u=function(n){return Object(a[\"a\"])({url:\"/admin/chapter/create\",data:n,method:\"post\"})},r=function(n){return Object(a[\"a\"])({url:\"/admin/document/chapterapi/getApiLabel\",params:n,method:\"get\"})},o=function(n){return Object(a[\"a\"])({url:\"/admin/chapter/save\",data:n,method:\"post\"})},d=function(n){return Object(a[\"a\"])({url:\"/admin/chapter/content\",data:n,method:\"post\"})},i=function(n){return Object(a[\"a\"])({url:\"/admin/document/all\",data:n,method:\"post\"})},h=function(n){return Object(a[\"a\"])({url:\"/admin/chapter/detail\",data:n,method:\"post\"})},f=function(n){return Object(a[\"a\"])({url:\"/common/auth/getlogouturl\",params:n,method:\"get\"})},l=function(n){return Object(a[\"a\"])({url:\"/document/chapter/record\",data:n,method:\"post\"})},s=function(n){return Object(a[\"a\"])({url:\"/install/systemDetection\",data:n,method:\"post\"})},b=function(n){return Object(a[\"a\"])({url:\"/install/install\",data:n,method:\"post\"})},m=function(n){return Object(a[\"a\"])({url:\"/install/config\",data:n,method:\"post\"})},p=function(n){return Object(a[\"a\"])({url:\"/admin/user/all\",data:n,method:\"post\"})},k=function(n){return Object(a[\"a\"])({url:\"/document/chapter/search\",data:n,method:\"post\"})},g=function(n){return Object(a[\"a\"])({url:\"/document/detail\",data:n,method:\"post\"})},v=function(n){return Object(a[\"a\"])({url:\"/admin/document/delete\",data:n,method:\"post\"})},y=function(n){return Object(a[\"a\"])({url:\"/common/auth/third-party-login-bind\",data:n,method:\"post\"})},O=function(n){return Object(a[\"a\"])({url:\"/common/auth/changeThirdPartyUser\",data:n,method:\"post\"})},j=function(n){return Object(a[\"a\"])({url:\"/common/auth/bindThirdPartyUser\",data:n,method:\"post\"})},P=function(n){return Object(a[\"a\"])({url:\"/common/auth/ThirdPartyUserCacheIn\",data:n,method:\"post\"})},w=function(n){return Object(a[\"a\"])({url:\"https://api.w7.cc/oauth/authorize/try-sync-login\",data:n,method:\"post\"})},I=function(n){return Object(a[\"a\"])({url:\"/common/auth/unbind\",data:n,method:\"post\"})},U=function(n){return Object(a[\"a\"])({url:\"/admin/chapter/import \",data:n,method:\"post\"})},S=function(n){return Object(a[\"a\"])({url:\"/admin/document/chapterapi/setApiData\",data:n,method:\"post\"})},_=function(n){return Object(a[\"a\"])({url:\"/admin/document/new-feedback\",data:n,method:\"post\"})},L=function(n){return Object(a[\"a\"])({url:\"/admin/setting/save\",data:n,method:\"post\"})},M=function(n){return Object(a[\"a\"])({url:\"/admin/setting/config\",params:n,method:\"get\"})},x=function(n){return Object(a[\"a\"])({url:\"/user/info\",params:n,method:\"get\"})},T=function(n){return Object(a[\"a\"])({url:\"/user/update\",data:n,method:\"post\"})},A=function(n){return Object(a[\"a\"])({url:\"/user/operate\",params:n,method:\"get\"})}},\"56d7\":function(n,e,t){\"use strict\";t.r(e);t(\"7f7f\"),t(\"cadf\"),t(\"551c\"),t(\"f751\"),t(\"097d\");var a=t(\"2b0e\"),c=function(){var n=this,e=n.$createElement,t=n._self._c||e;return t(\"div\",{attrs:{id:\"app\"}},[t(\"router-view\")],1)},u=[],r=(t(\"5c0b\"),t(\"2877\")),o={},d=Object(r[\"a\"])(o,c,u,!1,null,null,null),i=d.exports,h=t(\"41cb\"),f=(t(\"ac6a\"),t(\"456d\"),t(\"2f62\")),l=t(\"bc3a\"),s=t.n(l),b=t(\"4ec3\");a[\"default\"].use(f[\"a\"]);var m=new f[\"a\"].Store({state:{UserInfo:{},NavMenu:{},isSave:!0,saveDialogVisible:!1,allProjectListQuery:{page:1,page_size:15,role:\"all\"},userOperateListQuery:{user_id:0,page:1,page_size:15},allProjectData:\"\",personInfo:\"\",userOperateData:\"\"},getters:{UserInfo:function(n){return n.UserInfo},NavMenu:function(n){return n.NavMenu}},mutations:{setUserInfo:function(n,e){n.UserInfo=e},setNavMenu:function(n,e){n.NavMenu=e},setAllProjectData:function(n,e){n.allProjectData=e},setPersonInfo:function(n,e){n.personInfo=e},setUserOperateData:function(n,e){n.userOperateData=e},setUserOperateListQuery:function(n,e){Object.keys(e).map((function(t){n.userOperateListQuery[t]=e[t]}))}},actions:{getUserInfo:function(n){return new Promise((function(e,t){s.a.post(\"/common/auth/user\").then((function(t){\"444\"==t.data.code?n.commit(\"setUserInfo\",{has_privilege:\"\",username:\"\"}):(n.commit(\"setUserInfo\",t.data.data),n.commit(\"setUserOperateListQuery\",{user_id:t.data.data.id}),n.dispatch(\"getPersonInfo\"),n.dispatch(\"getUserOperate\"),e(t.data.data))})).catch((function(n){t(n)}))}))},getNavMenu:function(n){s.a.post(\"/menu/setting\").then((function(e){\"444\"==e.data.code?n.commit(\"setNavMenu\",{theme:\"\",list:[]}):n.commit(\"setNavMenu\",e.data.data)}))},getAllProject:function(n){var e=n.commit,t=n.state;Object(b[\"i\"])(t.allProjectListQuery).then((function(n){200===n.code&&e(\"setAllProjectData\",n.data)})).catch((function(n){}))},getPersonInfo:function(n){var e=n.commit,t=n.state;Object(b[\"p\"])({username:t.UserInfo.username}).then((function(n){e(\"setPersonInfo\",n.data)})).catch((function(n){}))},getUserOperate:function(n){var e=n.commit,t=n.state;Object(b[\"q\"])(t.userOperateListQuery).then((function(n){200===n.code&&e(\"setUserOperateData\",n.data)}))}}}),p=t(\"1c1e\"),k=t(\"5c96\"),g=t.n(k),v=t(\"b2d8\"),y=t.n(v),O=t(\"4eb5\"),j=t.n(O),P=(t(\"0fae\"),t(\"64e1\"),t(\"e9ff\"),t(\"1157\"),t(\"1487\")),w=t.n(P);t(\"85e4\");a[\"default\"].directive(\"highlight\",{inserted:function(n){for(var e=n.querySelectorAll(\"pre code\"),t=0;t<e.length;t++)w.a.highlightBlock(e[t])},componentUpdated:function(n){for(var e=n.querySelectorAll(\"pre code\"),t=0;t<e.length;t++)w.a.highlightBlock(e[t])}});var I=t(\"96eb\");a[\"default\"].use(g.a),a[\"default\"].use(y.a),a[\"default\"].use(j.a),a[\"default\"].prototype.$http=p[\"a\"],a[\"default\"].prototype.$post=p[\"a\"].post,a[\"default\"].prototype.$mock=I,a[\"default\"].config.productionTip=!1;var U=new a[\"default\"]({router:h[\"a\"],store:m,render:function(n){return n(i)}}).$mount(\"#app\");e[\"default\"]=U;h[\"a\"].beforeEach((function(n,e,t){if(\"adminLoginPage\"==n.name){var a=location.href,c=a.indexOf(\"install\");c<0&&(localStorage.recordHref=a)}t()}))},\"5c0b\":function(n,e,t){\"use strict\";t(\"e332\")},e332:function(n,e,t){},e9ff:function(n,e,t){}});"
  },
  {
    "path": "public/js/chunk-06ade0a7.a7e4c7a7.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-06ade0a7\"],{\"0a49\":function(e,t,r){var n=r(\"9b43\"),i=r(\"626a\"),o=r(\"4bf8\"),a=r(\"9def\"),s=r(\"cd1c\");e.exports=function(e,t){var r=1==e,l=2==e,c=3==e,u=4==e,d=6==e,f=5==e||d,h=t||s;return function(t,s,p){for(var m,g,v=o(t),y=i(v),_=n(s,p,3),b=a(y.length),w=0,C=r?h(t,b):l?h(t,0):void 0;b>w;w++)if((f||w in y)&&(m=y[w],g=_(m,w,v),e))if(r)C[w]=g;else if(g)switch(e){case 3:return!0;case 5:return m;case 6:return w;case 2:C.push(m)}else if(u)return!1;return d?-1:c||u?u:C}}},1169:function(e,t,r){var n=r(\"2d95\");e.exports=Array.isArray||function(e){return\"Array\"==n(e)}},1962:function(e,t,r){\"use strict\";r.r(t);var n=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"el-container\",{staticClass:\"w7-document-chapter\"},[n(\"el-aside\",{staticClass:\"w7-aside-chapter\",attrs:{width:\"260px\"}},[n(\"div\",{staticClass:\"w7-aside-chapter-head\"},[n(\"p\",[e._v(e._s(e.docName))])]),n(\"div\",{staticClass:\"search-box\"},[n(\"el-input\",{attrs:{placeholder:\"请输入关键字搜索\",clearable:\"\"},model:{value:e.filterText,callback:function(t){e.filterText=t},expression:\"filterText\"}},[n(\"i\",{staticClass:\"el-input__icon el-icon-search\",attrs:{slot:\"suffix\"},slot:\"suffix\"})])],1),n(\"div\",{staticClass:\"icon-box\"},[n(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"新建文档\",placement:\"bottom\"}},[n(\"i\",{staticClass:\"wq wq-mulu\",on:{click:function(t){return e.clickIconAddNode(!1)}}})]),n(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"新建目录\",placement:\"bottom\"}},[n(\"i\",{staticClass:\"wq wq-wendang\",on:{click:function(t){return e.clickIconAddNode(!0)}}})]),n(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"预览\",placement:\"bottom\"}},[n(\"i\",{staticClass:\"wq wq-chakan\",on:{click:e.readDoc}})]),e.has_manage?n(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"设置\",placement:\"bottom\"}},[n(\"i\",{staticClass:\"wq wq-shezhi1\",on:{click:function(t){e.showSetting=!0}}})]):e._e()],1),n(\"div\",{staticClass:\"tree-warpper\"},[n(\"el-scrollbar\",{staticStyle:{height:\"100%\"}},[n(\"el-tree\",{ref:\"chaptersTree\",staticClass:\"w7-tree\",attrs:{data:e.chapters,props:e.defaultProps,\"empty-text\":\"点击上方按钮创建\",\"node-key\":\"id\",\"expand-on-click-node\":!0,\"highlight-current\":!0,\"default-expanded-keys\":e.defaultExpanded,\"default-checked-keys\":e.defaultCheckedKeys,\"filter-node-method\":e.filterNode,draggable:\"\",\"allow-drop\":e.allowDrop},on:{\"node-contextmenu\":e.rightClick,\"node-click\":e.handleNodeClick,\"node-drop\":e.handleDrop},scopedSlots:e._u([{key:\"default\",fn:function(t){var r=t.node,i=t.data;return n(\"div\",{staticClass:\"custom-tree-node\"},[n(\"span\",{staticClass:\"node-info\"},[1==i.is_dir?n(\"i\",{staticClass:\"wq wq-wendang\"}):e._e(),0==i.is_dir?n(\"i\",{staticClass:\"wq wq-mulu\"}):e._e(),n(\"div\",{staticClass:\"text-over\"},[n(\"span\",{attrs:{title:r.label}},[e._v(e._s(r.label))])])]),n(\"span\",{staticClass:\"shortcut\",on:{click:function(t){return t.stopPropagation(),e.shortcut(i,r)}}},[1==i.is_dir?n(\"i\",{staticClass:\"wq wq-mulu\"}):e._e()]),n(\"span\",{staticClass:\"point3\",on:{mousemove:e.updateXY,click:function(t){return t.stopPropagation(),e.leftClick(i,r)}}},[n(\"span\",[e._v(\"...\")])]),i.is_default?n(\"div\",{staticClass:\"doc-default\"}):e._e()])}}])}),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.menuBarVisible,expression:\"menuBarVisible\"}],staticClass:\"menu-bar\",attrs:{id:\"menu-bar\"}},[n(\"ul\",{staticClass:\"menu\"},[1==e.rightSelectNodeObj.is_dir?[n(\"li\",{staticClass:\"menu__item\",on:{click:function(t){return e.addChildNode(!0)}}},[e._v(\"创建目录\")]),n(\"li\",{staticClass:\"menu__item\",on:{click:function(t){return e.addChildNode(!1)}}},[e._v(\"\\n                  创建文档\\n                \")]),n(\"li\",{staticClass:\"menu__item\",on:{click:function(t){return e.updateNode(!0)}}},[e._v(\"重命名\")]),n(\"li\",{staticClass:\"menu__item\",on:{click:function(t){return e.openMoveDialog(!0)}}},[e._v(\"移动\")]),n(\"li\",{staticClass:\"menu__item\",on:{click:e.removeNode}},[e._v(\"删除\")])]:e._e(),0==e.rightSelectNodeObj.is_dir?[n(\"li\",{staticClass:\"menu__item\",on:{click:function(t){return e.updateNode(!1)}}},[e._v(\"重命名\")]),n(\"li\",{staticClass:\"menu__item\",on:{click:function(t){return e.copyNode()}}},[e._v(\"复制文档\")]),n(\"li\",{staticClass:\"menu__item\",on:{click:function(t){return e.openMoveDialog(!1)}}},[e._v(\"移动\")]),n(\"li\",{staticClass:\"menu__item\",on:{click:e.removeNode}},[e._v(\"删除\")])]:e._e()],2)])],1)],1)]),n(\"el-main\",{},[e.isDocEmpty?n(\"div\",[e._v(\"尚未创建文档\")]):[n(\"div\",{staticClass:\"chapter-title\"},[e._v(e._s(e.docTitle))]),1==e.layout?n(\"div\",{staticClass:\"api\"},[n(\"el-form\",{ref:\"form\",attrs:{model:e.form,\"label-width\":\"100\"}},[n(\"div\",{staticClass:\"basic-information api-con\"},[n(\"div\",{staticClass:\"top\"},[n(\"div\",{staticClass:\"line-wrap\"},[n(\"span\",{staticClass:\"line\"}),n(\"span\",{staticClass:\"text\"},[e._v(\"基本信息\")])])]),n(\"div\",{staticClass:\"c-con\"},[n(\"el-row\",{attrs:{gutter:10}},[n(\"el-col\",{attrs:{md:4}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-select\",{attrs:{placeholder:\"\"},model:{value:e.form.method,callback:function(t){e.$set(e.form,\"method\",t)},expression:\"form.method\"}},e._l(e.methodArr,(function(e){return n(\"el-option\",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1)],1),n(\"el-col\",{attrs:{md:10}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"请求地址，如：api/test\"},on:{input:e.urlChange},model:{value:e.form.url,callback:function(t){e.$set(e.form,\"url\",t)},expression:\"form.url\"}})],1)],1)],1),n(\"el-row\",{attrs:{gutter:10}},[n(\"el-col\",{attrs:{md:14}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"请在此输入接口描述内容\"},model:{value:e.form.description,callback:function(t){e.$set(e.form,\"description\",t)},expression:\"form.description\"}})],1)],1)],1),n(\"el-row\",{attrs:{gutter:10}},[n(\"el-col\",{attrs:{md:14}},[n(\"el-form-item\",{staticClass:\"mock-api\",attrs:{label:\"Mock Api地址\"}},[n(\"el-tooltip\",{staticClass:\"item\",attrs:{effect:\"dark\",\"popper-class\":\"mock-api-tip\",content:\"点击复制链接\",placement:\"top\"}},[n(\"el-input\",{directives:[{name:\"clipboard\",rawName:\"v-clipboard:copy\",value:e.mockApiUrl,expression:\"mockApiUrl\",arg:\"copy\"},{name:\"clipboard\",rawName:\"v-clipboard:success\",value:e.onCopy,expression:\"onCopy\",arg:\"success\"}],attrs:{readonly:\"\",placeholder:\"\"},model:{value:e.mockApiUrl,callback:function(t){e.mockApiUrl=t},expression:\"mockApiUrl\"}})],1)],1)],1)],1)],1)]),n(\"div\",{staticClass:\"api-con\"},[n(\"div\",{staticClass:\"top\"},[n(\"div\",{staticClass:\"line-wrap\"},[n(\"span\",{staticClass:\"line\"}),n(\"span\",{staticClass:\"text\"},[e._v(\"请求数据\")]),n(\"el-tooltip\",{staticClass:\"item\",attrs:{effect:\"dark\",content:\"导入键值对\",placement:\"top\"}},[n(\"img\",{attrs:{src:r(\"7d1d\")},on:{click:function(t){return e.showImportDialog(\"key_word\")}}})])],1),n(\"el-button\",{attrs:{type:\"primary\",size:\"mini\",icon:\"el-icon-view\"},on:{click:e.viewRequestMock}},[e._v(\"预览\")])],1),n(\"div\",{staticClass:\"c-con\"},[n(\"el-tabs\",{on:{\"tab-click\":e.tabRequest},model:{value:e.form.tab_location,callback:function(t){e.$set(e.form,\"tab_location\",t)},expression:\"form.tab_location\"}},[n(\"el-tab-pane\",{key:\"header\",attrs:{label:\"请求头Header\",name:\"1\"}},[n(\"div\",{staticClass:\"tree-wrap\"},[n(\"el-tree\",{attrs:{data:e.apiHeaderTreeData,\"node-key\":\"id\",\"default-expand-all\":\"\",\"expand-on-click-node\":!1,\"allow-drop\":e.allowApiTreeDrop,draggable:\"\"},on:{\"node-drop\":e.apiHeaderNodeDrop},scopedSlots:e._u([{key:\"default\",fn:function(t){var r=t.node,i=t.data;return n(\"div\",{staticClass:\"custom-tree-node\"},[n(\"el-row\",{attrs:{gutter:10}},[n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"参数名\",maxlength:\"20\"},on:{input:function(t){return e.paramNameChange(r,i)}},model:{value:i.name,callback:function(t){e.$set(i,\"name\",t)},expression:\"data.name\"}})],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-select\",{attrs:{placeholder:\"\"},on:{change:function(t){return e.typeChange(i)}},model:{value:i.type,callback:function(t){e.$set(i,\"type\",t)},expression:\"data.type\"}},e._l(e.paramsArr,(function(e){return n(\"el-option\",{key:e.value,attrs:{label:e.type,value:e.value}})})),1)],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-select\",{attrs:{placeholder:\"是否必填\"},model:{value:i.enabled,callback:function(t){e.$set(i,\"enabled\",t)},expression:\"data.enabled\"}},[n(\"el-option\",{attrs:{label:\"true\",value:2}}),n(\"el-option\",{attrs:{label:\"false\",value:1}})],1)],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{staticClass:\"rule-question\",attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"生成规则\"},model:{value:i.rule,callback:function(t){e.$set(i,\"rule\",t)},expression:\"data.rule\"}}),e.apiHeaderTreeData&&e.apiHeaderTreeData[0].id==i.id?n(\"i\",{staticClass:\"wq wq-wenhao rule-icon\",on:{click:e.goMock}}):e._e()],1)],1),n(\"el-col\",{attrs:{span:4}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{disabled:4==i.type,placeholder:\"示例值\"},model:{value:i.default_value,callback:function(t){e.$set(i,\"default_value\",t)},expression:\"data.default_value\"}})],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"描述\"},model:{value:i.description,callback:function(t){e.$set(i,\"description\",t)},expression:\"data.description\"}})],1)],1),n(\"span\",{staticClass:\"add\",on:{click:function(){return e.addApiTreeNode(i)}}},[n(\"span\",{staticClass:\"iconfont wq-add\"})]),n(\"span\",{staticClass:\"delete\",on:{click:function(){return e.removeApiTreeNode(r,i)}}},[n(\"span\",{staticClass:\"iconfont wq-delete\"})]),n(\"span\",{staticClass:\"delete\",on:{click:function(){return e.insertAfter(r,i)}}})],1)],1)}}],null,!1,3457980663)})],1)]),n(\"el-tab-pane\",{key:\"params\",attrs:{label:\"Query Params\",name:\"2\"}},[n(\"div\",{staticClass:\"tree-wrap\"},[n(\"el-tree\",{attrs:{data:e.apiParamsTreeData,\"node-key\":\"id\",\"default-expand-all\":\"\",\"expand-on-click-node\":!1,\"allow-drop\":e.allowApiTreeDrop,draggable:\"\"},on:{\"node-drop\":e.apiParamsNodeDrop},scopedSlots:e._u([{key:\"default\",fn:function(t){var r=t.node,i=t.data;return n(\"div\",{staticClass:\"custom-tree-node\"},[n(\"el-row\",{attrs:{gutter:5}},[n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"参数名\",maxlength:\"20\"},on:{input:function(t){return e.paramNameChange(r,i)}},model:{value:i.name,callback:function(t){e.$set(i,\"name\",t)},expression:\"data.name\"}})],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-select\",{attrs:{placeholder:\"\"},on:{change:function(t){return e.typeChange(i)}},model:{value:i.type,callback:function(t){e.$set(i,\"type\",t)},expression:\"data.type\"}},e._l(e.paramsArr,(function(e){return n(\"el-option\",{key:e.value,attrs:{label:e.type,value:e.value}})})),1)],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-select\",{attrs:{placeholder:\"是否必填\"},model:{value:i.enabled,callback:function(t){e.$set(i,\"enabled\",t)},expression:\"data.enabled\"}},[n(\"el-option\",{attrs:{label:\"true\",value:2}}),n(\"el-option\",{attrs:{label:\"false\",value:1}})],1)],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{staticClass:\"rule-question\",attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"生成规则\"},model:{value:i.rule,callback:function(t){e.$set(i,\"rule\",t)},expression:\"data.rule\"}}),e.apiParamsTreeData&&e.apiParamsTreeData[0].id==i.id?n(\"i\",{staticClass:\"wq wq-wenhao rule-icon\",on:{click:e.goMock}}):e._e()],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{disabled:4==i.type,placeholder:\"示例值\"},model:{value:i.default_value,callback:function(t){e.$set(i,\"default_value\",t)},expression:\"data.default_value\"}})],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"描述\"},model:{value:i.description,callback:function(t){e.$set(i,\"description\",t)},expression:\"data.description\"}})],1)],1),n(\"span\",{staticClass:\"add\",on:{click:function(){return e.addApiTreeNode(i)}}},[n(\"span\",{staticClass:\"iconfont wq-add\"})]),n(\"span\",{staticClass:\"delete\",on:{click:function(){return e.removeApiTreeNode(r,i)}}},[n(\"span\",{staticClass:\"iconfont wq-delete\"})]),n(\"span\",{staticClass:\"delete\",on:{click:function(){return e.insertAfter(r,i)}}})],1)],1)}}],null,!1,4034622116)})],1)]),n(\"el-tab-pane\",{key:\"body\",attrs:{label:\"请求参数（Body）\",name:\"3\"}},[n(\"div\",{staticClass:\"type-body\"},[n(\"el-form-item\",{attrs:{label:\"请求类型：\"}},[n(\"el-radio-group\",{model:{value:e.form.body_param_location,callback:function(t){e.$set(e.form,\"body_param_location\",t)},expression:\"form.body_param_location\"}},[n(\"el-radio\",{attrs:{label:3}},[e._v(\"form-data\")]),n(\"el-radio\",{attrs:{label:4}},[e._v(\"x-www-form-urlencoded\")]),n(\"el-radio\",{attrs:{label:5}},[e._v(\"raw\")]),n(\"el-radio\",{attrs:{label:6}},[e._v(\"binary\")])],1)],1),n(\"div\",{staticClass:\"tree-wrap\"},[n(\"el-tree\",{attrs:{data:e.apiBodyTreeData,\"node-key\":\"id\",\"default-expand-all\":\"\",\"expand-on-click-node\":!1,\"allow-drop\":e.allowApiTreeDrop,draggable:\"\"},on:{\"node-drop\":e.apiBodyNodeDrop},scopedSlots:e._u([{key:\"default\",fn:function(t){var r=t.node,i=t.data;return n(\"div\",{staticClass:\"custom-tree-node\"},[n(\"el-row\",{attrs:{gutter:5}},[n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"参数名\",maxlength:\"20\"},on:{input:function(t){return e.paramNameChange(r,i)}},model:{value:i.name,callback:function(t){e.$set(i,\"name\",t)},expression:\"data.name\"}})],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-select\",{attrs:{placeholder:\"\"},on:{change:function(t){return e.typeChange(i)}},model:{value:i.type,callback:function(t){e.$set(i,\"type\",t)},expression:\"data.type\"}},e._l(e.paramsArr,(function(e){return n(\"el-option\",{key:e.value,attrs:{label:e.type,value:e.value}})})),1)],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-select\",{attrs:{placeholder:\"是否必填\"},model:{value:i.enabled,callback:function(t){e.$set(i,\"enabled\",t)},expression:\"data.enabled\"}},[n(\"el-option\",{attrs:{label:\"true\",value:2}}),n(\"el-option\",{attrs:{label:\"false\",value:1}})],1)],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{staticClass:\"rule-question\",attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"生成规则\"},model:{value:i.rule,callback:function(t){e.$set(i,\"rule\",t)},expression:\"data.rule\"}}),e.apiBodyTreeData&&e.apiBodyTreeData[0].id==i.id?n(\"i\",{staticClass:\"wq wq-wenhao rule-icon\",on:{click:e.goMock}}):e._e()],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{disabled:4==i.type,placeholder:\"示例值\"},model:{value:i.default_value,callback:function(t){e.$set(i,\"default_value\",t)},expression:\"data.default_value\"}})],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"描述\"},model:{value:i.description,callback:function(t){e.$set(i,\"description\",t)},expression:\"data.description\"}})],1)],1),n(\"span\",{staticClass:\"add\",on:{click:function(){return e.addApiTreeNode(i)}}},[n(\"span\",{staticClass:\"iconfont wq-add\"})]),n(\"span\",{staticClass:\"delete\",on:{click:function(){return e.removeApiTreeNode(r,i)}}},[n(\"span\",{staticClass:\"iconfont wq-delete\"})]),n(\"span\",{staticClass:\"delete\",on:{click:function(){return e.insertAfter(r,i)}}})],1)],1)}}],null,!1,1908562212)})],1)],1)])],1)],1),e.isViewRequest?n(\"div\",{staticClass:\"c-bottom\"},[n(\"el-row\",{attrs:{gutter:20}},[n(\"el-col\",{attrs:{span:12}},[n(\"div\",{staticClass:\"mock\"},[n(\"div\",{staticClass:\"m-tit\"},[e._v(\"请求模板\")]),n(\"div\",{staticClass:\"m-con\",style:{height:e.requestMockHeight+\"px\"}},[n(\"pre\",{directives:[{name:\"highlight\",rawName:\"v-highlight\"}],ref:\"requestMockLeftHeight\"},[n(\"code\",{domProps:{innerHTML:e._s(e.requestMockTemplate)}})])])])]),n(\"el-col\",{attrs:{span:12}},[n(\"div\",{staticClass:\"mock\"},[n(\"div\",{staticClass:\"m-tit\"},[e._v(\"\\n                        请求数据\\n                        \"),n(\"i\",{staticClass:\"el-icon-refresh\",on:{click:e.refreshRequestMock}})]),n(\"div\",{staticClass:\"m-con\",style:{height:e.requestMockHeight+\"px\"}},[n(\"pre\",{directives:[{name:\"highlight\",rawName:\"v-highlight\"}],ref:\"requestMockRightHeight\"},[n(\"code\",{domProps:{innerHTML:e._s(e.requestMockJson)}})])])])])],1)],1):e._e()]),n(\"div\",{staticClass:\"api-con response-api\"},[n(\"div\",{staticClass:\"top\"},[n(\"div\",{staticClass:\"line-wrap\"},[n(\"span\",{staticClass:\"line\"}),n(\"span\",{staticClass:\"text\"},[e._v(\"响应数据\")]),n(\"el-tooltip\",{staticClass:\"item\",attrs:{effect:\"dark\",content:\"导入JSON\",placement:\"top\"}},[n(\"img\",{attrs:{src:r(\"7d1d\")},on:{click:function(t){return e.showImportDialog(\"json\")}}})]),n(\"el-tooltip\",{staticClass:\"item\",attrs:{effect:\"dark\",content:\"添加数据\",placement:\"top\"}},[n(\"img\",{attrs:{src:r(\"1a0b\")},on:{click:e.addResNode}})])],1),e._e(),n(\"el-button\",{attrs:{type:\"primary\",size:\"mini\",icon:\"el-icon-view\"},on:{click:e.viewResponseMock}},[e._v(\"预览\")])],1),e._l(e.apiResTreeData,(function(t,r){return n(\"div\",{key:r,staticClass:\"c-con\"},[n(\"el-row\",{attrs:{gutter:5}},[n(\"el-col\",{attrs:{span:15}},[n(\"div\",{staticStyle:{\"padding-left\":\"24px\"}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{staticStyle:{width:\"calc(100% + 5px)\"},attrs:{placeholder:\"响应数据描述\"},model:{value:t.description,callback:function(r){e.$set(t,\"description\",r)},expression:\"item.description\"}})],1)],1)]),n(\"el-col\",{attrs:{span:9}},[n(\"div\",{staticStyle:{\"text-align\":\"right\"}},[n(\"el-button\",{attrs:{type:\"danger\",size:\"mini\"},on:{click:function(t){return e.deleteApiItem(r)}}},[e._v(\"删除\")])],1)])],1),n(\"el-tree\",{attrs:{data:t.data,\"node-key\":\"id\",\"default-expand-all\":\"\",\"expand-on-click-node\":!1,\"allow-drop\":e.allowApiTreeDrop,draggable:\"\"},on:{\"node-drop\":e.apiResNodeDrop},scopedSlots:e._u([{key:\"default\",fn:function(i){var o=i.node,a=i.data;return n(\"div\",{staticClass:\"custom-tree-node\"},[n(\"el-row\",{attrs:{gutter:5}},[n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"参数名\",maxlength:\"20\"},on:{input:function(t){return e.resParamNameChange(o,a)}},model:{value:a.name,callback:function(t){e.$set(a,\"name\",t)},expression:\"data.name\"}})],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-select\",{attrs:{placeholder:\"\"},on:{change:function(t){return e.typeChange(a)}},model:{value:a.type,callback:function(t){e.$set(a,\"type\",t)},expression:\"data.type\"}},e._l(e.paramsArr,(function(e){return n(\"el-option\",{key:e.value,attrs:{label:e.type,value:e.value}})})),1)],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{staticClass:\"rule-question\",attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"生成规则\"},model:{value:a.rule,callback:function(t){e.$set(a,\"rule\",t)},expression:\"data.rule\"}}),t.data[0].id==a.id?n(\"i\",{staticClass:\"wq wq-wenhao rule-icon\",on:{click:e.goMock}}):e._e()],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{disabled:4==a.type,placeholder:\"示例值\"},model:{value:a.default_value,callback:function(t){e.$set(a,\"default_value\",t)},expression:\"data.default_value\"}})],1)],1),n(\"el-col\",{attrs:{span:3}},[n(\"el-form-item\",{attrs:{label:\"\"}},[n(\"el-input\",{attrs:{placeholder:\"描述\"},model:{value:a.description,callback:function(t){e.$set(a,\"description\",t)},expression:\"data.description\"}})],1)],1),n(\"span\",{staticClass:\"add\",on:{click:function(){return e.addResApiTreeNode(a)}}},[n(\"span\",{staticClass:\"iconfont wq-add\"})]),n(\"span\",{staticClass:\"delete\",on:{click:function(){return e.removeResApiTreeNode(o,a,r)}}},[n(\"span\",{staticClass:\"iconfont wq-delete\"})]),n(\"span\",{staticClass:\"delete\",on:{click:function(){return e.insertAfter(o,a)}}})],1)],1)}}],null,!0)})],1)})),e.isViewResponse?n(\"div\",{staticClass:\"c-bottom\"},[n(\"el-row\",{attrs:{gutter:20}},[n(\"el-col\",{attrs:{span:12}},[n(\"div\",{staticClass:\"mock\"},[n(\"div\",{staticClass:\"m-tit\"},[e._v(\"响应模板\")]),n(\"div\",{staticClass:\"m-con\",style:{height:e.responseMockHeight+\"px\"}},[n(\"div\",{ref:\"responseMockLeftHeight\"},e._l(e.responseMockTemplate,(function(t,r){return n(\"div\",{key:r,style:{\"margin-top\":r>0?\"30px\":\"\"}},[n(\"div\",{staticStyle:{\"margin-bottom\":\"10px\",\"font-size\":\"12px\"}},[e._v(\"\\n                              响应\"+e._s(e.apiResTreeData[r].description)+\"：\\n                            \")]),n(\"pre\",{directives:[{name:\"highlight\",rawName:\"v-highlight\"}]},[n(\"code\",{domProps:{innerHTML:e._s(t)}})])])})),0)])])]),n(\"el-col\",{attrs:{span:12}},[n(\"div\",{staticClass:\"mock\"},[n(\"div\",{staticClass:\"m-tit\"},[e._v(\"\\n                        响应数据\\n                        \"),n(\"i\",{staticClass:\"el-icon-refresh\",on:{click:e.refreshResponseMock}})]),n(\"div\",{staticClass:\"m-con\",style:{height:e.responseMockHeight+\"px\"}},[n(\"div\",{ref:\"responseMockRightHeight\"},e._l(e.responseMockJson,(function(t,r){return n(\"div\",{key:r,style:{\"margin-top\":r>0?\"30px\":\"\"}},[n(\"div\",{staticStyle:{\"margin-bottom\":\"10px\",\"font-size\":\"12px\"}},[e._v(\"\\n                              响应\"+e._s(e.apiResTreeData[r].description)+\":\\n                            \")]),n(\"pre\",{directives:[{name:\"highlight\",rawName:\"v-highlight\"}]},[n(\"code\",{domProps:{innerHTML:e._s(t)}})])])})),0)])])])],1)],1):e._e()],2)])],1):e._e(),n(\"editors\",{attrs:{markDownContent:e.markDownContent,chapter_id:e.chapter_id,chapterIsDir:e.selectNodeObj.is_dir},model:{value:e.markDownContent,callback:function(t){e.markDownContent=t},expression:\"markDownContent\"}}),n(\"el-button\",{attrs:{type:\"primary\"},on:{click:e.saveApi}},[e._v(\"保存\")])]],2),n(\"el-dialog\",{staticClass:\"we7-dialog only-input-dialog\",attrs:{title:e.dialogTitle,visible:e.dialogVisible,\"close-on-click-modal\":!1,center:\"\"},on:{\"update:visible\":function(t){e.dialogVisible=t}}},[n(\"el-form\",{attrs:{model:e.addNodeObj,\"label-width\":\"105px\",\"label-position\":\"left\"},nativeOn:{submit:function(e){e.preventDefault()}}},[n(\"el-form-item\",{attrs:{label:e.dialogFormLabel}},[n(\"el-input\",{nativeOn:{keyup:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.confirmBtn(t)}},model:{value:e.addNodeObj.name,callback:function(t){e.$set(e.addNodeObj,\"name\",t)},expression:\"addNodeObj.name\"}})],1),1!=e.addNodeObj.is_dir?n(\"el-form-item\",{attrs:{label:\"文档类型\"}},[n(\"el-radio-group\",{model:{value:e.addNodeObj.layout,callback:function(t){e.$set(e.addNodeObj,\"layout\",t)},expression:\"addNodeObj.layout\"}},[n(\"el-radio\",{attrs:{label:0}},[e._v(\"普通文档\")]),n(\"el-radio\",{attrs:{label:1}},[e._v(\"API文档\")])],1)],1):e._e()],1),n(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[n(\"el-button\",{attrs:{type:\"primary\",disabled:e.confirmDisabled},on:{click:e.confirmBtn}},[e._v(\"确 定\")]),n(\"el-button\",{on:{click:function(t){e.dialogVisible=!1}}},[e._v(\"取 消\")])],1)],1),n(\"el-dialog\",{staticClass:\"we7-dialog\",attrs:{title:e.dialogMoveTitle,visible:e.dialogMoveVisible,\"close-on-click-modal\":!1,center:\"\"},on:{\"update:visible\":function(t){e.dialogMoveVisible=t}}},[n(\"el-form\",{attrs:{\"label-width\":\"105px\",\"label-position\":\"left\"}},[n(\"el-form-item\",{attrs:{label:\"项目\"}},[n(\"el-select\",{attrs:{placeholder:\"请输入文档名称进行搜索\",filterable:\"\",remote:\"\",\"reserve-keyword\":\"\",\"remote-method\":e.remoteMethod},on:{change:e.changeDoc},model:{value:e.moveDoc,callback:function(t){e.moveDoc=t},expression:\"moveDoc\"}},e._l(e.docList,(function(e){return n(\"el-option\",{key:e.id,attrs:{label:e.name,value:e.id}})})),1)],1),n(\"el-form-item\",{attrs:{label:\"分类\"}},[n(\"el-cascader\",{attrs:{options:e.docChapters,props:{value:\"id\",label:\"name\"},clearable:!0,\"change-on-select\":!0},model:{value:e.moveClass,callback:function(t){e.moveClass=t},expression:\"moveClass\"}})],1)],1),n(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[n(\"el-button\",{attrs:{type:\"primary\"},on:{click:e.moveNode}},[e._v(\"确 定\")]),n(\"el-button\",{on:{click:function(t){e.dialogMoveVisible=!1}}},[e._v(\"取 消\")])],1)],1),n(\"el-dialog\",{staticClass:\"we7-dialog only-input-dialog\",attrs:{title:\"复制章节\",visible:e.dialogVisibleCopy,\"close-on-click-modal\":!1,center:\"\"},on:{\"update:visible\":function(t){e.dialogVisibleCopy=t}}},[n(\"el-form\",{attrs:{\"label-width\":\"105px\",\"label-position\":\"left\"},nativeOn:{submit:function(e){e.preventDefault()}}},[n(\"el-form-item\",{attrs:{label:\"文档名称\"}},[n(\"el-input\",{nativeOn:{keyup:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.confirmBtnCopy(t)}},model:{value:e.copyNodeName,callback:function(t){e.copyNodeName=t},expression:\"copyNodeName\"}})],1)],1),n(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[n(\"el-button\",{attrs:{type:\"primary\",disabled:e.confirmCopyDisabled},on:{click:e.confirmBtnCopy}},[e._v(\"确 定\")]),n(\"el-button\",{on:{click:function(t){e.dialogVisibleCopy=!1}}},[e._v(\"取 消\")])],1)],1),n(\"el-dialog\",{staticClass:\"we7-dialog dialog-setting\",attrs:{title:\"项目设置\",width:\"1000px\",visible:e.showSetting,\"close-on-click-modal\":!1,\"before-close\":e.handleClose},on:{\"update:visible\":function(t){e.showSetting=t}}},[n(\"setting\",{attrs:{id:e.$route.params.id}})],1),n(\"el-dialog\",{attrs:{title:e.importDialogTitle,visible:e.importDialogVisible,width:\"700px\",center:\"\"},on:{\"update:visible\":function(t){e.importDialogVisible=t}}},[n(\"codemirror\",{attrs:{options:e.cmOptions},model:{value:e.importQuery.data,callback:function(t){e.$set(e.importQuery,\"data\",t)},expression:\"importQuery.data\"}}),n(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[n(\"el-button\",{on:{click:function(t){e.importDialogVisible=!1}}},[e._v(\"取 消\")]),n(\"el-button\",{attrs:{type:\"primary\",disabled:e.importDisabled},on:{click:e.importSubmit}},[e._v(\"确 定\")])],1)],1)],1)},i=[],o=r(\"5aed\"),a=o[\"a\"],s=(r(\"47ae\"),r(\"3d54\"),r(\"2877\")),l=Object(s[\"a\"])(a,n,i,!1,null,\"8863de70\",null);t[\"default\"]=l.exports},\"1a0b\":function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAB40lEQVQ4jZVTTWsTURR9mDa4SCSVpp0hDbhIYprJH3DjQvAfOOCmcSYzc86bmQQmK1FQZuuqmdIwq26ELMxeurMIfm38IOCi+mOuC20NIVTz4G3OOdx37z3nKc/zbpK8C+ANgDmArwBeJI5TGfjuvQjOWy7gYRhukbxP8jWAp4rkc5JNkk3f9/cBtLXWNdu2C/1+vxwHvVa0hA+Hwxske0EQnCmSXwC01ZoniiKD5BMF4GcQBNZK1UwKaiaFVVSapteSJKkokmckm8sCaybFeibdei5daybFZT5JkgrJByqO45bjONeXBdWJlIwjcYwjcaoTKS3zYRjeJvlRaX2wk6bpxuLL2ydS3sulZo5lZI5ltJdLbftEyoudkOwAOFex35tq7dz6PZhs1DPpGpm45lhGZiZTM5OpOZaRkYm7m0v3YicA2gA+qzBwv9N1O5cF8v8r4Pv+LsnHisA5yc66I9i2XbjShepESsahOMbh6iX+0wVrJkXjWCzjWKxVNi64oHds214ZlquCRLJD8oci+WowGKwd5TiOWwA+KZIfADwjeSeKon3f9y+v53kNAJsANj3Pa1zgcRy3oihqAHiktNYPAbwk+Y7ktz9feg5wTuBU615Na10jefqXw3ut9UEYhlu/AJuVGFDjKKxXAAAAAElFTkSuQmCC\"},\"1c4c\":function(e,t,r){\"use strict\";var n=r(\"9b43\"),i=r(\"5ca1\"),o=r(\"4bf8\"),a=r(\"1fa8\"),s=r(\"33a4\"),l=r(\"9def\"),c=r(\"f1ae\"),u=r(\"27ee\");i(i.S+i.F*!r(\"5cc5\")((function(e){Array.from(e)})),\"Array\",{from:function(e){var t,r,i,d,f=o(e),h=\"function\"==typeof this?this:Array,p=arguments.length,m=p>1?arguments[1]:void 0,g=void 0!==m,v=0,y=u(f);if(g&&(m=n(m,p>2?arguments[2]:void 0,2)),void 0==y||h==Array&&s(y))for(t=l(f.length),r=new h(t);t>v;v++)c(r,v,g?m(f[v],v):f[v]);else for(d=y.call(f),r=new h;!(i=d.next()).done;v++)c(r,v,g?a(d,m,[i.value,v],!0):i.value);return r.length=v,r}})},\"20d6\":function(e,t,r){\"use strict\";var n=r(\"5ca1\"),i=r(\"0a49\")(6),o=\"findIndex\",a=!0;o in[]&&Array(1)[o]((function(){a=!1})),n(n.P+n.F*a,\"Array\",{findIndex:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),r(\"9c6c\")(o)},\"37c8\":function(e,t,r){t.f=r(\"2b4c\")},\"3a72\":function(e,t,r){var n=r(\"7726\"),i=r(\"8378\"),o=r(\"2d00\"),a=r(\"37c8\"),s=r(\"86cc\").f;e.exports=function(e){var t=i.Symbol||(i.Symbol=o?{}:n.Symbol||{});\"_\"==e.charAt(0)||e in t||s(t,e,{value:a.f(e)})}},\"3d54\":function(e,t,r){\"use strict\";r(\"ce4d\")},4238:function(e,t,r){\"use strict\";r(\"7af4\")},\"47ae\":function(e,t,r){\"use strict\";r(\"a9f2\")},\"56b3\":function(e,t,r){(function(t,r){e.exports=r()})(0,(function(){\"use strict\";var e=navigator.userAgent,t=navigator.platform,r=/gecko\\/\\d/i.test(e),n=/MSIE \\d/.test(e),i=/Trident\\/(?:[7-9]|\\d{2,})\\..*rv:(\\d+)/.exec(e),o=/Edge\\/(\\d+)/.exec(e),a=n||i||o,s=a&&(n?document.documentMode||6:+(o||i)[1]),l=!o&&/WebKit\\//.test(e),c=l&&/Qt\\/\\d+\\.\\d+/.test(e),u=!o&&/Chrome\\//.test(e),d=/Opera\\//.test(e),f=/Apple Computer/.test(navigator.vendor),h=/Mac OS X 1\\d\\D([8-9]|\\d\\d)\\D/.test(e),p=/PhantomJS/.test(e),m=!o&&/AppleWebKit/.test(e)&&/Mobile\\/\\w+/.test(e),g=/Android/.test(e),v=m||g||/webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(e),y=m||/Mac/.test(t),_=/\\bCrOS\\b/.test(e),b=/win/i.test(t),w=d&&e.match(/Version\\/(\\d*\\.\\d*)/);w&&(w=Number(w[1])),w&&w>=15&&(d=!1,l=!0);var C=y&&(c||d&&(null==w||w<12.11)),x=r||a&&s>=9;function k(e){return new RegExp(\"(^|\\\\s)\"+e+\"(?:$|\\\\s)\\\\s*\")}var T,S=function(e,t){var r=e.className,n=k(t).exec(r);if(n){var i=r.slice(n.index+n[0].length);e.className=r.slice(0,n.index)+(i?n[1]+i:\"\")}};function O(e){for(var t=e.childNodes.length;t>0;--t)e.removeChild(e.firstChild);return e}function D(e,t){return O(e).appendChild(t)}function M(e,t,r,n){var i=document.createElement(e);if(r&&(i.className=r),n&&(i.style.cssText=n),\"string\"==typeof t)i.appendChild(document.createTextNode(t));else if(t)for(var o=0;o<t.length;++o)i.appendChild(t[o]);return i}function A(e,t,r,n){var i=M(e,t,r,n);return i.setAttribute(\"role\",\"presentation\"),i}function N(e,t){if(3==t.nodeType&&(t=t.parentNode),e.contains)return e.contains(t);do{if(11==t.nodeType&&(t=t.host),t==e)return!0}while(t=t.parentNode)}function E(){var e;try{e=document.activeElement}catch(t){e=document.body||null}while(e&&e.shadowRoot&&e.shadowRoot.activeElement)e=e.shadowRoot.activeElement;return e}function L(e,t){var r=e.className;k(t).test(r)||(e.className+=(r?\" \":\"\")+t)}function P(e,t){for(var r=e.split(\" \"),n=0;n<r.length;n++)r[n]&&!k(r[n]).test(t)&&(t+=\" \"+r[n]);return t}T=document.createRange?function(e,t,r,n){var i=document.createRange();return i.setEnd(n||e,r),i.setStart(e,t),i}:function(e,t,r){var n=document.body.createTextRange();try{n.moveToElementText(e.parentNode)}catch(i){return n}return n.collapse(!0),n.moveEnd(\"character\",r),n.moveStart(\"character\",t),n};var R=function(e){e.select()};function I(e){var t=Array.prototype.slice.call(arguments,1);return function(){return e.apply(null,t)}}function W(e,t,r){for(var n in t||(t={}),e)!e.hasOwnProperty(n)||!1===r&&t.hasOwnProperty(n)||(t[n]=e[n]);return t}function B(e,t,r,n,i){null==t&&(t=e.search(/[^\\s\\u00a0]/),-1==t&&(t=e.length));for(var o=n||0,a=i||0;;){var s=e.indexOf(\"\\t\",o);if(s<0||s>=t)return a+(t-o);a+=s-o,a+=r-a%r,o=s+1}}m?R=function(e){e.selectionStart=0,e.selectionEnd=e.value.length}:a&&(R=function(e){try{e.select()}catch(t){}});var j=function(){this.id=null,this.f=null,this.time=0,this.handler=I(this.onTimeout,this)};function H(e,t){for(var r=0;r<e.length;++r)if(e[r]==t)return r;return-1}j.prototype.onTimeout=function(e){e.id=0,e.time<=+new Date?e.f():setTimeout(e.handler,e.time-+new Date)},j.prototype.set=function(e,t){this.f=t;var r=+new Date+e;(!this.id||r<this.time)&&(clearTimeout(this.id),this.id=setTimeout(this.handler,e),this.time=r)};var F=50,$={toString:function(){return\"CodeMirror.Pass\"}},U={scroll:!1},q={origin:\"*mouse\"},z={origin:\"+move\"};function K(e,t,r){for(var n=0,i=0;;){var o=e.indexOf(\"\\t\",n);-1==o&&(o=e.length);var a=o-n;if(o==e.length||i+a>=t)return n+Math.min(a,t-i);if(i+=o-n,i+=r-i%r,n=o+1,i>=t)return n}}var J=[\"\"];function V(e){while(J.length<=e)J.push(G(J)+\" \");return J[e]}function G(e){return e[e.length-1]}function X(e,t){for(var r=[],n=0;n<e.length;n++)r[n]=t(e[n],n);return r}function Y(e,t,r){var n=0,i=r(t);while(n<e.length&&r(e[n])<=i)n++;e.splice(n,0,t)}function Q(){}function Z(e,t){var r;return Object.create?r=Object.create(e):(Q.prototype=e,r=new Q),t&&W(t,r),r}var ee=/[\\u00df\\u0587\\u0590-\\u05f4\\u0600-\\u06ff\\u3040-\\u309f\\u30a0-\\u30ff\\u3400-\\u4db5\\u4e00-\\u9fcc\\uac00-\\ud7af]/;function te(e){return/\\w/.test(e)||e>\"\"&&(e.toUpperCase()!=e.toLowerCase()||ee.test(e))}function re(e,t){return t?!!(t.source.indexOf(\"\\\\w\")>-1&&te(e))||t.test(e):te(e)}function ne(e){for(var t in e)if(e.hasOwnProperty(t)&&e[t])return!1;return!0}var ie=/[\\u0300-\\u036f\\u0483-\\u0489\\u0591-\\u05bd\\u05bf\\u05c1\\u05c2\\u05c4\\u05c5\\u05c7\\u0610-\\u061a\\u064b-\\u065e\\u0670\\u06d6-\\u06dc\\u06de-\\u06e4\\u06e7\\u06e8\\u06ea-\\u06ed\\u0711\\u0730-\\u074a\\u07a6-\\u07b0\\u07eb-\\u07f3\\u0816-\\u0819\\u081b-\\u0823\\u0825-\\u0827\\u0829-\\u082d\\u0900-\\u0902\\u093c\\u0941-\\u0948\\u094d\\u0951-\\u0955\\u0962\\u0963\\u0981\\u09bc\\u09be\\u09c1-\\u09c4\\u09cd\\u09d7\\u09e2\\u09e3\\u0a01\\u0a02\\u0a3c\\u0a41\\u0a42\\u0a47\\u0a48\\u0a4b-\\u0a4d\\u0a51\\u0a70\\u0a71\\u0a75\\u0a81\\u0a82\\u0abc\\u0ac1-\\u0ac5\\u0ac7\\u0ac8\\u0acd\\u0ae2\\u0ae3\\u0b01\\u0b3c\\u0b3e\\u0b3f\\u0b41-\\u0b44\\u0b4d\\u0b56\\u0b57\\u0b62\\u0b63\\u0b82\\u0bbe\\u0bc0\\u0bcd\\u0bd7\\u0c3e-\\u0c40\\u0c46-\\u0c48\\u0c4a-\\u0c4d\\u0c55\\u0c56\\u0c62\\u0c63\\u0cbc\\u0cbf\\u0cc2\\u0cc6\\u0ccc\\u0ccd\\u0cd5\\u0cd6\\u0ce2\\u0ce3\\u0d3e\\u0d41-\\u0d44\\u0d4d\\u0d57\\u0d62\\u0d63\\u0dca\\u0dcf\\u0dd2-\\u0dd4\\u0dd6\\u0ddf\\u0e31\\u0e34-\\u0e3a\\u0e47-\\u0e4e\\u0eb1\\u0eb4-\\u0eb9\\u0ebb\\u0ebc\\u0ec8-\\u0ecd\\u0f18\\u0f19\\u0f35\\u0f37\\u0f39\\u0f71-\\u0f7e\\u0f80-\\u0f84\\u0f86\\u0f87\\u0f90-\\u0f97\\u0f99-\\u0fbc\\u0fc6\\u102d-\\u1030\\u1032-\\u1037\\u1039\\u103a\\u103d\\u103e\\u1058\\u1059\\u105e-\\u1060\\u1071-\\u1074\\u1082\\u1085\\u1086\\u108d\\u109d\\u135f\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17b7-\\u17bd\\u17c6\\u17c9-\\u17d3\\u17dd\\u180b-\\u180d\\u18a9\\u1920-\\u1922\\u1927\\u1928\\u1932\\u1939-\\u193b\\u1a17\\u1a18\\u1a56\\u1a58-\\u1a5e\\u1a60\\u1a62\\u1a65-\\u1a6c\\u1a73-\\u1a7c\\u1a7f\\u1b00-\\u1b03\\u1b34\\u1b36-\\u1b3a\\u1b3c\\u1b42\\u1b6b-\\u1b73\\u1b80\\u1b81\\u1ba2-\\u1ba5\\u1ba8\\u1ba9\\u1c2c-\\u1c33\\u1c36\\u1c37\\u1cd0-\\u1cd2\\u1cd4-\\u1ce0\\u1ce2-\\u1ce8\\u1ced\\u1dc0-\\u1de6\\u1dfd-\\u1dff\\u200c\\u200d\\u20d0-\\u20f0\\u2cef-\\u2cf1\\u2de0-\\u2dff\\u302a-\\u302f\\u3099\\u309a\\ua66f-\\ua672\\ua67c\\ua67d\\ua6f0\\ua6f1\\ua802\\ua806\\ua80b\\ua825\\ua826\\ua8c4\\ua8e0-\\ua8f1\\ua926-\\ua92d\\ua947-\\ua951\\ua980-\\ua982\\ua9b3\\ua9b6-\\ua9b9\\ua9bc\\uaa29-\\uaa2e\\uaa31\\uaa32\\uaa35\\uaa36\\uaa43\\uaa4c\\uaab0\\uaab2-\\uaab4\\uaab7\\uaab8\\uaabe\\uaabf\\uaac1\\uabe5\\uabe8\\uabed\\udc00-\\udfff\\ufb1e\\ufe00-\\ufe0f\\ufe20-\\ufe26\\uff9e\\uff9f]/;function oe(e){return e.charCodeAt(0)>=768&&ie.test(e)}function ae(e,t,r){while((r<0?t>0:t<e.length)&&oe(e.charAt(t)))t+=r;return t}function se(e,t,r){for(var n=t>r?-1:1;;){if(t==r)return t;var i=(t+r)/2,o=n<0?Math.ceil(i):Math.floor(i);if(o==t)return e(o)?t:r;e(o)?r=o:t=o+n}}function le(e,t,r,n){if(!e)return n(t,r,\"ltr\",0);for(var i=!1,o=0;o<e.length;++o){var a=e[o];(a.from<r&&a.to>t||t==r&&a.to==t)&&(n(Math.max(a.from,t),Math.min(a.to,r),1==a.level?\"rtl\":\"ltr\",o),i=!0)}i||n(t,r,\"ltr\")}var ce=null;function ue(e,t,r){var n;ce=null;for(var i=0;i<e.length;++i){var o=e[i];if(o.from<t&&o.to>t)return i;o.to==t&&(o.from!=o.to&&\"before\"==r?n=i:ce=i),o.from==t&&(o.from!=o.to&&\"before\"!=r?n=i:ce=i)}return null!=n?n:ce}var de=function(){var e=\"bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN\",t=\"nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111\";function r(r){return r<=247?e.charAt(r):1424<=r&&r<=1524?\"R\":1536<=r&&r<=1785?t.charAt(r-1536):1774<=r&&r<=2220?\"r\":8192<=r&&r<=8203?\"w\":8204==r?\"b\":\"L\"}var n=/[\\u0590-\\u05f4\\u0600-\\u06ff\\u0700-\\u08ac]/,i=/[stwN]/,o=/[LRr]/,a=/[Lb1n]/,s=/[1n]/;function l(e,t,r){this.level=e,this.from=t,this.to=r}return function(e,t){var c=\"ltr\"==t?\"L\":\"R\";if(0==e.length||\"ltr\"==t&&!n.test(e))return!1;for(var u=e.length,d=[],f=0;f<u;++f)d.push(r(e.charCodeAt(f)));for(var h=0,p=c;h<u;++h){var m=d[h];\"m\"==m?d[h]=p:p=m}for(var g=0,v=c;g<u;++g){var y=d[g];\"1\"==y&&\"r\"==v?d[g]=\"n\":o.test(y)&&(v=y,\"r\"==y&&(d[g]=\"R\"))}for(var _=1,b=d[0];_<u-1;++_){var w=d[_];\"+\"==w&&\"1\"==b&&\"1\"==d[_+1]?d[_]=\"1\":\",\"!=w||b!=d[_+1]||\"1\"!=b&&\"n\"!=b||(d[_]=b),b=w}for(var C=0;C<u;++C){var x=d[C];if(\",\"==x)d[C]=\"N\";else if(\"%\"==x){var k=void 0;for(k=C+1;k<u&&\"%\"==d[k];++k);for(var T=C&&\"!\"==d[C-1]||k<u&&\"1\"==d[k]?\"1\":\"N\",S=C;S<k;++S)d[S]=T;C=k-1}}for(var O=0,D=c;O<u;++O){var M=d[O];\"L\"==D&&\"1\"==M?d[O]=\"L\":o.test(M)&&(D=M)}for(var A=0;A<u;++A)if(i.test(d[A])){var N=void 0;for(N=A+1;N<u&&i.test(d[N]);++N);for(var E=\"L\"==(A?d[A-1]:c),L=\"L\"==(N<u?d[N]:c),P=E==L?E?\"L\":\"R\":c,R=A;R<N;++R)d[R]=P;A=N-1}for(var I,W=[],B=0;B<u;)if(a.test(d[B])){var j=B;for(++B;B<u&&a.test(d[B]);++B);W.push(new l(0,j,B))}else{var H=B,F=W.length,$=\"rtl\"==t?1:0;for(++B;B<u&&\"L\"!=d[B];++B);for(var U=H;U<B;)if(s.test(d[U])){H<U&&(W.splice(F,0,new l(1,H,U)),F+=$);var q=U;for(++U;U<B&&s.test(d[U]);++U);W.splice(F,0,new l(2,q,U)),F+=$,H=U}else++U;H<B&&W.splice(F,0,new l(1,H,B))}return\"ltr\"==t&&(1==W[0].level&&(I=e.match(/^\\s+/))&&(W[0].from=I[0].length,W.unshift(new l(0,0,I[0].length))),1==G(W).level&&(I=e.match(/\\s+$/))&&(G(W).to-=I[0].length,W.push(new l(0,u-I[0].length,u)))),\"rtl\"==t?W.reverse():W}}();function fe(e,t){var r=e.order;return null==r&&(r=e.order=de(e.text,t)),r}var he=[],pe=function(e,t,r){if(e.addEventListener)e.addEventListener(t,r,!1);else if(e.attachEvent)e.attachEvent(\"on\"+t,r);else{var n=e._handlers||(e._handlers={});n[t]=(n[t]||he).concat(r)}};function me(e,t){return e._handlers&&e._handlers[t]||he}function ge(e,t,r){if(e.removeEventListener)e.removeEventListener(t,r,!1);else if(e.detachEvent)e.detachEvent(\"on\"+t,r);else{var n=e._handlers,i=n&&n[t];if(i){var o=H(i,r);o>-1&&(n[t]=i.slice(0,o).concat(i.slice(o+1)))}}}function ve(e,t){var r=me(e,t);if(r.length)for(var n=Array.prototype.slice.call(arguments,2),i=0;i<r.length;++i)r[i].apply(null,n)}function ye(e,t,r){return\"string\"==typeof t&&(t={type:t,preventDefault:function(){this.defaultPrevented=!0}}),ve(e,r||t.type,e,t),ke(t)||t.codemirrorIgnore}function _e(e){var t=e._handlers&&e._handlers.cursorActivity;if(t)for(var r=e.curOp.cursorActivityHandlers||(e.curOp.cursorActivityHandlers=[]),n=0;n<t.length;++n)-1==H(r,t[n])&&r.push(t[n])}function be(e,t){return me(e,t).length>0}function we(e){e.prototype.on=function(e,t){pe(this,e,t)},e.prototype.off=function(e,t){ge(this,e,t)}}function Ce(e){e.preventDefault?e.preventDefault():e.returnValue=!1}function xe(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}function ke(e){return null!=e.defaultPrevented?e.defaultPrevented:0==e.returnValue}function Te(e){Ce(e),xe(e)}function Se(e){return e.target||e.srcElement}function Oe(e){var t=e.which;return null==t&&(1&e.button?t=1:2&e.button?t=3:4&e.button&&(t=2)),y&&e.ctrlKey&&1==t&&(t=3),t}var De,Me,Ae=function(){if(a&&s<9)return!1;var e=M(\"div\");return\"draggable\"in e||\"dragDrop\"in e}();function Ne(e){if(null==De){var t=M(\"span\",\"​\");D(e,M(\"span\",[t,document.createTextNode(\"x\")])),0!=e.firstChild.offsetHeight&&(De=t.offsetWidth<=1&&t.offsetHeight>2&&!(a&&s<8))}var r=De?M(\"span\",\"​\"):M(\"span\",\" \",null,\"display: inline-block; width: 1px; margin-right: -1px\");return r.setAttribute(\"cm-text\",\"\"),r}function Ee(e){if(null!=Me)return Me;var t=D(e,document.createTextNode(\"AخA\")),r=T(t,0,1).getBoundingClientRect(),n=T(t,1,2).getBoundingClientRect();return O(e),!(!r||r.left==r.right)&&(Me=n.right-r.right<3)}var Le=3!=\"\\n\\nb\".split(/\\n/).length?function(e){var t=0,r=[],n=e.length;while(t<=n){var i=e.indexOf(\"\\n\",t);-1==i&&(i=e.length);var o=e.slice(t,\"\\r\"==e.charAt(i-1)?i-1:i),a=o.indexOf(\"\\r\");-1!=a?(r.push(o.slice(0,a)),t+=a+1):(r.push(o),t=i+1)}return r}:function(e){return e.split(/\\r\\n?|\\n/)},Pe=window.getSelection?function(e){try{return e.selectionStart!=e.selectionEnd}catch(t){return!1}}:function(e){var t;try{t=e.ownerDocument.selection.createRange()}catch(r){}return!(!t||t.parentElement()!=e)&&0!=t.compareEndPoints(\"StartToEnd\",t)},Re=function(){var e=M(\"div\");return\"oncopy\"in e||(e.setAttribute(\"oncopy\",\"return;\"),\"function\"==typeof e.oncopy)}(),Ie=null;function We(e){if(null!=Ie)return Ie;var t=D(e,M(\"span\",\"x\")),r=t.getBoundingClientRect(),n=T(t,0,1).getBoundingClientRect();return Ie=Math.abs(r.left-n.left)>1}var Be={},je={};function He(e,t){arguments.length>2&&(t.dependencies=Array.prototype.slice.call(arguments,2)),Be[e]=t}function Fe(e,t){je[e]=t}function $e(e){if(\"string\"==typeof e&&je.hasOwnProperty(e))e=je[e];else if(e&&\"string\"==typeof e.name&&je.hasOwnProperty(e.name)){var t=je[e.name];\"string\"==typeof t&&(t={name:t}),e=Z(t,e),e.name=t.name}else{if(\"string\"==typeof e&&/^[\\w\\-]+\\/[\\w\\-]+\\+xml$/.test(e))return $e(\"application/xml\");if(\"string\"==typeof e&&/^[\\w\\-]+\\/[\\w\\-]+\\+json$/.test(e))return $e(\"application/json\")}return\"string\"==typeof e?{name:e}:e||{name:\"null\"}}function Ue(e,t){t=$e(t);var r=Be[t.name];if(!r)return Ue(e,\"text/plain\");var n=r(e,t);if(qe.hasOwnProperty(t.name)){var i=qe[t.name];for(var o in i)i.hasOwnProperty(o)&&(n.hasOwnProperty(o)&&(n[\"_\"+o]=n[o]),n[o]=i[o])}if(n.name=t.name,t.helperType&&(n.helperType=t.helperType),t.modeProps)for(var a in t.modeProps)n[a]=t.modeProps[a];return n}var qe={};function ze(e,t){var r=qe.hasOwnProperty(e)?qe[e]:qe[e]={};W(t,r)}function Ke(e,t){if(!0===t)return t;if(e.copyState)return e.copyState(t);var r={};for(var n in t){var i=t[n];i instanceof Array&&(i=i.concat([])),r[n]=i}return r}function Je(e,t){var r;while(e.innerMode){if(r=e.innerMode(t),!r||r.mode==e)break;t=r.state,e=r.mode}return r||{mode:e,state:t}}function Ve(e,t,r){return!e.startState||e.startState(t,r)}var Ge=function(e,t,r){this.pos=this.start=0,this.string=e,this.tabSize=t||8,this.lastColumnPos=this.lastColumnValue=0,this.lineStart=0,this.lineOracle=r};function Xe(e,t){if(t-=e.first,t<0||t>=e.size)throw new Error(\"There is no line \"+(t+e.first)+\" in the document.\");var r=e;while(!r.lines)for(var n=0;;++n){var i=r.children[n],o=i.chunkSize();if(t<o){r=i;break}t-=o}return r.lines[t]}function Ye(e,t,r){var n=[],i=t.line;return e.iter(t.line,r.line+1,(function(e){var o=e.text;i==r.line&&(o=o.slice(0,r.ch)),i==t.line&&(o=o.slice(t.ch)),n.push(o),++i})),n}function Qe(e,t,r){var n=[];return e.iter(t,r,(function(e){n.push(e.text)})),n}function Ze(e,t){var r=t-e.height;if(r)for(var n=e;n;n=n.parent)n.height+=r}function et(e){if(null==e.parent)return null;for(var t=e.parent,r=H(t.lines,e),n=t.parent;n;t=n,n=n.parent)for(var i=0;;++i){if(n.children[i]==t)break;r+=n.children[i].chunkSize()}return r+t.first}function tt(e,t){var r=e.first;e:do{for(var n=0;n<e.children.length;++n){var i=e.children[n],o=i.height;if(t<o){e=i;continue e}t-=o,r+=i.chunkSize()}return r}while(!e.lines);for(var a=0;a<e.lines.length;++a){var s=e.lines[a],l=s.height;if(t<l)break;t-=l}return r+a}function rt(e,t){return t>=e.first&&t<e.first+e.size}function nt(e,t){return String(e.lineNumberFormatter(t+e.firstLineNumber))}function it(e,t,r){if(void 0===r&&(r=null),!(this instanceof it))return new it(e,t,r);this.line=e,this.ch=t,this.sticky=r}function ot(e,t){return e.line-t.line||e.ch-t.ch}function at(e,t){return e.sticky==t.sticky&&0==ot(e,t)}function st(e){return it(e.line,e.ch)}function lt(e,t){return ot(e,t)<0?t:e}function ct(e,t){return ot(e,t)<0?e:t}function ut(e,t){return Math.max(e.first,Math.min(t,e.first+e.size-1))}function dt(e,t){if(t.line<e.first)return it(e.first,0);var r=e.first+e.size-1;return t.line>r?it(r,Xe(e,r).text.length):ft(t,Xe(e,t.line).text.length)}function ft(e,t){var r=e.ch;return null==r||r>t?it(e.line,t):r<0?it(e.line,0):e}function ht(e,t){for(var r=[],n=0;n<t.length;n++)r[n]=dt(e,t[n]);return r}Ge.prototype.eol=function(){return this.pos>=this.string.length},Ge.prototype.sol=function(){return this.pos==this.lineStart},Ge.prototype.peek=function(){return this.string.charAt(this.pos)||void 0},Ge.prototype.next=function(){if(this.pos<this.string.length)return this.string.charAt(this.pos++)},Ge.prototype.eat=function(e){var t,r=this.string.charAt(this.pos);if(t=\"string\"==typeof e?r==e:r&&(e.test?e.test(r):e(r)),t)return++this.pos,r},Ge.prototype.eatWhile=function(e){var t=this.pos;while(this.eat(e));return this.pos>t},Ge.prototype.eatSpace=function(){var e=this.pos;while(/[\\s\\u00a0]/.test(this.string.charAt(this.pos)))++this.pos;return this.pos>e},Ge.prototype.skipToEnd=function(){this.pos=this.string.length},Ge.prototype.skipTo=function(e){var t=this.string.indexOf(e,this.pos);if(t>-1)return this.pos=t,!0},Ge.prototype.backUp=function(e){this.pos-=e},Ge.prototype.column=function(){return this.lastColumnPos<this.start&&(this.lastColumnValue=B(this.string,this.start,this.tabSize,this.lastColumnPos,this.lastColumnValue),this.lastColumnPos=this.start),this.lastColumnValue-(this.lineStart?B(this.string,this.lineStart,this.tabSize):0)},Ge.prototype.indentation=function(){return B(this.string,null,this.tabSize)-(this.lineStart?B(this.string,this.lineStart,this.tabSize):0)},Ge.prototype.match=function(e,t,r){if(\"string\"!=typeof e){var n=this.string.slice(this.pos).match(e);return n&&n.index>0?null:(n&&!1!==t&&(this.pos+=n[0].length),n)}var i=function(e){return r?e.toLowerCase():e},o=this.string.substr(this.pos,e.length);if(i(o)==i(e))return!1!==t&&(this.pos+=e.length),!0},Ge.prototype.current=function(){return this.string.slice(this.start,this.pos)},Ge.prototype.hideFirstChars=function(e,t){this.lineStart+=e;try{return t()}finally{this.lineStart-=e}},Ge.prototype.lookAhead=function(e){var t=this.lineOracle;return t&&t.lookAhead(e)},Ge.prototype.baseToken=function(){var e=this.lineOracle;return e&&e.baseToken(this.pos)};var pt=function(e,t){this.state=e,this.lookAhead=t},mt=function(e,t,r,n){this.state=t,this.doc=e,this.line=r,this.maxLookAhead=n||0,this.baseTokens=null,this.baseTokenPos=1};function gt(e,t,r,n){var i=[e.state.modeGen],o={};Tt(e,t.text,e.doc.mode,r,(function(e,t){return i.push(e,t)}),o,n);for(var a=r.state,s=function(n){r.baseTokens=i;var s=e.state.overlays[n],l=1,c=0;r.state=!0,Tt(e,t.text,s.mode,r,(function(e,t){var r=l;while(c<e){var n=i[l];n>e&&i.splice(l,1,e,i[l+1],n),l+=2,c=Math.min(e,n)}if(t)if(s.opaque)i.splice(r,l-r,e,\"overlay \"+t),l=r+2;else for(;r<l;r+=2){var o=i[r+1];i[r+1]=(o?o+\" \":\"\")+\"overlay \"+t}}),o),r.state=a,r.baseTokens=null,r.baseTokenPos=1},l=0;l<e.state.overlays.length;++l)s(l);return{styles:i,classes:o.bgClass||o.textClass?o:null}}function vt(e,t,r){if(!t.styles||t.styles[0]!=e.state.modeGen){var n=yt(e,et(t)),i=t.text.length>e.options.maxHighlightLength&&Ke(e.doc.mode,n.state),o=gt(e,t,n);i&&(n.state=i),t.stateAfter=n.save(!i),t.styles=o.styles,o.classes?t.styleClasses=o.classes:t.styleClasses&&(t.styleClasses=null),r===e.doc.highlightFrontier&&(e.doc.modeFrontier=Math.max(e.doc.modeFrontier,++e.doc.highlightFrontier))}return t.styles}function yt(e,t,r){var n=e.doc,i=e.display;if(!n.mode.startState)return new mt(n,!0,t);var o=St(e,t,r),a=o>n.first&&Xe(n,o-1).stateAfter,s=a?mt.fromSaved(n,a,o):new mt(n,Ve(n.mode),o);return n.iter(o,t,(function(r){_t(e,r.text,s);var n=s.line;r.stateAfter=n==t-1||n%5==0||n>=i.viewFrom&&n<i.viewTo?s.save():null,s.nextLine()})),r&&(n.modeFrontier=s.line),s}function _t(e,t,r,n){var i=e.doc.mode,o=new Ge(t,e.options.tabSize,r);o.start=o.pos=n||0,\"\"==t&&bt(i,r.state);while(!o.eol())wt(i,o,r.state),o.start=o.pos}function bt(e,t){if(e.blankLine)return e.blankLine(t);if(e.innerMode){var r=Je(e,t);return r.mode.blankLine?r.mode.blankLine(r.state):void 0}}function wt(e,t,r,n){for(var i=0;i<10;i++){n&&(n[0]=Je(e,r).mode);var o=e.token(t,r);if(t.pos>t.start)return o}throw new Error(\"Mode \"+e.name+\" failed to advance stream.\")}mt.prototype.lookAhead=function(e){var t=this.doc.getLine(this.line+e);return null!=t&&e>this.maxLookAhead&&(this.maxLookAhead=e),t},mt.prototype.baseToken=function(e){if(!this.baseTokens)return null;while(this.baseTokens[this.baseTokenPos]<=e)this.baseTokenPos+=2;var t=this.baseTokens[this.baseTokenPos+1];return{type:t&&t.replace(/( |^)overlay .*/,\"\"),size:this.baseTokens[this.baseTokenPos]-e}},mt.prototype.nextLine=function(){this.line++,this.maxLookAhead>0&&this.maxLookAhead--},mt.fromSaved=function(e,t,r){return t instanceof pt?new mt(e,Ke(e.mode,t.state),r,t.lookAhead):new mt(e,Ke(e.mode,t),r)},mt.prototype.save=function(e){var t=!1!==e?Ke(this.doc.mode,this.state):this.state;return this.maxLookAhead>0?new pt(t,this.maxLookAhead):t};var Ct=function(e,t,r){this.start=e.start,this.end=e.pos,this.string=e.current(),this.type=t||null,this.state=r};function xt(e,t,r,n){var i,o=e.doc,a=o.mode;t=dt(o,t);var s,l=Xe(o,t.line),c=yt(e,t.line,r),u=new Ge(l.text,e.options.tabSize,c);n&&(s=[]);while((n||u.pos<t.ch)&&!u.eol())u.start=u.pos,i=wt(a,u,c.state),n&&s.push(new Ct(u,i,Ke(o.mode,c.state)));return n?s:new Ct(u,i,c.state)}function kt(e,t){if(e)for(;;){var r=e.match(/(?:^|\\s+)line-(background-)?(\\S+)/);if(!r)break;e=e.slice(0,r.index)+e.slice(r.index+r[0].length);var n=r[1]?\"bgClass\":\"textClass\";null==t[n]?t[n]=r[2]:new RegExp(\"(?:^|\\\\s)\"+r[2]+\"(?:$|\\\\s)\").test(t[n])||(t[n]+=\" \"+r[2])}return e}function Tt(e,t,r,n,i,o,a){var s=r.flattenSpans;null==s&&(s=e.options.flattenSpans);var l,c=0,u=null,d=new Ge(t,e.options.tabSize,n),f=e.options.addModeClass&&[null];\"\"==t&&kt(bt(r,n.state),o);while(!d.eol()){if(d.pos>e.options.maxHighlightLength?(s=!1,a&&_t(e,t,n,d.pos),d.pos=t.length,l=null):l=kt(wt(r,d,n.state,f),o),f){var h=f[0].name;h&&(l=\"m-\"+(l?h+\" \"+l:h))}if(!s||u!=l){while(c<d.start)c=Math.min(d.start,c+5e3),i(c,u);u=l}d.start=d.pos}while(c<d.pos){var p=Math.min(d.pos,c+5e3);i(p,u),c=p}}function St(e,t,r){for(var n,i,o=e.doc,a=r?-1:t-(e.doc.mode.innerMode?1e3:100),s=t;s>a;--s){if(s<=o.first)return o.first;var l=Xe(o,s-1),c=l.stateAfter;if(c&&(!r||s+(c instanceof pt?c.lookAhead:0)<=o.modeFrontier))return s;var u=B(l.text,null,e.options.tabSize);(null==i||n>u)&&(i=s-1,n=u)}return i}function Ot(e,t){if(e.modeFrontier=Math.min(e.modeFrontier,t),!(e.highlightFrontier<t-10)){for(var r=e.first,n=t-1;n>r;n--){var i=Xe(e,n).stateAfter;if(i&&(!(i instanceof pt)||n+i.lookAhead<t)){r=n+1;break}}e.highlightFrontier=Math.min(e.highlightFrontier,r)}}var Dt=!1,Mt=!1;function At(){Dt=!0}function Nt(){Mt=!0}function Et(e,t,r){this.marker=e,this.from=t,this.to=r}function Lt(e,t){if(e)for(var r=0;r<e.length;++r){var n=e[r];if(n.marker==t)return n}}function Pt(e,t){for(var r,n=0;n<e.length;++n)e[n]!=t&&(r||(r=[])).push(e[n]);return r}function Rt(e,t){e.markedSpans=e.markedSpans?e.markedSpans.concat([t]):[t],t.marker.attachLine(e)}function It(e,t,r){var n;if(e)for(var i=0;i<e.length;++i){var o=e[i],a=o.marker,s=null==o.from||(a.inclusiveLeft?o.from<=t:o.from<t);if(s||o.from==t&&\"bookmark\"==a.type&&(!r||!o.marker.insertLeft)){var l=null==o.to||(a.inclusiveRight?o.to>=t:o.to>t);(n||(n=[])).push(new Et(a,o.from,l?null:o.to))}}return n}function Wt(e,t,r){var n;if(e)for(var i=0;i<e.length;++i){var o=e[i],a=o.marker,s=null==o.to||(a.inclusiveRight?o.to>=t:o.to>t);if(s||o.from==t&&\"bookmark\"==a.type&&(!r||o.marker.insertLeft)){var l=null==o.from||(a.inclusiveLeft?o.from<=t:o.from<t);(n||(n=[])).push(new Et(a,l?null:o.from-t,null==o.to?null:o.to-t))}}return n}function Bt(e,t){if(t.full)return null;var r=rt(e,t.from.line)&&Xe(e,t.from.line).markedSpans,n=rt(e,t.to.line)&&Xe(e,t.to.line).markedSpans;if(!r&&!n)return null;var i=t.from.ch,o=t.to.ch,a=0==ot(t.from,t.to),s=It(r,i,a),l=Wt(n,o,a),c=1==t.text.length,u=G(t.text).length+(c?i:0);if(s)for(var d=0;d<s.length;++d){var f=s[d];if(null==f.to){var h=Lt(l,f.marker);h?c&&(f.to=null==h.to?null:h.to+u):f.to=i}}if(l)for(var p=0;p<l.length;++p){var m=l[p];if(null!=m.to&&(m.to+=u),null==m.from){var g=Lt(s,m.marker);g||(m.from=u,c&&(s||(s=[])).push(m))}else m.from+=u,c&&(s||(s=[])).push(m)}s&&(s=jt(s)),l&&l!=s&&(l=jt(l));var v=[s];if(!c){var y,_=t.text.length-2;if(_>0&&s)for(var b=0;b<s.length;++b)null==s[b].to&&(y||(y=[])).push(new Et(s[b].marker,null,null));for(var w=0;w<_;++w)v.push(y);v.push(l)}return v}function jt(e){for(var t=0;t<e.length;++t){var r=e[t];null!=r.from&&r.from==r.to&&!1!==r.marker.clearWhenEmpty&&e.splice(t--,1)}return e.length?e:null}function Ht(e,t,r){var n=null;if(e.iter(t.line,r.line+1,(function(e){if(e.markedSpans)for(var t=0;t<e.markedSpans.length;++t){var r=e.markedSpans[t].marker;!r.readOnly||n&&-1!=H(n,r)||(n||(n=[])).push(r)}})),!n)return null;for(var i=[{from:t,to:r}],o=0;o<n.length;++o)for(var a=n[o],s=a.find(0),l=0;l<i.length;++l){var c=i[l];if(!(ot(c.to,s.from)<0||ot(c.from,s.to)>0)){var u=[l,1],d=ot(c.from,s.from),f=ot(c.to,s.to);(d<0||!a.inclusiveLeft&&!d)&&u.push({from:c.from,to:s.from}),(f>0||!a.inclusiveRight&&!f)&&u.push({from:s.to,to:c.to}),i.splice.apply(i,u),l+=u.length-3}}return i}function Ft(e){var t=e.markedSpans;if(t){for(var r=0;r<t.length;++r)t[r].marker.detachLine(e);e.markedSpans=null}}function $t(e,t){if(t){for(var r=0;r<t.length;++r)t[r].marker.attachLine(e);e.markedSpans=t}}function Ut(e){return e.inclusiveLeft?-1:0}function qt(e){return e.inclusiveRight?1:0}function zt(e,t){var r=e.lines.length-t.lines.length;if(0!=r)return r;var n=e.find(),i=t.find(),o=ot(n.from,i.from)||Ut(e)-Ut(t);if(o)return-o;var a=ot(n.to,i.to)||qt(e)-qt(t);return a||t.id-e.id}function Kt(e,t){var r,n=Mt&&e.markedSpans;if(n)for(var i=void 0,o=0;o<n.length;++o)i=n[o],i.marker.collapsed&&null==(t?i.from:i.to)&&(!r||zt(r,i.marker)<0)&&(r=i.marker);return r}function Jt(e){return Kt(e,!0)}function Vt(e){return Kt(e,!1)}function Gt(e,t){var r,n=Mt&&e.markedSpans;if(n)for(var i=0;i<n.length;++i){var o=n[i];o.marker.collapsed&&(null==o.from||o.from<t)&&(null==o.to||o.to>t)&&(!r||zt(r,o.marker)<0)&&(r=o.marker)}return r}function Xt(e,t,r,n,i){var o=Xe(e,t),a=Mt&&o.markedSpans;if(a)for(var s=0;s<a.length;++s){var l=a[s];if(l.marker.collapsed){var c=l.marker.find(0),u=ot(c.from,r)||Ut(l.marker)-Ut(i),d=ot(c.to,n)||qt(l.marker)-qt(i);if(!(u>=0&&d<=0||u<=0&&d>=0)&&(u<=0&&(l.marker.inclusiveRight&&i.inclusiveLeft?ot(c.to,r)>=0:ot(c.to,r)>0)||u>=0&&(l.marker.inclusiveRight&&i.inclusiveLeft?ot(c.from,n)<=0:ot(c.from,n)<0)))return!0}}}function Yt(e){var t;while(t=Jt(e))e=t.find(-1,!0).line;return e}function Qt(e){var t;while(t=Vt(e))e=t.find(1,!0).line;return e}function Zt(e){var t,r;while(t=Vt(e))e=t.find(1,!0).line,(r||(r=[])).push(e);return r}function er(e,t){var r=Xe(e,t),n=Yt(r);return r==n?t:et(n)}function tr(e,t){if(t>e.lastLine())return t;var r,n=Xe(e,t);if(!rr(e,n))return t;while(r=Vt(n))n=r.find(1,!0).line;return et(n)+1}function rr(e,t){var r=Mt&&t.markedSpans;if(r)for(var n=void 0,i=0;i<r.length;++i)if(n=r[i],n.marker.collapsed){if(null==n.from)return!0;if(!n.marker.widgetNode&&0==n.from&&n.marker.inclusiveLeft&&nr(e,t,n))return!0}}function nr(e,t,r){if(null==r.to){var n=r.marker.find(1,!0);return nr(e,n.line,Lt(n.line.markedSpans,r.marker))}if(r.marker.inclusiveRight&&r.to==t.text.length)return!0;for(var i=void 0,o=0;o<t.markedSpans.length;++o)if(i=t.markedSpans[o],i.marker.collapsed&&!i.marker.widgetNode&&i.from==r.to&&(null==i.to||i.to!=r.from)&&(i.marker.inclusiveLeft||r.marker.inclusiveRight)&&nr(e,t,i))return!0}function ir(e){e=Yt(e);for(var t=0,r=e.parent,n=0;n<r.lines.length;++n){var i=r.lines[n];if(i==e)break;t+=i.height}for(var o=r.parent;o;r=o,o=r.parent)for(var a=0;a<o.children.length;++a){var s=o.children[a];if(s==r)break;t+=s.height}return t}function or(e){if(0==e.height)return 0;var t,r=e.text.length,n=e;while(t=Jt(n)){var i=t.find(0,!0);n=i.from.line,r+=i.from.ch-i.to.ch}n=e;while(t=Vt(n)){var o=t.find(0,!0);r-=n.text.length-o.from.ch,n=o.to.line,r+=n.text.length-o.to.ch}return r}function ar(e){var t=e.display,r=e.doc;t.maxLine=Xe(r,r.first),t.maxLineLength=or(t.maxLine),t.maxLineChanged=!0,r.iter((function(e){var r=or(e);r>t.maxLineLength&&(t.maxLineLength=r,t.maxLine=e)}))}var sr=function(e,t,r){this.text=e,$t(this,t),this.height=r?r(this):1};function lr(e,t,r,n){e.text=t,e.stateAfter&&(e.stateAfter=null),e.styles&&(e.styles=null),null!=e.order&&(e.order=null),Ft(e),$t(e,r);var i=n?n(e):1;i!=e.height&&Ze(e,i)}function cr(e){e.parent=null,Ft(e)}sr.prototype.lineNo=function(){return et(this)},we(sr);var ur={},dr={};function fr(e,t){if(!e||/^\\s*$/.test(e))return null;var r=t.addModeClass?dr:ur;return r[e]||(r[e]=e.replace(/\\S+/g,\"cm-$&\"))}function hr(e,t){var r=A(\"span\",null,null,l?\"padding-right: .1px\":null),n={pre:A(\"pre\",[r],\"CodeMirror-line\"),content:r,col:0,pos:0,cm:e,trailingSpace:!1,splitSpaces:e.getOption(\"lineWrapping\")};t.measure={};for(var i=0;i<=(t.rest?t.rest.length:0);i++){var o=i?t.rest[i-1]:t.line,a=void 0;n.pos=0,n.addToken=mr,Ee(e.display.measure)&&(a=fe(o,e.doc.direction))&&(n.addToken=vr(n.addToken,a)),n.map=[];var s=t!=e.display.externalMeasured&&et(o);_r(o,n,vt(e,o,s)),o.styleClasses&&(o.styleClasses.bgClass&&(n.bgClass=P(o.styleClasses.bgClass,n.bgClass||\"\")),o.styleClasses.textClass&&(n.textClass=P(o.styleClasses.textClass,n.textClass||\"\"))),0==n.map.length&&n.map.push(0,0,n.content.appendChild(Ne(e.display.measure))),0==i?(t.measure.map=n.map,t.measure.cache={}):((t.measure.maps||(t.measure.maps=[])).push(n.map),(t.measure.caches||(t.measure.caches=[])).push({}))}if(l){var c=n.content.lastChild;(/\\bcm-tab\\b/.test(c.className)||c.querySelector&&c.querySelector(\".cm-tab\"))&&(n.content.className=\"cm-tab-wrap-hack\")}return ve(e,\"renderLine\",e,t.line,n.pre),n.pre.className&&(n.textClass=P(n.pre.className,n.textClass||\"\")),n}function pr(e){var t=M(\"span\",\"•\",\"cm-invalidchar\");return t.title=\"\\\\u\"+e.charCodeAt(0).toString(16),t.setAttribute(\"aria-label\",t.title),t}function mr(e,t,r,n,i,o,l){if(t){var c,u=e.splitSpaces?gr(t,e.trailingSpace):t,d=e.cm.state.specialChars,f=!1;if(d.test(t)){c=document.createDocumentFragment();var h=0;while(1){d.lastIndex=h;var p=d.exec(t),m=p?p.index-h:t.length-h;if(m){var g=document.createTextNode(u.slice(h,h+m));a&&s<9?c.appendChild(M(\"span\",[g])):c.appendChild(g),e.map.push(e.pos,e.pos+m,g),e.col+=m,e.pos+=m}if(!p)break;h+=m+1;var v=void 0;if(\"\\t\"==p[0]){var y=e.cm.options.tabSize,_=y-e.col%y;v=c.appendChild(M(\"span\",V(_),\"cm-tab\")),v.setAttribute(\"role\",\"presentation\"),v.setAttribute(\"cm-text\",\"\\t\"),e.col+=_}else\"\\r\"==p[0]||\"\\n\"==p[0]?(v=c.appendChild(M(\"span\",\"\\r\"==p[0]?\"␍\":\"␤\",\"cm-invalidchar\")),v.setAttribute(\"cm-text\",p[0]),e.col+=1):(v=e.cm.options.specialCharPlaceholder(p[0]),v.setAttribute(\"cm-text\",p[0]),a&&s<9?c.appendChild(M(\"span\",[v])):c.appendChild(v),e.col+=1);e.map.push(e.pos,e.pos+1,v),e.pos++}}else e.col+=t.length,c=document.createTextNode(u),e.map.push(e.pos,e.pos+t.length,c),a&&s<9&&(f=!0),e.pos+=t.length;if(e.trailingSpace=32==u.charCodeAt(t.length-1),r||n||i||f||o||l){var b=r||\"\";n&&(b+=n),i&&(b+=i);var w=M(\"span\",[c],b,o);if(l)for(var C in l)l.hasOwnProperty(C)&&\"style\"!=C&&\"class\"!=C&&w.setAttribute(C,l[C]);return e.content.appendChild(w)}e.content.appendChild(c)}}function gr(e,t){if(e.length>1&&!/  /.test(e))return e;for(var r=t,n=\"\",i=0;i<e.length;i++){var o=e.charAt(i);\" \"!=o||!r||i!=e.length-1&&32!=e.charCodeAt(i+1)||(o=\" \"),n+=o,r=\" \"==o}return n}function vr(e,t){return function(r,n,i,o,a,s,l){i=i?i+\" cm-force-border\":\"cm-force-border\";for(var c=r.pos,u=c+n.length;;){for(var d=void 0,f=0;f<t.length;f++)if(d=t[f],d.to>c&&d.from<=c)break;if(d.to>=u)return e(r,n,i,o,a,s,l);e(r,n.slice(0,d.to-c),i,o,null,s,l),o=null,n=n.slice(d.to-c),c=d.to}}}function yr(e,t,r,n){var i=!n&&r.widgetNode;i&&e.map.push(e.pos,e.pos+t,i),!n&&e.cm.display.input.needsContentAttribute&&(i||(i=e.content.appendChild(document.createElement(\"span\"))),i.setAttribute(\"cm-marker\",r.id)),i&&(e.cm.display.input.setUneditable(i),e.content.appendChild(i)),e.pos+=t,e.trailingSpace=!1}function _r(e,t,r){var n=e.markedSpans,i=e.text,o=0;if(n)for(var a,s,l,c,u,d,f,h=i.length,p=0,m=1,g=\"\",v=0;;){if(v==p){l=c=u=s=\"\",f=null,d=null,v=1/0;for(var y=[],_=void 0,b=0;b<n.length;++b){var w=n[b],C=w.marker;if(\"bookmark\"==C.type&&w.from==p&&C.widgetNode)y.push(C);else if(w.from<=p&&(null==w.to||w.to>p||C.collapsed&&w.to==p&&w.from==p)){if(null!=w.to&&w.to!=p&&v>w.to&&(v=w.to,c=\"\"),C.className&&(l+=\" \"+C.className),C.css&&(s=(s?s+\";\":\"\")+C.css),C.startStyle&&w.from==p&&(u+=\" \"+C.startStyle),C.endStyle&&w.to==v&&(_||(_=[])).push(C.endStyle,w.to),C.title&&((f||(f={})).title=C.title),C.attributes)for(var x in C.attributes)(f||(f={}))[x]=C.attributes[x];C.collapsed&&(!d||zt(d.marker,C)<0)&&(d=w)}else w.from>p&&v>w.from&&(v=w.from)}if(_)for(var k=0;k<_.length;k+=2)_[k+1]==v&&(c+=\" \"+_[k]);if(!d||d.from==p)for(var T=0;T<y.length;++T)yr(t,0,y[T]);if(d&&(d.from||0)==p){if(yr(t,(null==d.to?h+1:d.to)-p,d.marker,null==d.from),null==d.to)return;d.to==p&&(d=!1)}}if(p>=h)break;var S=Math.min(h,v);while(1){if(g){var O=p+g.length;if(!d){var D=O>S?g.slice(0,S-p):g;t.addToken(t,D,a?a+l:l,u,p+D.length==v?c:\"\",s,f)}if(O>=S){g=g.slice(S-p),p=S;break}p=O,u=\"\"}g=i.slice(o,o=r[m++]),a=fr(r[m++],t.cm.options)}}else for(var M=1;M<r.length;M+=2)t.addToken(t,i.slice(o,o=r[M]),fr(r[M+1],t.cm.options))}function br(e,t,r){this.line=t,this.rest=Zt(t),this.size=this.rest?et(G(this.rest))-r+1:1,this.node=this.text=null,this.hidden=rr(e,t)}function wr(e,t,r){for(var n,i=[],o=t;o<r;o=n){var a=new br(e.doc,Xe(e.doc,o),o);n=o+a.size,i.push(a)}return i}var Cr=null;function xr(e){Cr?Cr.ops.push(e):e.ownsGroup=Cr={ops:[e],delayedCallbacks:[]}}function kr(e){var t=e.delayedCallbacks,r=0;do{for(;r<t.length;r++)t[r].call(null);for(var n=0;n<e.ops.length;n++){var i=e.ops[n];if(i.cursorActivityHandlers)while(i.cursorActivityCalled<i.cursorActivityHandlers.length)i.cursorActivityHandlers[i.cursorActivityCalled++].call(null,i.cm)}}while(r<t.length)}function Tr(e,t){var r=e.ownsGroup;if(r)try{kr(r)}finally{Cr=null,t(r)}}var Sr=null;function Or(e,t){var r=me(e,t);if(r.length){var n,i=Array.prototype.slice.call(arguments,2);Cr?n=Cr.delayedCallbacks:Sr?n=Sr:(n=Sr=[],setTimeout(Dr,0));for(var o=function(e){n.push((function(){return r[e].apply(null,i)}))},a=0;a<r.length;++a)o(a)}}function Dr(){var e=Sr;Sr=null;for(var t=0;t<e.length;++t)e[t]()}function Mr(e,t,r,n){for(var i=0;i<t.changes.length;i++){var o=t.changes[i];\"text\"==o?Lr(e,t):\"gutter\"==o?Rr(e,t,r,n):\"class\"==o?Pr(e,t):\"widget\"==o&&Ir(e,t,n)}t.changes=null}function Ar(e){return e.node==e.text&&(e.node=M(\"div\",null,null,\"position: relative\"),e.text.parentNode&&e.text.parentNode.replaceChild(e.node,e.text),e.node.appendChild(e.text),a&&s<8&&(e.node.style.zIndex=2)),e.node}function Nr(e,t){var r=t.bgClass?t.bgClass+\" \"+(t.line.bgClass||\"\"):t.line.bgClass;if(r&&(r+=\" CodeMirror-linebackground\"),t.background)r?t.background.className=r:(t.background.parentNode.removeChild(t.background),t.background=null);else if(r){var n=Ar(t);t.background=n.insertBefore(M(\"div\",null,r),n.firstChild),e.display.input.setUneditable(t.background)}}function Er(e,t){var r=e.display.externalMeasured;return r&&r.line==t.line?(e.display.externalMeasured=null,t.measure=r.measure,r.built):hr(e,t)}function Lr(e,t){var r=t.text.className,n=Er(e,t);t.text==t.node&&(t.node=n.pre),t.text.parentNode.replaceChild(n.pre,t.text),t.text=n.pre,n.bgClass!=t.bgClass||n.textClass!=t.textClass?(t.bgClass=n.bgClass,t.textClass=n.textClass,Pr(e,t)):r&&(t.text.className=r)}function Pr(e,t){Nr(e,t),t.line.wrapClass?Ar(t).className=t.line.wrapClass:t.node!=t.text&&(t.node.className=\"\");var r=t.textClass?t.textClass+\" \"+(t.line.textClass||\"\"):t.line.textClass;t.text.className=r||\"\"}function Rr(e,t,r,n){if(t.gutter&&(t.node.removeChild(t.gutter),t.gutter=null),t.gutterBackground&&(t.node.removeChild(t.gutterBackground),t.gutterBackground=null),t.line.gutterClass){var i=Ar(t);t.gutterBackground=M(\"div\",null,\"CodeMirror-gutter-background \"+t.line.gutterClass,\"left: \"+(e.options.fixedGutter?n.fixedPos:-n.gutterTotalWidth)+\"px; width: \"+n.gutterTotalWidth+\"px\"),e.display.input.setUneditable(t.gutterBackground),i.insertBefore(t.gutterBackground,t.text)}var o=t.line.gutterMarkers;if(e.options.lineNumbers||o){var a=Ar(t),s=t.gutter=M(\"div\",null,\"CodeMirror-gutter-wrapper\",\"left: \"+(e.options.fixedGutter?n.fixedPos:-n.gutterTotalWidth)+\"px\");if(e.display.input.setUneditable(s),a.insertBefore(s,t.text),t.line.gutterClass&&(s.className+=\" \"+t.line.gutterClass),!e.options.lineNumbers||o&&o[\"CodeMirror-linenumbers\"]||(t.lineNumber=s.appendChild(M(\"div\",nt(e.options,r),\"CodeMirror-linenumber CodeMirror-gutter-elt\",\"left: \"+n.gutterLeft[\"CodeMirror-linenumbers\"]+\"px; width: \"+e.display.lineNumInnerWidth+\"px\"))),o)for(var l=0;l<e.display.gutterSpecs.length;++l){var c=e.display.gutterSpecs[l].className,u=o.hasOwnProperty(c)&&o[c];u&&s.appendChild(M(\"div\",[u],\"CodeMirror-gutter-elt\",\"left: \"+n.gutterLeft[c]+\"px; width: \"+n.gutterWidth[c]+\"px\"))}}}function Ir(e,t,r){t.alignable&&(t.alignable=null);for(var n=k(\"CodeMirror-linewidget\"),i=t.node.firstChild,o=void 0;i;i=o)o=i.nextSibling,n.test(i.className)&&t.node.removeChild(i);Br(e,t,r)}function Wr(e,t,r,n){var i=Er(e,t);return t.text=t.node=i.pre,i.bgClass&&(t.bgClass=i.bgClass),i.textClass&&(t.textClass=i.textClass),Pr(e,t),Rr(e,t,r,n),Br(e,t,n),t.node}function Br(e,t,r){if(jr(e,t.line,t,r,!0),t.rest)for(var n=0;n<t.rest.length;n++)jr(e,t.rest[n],t,r,!1)}function jr(e,t,r,n,i){if(t.widgets)for(var o=Ar(r),a=0,s=t.widgets;a<s.length;++a){var l=s[a],c=M(\"div\",[l.node],\"CodeMirror-linewidget\"+(l.className?\" \"+l.className:\"\"));l.handleMouseEvents||c.setAttribute(\"cm-ignore-events\",\"true\"),Hr(l,c,r,n),e.display.input.setUneditable(c),i&&l.above?o.insertBefore(c,r.gutter||r.text):o.appendChild(c),Or(l,\"redraw\")}}function Hr(e,t,r,n){if(e.noHScroll){(r.alignable||(r.alignable=[])).push(t);var i=n.wrapperWidth;t.style.left=n.fixedPos+\"px\",e.coverGutter||(i-=n.gutterTotalWidth,t.style.paddingLeft=n.gutterTotalWidth+\"px\"),t.style.width=i+\"px\"}e.coverGutter&&(t.style.zIndex=5,t.style.position=\"relative\",e.noHScroll||(t.style.marginLeft=-n.gutterTotalWidth+\"px\"))}function Fr(e){if(null!=e.height)return e.height;var t=e.doc.cm;if(!t)return 0;if(!N(document.body,e.node)){var r=\"position: relative;\";e.coverGutter&&(r+=\"margin-left: -\"+t.display.gutters.offsetWidth+\"px;\"),e.noHScroll&&(r+=\"width: \"+t.display.wrapper.clientWidth+\"px;\"),D(t.display.measure,M(\"div\",[e.node],null,r))}return e.height=e.node.parentNode.offsetHeight}function $r(e,t){for(var r=Se(t);r!=e.wrapper;r=r.parentNode)if(!r||1==r.nodeType&&\"true\"==r.getAttribute(\"cm-ignore-events\")||r.parentNode==e.sizer&&r!=e.mover)return!0}function Ur(e){return e.lineSpace.offsetTop}function qr(e){return e.mover.offsetHeight-e.lineSpace.offsetHeight}function zr(e){if(e.cachedPaddingH)return e.cachedPaddingH;var t=D(e.measure,M(\"pre\",\"x\",\"CodeMirror-line-like\")),r=window.getComputedStyle?window.getComputedStyle(t):t.currentStyle,n={left:parseInt(r.paddingLeft),right:parseInt(r.paddingRight)};return isNaN(n.left)||isNaN(n.right)||(e.cachedPaddingH=n),n}function Kr(e){return F-e.display.nativeBarWidth}function Jr(e){return e.display.scroller.clientWidth-Kr(e)-e.display.barWidth}function Vr(e){return e.display.scroller.clientHeight-Kr(e)-e.display.barHeight}function Gr(e,t,r){var n=e.options.lineWrapping,i=n&&Jr(e);if(!t.measure.heights||n&&t.measure.width!=i){var o=t.measure.heights=[];if(n){t.measure.width=i;for(var a=t.text.firstChild.getClientRects(),s=0;s<a.length-1;s++){var l=a[s],c=a[s+1];Math.abs(l.bottom-c.bottom)>2&&o.push((l.bottom+c.top)/2-r.top)}}o.push(r.bottom-r.top)}}function Xr(e,t,r){if(e.line==t)return{map:e.measure.map,cache:e.measure.cache};for(var n=0;n<e.rest.length;n++)if(e.rest[n]==t)return{map:e.measure.maps[n],cache:e.measure.caches[n]};for(var i=0;i<e.rest.length;i++)if(et(e.rest[i])>r)return{map:e.measure.maps[i],cache:e.measure.caches[i],before:!0}}function Yr(e,t){t=Yt(t);var r=et(t),n=e.display.externalMeasured=new br(e.doc,t,r);n.lineN=r;var i=n.built=hr(e,n);return n.text=i.pre,D(e.display.lineMeasure,i.pre),n}function Qr(e,t,r,n){return tn(e,en(e,t),r,n)}function Zr(e,t){if(t>=e.display.viewFrom&&t<e.display.viewTo)return e.display.view[Rn(e,t)];var r=e.display.externalMeasured;return r&&t>=r.lineN&&t<r.lineN+r.size?r:void 0}function en(e,t){var r=et(t),n=Zr(e,r);n&&!n.text?n=null:n&&n.changes&&(Mr(e,n,r,An(e)),e.curOp.forceUpdate=!0),n||(n=Yr(e,t));var i=Xr(n,t,r);return{line:t,view:n,rect:null,map:i.map,cache:i.cache,before:i.before,hasHeights:!1}}function tn(e,t,r,n,i){t.before&&(r=-1);var o,a=r+(n||\"\");return t.cache.hasOwnProperty(a)?o=t.cache[a]:(t.rect||(t.rect=t.view.text.getBoundingClientRect()),t.hasHeights||(Gr(e,t.view,t.rect),t.hasHeights=!0),o=sn(e,t,r,n),o.bogus||(t.cache[a]=o)),{left:o.left,right:o.right,top:i?o.rtop:o.top,bottom:i?o.rbottom:o.bottom}}var rn,nn={left:0,right:0,top:0,bottom:0};function on(e,t,r){for(var n,i,o,a,s,l,c=0;c<e.length;c+=3)if(s=e[c],l=e[c+1],t<s?(i=0,o=1,a=\"left\"):t<l?(i=t-s,o=i+1):(c==e.length-3||t==l&&e[c+3]>t)&&(o=l-s,i=o-1,t>=l&&(a=\"right\")),null!=i){if(n=e[c+2],s==l&&r==(n.insertLeft?\"left\":\"right\")&&(a=r),\"left\"==r&&0==i)while(c&&e[c-2]==e[c-3]&&e[c-1].insertLeft)n=e[2+(c-=3)],a=\"left\";if(\"right\"==r&&i==l-s)while(c<e.length-3&&e[c+3]==e[c+4]&&!e[c+5].insertLeft)n=e[(c+=3)+2],a=\"right\";break}return{node:n,start:i,end:o,collapse:a,coverStart:s,coverEnd:l}}function an(e,t){var r=nn;if(\"left\"==t){for(var n=0;n<e.length;n++)if((r=e[n]).left!=r.right)break}else for(var i=e.length-1;i>=0;i--)if((r=e[i]).left!=r.right)break;return r}function sn(e,t,r,n){var i,o=on(t.map,r,n),l=o.node,c=o.start,u=o.end,d=o.collapse;if(3==l.nodeType){for(var f=0;f<4;f++){while(c&&oe(t.line.text.charAt(o.coverStart+c)))--c;while(o.coverStart+u<o.coverEnd&&oe(t.line.text.charAt(o.coverStart+u)))++u;if(i=a&&s<9&&0==c&&u==o.coverEnd-o.coverStart?l.parentNode.getBoundingClientRect():an(T(l,c,u).getClientRects(),n),i.left||i.right||0==c)break;u=c,c-=1,d=\"right\"}a&&s<11&&(i=ln(e.display.measure,i))}else{var h;c>0&&(d=n=\"right\"),i=e.options.lineWrapping&&(h=l.getClientRects()).length>1?h[\"right\"==n?h.length-1:0]:l.getBoundingClientRect()}if(a&&s<9&&!c&&(!i||!i.left&&!i.right)){var p=l.parentNode.getClientRects()[0];i=p?{left:p.left,right:p.left+Mn(e.display),top:p.top,bottom:p.bottom}:nn}for(var m=i.top-t.rect.top,g=i.bottom-t.rect.top,v=(m+g)/2,y=t.view.measure.heights,_=0;_<y.length-1;_++)if(v<y[_])break;var b=_?y[_-1]:0,w=y[_],C={left:(\"right\"==d?i.right:i.left)-t.rect.left,right:(\"left\"==d?i.left:i.right)-t.rect.left,top:b,bottom:w};return i.left||i.right||(C.bogus=!0),e.options.singleCursorHeightPerLine||(C.rtop=m,C.rbottom=g),C}function ln(e,t){if(!window.screen||null==screen.logicalXDPI||screen.logicalXDPI==screen.deviceXDPI||!We(e))return t;var r=screen.logicalXDPI/screen.deviceXDPI,n=screen.logicalYDPI/screen.deviceYDPI;return{left:t.left*r,right:t.right*r,top:t.top*n,bottom:t.bottom*n}}function cn(e){if(e.measure&&(e.measure.cache={},e.measure.heights=null,e.rest))for(var t=0;t<e.rest.length;t++)e.measure.caches[t]={}}function un(e){e.display.externalMeasure=null,O(e.display.lineMeasure);for(var t=0;t<e.display.view.length;t++)cn(e.display.view[t])}function dn(e){un(e),e.display.cachedCharWidth=e.display.cachedTextHeight=e.display.cachedPaddingH=null,e.options.lineWrapping||(e.display.maxLineChanged=!0),e.display.lineNumChars=null}function fn(){return u&&g?-(document.body.getBoundingClientRect().left-parseInt(getComputedStyle(document.body).marginLeft)):window.pageXOffset||(document.documentElement||document.body).scrollLeft}function hn(){return u&&g?-(document.body.getBoundingClientRect().top-parseInt(getComputedStyle(document.body).marginTop)):window.pageYOffset||(document.documentElement||document.body).scrollTop}function pn(e){var t=0;if(e.widgets)for(var r=0;r<e.widgets.length;++r)e.widgets[r].above&&(t+=Fr(e.widgets[r]));return t}function mn(e,t,r,n,i){if(!i){var o=pn(t);r.top+=o,r.bottom+=o}if(\"line\"==n)return r;n||(n=\"local\");var a=ir(t);if(\"local\"==n?a+=Ur(e.display):a-=e.display.viewOffset,\"page\"==n||\"window\"==n){var s=e.display.lineSpace.getBoundingClientRect();a+=s.top+(\"window\"==n?0:hn());var l=s.left+(\"window\"==n?0:fn());r.left+=l,r.right+=l}return r.top+=a,r.bottom+=a,r}function gn(e,t,r){if(\"div\"==r)return t;var n=t.left,i=t.top;if(\"page\"==r)n-=fn(),i-=hn();else if(\"local\"==r||!r){var o=e.display.sizer.getBoundingClientRect();n+=o.left,i+=o.top}var a=e.display.lineSpace.getBoundingClientRect();return{left:n-a.left,top:i-a.top}}function vn(e,t,r,n,i){return n||(n=Xe(e.doc,t.line)),mn(e,n,Qr(e,n,t.ch,i),r)}function yn(e,t,r,n,i,o){function a(t,a){var s=tn(e,i,t,a?\"right\":\"left\",o);return a?s.left=s.right:s.right=s.left,mn(e,n,s,r)}n=n||Xe(e.doc,t.line),i||(i=en(e,n));var s=fe(n,e.doc.direction),l=t.ch,c=t.sticky;if(l>=n.text.length?(l=n.text.length,c=\"before\"):l<=0&&(l=0,c=\"after\"),!s)return a(\"before\"==c?l-1:l,\"before\"==c);function u(e,t,r){var n=s[t],i=1==n.level;return a(r?e-1:e,i!=r)}var d=ue(s,l,c),f=ce,h=u(l,d,\"before\"==c);return null!=f&&(h.other=u(l,f,\"before\"!=c)),h}function _n(e,t){var r=0;t=dt(e.doc,t),e.options.lineWrapping||(r=Mn(e.display)*t.ch);var n=Xe(e.doc,t.line),i=ir(n)+Ur(e.display);return{left:r,right:r,top:i,bottom:i+n.height}}function bn(e,t,r,n,i){var o=it(e,t,r);return o.xRel=i,n&&(o.outside=n),o}function wn(e,t,r){var n=e.doc;if(r+=e.display.viewOffset,r<0)return bn(n.first,0,null,-1,-1);var i=tt(n,r),o=n.first+n.size-1;if(i>o)return bn(n.first+n.size-1,Xe(n,o).text.length,null,1,1);t<0&&(t=0);for(var a=Xe(n,i);;){var s=Tn(e,a,i,t,r),l=Gt(a,s.ch+(s.xRel>0||s.outside>0?1:0));if(!l)return s;var c=l.find(1);if(c.line==i)return c;a=Xe(n,i=c.line)}}function Cn(e,t,r,n){n-=pn(t);var i=t.text.length,o=se((function(t){return tn(e,r,t-1).bottom<=n}),i,0);return i=se((function(t){return tn(e,r,t).top>n}),o,i),{begin:o,end:i}}function xn(e,t,r,n){r||(r=en(e,t));var i=mn(e,t,tn(e,r,n),\"line\").top;return Cn(e,t,r,i)}function kn(e,t,r,n){return!(e.bottom<=r)&&(e.top>r||(n?e.left:e.right)>t)}function Tn(e,t,r,n,i){i-=ir(t);var o=en(e,t),a=pn(t),s=0,l=t.text.length,c=!0,u=fe(t,e.doc.direction);if(u){var d=(e.options.lineWrapping?On:Sn)(e,t,r,o,u,n,i);c=1!=d.level,s=c?d.from:d.to-1,l=c?d.to:d.from-1}var f,h,p=null,m=null,g=se((function(t){var r=tn(e,o,t);return r.top+=a,r.bottom+=a,!!kn(r,n,i,!1)&&(r.top<=i&&r.left<=n&&(p=t,m=r),!0)}),s,l),v=!1;if(m){var y=n-m.left<m.right-n,_=y==c;g=p+(_?0:1),h=_?\"after\":\"before\",f=y?m.left:m.right}else{c||g!=l&&g!=s||g++,h=0==g?\"after\":g==t.text.length?\"before\":tn(e,o,g-(c?1:0)).bottom+a<=i==c?\"after\":\"before\";var b=yn(e,it(r,g,h),\"line\",t,o);f=b.left,v=i<b.top?-1:i>=b.bottom?1:0}return g=ae(t.text,g,1),bn(r,g,h,v,n-f)}function Sn(e,t,r,n,i,o,a){var s=se((function(s){var l=i[s],c=1!=l.level;return kn(yn(e,it(r,c?l.to:l.from,c?\"before\":\"after\"),\"line\",t,n),o,a,!0)}),0,i.length-1),l=i[s];if(s>0){var c=1!=l.level,u=yn(e,it(r,c?l.from:l.to,c?\"after\":\"before\"),\"line\",t,n);kn(u,o,a,!0)&&u.top>a&&(l=i[s-1])}return l}function On(e,t,r,n,i,o,a){var s=Cn(e,t,n,a),l=s.begin,c=s.end;/\\s/.test(t.text.charAt(c-1))&&c--;for(var u=null,d=null,f=0;f<i.length;f++){var h=i[f];if(!(h.from>=c||h.to<=l)){var p=1!=h.level,m=tn(e,n,p?Math.min(c,h.to)-1:Math.max(l,h.from)).right,g=m<o?o-m+1e9:m-o;(!u||d>g)&&(u=h,d=g)}}return u||(u=i[i.length-1]),u.from<l&&(u={from:l,to:u.to,level:u.level}),u.to>c&&(u={from:u.from,to:c,level:u.level}),u}function Dn(e){if(null!=e.cachedTextHeight)return e.cachedTextHeight;if(null==rn){rn=M(\"pre\",null,\"CodeMirror-line-like\");for(var t=0;t<49;++t)rn.appendChild(document.createTextNode(\"x\")),rn.appendChild(M(\"br\"));rn.appendChild(document.createTextNode(\"x\"))}D(e.measure,rn);var r=rn.offsetHeight/50;return r>3&&(e.cachedTextHeight=r),O(e.measure),r||1}function Mn(e){if(null!=e.cachedCharWidth)return e.cachedCharWidth;var t=M(\"span\",\"xxxxxxxxxx\"),r=M(\"pre\",[t],\"CodeMirror-line-like\");D(e.measure,r);var n=t.getBoundingClientRect(),i=(n.right-n.left)/10;return i>2&&(e.cachedCharWidth=i),i||10}function An(e){for(var t=e.display,r={},n={},i=t.gutters.clientLeft,o=t.gutters.firstChild,a=0;o;o=o.nextSibling,++a){var s=e.display.gutterSpecs[a].className;r[s]=o.offsetLeft+o.clientLeft+i,n[s]=o.clientWidth}return{fixedPos:Nn(t),gutterTotalWidth:t.gutters.offsetWidth,gutterLeft:r,gutterWidth:n,wrapperWidth:t.wrapper.clientWidth}}function Nn(e){return e.scroller.getBoundingClientRect().left-e.sizer.getBoundingClientRect().left}function En(e){var t=Dn(e.display),r=e.options.lineWrapping,n=r&&Math.max(5,e.display.scroller.clientWidth/Mn(e.display)-3);return function(i){if(rr(e.doc,i))return 0;var o=0;if(i.widgets)for(var a=0;a<i.widgets.length;a++)i.widgets[a].height&&(o+=i.widgets[a].height);return r?o+(Math.ceil(i.text.length/n)||1)*t:o+t}}function Ln(e){var t=e.doc,r=En(e);t.iter((function(e){var t=r(e);t!=e.height&&Ze(e,t)}))}function Pn(e,t,r,n){var i=e.display;if(!r&&\"true\"==Se(t).getAttribute(\"cm-not-content\"))return null;var o,a,s=i.lineSpace.getBoundingClientRect();try{o=t.clientX-s.left,a=t.clientY-s.top}catch(d){return null}var l,c=wn(e,o,a);if(n&&c.xRel>0&&(l=Xe(e.doc,c.line).text).length==c.ch){var u=B(l,l.length,e.options.tabSize)-l.length;c=it(c.line,Math.max(0,Math.round((o-zr(e.display).left)/Mn(e.display))-u))}return c}function Rn(e,t){if(t>=e.display.viewTo)return null;if(t-=e.display.viewFrom,t<0)return null;for(var r=e.display.view,n=0;n<r.length;n++)if(t-=r[n].size,t<0)return n}function In(e,t,r,n){null==t&&(t=e.doc.first),null==r&&(r=e.doc.first+e.doc.size),n||(n=0);var i=e.display;if(n&&r<i.viewTo&&(null==i.updateLineNumbers||i.updateLineNumbers>t)&&(i.updateLineNumbers=t),e.curOp.viewChanged=!0,t>=i.viewTo)Mt&&er(e.doc,t)<i.viewTo&&Bn(e);else if(r<=i.viewFrom)Mt&&tr(e.doc,r+n)>i.viewFrom?Bn(e):(i.viewFrom+=n,i.viewTo+=n);else if(t<=i.viewFrom&&r>=i.viewTo)Bn(e);else if(t<=i.viewFrom){var o=jn(e,r,r+n,1);o?(i.view=i.view.slice(o.index),i.viewFrom=o.lineN,i.viewTo+=n):Bn(e)}else if(r>=i.viewTo){var a=jn(e,t,t,-1);a?(i.view=i.view.slice(0,a.index),i.viewTo=a.lineN):Bn(e)}else{var s=jn(e,t,t,-1),l=jn(e,r,r+n,1);s&&l?(i.view=i.view.slice(0,s.index).concat(wr(e,s.lineN,l.lineN)).concat(i.view.slice(l.index)),i.viewTo+=n):Bn(e)}var c=i.externalMeasured;c&&(r<c.lineN?c.lineN+=n:t<c.lineN+c.size&&(i.externalMeasured=null))}function Wn(e,t,r){e.curOp.viewChanged=!0;var n=e.display,i=e.display.externalMeasured;if(i&&t>=i.lineN&&t<i.lineN+i.size&&(n.externalMeasured=null),!(t<n.viewFrom||t>=n.viewTo)){var o=n.view[Rn(e,t)];if(null!=o.node){var a=o.changes||(o.changes=[]);-1==H(a,r)&&a.push(r)}}}function Bn(e){e.display.viewFrom=e.display.viewTo=e.doc.first,e.display.view=[],e.display.viewOffset=0}function jn(e,t,r,n){var i,o=Rn(e,t),a=e.display.view;if(!Mt||r==e.doc.first+e.doc.size)return{index:o,lineN:r};for(var s=e.display.viewFrom,l=0;l<o;l++)s+=a[l].size;if(s!=t){if(n>0){if(o==a.length-1)return null;i=s+a[o].size-t,o++}else i=s-t;t+=i,r+=i}while(er(e.doc,r)!=r){if(o==(n<0?0:a.length-1))return null;r+=n*a[o-(n<0?1:0)].size,o+=n}return{index:o,lineN:r}}function Hn(e,t,r){var n=e.display,i=n.view;0==i.length||t>=n.viewTo||r<=n.viewFrom?(n.view=wr(e,t,r),n.viewFrom=t):(n.viewFrom>t?n.view=wr(e,t,n.viewFrom).concat(n.view):n.viewFrom<t&&(n.view=n.view.slice(Rn(e,t))),n.viewFrom=t,n.viewTo<r?n.view=n.view.concat(wr(e,n.viewTo,r)):n.viewTo>r&&(n.view=n.view.slice(0,Rn(e,r)))),n.viewTo=r}function Fn(e){for(var t=e.display.view,r=0,n=0;n<t.length;n++){var i=t[n];i.hidden||i.node&&!i.changes||++r}return r}function $n(e){e.display.input.showSelection(e.display.input.prepareSelection())}function Un(e,t){void 0===t&&(t=!0);for(var r=e.doc,n={},i=n.cursors=document.createDocumentFragment(),o=n.selection=document.createDocumentFragment(),a=0;a<r.sel.ranges.length;a++)if(t||a!=r.sel.primIndex){var s=r.sel.ranges[a];if(!(s.from().line>=e.display.viewTo||s.to().line<e.display.viewFrom)){var l=s.empty();(l||e.options.showCursorWhenSelecting)&&qn(e,s.head,i),l||Kn(e,s,o)}}return n}function qn(e,t,r){var n=yn(e,t,\"div\",null,null,!e.options.singleCursorHeightPerLine),i=r.appendChild(M(\"div\",\" \",\"CodeMirror-cursor\"));if(i.style.left=n.left+\"px\",i.style.top=n.top+\"px\",i.style.height=Math.max(0,n.bottom-n.top)*e.options.cursorHeight+\"px\",n.other){var o=r.appendChild(M(\"div\",\" \",\"CodeMirror-cursor CodeMirror-secondarycursor\"));o.style.display=\"\",o.style.left=n.other.left+\"px\",o.style.top=n.other.top+\"px\",o.style.height=.85*(n.other.bottom-n.other.top)+\"px\"}}function zn(e,t){return e.top-t.top||e.left-t.left}function Kn(e,t,r){var n=e.display,i=e.doc,o=document.createDocumentFragment(),a=zr(e.display),s=a.left,l=Math.max(n.sizerWidth,Jr(e)-n.sizer.offsetLeft)-a.right,c=\"ltr\"==i.direction;function u(e,t,r,n){t<0&&(t=0),t=Math.round(t),n=Math.round(n),o.appendChild(M(\"div\",null,\"CodeMirror-selected\",\"position: absolute; left: \"+e+\"px;\\n                             top: \"+t+\"px; width: \"+(null==r?l-e:r)+\"px;\\n                             height: \"+(n-t)+\"px\"))}function d(t,r,n){var o,a,d=Xe(i,t),f=d.text.length;function h(r,n){return vn(e,it(t,r),\"div\",d,n)}function p(t,r,n){var i=xn(e,d,null,t),o=\"ltr\"==r==(\"after\"==n)?\"left\":\"right\",a=\"after\"==n?i.begin:i.end-(/\\s/.test(d.text.charAt(i.end-1))?2:1);return h(a,o)[o]}var m=fe(d,i.direction);return le(m,r||0,null==n?f:n,(function(e,t,i,d){var g=\"ltr\"==i,v=h(e,g?\"left\":\"right\"),y=h(t-1,g?\"right\":\"left\"),_=null==r&&0==e,b=null==n&&t==f,w=0==d,C=!m||d==m.length-1;if(y.top-v.top<=3){var x=(c?_:b)&&w,k=(c?b:_)&&C,T=x?s:(g?v:y).left,S=k?l:(g?y:v).right;u(T,v.top,S-T,v.bottom)}else{var O,D,M,A;g?(O=c&&_&&w?s:v.left,D=c?l:p(e,i,\"before\"),M=c?s:p(t,i,\"after\"),A=c&&b&&C?l:y.right):(O=c?p(e,i,\"before\"):s,D=!c&&_&&w?l:v.right,M=!c&&b&&C?s:y.left,A=c?p(t,i,\"after\"):l),u(O,v.top,D-O,v.bottom),v.bottom<y.top&&u(s,v.bottom,null,y.top),u(M,y.top,A-M,y.bottom)}(!o||zn(v,o)<0)&&(o=v),zn(y,o)<0&&(o=y),(!a||zn(v,a)<0)&&(a=v),zn(y,a)<0&&(a=y)})),{start:o,end:a}}var f=t.from(),h=t.to();if(f.line==h.line)d(f.line,f.ch,h.ch);else{var p=Xe(i,f.line),m=Xe(i,h.line),g=Yt(p)==Yt(m),v=d(f.line,f.ch,g?p.text.length+1:null).end,y=d(h.line,g?0:null,h.ch).start;g&&(v.top<y.top-2?(u(v.right,v.top,null,v.bottom),u(s,y.top,y.left,y.bottom)):u(v.right,v.top,y.left-v.right,v.bottom)),v.bottom<y.top&&u(s,v.bottom,null,y.top)}r.appendChild(o)}function Jn(e){if(e.state.focused){var t=e.display;clearInterval(t.blinker);var r=!0;t.cursorDiv.style.visibility=\"\",e.options.cursorBlinkRate>0?t.blinker=setInterval((function(){e.hasFocus()||Yn(e),t.cursorDiv.style.visibility=(r=!r)?\"\":\"hidden\"}),e.options.cursorBlinkRate):e.options.cursorBlinkRate<0&&(t.cursorDiv.style.visibility=\"hidden\")}}function Vn(e){e.hasFocus()||(e.display.input.focus(),e.state.focused||Xn(e))}function Gn(e){e.state.delayingBlurEvent=!0,setTimeout((function(){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1,e.state.focused&&Yn(e))}),100)}function Xn(e,t){e.state.delayingBlurEvent&&!e.state.draggingText&&(e.state.delayingBlurEvent=!1),\"nocursor\"!=e.options.readOnly&&(e.state.focused||(ve(e,\"focus\",e,t),e.state.focused=!0,L(e.display.wrapper,\"CodeMirror-focused\"),e.curOp||e.display.selForContextMenu==e.doc.sel||(e.display.input.reset(),l&&setTimeout((function(){return e.display.input.reset(!0)}),20)),e.display.input.receivedFocus()),Jn(e))}function Yn(e,t){e.state.delayingBlurEvent||(e.state.focused&&(ve(e,\"blur\",e,t),e.state.focused=!1,S(e.display.wrapper,\"CodeMirror-focused\")),clearInterval(e.display.blinker),setTimeout((function(){e.state.focused||(e.display.shift=!1)}),150))}function Qn(e){for(var t=e.display,r=t.lineDiv.offsetTop,n=0;n<t.view.length;n++){var i=t.view[n],o=e.options.lineWrapping,l=void 0,c=0;if(!i.hidden){if(a&&s<8){var u=i.node.offsetTop+i.node.offsetHeight;l=u-r,r=u}else{var d=i.node.getBoundingClientRect();l=d.bottom-d.top,!o&&i.text.firstChild&&(c=i.text.firstChild.getBoundingClientRect().right-d.left-1)}var f=i.line.height-l;if((f>.005||f<-.005)&&(Ze(i.line,l),Zn(i.line),i.rest))for(var h=0;h<i.rest.length;h++)Zn(i.rest[h]);if(c>e.display.sizerWidth){var p=Math.ceil(c/Mn(e.display));p>e.display.maxLineLength&&(e.display.maxLineLength=p,e.display.maxLine=i.line,e.display.maxLineChanged=!0)}}}}function Zn(e){if(e.widgets)for(var t=0;t<e.widgets.length;++t){var r=e.widgets[t],n=r.node.parentNode;n&&(r.height=n.offsetHeight)}}function ei(e,t,r){var n=r&&null!=r.top?Math.max(0,r.top):e.scroller.scrollTop;n=Math.floor(n-Ur(e));var i=r&&null!=r.bottom?r.bottom:n+e.wrapper.clientHeight,o=tt(t,n),a=tt(t,i);if(r&&r.ensure){var s=r.ensure.from.line,l=r.ensure.to.line;s<o?(o=s,a=tt(t,ir(Xe(t,s))+e.wrapper.clientHeight)):Math.min(l,t.lastLine())>=a&&(o=tt(t,ir(Xe(t,l))-e.wrapper.clientHeight),a=l)}return{from:o,to:Math.max(a,o+1)}}function ti(e,t){if(!ye(e,\"scrollCursorIntoView\")){var r=e.display,n=r.sizer.getBoundingClientRect(),i=null;if(t.top+n.top<0?i=!0:t.bottom+n.top>(window.innerHeight||document.documentElement.clientHeight)&&(i=!1),null!=i&&!p){var o=M(\"div\",\"​\",null,\"position: absolute;\\n                         top: \"+(t.top-r.viewOffset-Ur(e.display))+\"px;\\n                         height: \"+(t.bottom-t.top+Kr(e)+r.barHeight)+\"px;\\n                         left: \"+t.left+\"px; width: \"+Math.max(2,t.right-t.left)+\"px;\");e.display.lineSpace.appendChild(o),o.scrollIntoView(i),e.display.lineSpace.removeChild(o)}}}function ri(e,t,r,n){var i;null==n&&(n=0),e.options.lineWrapping||t!=r||(t=t.ch?it(t.line,\"before\"==t.sticky?t.ch-1:t.ch,\"after\"):t,r=\"before\"==t.sticky?it(t.line,t.ch+1,\"before\"):t);for(var o=0;o<5;o++){var a=!1,s=yn(e,t),l=r&&r!=t?yn(e,r):s;i={left:Math.min(s.left,l.left),top:Math.min(s.top,l.top)-n,right:Math.max(s.left,l.left),bottom:Math.max(s.bottom,l.bottom)+n};var c=ii(e,i),u=e.doc.scrollTop,d=e.doc.scrollLeft;if(null!=c.scrollTop&&(di(e,c.scrollTop),Math.abs(e.doc.scrollTop-u)>1&&(a=!0)),null!=c.scrollLeft&&(hi(e,c.scrollLeft),Math.abs(e.doc.scrollLeft-d)>1&&(a=!0)),!a)break}return i}function ni(e,t){var r=ii(e,t);null!=r.scrollTop&&di(e,r.scrollTop),null!=r.scrollLeft&&hi(e,r.scrollLeft)}function ii(e,t){var r=e.display,n=Dn(e.display);t.top<0&&(t.top=0);var i=e.curOp&&null!=e.curOp.scrollTop?e.curOp.scrollTop:r.scroller.scrollTop,o=Vr(e),a={};t.bottom-t.top>o&&(t.bottom=t.top+o);var s=e.doc.height+qr(r),l=t.top<n,c=t.bottom>s-n;if(t.top<i)a.scrollTop=l?0:t.top;else if(t.bottom>i+o){var u=Math.min(t.top,(c?s:t.bottom)-o);u!=i&&(a.scrollTop=u)}var d=e.options.fixedGutter?0:r.gutters.offsetWidth,f=e.curOp&&null!=e.curOp.scrollLeft?e.curOp.scrollLeft:r.scroller.scrollLeft-d,h=Jr(e)-r.gutters.offsetWidth,p=t.right-t.left>h;return p&&(t.right=t.left+h),t.left<10?a.scrollLeft=0:t.left<f?a.scrollLeft=Math.max(0,t.left+d-(p?0:10)):t.right>h+f-3&&(a.scrollLeft=t.right+(p?0:10)-h),a}function oi(e,t){null!=t&&(ci(e),e.curOp.scrollTop=(null==e.curOp.scrollTop?e.doc.scrollTop:e.curOp.scrollTop)+t)}function ai(e){ci(e);var t=e.getCursor();e.curOp.scrollToPos={from:t,to:t,margin:e.options.cursorScrollMargin}}function si(e,t,r){null==t&&null==r||ci(e),null!=t&&(e.curOp.scrollLeft=t),null!=r&&(e.curOp.scrollTop=r)}function li(e,t){ci(e),e.curOp.scrollToPos=t}function ci(e){var t=e.curOp.scrollToPos;if(t){e.curOp.scrollToPos=null;var r=_n(e,t.from),n=_n(e,t.to);ui(e,r,n,t.margin)}}function ui(e,t,r,n){var i=ii(e,{left:Math.min(t.left,r.left),top:Math.min(t.top,r.top)-n,right:Math.max(t.right,r.right),bottom:Math.max(t.bottom,r.bottom)+n});si(e,i.scrollLeft,i.scrollTop)}function di(e,t){Math.abs(e.doc.scrollTop-t)<2||(r||$i(e,{top:t}),fi(e,t,!0),r&&$i(e),Pi(e,100))}function fi(e,t,r){t=Math.max(0,Math.min(e.display.scroller.scrollHeight-e.display.scroller.clientHeight,t)),(e.display.scroller.scrollTop!=t||r)&&(e.doc.scrollTop=t,e.display.scrollbars.setScrollTop(t),e.display.scroller.scrollTop!=t&&(e.display.scroller.scrollTop=t))}function hi(e,t,r,n){t=Math.max(0,Math.min(t,e.display.scroller.scrollWidth-e.display.scroller.clientWidth)),(r?t==e.doc.scrollLeft:Math.abs(e.doc.scrollLeft-t)<2)&&!n||(e.doc.scrollLeft=t,Ki(e),e.display.scroller.scrollLeft!=t&&(e.display.scroller.scrollLeft=t),e.display.scrollbars.setScrollLeft(t))}function pi(e){var t=e.display,r=t.gutters.offsetWidth,n=Math.round(e.doc.height+qr(e.display));return{clientHeight:t.scroller.clientHeight,viewHeight:t.wrapper.clientHeight,scrollWidth:t.scroller.scrollWidth,clientWidth:t.scroller.clientWidth,viewWidth:t.wrapper.clientWidth,barLeft:e.options.fixedGutter?r:0,docHeight:n,scrollHeight:n+Kr(e)+t.barHeight,nativeBarWidth:t.nativeBarWidth,gutterWidth:r}}var mi=function(e,t,r){this.cm=r;var n=this.vert=M(\"div\",[M(\"div\",null,null,\"min-width: 1px\")],\"CodeMirror-vscrollbar\"),i=this.horiz=M(\"div\",[M(\"div\",null,null,\"height: 100%; min-height: 1px\")],\"CodeMirror-hscrollbar\");n.tabIndex=i.tabIndex=-1,e(n),e(i),pe(n,\"scroll\",(function(){n.clientHeight&&t(n.scrollTop,\"vertical\")})),pe(i,\"scroll\",(function(){i.clientWidth&&t(i.scrollLeft,\"horizontal\")})),this.checkedZeroWidth=!1,a&&s<8&&(this.horiz.style.minHeight=this.vert.style.minWidth=\"18px\")};mi.prototype.update=function(e){var t=e.scrollWidth>e.clientWidth+1,r=e.scrollHeight>e.clientHeight+1,n=e.nativeBarWidth;if(r){this.vert.style.display=\"block\",this.vert.style.bottom=t?n+\"px\":\"0\";var i=e.viewHeight-(t?n:0);this.vert.firstChild.style.height=Math.max(0,e.scrollHeight-e.clientHeight+i)+\"px\"}else this.vert.style.display=\"\",this.vert.firstChild.style.height=\"0\";if(t){this.horiz.style.display=\"block\",this.horiz.style.right=r?n+\"px\":\"0\",this.horiz.style.left=e.barLeft+\"px\";var o=e.viewWidth-e.barLeft-(r?n:0);this.horiz.firstChild.style.width=Math.max(0,e.scrollWidth-e.clientWidth+o)+\"px\"}else this.horiz.style.display=\"\",this.horiz.firstChild.style.width=\"0\";return!this.checkedZeroWidth&&e.clientHeight>0&&(0==n&&this.zeroWidthHack(),this.checkedZeroWidth=!0),{right:r?n:0,bottom:t?n:0}},mi.prototype.setScrollLeft=function(e){this.horiz.scrollLeft!=e&&(this.horiz.scrollLeft=e),this.disableHoriz&&this.enableZeroWidthBar(this.horiz,this.disableHoriz,\"horiz\")},mi.prototype.setScrollTop=function(e){this.vert.scrollTop!=e&&(this.vert.scrollTop=e),this.disableVert&&this.enableZeroWidthBar(this.vert,this.disableVert,\"vert\")},mi.prototype.zeroWidthHack=function(){var e=y&&!h?\"12px\":\"18px\";this.horiz.style.height=this.vert.style.width=e,this.horiz.style.pointerEvents=this.vert.style.pointerEvents=\"none\",this.disableHoriz=new j,this.disableVert=new j},mi.prototype.enableZeroWidthBar=function(e,t,r){function n(){var i=e.getBoundingClientRect(),o=\"vert\"==r?document.elementFromPoint(i.right-1,(i.top+i.bottom)/2):document.elementFromPoint((i.right+i.left)/2,i.bottom-1);o!=e?e.style.pointerEvents=\"none\":t.set(1e3,n)}e.style.pointerEvents=\"auto\",t.set(1e3,n)},mi.prototype.clear=function(){var e=this.horiz.parentNode;e.removeChild(this.horiz),e.removeChild(this.vert)};var gi=function(){};function vi(e,t){t||(t=pi(e));var r=e.display.barWidth,n=e.display.barHeight;yi(e,t);for(var i=0;i<4&&r!=e.display.barWidth||n!=e.display.barHeight;i++)r!=e.display.barWidth&&e.options.lineWrapping&&Qn(e),yi(e,pi(e)),r=e.display.barWidth,n=e.display.barHeight}function yi(e,t){var r=e.display,n=r.scrollbars.update(t);r.sizer.style.paddingRight=(r.barWidth=n.right)+\"px\",r.sizer.style.paddingBottom=(r.barHeight=n.bottom)+\"px\",r.heightForcer.style.borderBottom=n.bottom+\"px solid transparent\",n.right&&n.bottom?(r.scrollbarFiller.style.display=\"block\",r.scrollbarFiller.style.height=n.bottom+\"px\",r.scrollbarFiller.style.width=n.right+\"px\"):r.scrollbarFiller.style.display=\"\",n.bottom&&e.options.coverGutterNextToScrollbar&&e.options.fixedGutter?(r.gutterFiller.style.display=\"block\",r.gutterFiller.style.height=n.bottom+\"px\",r.gutterFiller.style.width=t.gutterWidth+\"px\"):r.gutterFiller.style.display=\"\"}gi.prototype.update=function(){return{bottom:0,right:0}},gi.prototype.setScrollLeft=function(){},gi.prototype.setScrollTop=function(){},gi.prototype.clear=function(){};var _i={native:mi,null:gi};function bi(e){e.display.scrollbars&&(e.display.scrollbars.clear(),e.display.scrollbars.addClass&&S(e.display.wrapper,e.display.scrollbars.addClass)),e.display.scrollbars=new _i[e.options.scrollbarStyle]((function(t){e.display.wrapper.insertBefore(t,e.display.scrollbarFiller),pe(t,\"mousedown\",(function(){e.state.focused&&setTimeout((function(){return e.display.input.focus()}),0)})),t.setAttribute(\"cm-not-content\",\"true\")}),(function(t,r){\"horizontal\"==r?hi(e,t):di(e,t)}),e),e.display.scrollbars.addClass&&L(e.display.wrapper,e.display.scrollbars.addClass)}var wi=0;function Ci(e){e.curOp={cm:e,viewChanged:!1,startHeight:e.doc.height,forceUpdate:!1,updateInput:0,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++wi},xr(e.curOp)}function xi(e){var t=e.curOp;t&&Tr(t,(function(e){for(var t=0;t<e.ops.length;t++)e.ops[t].cm.curOp=null;ki(e)}))}function ki(e){for(var t=e.ops,r=0;r<t.length;r++)Ti(t[r]);for(var n=0;n<t.length;n++)Si(t[n]);for(var i=0;i<t.length;i++)Oi(t[i]);for(var o=0;o<t.length;o++)Di(t[o]);for(var a=0;a<t.length;a++)Mi(t[a])}function Ti(e){var t=e.cm,r=t.display;Wi(t),e.updateMaxLine&&ar(t),e.mustUpdate=e.viewChanged||e.forceUpdate||null!=e.scrollTop||e.scrollToPos&&(e.scrollToPos.from.line<r.viewFrom||e.scrollToPos.to.line>=r.viewTo)||r.maxLineChanged&&t.options.lineWrapping,e.update=e.mustUpdate&&new Ii(t,e.mustUpdate&&{top:e.scrollTop,ensure:e.scrollToPos},e.forceUpdate)}function Si(e){e.updatedDisplay=e.mustUpdate&&Hi(e.cm,e.update)}function Oi(e){var t=e.cm,r=t.display;e.updatedDisplay&&Qn(t),e.barMeasure=pi(t),r.maxLineChanged&&!t.options.lineWrapping&&(e.adjustWidthTo=Qr(t,r.maxLine,r.maxLine.text.length).left+3,t.display.sizerWidth=e.adjustWidthTo,e.barMeasure.scrollWidth=Math.max(r.scroller.clientWidth,r.sizer.offsetLeft+e.adjustWidthTo+Kr(t)+t.display.barWidth),e.maxScrollLeft=Math.max(0,r.sizer.offsetLeft+e.adjustWidthTo-Jr(t))),(e.updatedDisplay||e.selectionChanged)&&(e.preparedSelection=r.input.prepareSelection())}function Di(e){var t=e.cm;null!=e.adjustWidthTo&&(t.display.sizer.style.minWidth=e.adjustWidthTo+\"px\",e.maxScrollLeft<t.doc.scrollLeft&&hi(t,Math.min(t.display.scroller.scrollLeft,e.maxScrollLeft),!0),t.display.maxLineChanged=!1);var r=e.focus&&e.focus==E();e.preparedSelection&&t.display.input.showSelection(e.preparedSelection,r),(e.updatedDisplay||e.startHeight!=t.doc.height)&&vi(t,e.barMeasure),e.updatedDisplay&&zi(t,e.barMeasure),e.selectionChanged&&Jn(t),t.state.focused&&e.updateInput&&t.display.input.reset(e.typing),r&&Vn(e.cm)}function Mi(e){var t=e.cm,r=t.display,n=t.doc;if(e.updatedDisplay&&Fi(t,e.update),null==r.wheelStartX||null==e.scrollTop&&null==e.scrollLeft&&!e.scrollToPos||(r.wheelStartX=r.wheelStartY=null),null!=e.scrollTop&&fi(t,e.scrollTop,e.forceScroll),null!=e.scrollLeft&&hi(t,e.scrollLeft,!0,!0),e.scrollToPos){var i=ri(t,dt(n,e.scrollToPos.from),dt(n,e.scrollToPos.to),e.scrollToPos.margin);ti(t,i)}var o=e.maybeHiddenMarkers,a=e.maybeUnhiddenMarkers;if(o)for(var s=0;s<o.length;++s)o[s].lines.length||ve(o[s],\"hide\");if(a)for(var l=0;l<a.length;++l)a[l].lines.length&&ve(a[l],\"unhide\");r.wrapper.offsetHeight&&(n.scrollTop=t.display.scroller.scrollTop),e.changeObjs&&ve(t,\"changes\",t,e.changeObjs),e.update&&e.update.finish()}function Ai(e,t){if(e.curOp)return t();Ci(e);try{return t()}finally{xi(e)}}function Ni(e,t){return function(){if(e.curOp)return t.apply(e,arguments);Ci(e);try{return t.apply(e,arguments)}finally{xi(e)}}}function Ei(e){return function(){if(this.curOp)return e.apply(this,arguments);Ci(this);try{return e.apply(this,arguments)}finally{xi(this)}}}function Li(e){return function(){var t=this.cm;if(!t||t.curOp)return e.apply(this,arguments);Ci(t);try{return e.apply(this,arguments)}finally{xi(t)}}}function Pi(e,t){e.doc.highlightFrontier<e.display.viewTo&&e.state.highlight.set(t,I(Ri,e))}function Ri(e){var t=e.doc;if(!(t.highlightFrontier>=e.display.viewTo)){var r=+new Date+e.options.workTime,n=yt(e,t.highlightFrontier),i=[];t.iter(n.line,Math.min(t.first+t.size,e.display.viewTo+500),(function(o){if(n.line>=e.display.viewFrom){var a=o.styles,s=o.text.length>e.options.maxHighlightLength?Ke(t.mode,n.state):null,l=gt(e,o,n,!0);s&&(n.state=s),o.styles=l.styles;var c=o.styleClasses,u=l.classes;u?o.styleClasses=u:c&&(o.styleClasses=null);for(var d=!a||a.length!=o.styles.length||c!=u&&(!c||!u||c.bgClass!=u.bgClass||c.textClass!=u.textClass),f=0;!d&&f<a.length;++f)d=a[f]!=o.styles[f];d&&i.push(n.line),o.stateAfter=n.save(),n.nextLine()}else o.text.length<=e.options.maxHighlightLength&&_t(e,o.text,n),o.stateAfter=n.line%5==0?n.save():null,n.nextLine();if(+new Date>r)return Pi(e,e.options.workDelay),!0})),t.highlightFrontier=n.line,t.modeFrontier=Math.max(t.modeFrontier,n.line),i.length&&Ai(e,(function(){for(var t=0;t<i.length;t++)Wn(e,i[t],\"text\")}))}}var Ii=function(e,t,r){var n=e.display;this.viewport=t,this.visible=ei(n,e.doc,t),this.editorIsHidden=!n.wrapper.offsetWidth,this.wrapperHeight=n.wrapper.clientHeight,this.wrapperWidth=n.wrapper.clientWidth,this.oldDisplayWidth=Jr(e),this.force=r,this.dims=An(e),this.events=[]};function Wi(e){var t=e.display;!t.scrollbarsClipped&&t.scroller.offsetWidth&&(t.nativeBarWidth=t.scroller.offsetWidth-t.scroller.clientWidth,t.heightForcer.style.height=Kr(e)+\"px\",t.sizer.style.marginBottom=-t.nativeBarWidth+\"px\",t.sizer.style.borderRightWidth=Kr(e)+\"px\",t.scrollbarsClipped=!0)}function Bi(e){if(e.hasFocus())return null;var t=E();if(!t||!N(e.display.lineDiv,t))return null;var r={activeElt:t};if(window.getSelection){var n=window.getSelection();n.anchorNode&&n.extend&&N(e.display.lineDiv,n.anchorNode)&&(r.anchorNode=n.anchorNode,r.anchorOffset=n.anchorOffset,r.focusNode=n.focusNode,r.focusOffset=n.focusOffset)}return r}function ji(e){if(e&&e.activeElt&&e.activeElt!=E()&&(e.activeElt.focus(),!/^(INPUT|TEXTAREA)$/.test(e.activeElt.nodeName)&&e.anchorNode&&N(document.body,e.anchorNode)&&N(document.body,e.focusNode))){var t=window.getSelection(),r=document.createRange();r.setEnd(e.anchorNode,e.anchorOffset),r.collapse(!1),t.removeAllRanges(),t.addRange(r),t.extend(e.focusNode,e.focusOffset)}}function Hi(e,t){var r=e.display,n=e.doc;if(t.editorIsHidden)return Bn(e),!1;if(!t.force&&t.visible.from>=r.viewFrom&&t.visible.to<=r.viewTo&&(null==r.updateLineNumbers||r.updateLineNumbers>=r.viewTo)&&r.renderedView==r.view&&0==Fn(e))return!1;Ji(e)&&(Bn(e),t.dims=An(e));var i=n.first+n.size,o=Math.max(t.visible.from-e.options.viewportMargin,n.first),a=Math.min(i,t.visible.to+e.options.viewportMargin);r.viewFrom<o&&o-r.viewFrom<20&&(o=Math.max(n.first,r.viewFrom)),r.viewTo>a&&r.viewTo-a<20&&(a=Math.min(i,r.viewTo)),Mt&&(o=er(e.doc,o),a=tr(e.doc,a));var s=o!=r.viewFrom||a!=r.viewTo||r.lastWrapHeight!=t.wrapperHeight||r.lastWrapWidth!=t.wrapperWidth;Hn(e,o,a),r.viewOffset=ir(Xe(e.doc,r.viewFrom)),e.display.mover.style.top=r.viewOffset+\"px\";var l=Fn(e);if(!s&&0==l&&!t.force&&r.renderedView==r.view&&(null==r.updateLineNumbers||r.updateLineNumbers>=r.viewTo))return!1;var c=Bi(e);return l>4&&(r.lineDiv.style.display=\"none\"),Ui(e,r.updateLineNumbers,t.dims),l>4&&(r.lineDiv.style.display=\"\"),r.renderedView=r.view,ji(c),O(r.cursorDiv),O(r.selectionDiv),r.gutters.style.height=r.sizer.style.minHeight=0,s&&(r.lastWrapHeight=t.wrapperHeight,r.lastWrapWidth=t.wrapperWidth,Pi(e,400)),r.updateLineNumbers=null,!0}function Fi(e,t){for(var r=t.viewport,n=!0;;n=!1){if(n&&e.options.lineWrapping&&t.oldDisplayWidth!=Jr(e))n&&(t.visible=ei(e.display,e.doc,r));else if(r&&null!=r.top&&(r={top:Math.min(e.doc.height+qr(e.display)-Vr(e),r.top)}),t.visible=ei(e.display,e.doc,r),t.visible.from>=e.display.viewFrom&&t.visible.to<=e.display.viewTo)break;if(!Hi(e,t))break;Qn(e);var i=pi(e);$n(e),vi(e,i),zi(e,i),t.force=!1}t.signal(e,\"update\",e),e.display.viewFrom==e.display.reportedViewFrom&&e.display.viewTo==e.display.reportedViewTo||(t.signal(e,\"viewportChange\",e,e.display.viewFrom,e.display.viewTo),e.display.reportedViewFrom=e.display.viewFrom,e.display.reportedViewTo=e.display.viewTo)}function $i(e,t){var r=new Ii(e,t);if(Hi(e,r)){Qn(e),Fi(e,r);var n=pi(e);$n(e),vi(e,n),zi(e,n),r.finish()}}function Ui(e,t,r){var n=e.display,i=e.options.lineNumbers,o=n.lineDiv,a=o.firstChild;function s(t){var r=t.nextSibling;return l&&y&&e.display.currentWheelTarget==t?t.style.display=\"none\":t.parentNode.removeChild(t),r}for(var c=n.view,u=n.viewFrom,d=0;d<c.length;d++){var f=c[d];if(f.hidden);else if(f.node&&f.node.parentNode==o){while(a!=f.node)a=s(a);var h=i&&null!=t&&t<=u&&f.lineNumber;f.changes&&(H(f.changes,\"gutter\")>-1&&(h=!1),Mr(e,f,u,r)),h&&(O(f.lineNumber),f.lineNumber.appendChild(document.createTextNode(nt(e.options,u)))),a=f.node.nextSibling}else{var p=Wr(e,f,u,r);o.insertBefore(p,a)}u+=f.size}while(a)a=s(a)}function qi(e){var t=e.gutters.offsetWidth;e.sizer.style.marginLeft=t+\"px\"}function zi(e,t){e.display.sizer.style.minHeight=t.docHeight+\"px\",e.display.heightForcer.style.top=t.docHeight+\"px\",e.display.gutters.style.height=t.docHeight+e.display.barHeight+Kr(e)+\"px\"}function Ki(e){var t=e.display,r=t.view;if(t.alignWidgets||t.gutters.firstChild&&e.options.fixedGutter){for(var n=Nn(t)-t.scroller.scrollLeft+e.doc.scrollLeft,i=t.gutters.offsetWidth,o=n+\"px\",a=0;a<r.length;a++)if(!r[a].hidden){e.options.fixedGutter&&(r[a].gutter&&(r[a].gutter.style.left=o),r[a].gutterBackground&&(r[a].gutterBackground.style.left=o));var s=r[a].alignable;if(s)for(var l=0;l<s.length;l++)s[l].style.left=o}e.options.fixedGutter&&(t.gutters.style.left=n+i+\"px\")}}function Ji(e){if(!e.options.lineNumbers)return!1;var t=e.doc,r=nt(e.options,t.first+t.size-1),n=e.display;if(r.length!=n.lineNumChars){var i=n.measure.appendChild(M(\"div\",[M(\"div\",r)],\"CodeMirror-linenumber CodeMirror-gutter-elt\")),o=i.firstChild.offsetWidth,a=i.offsetWidth-o;return n.lineGutter.style.width=\"\",n.lineNumInnerWidth=Math.max(o,n.lineGutter.offsetWidth-a)+1,n.lineNumWidth=n.lineNumInnerWidth+a,n.lineNumChars=n.lineNumInnerWidth?r.length:-1,n.lineGutter.style.width=n.lineNumWidth+\"px\",qi(e.display),!0}return!1}function Vi(e,t){for(var r=[],n=!1,i=0;i<e.length;i++){var o=e[i],a=null;if(\"string\"!=typeof o&&(a=o.style,o=o.className),\"CodeMirror-linenumbers\"==o){if(!t)continue;n=!0}r.push({className:o,style:a})}return t&&!n&&r.push({className:\"CodeMirror-linenumbers\",style:null}),r}function Gi(e){var t=e.gutters,r=e.gutterSpecs;O(t),e.lineGutter=null;for(var n=0;n<r.length;++n){var i=r[n],o=i.className,a=i.style,s=t.appendChild(M(\"div\",null,\"CodeMirror-gutter \"+o));a&&(s.style.cssText=a),\"CodeMirror-linenumbers\"==o&&(e.lineGutter=s,s.style.width=(e.lineNumWidth||1)+\"px\")}t.style.display=r.length?\"\":\"none\",qi(e)}function Xi(e){Gi(e.display),In(e),Ki(e)}function Yi(e,t,n,i){var o=this;this.input=n,o.scrollbarFiller=M(\"div\",null,\"CodeMirror-scrollbar-filler\"),o.scrollbarFiller.setAttribute(\"cm-not-content\",\"true\"),o.gutterFiller=M(\"div\",null,\"CodeMirror-gutter-filler\"),o.gutterFiller.setAttribute(\"cm-not-content\",\"true\"),o.lineDiv=A(\"div\",null,\"CodeMirror-code\"),o.selectionDiv=M(\"div\",null,null,\"position: relative; z-index: 1\"),o.cursorDiv=M(\"div\",null,\"CodeMirror-cursors\"),o.measure=M(\"div\",null,\"CodeMirror-measure\"),o.lineMeasure=M(\"div\",null,\"CodeMirror-measure\"),o.lineSpace=A(\"div\",[o.measure,o.lineMeasure,o.selectionDiv,o.cursorDiv,o.lineDiv],null,\"position: relative; outline: none\");var c=A(\"div\",[o.lineSpace],\"CodeMirror-lines\");o.mover=M(\"div\",[c],null,\"position: relative\"),o.sizer=M(\"div\",[o.mover],\"CodeMirror-sizer\"),o.sizerWidth=null,o.heightForcer=M(\"div\",null,null,\"position: absolute; height: \"+F+\"px; width: 1px;\"),o.gutters=M(\"div\",null,\"CodeMirror-gutters\"),o.lineGutter=null,o.scroller=M(\"div\",[o.sizer,o.heightForcer,o.gutters],\"CodeMirror-scroll\"),o.scroller.setAttribute(\"tabIndex\",\"-1\"),o.wrapper=M(\"div\",[o.scrollbarFiller,o.gutterFiller,o.scroller],\"CodeMirror\"),a&&s<8&&(o.gutters.style.zIndex=-1,o.scroller.style.paddingRight=0),l||r&&v||(o.scroller.draggable=!0),e&&(e.appendChild?e.appendChild(o.wrapper):e(o.wrapper)),o.viewFrom=o.viewTo=t.first,o.reportedViewFrom=o.reportedViewTo=t.first,o.view=[],o.renderedView=null,o.externalMeasured=null,o.viewOffset=0,o.lastWrapHeight=o.lastWrapWidth=0,o.updateLineNumbers=null,o.nativeBarWidth=o.barHeight=o.barWidth=0,o.scrollbarsClipped=!1,o.lineNumWidth=o.lineNumInnerWidth=o.lineNumChars=null,o.alignWidgets=!1,o.cachedCharWidth=o.cachedTextHeight=o.cachedPaddingH=null,o.maxLine=null,o.maxLineLength=0,o.maxLineChanged=!1,o.wheelDX=o.wheelDY=o.wheelStartX=o.wheelStartY=null,o.shift=!1,o.selForContextMenu=null,o.activeTouch=null,o.gutterSpecs=Vi(i.gutters,i.lineNumbers),Gi(o),n.init(o)}Ii.prototype.signal=function(e,t){be(e,t)&&this.events.push(arguments)},Ii.prototype.finish=function(){for(var e=0;e<this.events.length;e++)ve.apply(null,this.events[e])};var Qi=0,Zi=null;function eo(e){var t=e.wheelDeltaX,r=e.wheelDeltaY;return null==t&&e.detail&&e.axis==e.HORIZONTAL_AXIS&&(t=e.detail),null==r&&e.detail&&e.axis==e.VERTICAL_AXIS?r=e.detail:null==r&&(r=e.wheelDelta),{x:t,y:r}}function to(e){var t=eo(e);return t.x*=Zi,t.y*=Zi,t}function ro(e,t){var n=eo(t),i=n.x,o=n.y,a=e.display,s=a.scroller,c=s.scrollWidth>s.clientWidth,u=s.scrollHeight>s.clientHeight;if(i&&c||o&&u){if(o&&y&&l)e:for(var f=t.target,h=a.view;f!=s;f=f.parentNode)for(var p=0;p<h.length;p++)if(h[p].node==f){e.display.currentWheelTarget=f;break e}if(i&&!r&&!d&&null!=Zi)return o&&u&&di(e,Math.max(0,s.scrollTop+o*Zi)),hi(e,Math.max(0,s.scrollLeft+i*Zi)),(!o||o&&u)&&Ce(t),void(a.wheelStartX=null);if(o&&null!=Zi){var m=o*Zi,g=e.doc.scrollTop,v=g+a.wrapper.clientHeight;m<0?g=Math.max(0,g+m-50):v=Math.min(e.doc.height,v+m+50),$i(e,{top:g,bottom:v})}Qi<20&&(null==a.wheelStartX?(a.wheelStartX=s.scrollLeft,a.wheelStartY=s.scrollTop,a.wheelDX=i,a.wheelDY=o,setTimeout((function(){if(null!=a.wheelStartX){var e=s.scrollLeft-a.wheelStartX,t=s.scrollTop-a.wheelStartY,r=t&&a.wheelDY&&t/a.wheelDY||e&&a.wheelDX&&e/a.wheelDX;a.wheelStartX=a.wheelStartY=null,r&&(Zi=(Zi*Qi+r)/(Qi+1),++Qi)}}),200)):(a.wheelDX+=i,a.wheelDY+=o))}}a?Zi=-.53:r?Zi=15:u?Zi=-.7:f&&(Zi=-1/3);var no=function(e,t){this.ranges=e,this.primIndex=t};no.prototype.primary=function(){return this.ranges[this.primIndex]},no.prototype.equals=function(e){if(e==this)return!0;if(e.primIndex!=this.primIndex||e.ranges.length!=this.ranges.length)return!1;for(var t=0;t<this.ranges.length;t++){var r=this.ranges[t],n=e.ranges[t];if(!at(r.anchor,n.anchor)||!at(r.head,n.head))return!1}return!0},no.prototype.deepCopy=function(){for(var e=[],t=0;t<this.ranges.length;t++)e[t]=new io(st(this.ranges[t].anchor),st(this.ranges[t].head));return new no(e,this.primIndex)},no.prototype.somethingSelected=function(){for(var e=0;e<this.ranges.length;e++)if(!this.ranges[e].empty())return!0;return!1},no.prototype.contains=function(e,t){t||(t=e);for(var r=0;r<this.ranges.length;r++){var n=this.ranges[r];if(ot(t,n.from())>=0&&ot(e,n.to())<=0)return r}return-1};var io=function(e,t){this.anchor=e,this.head=t};function oo(e,t,r){var n=e&&e.options.selectionsMayTouch,i=t[r];t.sort((function(e,t){return ot(e.from(),t.from())})),r=H(t,i);for(var o=1;o<t.length;o++){var a=t[o],s=t[o-1],l=ot(s.to(),a.from());if(n&&!a.empty()?l>0:l>=0){var c=ct(s.from(),a.from()),u=lt(s.to(),a.to()),d=s.empty()?a.from()==a.head:s.from()==s.head;o<=r&&--r,t.splice(--o,2,new io(d?u:c,d?c:u))}}return new no(t,r)}function ao(e,t){return new no([new io(e,t||e)],0)}function so(e){return e.text?it(e.from.line+e.text.length-1,G(e.text).length+(1==e.text.length?e.from.ch:0)):e.to}function lo(e,t){if(ot(e,t.from)<0)return e;if(ot(e,t.to)<=0)return so(t);var r=e.line+t.text.length-(t.to.line-t.from.line)-1,n=e.ch;return e.line==t.to.line&&(n+=so(t).ch-t.to.ch),it(r,n)}function co(e,t){for(var r=[],n=0;n<e.sel.ranges.length;n++){var i=e.sel.ranges[n];r.push(new io(lo(i.anchor,t),lo(i.head,t)))}return oo(e.cm,r,e.sel.primIndex)}function uo(e,t,r){return e.line==t.line?it(r.line,e.ch-t.ch+r.ch):it(r.line+(e.line-t.line),e.ch)}function fo(e,t,r){for(var n=[],i=it(e.first,0),o=i,a=0;a<t.length;a++){var s=t[a],l=uo(s.from,i,o),c=uo(so(s),i,o);if(i=s.to,o=c,\"around\"==r){var u=e.sel.ranges[a],d=ot(u.head,u.anchor)<0;n[a]=new io(d?c:l,d?l:c)}else n[a]=new io(l,l)}return new no(n,e.sel.primIndex)}function ho(e){e.doc.mode=Ue(e.options,e.doc.modeOption),po(e)}function po(e){e.doc.iter((function(e){e.stateAfter&&(e.stateAfter=null),e.styles&&(e.styles=null)})),e.doc.modeFrontier=e.doc.highlightFrontier=e.doc.first,Pi(e,100),e.state.modeGen++,e.curOp&&In(e)}function mo(e,t){return 0==t.from.ch&&0==t.to.ch&&\"\"==G(t.text)&&(!e.cm||e.cm.options.wholeLineUpdateBefore)}function go(e,t,r,n){function i(e){return r?r[e]:null}function o(e,r,i){lr(e,r,i,n),Or(e,\"change\",e,t)}function a(e,t){for(var r=[],o=e;o<t;++o)r.push(new sr(c[o],i(o),n));return r}var s=t.from,l=t.to,c=t.text,u=Xe(e,s.line),d=Xe(e,l.line),f=G(c),h=i(c.length-1),p=l.line-s.line;if(t.full)e.insert(0,a(0,c.length)),e.remove(c.length,e.size-c.length);else if(mo(e,t)){var m=a(0,c.length-1);o(d,d.text,h),p&&e.remove(s.line,p),m.length&&e.insert(s.line,m)}else if(u==d)if(1==c.length)o(u,u.text.slice(0,s.ch)+f+u.text.slice(l.ch),h);else{var g=a(1,c.length-1);g.push(new sr(f+u.text.slice(l.ch),h,n)),o(u,u.text.slice(0,s.ch)+c[0],i(0)),e.insert(s.line+1,g)}else if(1==c.length)o(u,u.text.slice(0,s.ch)+c[0]+d.text.slice(l.ch),i(0)),e.remove(s.line+1,p);else{o(u,u.text.slice(0,s.ch)+c[0],i(0)),o(d,f+d.text.slice(l.ch),h);var v=a(1,c.length-1);p>1&&e.remove(s.line+1,p-1),e.insert(s.line+1,v)}Or(e,\"change\",e,t)}function vo(e,t,r){function n(e,i,o){if(e.linked)for(var a=0;a<e.linked.length;++a){var s=e.linked[a];if(s.doc!=i){var l=o&&s.sharedHist;r&&!l||(t(s.doc,l),n(s.doc,e,l))}}}n(e,null,!0)}function yo(e,t){if(t.cm)throw new Error(\"This document is already in use.\");e.doc=t,t.cm=e,Ln(e),ho(e),_o(e),e.options.lineWrapping||ar(e),e.options.mode=t.modeOption,In(e)}function _o(e){(\"rtl\"==e.doc.direction?L:S)(e.display.lineDiv,\"CodeMirror-rtl\")}function bo(e){Ai(e,(function(){_o(e),In(e)}))}function wo(e){this.done=[],this.undone=[],this.undoDepth=1/0,this.lastModTime=this.lastSelTime=0,this.lastOp=this.lastSelOp=null,this.lastOrigin=this.lastSelOrigin=null,this.generation=this.maxGeneration=e||1}function Co(e,t){var r={from:st(t.from),to:so(t),text:Ye(e,t.from,t.to)};return Mo(e,r,t.from.line,t.to.line+1),vo(e,(function(e){return Mo(e,r,t.from.line,t.to.line+1)}),!0),r}function xo(e){while(e.length){var t=G(e);if(!t.ranges)break;e.pop()}}function ko(e,t){return t?(xo(e.done),G(e.done)):e.done.length&&!G(e.done).ranges?G(e.done):e.done.length>1&&!e.done[e.done.length-2].ranges?(e.done.pop(),G(e.done)):void 0}function To(e,t,r,n){var i=e.history;i.undone.length=0;var o,a,s=+new Date;if((i.lastOp==n||i.lastOrigin==t.origin&&t.origin&&(\"+\"==t.origin.charAt(0)&&i.lastModTime>s-(e.cm?e.cm.options.historyEventDelay:500)||\"*\"==t.origin.charAt(0)))&&(o=ko(i,i.lastOp==n)))a=G(o.changes),0==ot(t.from,t.to)&&0==ot(t.from,a.to)?a.to=so(t):o.changes.push(Co(e,t));else{var l=G(i.done);l&&l.ranges||Do(e.sel,i.done),o={changes:[Co(e,t)],generation:i.generation},i.done.push(o);while(i.done.length>i.undoDepth)i.done.shift(),i.done[0].ranges||i.done.shift()}i.done.push(r),i.generation=++i.maxGeneration,i.lastModTime=i.lastSelTime=s,i.lastOp=i.lastSelOp=n,i.lastOrigin=i.lastSelOrigin=t.origin,a||ve(e,\"historyAdded\")}function So(e,t,r,n){var i=t.charAt(0);return\"*\"==i||\"+\"==i&&r.ranges.length==n.ranges.length&&r.somethingSelected()==n.somethingSelected()&&new Date-e.history.lastSelTime<=(e.cm?e.cm.options.historyEventDelay:500)}function Oo(e,t,r,n){var i=e.history,o=n&&n.origin;r==i.lastSelOp||o&&i.lastSelOrigin==o&&(i.lastModTime==i.lastSelTime&&i.lastOrigin==o||So(e,o,G(i.done),t))?i.done[i.done.length-1]=t:Do(t,i.done),i.lastSelTime=+new Date,i.lastSelOrigin=o,i.lastSelOp=r,n&&!1!==n.clearRedo&&xo(i.undone)}function Do(e,t){var r=G(t);r&&r.ranges&&r.equals(e)||t.push(e)}function Mo(e,t,r,n){var i=t[\"spans_\"+e.id],o=0;e.iter(Math.max(e.first,r),Math.min(e.first+e.size,n),(function(r){r.markedSpans&&((i||(i=t[\"spans_\"+e.id]={}))[o]=r.markedSpans),++o}))}function Ao(e){if(!e)return null;for(var t,r=0;r<e.length;++r)e[r].marker.explicitlyCleared?t||(t=e.slice(0,r)):t&&t.push(e[r]);return t?t.length?t:null:e}function No(e,t){var r=t[\"spans_\"+e.id];if(!r)return null;for(var n=[],i=0;i<t.text.length;++i)n.push(Ao(r[i]));return n}function Eo(e,t){var r=No(e,t),n=Bt(e,t);if(!r)return n;if(!n)return r;for(var i=0;i<r.length;++i){var o=r[i],a=n[i];if(o&&a)e:for(var s=0;s<a.length;++s){for(var l=a[s],c=0;c<o.length;++c)if(o[c].marker==l.marker)continue e;o.push(l)}else a&&(r[i]=a)}return r}function Lo(e,t,r){for(var n=[],i=0;i<e.length;++i){var o=e[i];if(o.ranges)n.push(r?no.prototype.deepCopy.call(o):o);else{var a=o.changes,s=[];n.push({changes:s});for(var l=0;l<a.length;++l){var c=a[l],u=void 0;if(s.push({from:c.from,to:c.to,text:c.text}),t)for(var d in c)(u=d.match(/^spans_(\\d+)$/))&&H(t,Number(u[1]))>-1&&(G(s)[d]=c[d],delete c[d])}}}return n}function Po(e,t,r,n){if(n){var i=e.anchor;if(r){var o=ot(t,i)<0;o!=ot(r,i)<0?(i=t,t=r):o!=ot(t,r)<0&&(t=r)}return new io(i,t)}return new io(r||t,t)}function Ro(e,t,r,n,i){null==i&&(i=e.cm&&(e.cm.display.shift||e.extend)),Fo(e,new no([Po(e.sel.primary(),t,r,i)],0),n)}function Io(e,t,r){for(var n=[],i=e.cm&&(e.cm.display.shift||e.extend),o=0;o<e.sel.ranges.length;o++)n[o]=Po(e.sel.ranges[o],t[o],null,i);var a=oo(e.cm,n,e.sel.primIndex);Fo(e,a,r)}function Wo(e,t,r,n){var i=e.sel.ranges.slice(0);i[t]=r,Fo(e,oo(e.cm,i,e.sel.primIndex),n)}function Bo(e,t,r,n){Fo(e,ao(t,r),n)}function jo(e,t,r){var n={ranges:t.ranges,update:function(t){this.ranges=[];for(var r=0;r<t.length;r++)this.ranges[r]=new io(dt(e,t[r].anchor),dt(e,t[r].head))},origin:r&&r.origin};return ve(e,\"beforeSelectionChange\",e,n),e.cm&&ve(e.cm,\"beforeSelectionChange\",e.cm,n),n.ranges!=t.ranges?oo(e.cm,n.ranges,n.ranges.length-1):t}function Ho(e,t,r){var n=e.history.done,i=G(n);i&&i.ranges?(n[n.length-1]=t,$o(e,t,r)):Fo(e,t,r)}function Fo(e,t,r){$o(e,t,r),Oo(e,e.sel,e.cm?e.cm.curOp.id:NaN,r)}function $o(e,t,r){(be(e,\"beforeSelectionChange\")||e.cm&&be(e.cm,\"beforeSelectionChange\"))&&(t=jo(e,t,r));var n=r&&r.bias||(ot(t.primary().head,e.sel.primary().head)<0?-1:1);Uo(e,zo(e,t,n,!0)),r&&!1===r.scroll||!e.cm||ai(e.cm)}function Uo(e,t){t.equals(e.sel)||(e.sel=t,e.cm&&(e.cm.curOp.updateInput=1,e.cm.curOp.selectionChanged=!0,_e(e.cm)),Or(e,\"cursorActivity\",e))}function qo(e){Uo(e,zo(e,e.sel,null,!1))}function zo(e,t,r,n){for(var i,o=0;o<t.ranges.length;o++){var a=t.ranges[o],s=t.ranges.length==e.sel.ranges.length&&e.sel.ranges[o],l=Jo(e,a.anchor,s&&s.anchor,r,n),c=Jo(e,a.head,s&&s.head,r,n);(i||l!=a.anchor||c!=a.head)&&(i||(i=t.ranges.slice(0,o)),i[o]=new io(l,c))}return i?oo(e.cm,i,t.primIndex):t}function Ko(e,t,r,n,i){var o=Xe(e,t.line);if(o.markedSpans)for(var a=0;a<o.markedSpans.length;++a){var s=o.markedSpans[a],l=s.marker,c=\"selectLeft\"in l?!l.selectLeft:l.inclusiveLeft,u=\"selectRight\"in l?!l.selectRight:l.inclusiveRight;if((null==s.from||(c?s.from<=t.ch:s.from<t.ch))&&(null==s.to||(u?s.to>=t.ch:s.to>t.ch))){if(i&&(ve(l,\"beforeCursorEnter\"),l.explicitlyCleared)){if(o.markedSpans){--a;continue}break}if(!l.atomic)continue;if(r){var d=l.find(n<0?1:-1),f=void 0;if((n<0?u:c)&&(d=Vo(e,d,-n,d&&d.line==t.line?o:null)),d&&d.line==t.line&&(f=ot(d,r))&&(n<0?f<0:f>0))return Ko(e,d,t,n,i)}var h=l.find(n<0?-1:1);return(n<0?c:u)&&(h=Vo(e,h,n,h.line==t.line?o:null)),h?Ko(e,h,t,n,i):null}}return t}function Jo(e,t,r,n,i){var o=n||1,a=Ko(e,t,r,o,i)||!i&&Ko(e,t,r,o,!0)||Ko(e,t,r,-o,i)||!i&&Ko(e,t,r,-o,!0);return a||(e.cantEdit=!0,it(e.first,0))}function Vo(e,t,r,n){return r<0&&0==t.ch?t.line>e.first?dt(e,it(t.line-1)):null:r>0&&t.ch==(n||Xe(e,t.line)).text.length?t.line<e.first+e.size-1?it(t.line+1,0):null:new it(t.line,t.ch+r)}function Go(e){e.setSelection(it(e.firstLine(),0),it(e.lastLine()),U)}function Xo(e,t,r){var n={canceled:!1,from:t.from,to:t.to,text:t.text,origin:t.origin,cancel:function(){return n.canceled=!0}};return r&&(n.update=function(t,r,i,o){t&&(n.from=dt(e,t)),r&&(n.to=dt(e,r)),i&&(n.text=i),void 0!==o&&(n.origin=o)}),ve(e,\"beforeChange\",e,n),e.cm&&ve(e.cm,\"beforeChange\",e.cm,n),n.canceled?(e.cm&&(e.cm.curOp.updateInput=2),null):{from:n.from,to:n.to,text:n.text,origin:n.origin}}function Yo(e,t,r){if(e.cm){if(!e.cm.curOp)return Ni(e.cm,Yo)(e,t,r);if(e.cm.state.suppressEdits)return}if(!(be(e,\"beforeChange\")||e.cm&&be(e.cm,\"beforeChange\"))||(t=Xo(e,t,!0),t)){var n=Dt&&!r&&Ht(e,t.from,t.to);if(n)for(var i=n.length-1;i>=0;--i)Qo(e,{from:n[i].from,to:n[i].to,text:i?[\"\"]:t.text,origin:t.origin});else Qo(e,t)}}function Qo(e,t){if(1!=t.text.length||\"\"!=t.text[0]||0!=ot(t.from,t.to)){var r=co(e,t);To(e,t,r,e.cm?e.cm.curOp.id:NaN),ta(e,t,r,Bt(e,t));var n=[];vo(e,(function(e,r){r||-1!=H(n,e.history)||(aa(e.history,t),n.push(e.history)),ta(e,t,null,Bt(e,t))}))}}function Zo(e,t,r){var n=e.cm&&e.cm.state.suppressEdits;if(!n||r){for(var i,o=e.history,a=e.sel,s=\"undo\"==t?o.done:o.undone,l=\"undo\"==t?o.undone:o.done,c=0;c<s.length;c++)if(i=s[c],r?i.ranges&&!i.equals(e.sel):!i.ranges)break;if(c!=s.length){for(o.lastOrigin=o.lastSelOrigin=null;;){if(i=s.pop(),!i.ranges){if(n)return void s.push(i);break}if(Do(i,l),r&&!i.equals(e.sel))return void Fo(e,i,{clearRedo:!1});a=i}var u=[];Do(a,l),l.push({changes:u,generation:o.generation}),o.generation=i.generation||++o.maxGeneration;for(var d=be(e,\"beforeChange\")||e.cm&&be(e.cm,\"beforeChange\"),f=function(r){var n=i.changes[r];if(n.origin=t,d&&!Xo(e,n,!1))return s.length=0,{};u.push(Co(e,n));var o=r?co(e,n):G(s);ta(e,n,o,Eo(e,n)),!r&&e.cm&&e.cm.scrollIntoView({from:n.from,to:so(n)});var a=[];vo(e,(function(e,t){t||-1!=H(a,e.history)||(aa(e.history,n),a.push(e.history)),ta(e,n,null,Eo(e,n))}))},h=i.changes.length-1;h>=0;--h){var p=f(h);if(p)return p.v}}}}function ea(e,t){if(0!=t&&(e.first+=t,e.sel=new no(X(e.sel.ranges,(function(e){return new io(it(e.anchor.line+t,e.anchor.ch),it(e.head.line+t,e.head.ch))})),e.sel.primIndex),e.cm)){In(e.cm,e.first,e.first-t,t);for(var r=e.cm.display,n=r.viewFrom;n<r.viewTo;n++)Wn(e.cm,n,\"gutter\")}}function ta(e,t,r,n){if(e.cm&&!e.cm.curOp)return Ni(e.cm,ta)(e,t,r,n);if(t.to.line<e.first)ea(e,t.text.length-1-(t.to.line-t.from.line));else if(!(t.from.line>e.lastLine())){if(t.from.line<e.first){var i=t.text.length-1-(e.first-t.from.line);ea(e,i),t={from:it(e.first,0),to:it(t.to.line+i,t.to.ch),text:[G(t.text)],origin:t.origin}}var o=e.lastLine();t.to.line>o&&(t={from:t.from,to:it(o,Xe(e,o).text.length),text:[t.text[0]],origin:t.origin}),t.removed=Ye(e,t.from,t.to),r||(r=co(e,t)),e.cm?ra(e.cm,t,n):go(e,t,n),$o(e,r,U),e.cantEdit&&Jo(e,it(e.firstLine(),0))&&(e.cantEdit=!1)}}function ra(e,t,r){var n=e.doc,i=e.display,o=t.from,a=t.to,s=!1,l=o.line;e.options.lineWrapping||(l=et(Yt(Xe(n,o.line))),n.iter(l,a.line+1,(function(e){if(e==i.maxLine)return s=!0,!0}))),n.sel.contains(t.from,t.to)>-1&&_e(e),go(n,t,r,En(e)),e.options.lineWrapping||(n.iter(l,o.line+t.text.length,(function(e){var t=or(e);t>i.maxLineLength&&(i.maxLine=e,i.maxLineLength=t,i.maxLineChanged=!0,s=!1)})),s&&(e.curOp.updateMaxLine=!0)),Ot(n,o.line),Pi(e,400);var c=t.text.length-(a.line-o.line)-1;t.full?In(e):o.line!=a.line||1!=t.text.length||mo(e.doc,t)?In(e,o.line,a.line+1,c):Wn(e,o.line,\"text\");var u=be(e,\"changes\"),d=be(e,\"change\");if(d||u){var f={from:o,to:a,text:t.text,removed:t.removed,origin:t.origin};d&&Or(e,\"change\",e,f),u&&(e.curOp.changeObjs||(e.curOp.changeObjs=[])).push(f)}e.display.selForContextMenu=null}function na(e,t,r,n,i){var o;n||(n=r),ot(n,r)<0&&(o=[n,r],r=o[0],n=o[1]),\"string\"==typeof t&&(t=e.splitLines(t)),Yo(e,{from:r,to:n,text:t,origin:i})}function ia(e,t,r,n){r<e.line?e.line+=n:t<e.line&&(e.line=t,e.ch=0)}function oa(e,t,r,n){for(var i=0;i<e.length;++i){var o=e[i],a=!0;if(o.ranges){o.copied||(o=e[i]=o.deepCopy(),o.copied=!0);for(var s=0;s<o.ranges.length;s++)ia(o.ranges[s].anchor,t,r,n),ia(o.ranges[s].head,t,r,n)}else{for(var l=0;l<o.changes.length;++l){var c=o.changes[l];if(r<c.from.line)c.from=it(c.from.line+n,c.from.ch),c.to=it(c.to.line+n,c.to.ch);else if(t<=c.to.line){a=!1;break}}a||(e.splice(0,i+1),i=0)}}}function aa(e,t){var r=t.from.line,n=t.to.line,i=t.text.length-(n-r)-1;oa(e.done,r,n,i),oa(e.undone,r,n,i)}function sa(e,t,r,n){var i=t,o=t;return\"number\"==typeof t?o=Xe(e,ut(e,t)):i=et(t),null==i?null:(n(o,i)&&e.cm&&Wn(e.cm,i,r),o)}function la(e){this.lines=e,this.parent=null;for(var t=0,r=0;r<e.length;++r)e[r].parent=this,t+=e[r].height;this.height=t}function ca(e){this.children=e;for(var t=0,r=0,n=0;n<e.length;++n){var i=e[n];t+=i.chunkSize(),r+=i.height,i.parent=this}this.size=t,this.height=r,this.parent=null}io.prototype.from=function(){return ct(this.anchor,this.head)},io.prototype.to=function(){return lt(this.anchor,this.head)},io.prototype.empty=function(){return this.head.line==this.anchor.line&&this.head.ch==this.anchor.ch},la.prototype={chunkSize:function(){return this.lines.length},removeInner:function(e,t){for(var r=e,n=e+t;r<n;++r){var i=this.lines[r];this.height-=i.height,cr(i),Or(i,\"delete\")}this.lines.splice(e,t)},collapse:function(e){e.push.apply(e,this.lines)},insertInner:function(e,t,r){this.height+=r,this.lines=this.lines.slice(0,e).concat(t).concat(this.lines.slice(e));for(var n=0;n<t.length;++n)t[n].parent=this},iterN:function(e,t,r){for(var n=e+t;e<n;++e)if(r(this.lines[e]))return!0}},ca.prototype={chunkSize:function(){return this.size},removeInner:function(e,t){this.size-=t;for(var r=0;r<this.children.length;++r){var n=this.children[r],i=n.chunkSize();if(e<i){var o=Math.min(t,i-e),a=n.height;if(n.removeInner(e,o),this.height-=a-n.height,i==o&&(this.children.splice(r--,1),n.parent=null),0==(t-=o))break;e=0}else e-=i}if(this.size-t<25&&(this.children.length>1||!(this.children[0]instanceof la))){var s=[];this.collapse(s),this.children=[new la(s)],this.children[0].parent=this}},collapse:function(e){for(var t=0;t<this.children.length;++t)this.children[t].collapse(e)},insertInner:function(e,t,r){this.size+=t.length,this.height+=r;for(var n=0;n<this.children.length;++n){var i=this.children[n],o=i.chunkSize();if(e<=o){if(i.insertInner(e,t,r),i.lines&&i.lines.length>50){for(var a=i.lines.length%25+25,s=a;s<i.lines.length;){var l=new la(i.lines.slice(s,s+=25));i.height-=l.height,this.children.splice(++n,0,l),l.parent=this}i.lines=i.lines.slice(0,a),this.maybeSpill()}break}e-=o}},maybeSpill:function(){if(!(this.children.length<=10)){var e=this;do{var t=e.children.splice(e.children.length-5,5),r=new ca(t);if(e.parent){e.size-=r.size,e.height-=r.height;var n=H(e.parent.children,e);e.parent.children.splice(n+1,0,r)}else{var i=new ca(e.children);i.parent=e,e.children=[i,r],e=i}r.parent=e.parent}while(e.children.length>10);e.parent.maybeSpill()}},iterN:function(e,t,r){for(var n=0;n<this.children.length;++n){var i=this.children[n],o=i.chunkSize();if(e<o){var a=Math.min(t,o-e);if(i.iterN(e,a,r))return!0;if(0==(t-=a))break;e=0}else e-=o}}};var ua=function(e,t,r){if(r)for(var n in r)r.hasOwnProperty(n)&&(this[n]=r[n]);this.doc=e,this.node=t};function da(e,t,r){ir(t)<(e.curOp&&e.curOp.scrollTop||e.doc.scrollTop)&&oi(e,r)}function fa(e,t,r,n){var i=new ua(e,r,n),o=e.cm;return o&&i.noHScroll&&(o.display.alignWidgets=!0),sa(e,t,\"widget\",(function(t){var r=t.widgets||(t.widgets=[]);if(null==i.insertAt?r.push(i):r.splice(Math.min(r.length,Math.max(0,i.insertAt)),0,i),i.line=t,o&&!rr(e,t)){var n=ir(t)<e.scrollTop;Ze(t,t.height+Fr(i)),n&&oi(o,i.height),o.curOp.forceUpdate=!0}return!0})),o&&Or(o,\"lineWidgetAdded\",o,i,\"number\"==typeof t?t:et(t)),i}ua.prototype.clear=function(){var e=this.doc.cm,t=this.line.widgets,r=this.line,n=et(r);if(null!=n&&t){for(var i=0;i<t.length;++i)t[i]==this&&t.splice(i--,1);t.length||(r.widgets=null);var o=Fr(this);Ze(r,Math.max(0,r.height-o)),e&&(Ai(e,(function(){da(e,r,-o),Wn(e,n,\"widget\")})),Or(e,\"lineWidgetCleared\",e,this,n))}},ua.prototype.changed=function(){var e=this,t=this.height,r=this.doc.cm,n=this.line;this.height=null;var i=Fr(this)-t;i&&(rr(this.doc,n)||Ze(n,n.height+i),r&&Ai(r,(function(){r.curOp.forceUpdate=!0,da(r,n,i),Or(r,\"lineWidgetChanged\",r,e,et(n))})))},we(ua);var ha=0,pa=function(e,t){this.lines=[],this.type=t,this.doc=e,this.id=++ha};function ma(e,t,r,n,i){if(n&&n.shared)return va(e,t,r,n,i);if(e.cm&&!e.cm.curOp)return Ni(e.cm,ma)(e,t,r,n,i);var o=new pa(e,i),a=ot(t,r);if(n&&W(n,o,!1),a>0||0==a&&!1!==o.clearWhenEmpty)return o;if(o.replacedWith&&(o.collapsed=!0,o.widgetNode=A(\"span\",[o.replacedWith],\"CodeMirror-widget\"),n.handleMouseEvents||o.widgetNode.setAttribute(\"cm-ignore-events\",\"true\"),n.insertLeft&&(o.widgetNode.insertLeft=!0)),o.collapsed){if(Xt(e,t.line,t,r,o)||t.line!=r.line&&Xt(e,r.line,t,r,o))throw new Error(\"Inserting collapsed marker partially overlapping an existing one\");Nt()}o.addToHistory&&To(e,{from:t,to:r,origin:\"markText\"},e.sel,NaN);var s,l=t.line,c=e.cm;if(e.iter(l,r.line+1,(function(e){c&&o.collapsed&&!c.options.lineWrapping&&Yt(e)==c.display.maxLine&&(s=!0),o.collapsed&&l!=t.line&&Ze(e,0),Rt(e,new Et(o,l==t.line?t.ch:null,l==r.line?r.ch:null)),++l})),o.collapsed&&e.iter(t.line,r.line+1,(function(t){rr(e,t)&&Ze(t,0)})),o.clearOnEnter&&pe(o,\"beforeCursorEnter\",(function(){return o.clear()})),o.readOnly&&(At(),(e.history.done.length||e.history.undone.length)&&e.clearHistory()),o.collapsed&&(o.id=++ha,o.atomic=!0),c){if(s&&(c.curOp.updateMaxLine=!0),o.collapsed)In(c,t.line,r.line+1);else if(o.className||o.startStyle||o.endStyle||o.css||o.attributes||o.title)for(var u=t.line;u<=r.line;u++)Wn(c,u,\"text\");o.atomic&&qo(c.doc),Or(c,\"markerAdded\",c,o)}return o}pa.prototype.clear=function(){if(!this.explicitlyCleared){var e=this.doc.cm,t=e&&!e.curOp;if(t&&Ci(e),be(this,\"clear\")){var r=this.find();r&&Or(this,\"clear\",r.from,r.to)}for(var n=null,i=null,o=0;o<this.lines.length;++o){var a=this.lines[o],s=Lt(a.markedSpans,this);e&&!this.collapsed?Wn(e,et(a),\"text\"):e&&(null!=s.to&&(i=et(a)),null!=s.from&&(n=et(a))),a.markedSpans=Pt(a.markedSpans,s),null==s.from&&this.collapsed&&!rr(this.doc,a)&&e&&Ze(a,Dn(e.display))}if(e&&this.collapsed&&!e.options.lineWrapping)for(var l=0;l<this.lines.length;++l){var c=Yt(this.lines[l]),u=or(c);u>e.display.maxLineLength&&(e.display.maxLine=c,e.display.maxLineLength=u,e.display.maxLineChanged=!0)}null!=n&&e&&this.collapsed&&In(e,n,i+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,e&&qo(e.doc)),e&&Or(e,\"markerCleared\",e,this,n,i),t&&xi(e),this.parent&&this.parent.clear()}},pa.prototype.find=function(e,t){var r,n;null==e&&\"bookmark\"==this.type&&(e=1);for(var i=0;i<this.lines.length;++i){var o=this.lines[i],a=Lt(o.markedSpans,this);if(null!=a.from&&(r=it(t?o:et(o),a.from),-1==e))return r;if(null!=a.to&&(n=it(t?o:et(o),a.to),1==e))return n}return r&&{from:r,to:n}},pa.prototype.changed=function(){var e=this,t=this.find(-1,!0),r=this,n=this.doc.cm;t&&n&&Ai(n,(function(){var i=t.line,o=et(t.line),a=Zr(n,o);if(a&&(cn(a),n.curOp.selectionChanged=n.curOp.forceUpdate=!0),n.curOp.updateMaxLine=!0,!rr(r.doc,i)&&null!=r.height){var s=r.height;r.height=null;var l=Fr(r)-s;l&&Ze(i,i.height+l)}Or(n,\"markerChanged\",n,e)}))},pa.prototype.attachLine=function(e){if(!this.lines.length&&this.doc.cm){var t=this.doc.cm.curOp;t.maybeHiddenMarkers&&-1!=H(t.maybeHiddenMarkers,this)||(t.maybeUnhiddenMarkers||(t.maybeUnhiddenMarkers=[])).push(this)}this.lines.push(e)},pa.prototype.detachLine=function(e){if(this.lines.splice(H(this.lines,e),1),!this.lines.length&&this.doc.cm){var t=this.doc.cm.curOp;(t.maybeHiddenMarkers||(t.maybeHiddenMarkers=[])).push(this)}},we(pa);var ga=function(e,t){this.markers=e,this.primary=t;for(var r=0;r<e.length;++r)e[r].parent=this};function va(e,t,r,n,i){n=W(n),n.shared=!1;var o=[ma(e,t,r,n,i)],a=o[0],s=n.widgetNode;return vo(e,(function(e){s&&(n.widgetNode=s.cloneNode(!0)),o.push(ma(e,dt(e,t),dt(e,r),n,i));for(var l=0;l<e.linked.length;++l)if(e.linked[l].isParent)return;a=G(o)})),new ga(o,a)}function ya(e){return e.findMarks(it(e.first,0),e.clipPos(it(e.lastLine())),(function(e){return e.parent}))}function _a(e,t){for(var r=0;r<t.length;r++){var n=t[r],i=n.find(),o=e.clipPos(i.from),a=e.clipPos(i.to);if(ot(o,a)){var s=ma(e,o,a,n.primary,n.primary.type);n.markers.push(s),s.parent=n}}}function ba(e){for(var t=function(t){var r=e[t],n=[r.primary.doc];vo(r.primary.doc,(function(e){return n.push(e)}));for(var i=0;i<r.markers.length;i++){var o=r.markers[i];-1==H(n,o.doc)&&(o.parent=null,r.markers.splice(i--,1))}},r=0;r<e.length;r++)t(r)}ga.prototype.clear=function(){if(!this.explicitlyCleared){this.explicitlyCleared=!0;for(var e=0;e<this.markers.length;++e)this.markers[e].clear();Or(this,\"clear\")}},ga.prototype.find=function(e,t){return this.primary.find(e,t)},we(ga);var wa=0,Ca=function(e,t,r,n,i){if(!(this instanceof Ca))return new Ca(e,t,r,n,i);null==r&&(r=0),ca.call(this,[new la([new sr(\"\",null)])]),this.first=r,this.scrollTop=this.scrollLeft=0,this.cantEdit=!1,this.cleanGeneration=1,this.modeFrontier=this.highlightFrontier=r;var o=it(r,0);this.sel=ao(o),this.history=new wo(null),this.id=++wa,this.modeOption=t,this.lineSep=n,this.direction=\"rtl\"==i?\"rtl\":\"ltr\",this.extend=!1,\"string\"==typeof e&&(e=this.splitLines(e)),go(this,{from:o,to:o,text:e}),Fo(this,ao(o),U)};Ca.prototype=Z(ca.prototype,{constructor:Ca,iter:function(e,t,r){r?this.iterN(e-this.first,t-e,r):this.iterN(this.first,this.first+this.size,e)},insert:function(e,t){for(var r=0,n=0;n<t.length;++n)r+=t[n].height;this.insertInner(e-this.first,t,r)},remove:function(e,t){this.removeInner(e-this.first,t)},getValue:function(e){var t=Qe(this,this.first,this.first+this.size);return!1===e?t:t.join(e||this.lineSeparator())},setValue:Li((function(e){var t=it(this.first,0),r=this.first+this.size-1;Yo(this,{from:t,to:it(r,Xe(this,r).text.length),text:this.splitLines(e),origin:\"setValue\",full:!0},!0),this.cm&&si(this.cm,0,0),Fo(this,ao(t),U)})),replaceRange:function(e,t,r,n){t=dt(this,t),r=r?dt(this,r):t,na(this,e,t,r,n)},getRange:function(e,t,r){var n=Ye(this,dt(this,e),dt(this,t));return!1===r?n:n.join(r||this.lineSeparator())},getLine:function(e){var t=this.getLineHandle(e);return t&&t.text},getLineHandle:function(e){if(rt(this,e))return Xe(this,e)},getLineNumber:function(e){return et(e)},getLineHandleVisualStart:function(e){return\"number\"==typeof e&&(e=Xe(this,e)),Yt(e)},lineCount:function(){return this.size},firstLine:function(){return this.first},lastLine:function(){return this.first+this.size-1},clipPos:function(e){return dt(this,e)},getCursor:function(e){var t,r=this.sel.primary();return t=null==e||\"head\"==e?r.head:\"anchor\"==e?r.anchor:\"end\"==e||\"to\"==e||!1===e?r.to():r.from(),t},listSelections:function(){return this.sel.ranges},somethingSelected:function(){return this.sel.somethingSelected()},setCursor:Li((function(e,t,r){Bo(this,dt(this,\"number\"==typeof e?it(e,t||0):e),null,r)})),setSelection:Li((function(e,t,r){Bo(this,dt(this,e),dt(this,t||e),r)})),extendSelection:Li((function(e,t,r){Ro(this,dt(this,e),t&&dt(this,t),r)})),extendSelections:Li((function(e,t){Io(this,ht(this,e),t)})),extendSelectionsBy:Li((function(e,t){var r=X(this.sel.ranges,e);Io(this,ht(this,r),t)})),setSelections:Li((function(e,t,r){if(e.length){for(var n=[],i=0;i<e.length;i++)n[i]=new io(dt(this,e[i].anchor),dt(this,e[i].head));null==t&&(t=Math.min(e.length-1,this.sel.primIndex)),Fo(this,oo(this.cm,n,t),r)}})),addSelection:Li((function(e,t,r){var n=this.sel.ranges.slice(0);n.push(new io(dt(this,e),dt(this,t||e))),Fo(this,oo(this.cm,n,n.length-1),r)})),getSelection:function(e){for(var t,r=this.sel.ranges,n=0;n<r.length;n++){var i=Ye(this,r[n].from(),r[n].to());t=t?t.concat(i):i}return!1===e?t:t.join(e||this.lineSeparator())},getSelections:function(e){for(var t=[],r=this.sel.ranges,n=0;n<r.length;n++){var i=Ye(this,r[n].from(),r[n].to());!1!==e&&(i=i.join(e||this.lineSeparator())),t[n]=i}return t},replaceSelection:function(e,t,r){for(var n=[],i=0;i<this.sel.ranges.length;i++)n[i]=e;this.replaceSelections(n,t,r||\"+input\")},replaceSelections:Li((function(e,t,r){for(var n=[],i=this.sel,o=0;o<i.ranges.length;o++){var a=i.ranges[o];n[o]={from:a.from(),to:a.to(),text:this.splitLines(e[o]),origin:r}}for(var s=t&&\"end\"!=t&&fo(this,n,t),l=n.length-1;l>=0;l--)Yo(this,n[l]);s?Ho(this,s):this.cm&&ai(this.cm)})),undo:Li((function(){Zo(this,\"undo\")})),redo:Li((function(){Zo(this,\"redo\")})),undoSelection:Li((function(){Zo(this,\"undo\",!0)})),redoSelection:Li((function(){Zo(this,\"redo\",!0)})),setExtending:function(e){this.extend=e},getExtending:function(){return this.extend},historySize:function(){for(var e=this.history,t=0,r=0,n=0;n<e.done.length;n++)e.done[n].ranges||++t;for(var i=0;i<e.undone.length;i++)e.undone[i].ranges||++r;return{undo:t,redo:r}},clearHistory:function(){var e=this;this.history=new wo(this.history.maxGeneration),vo(this,(function(t){return t.history=e.history}),!0)},markClean:function(){this.cleanGeneration=this.changeGeneration(!0)},changeGeneration:function(e){return e&&(this.history.lastOp=this.history.lastSelOp=this.history.lastOrigin=null),this.history.generation},isClean:function(e){return this.history.generation==(e||this.cleanGeneration)},getHistory:function(){return{done:Lo(this.history.done),undone:Lo(this.history.undone)}},setHistory:function(e){var t=this.history=new wo(this.history.maxGeneration);t.done=Lo(e.done.slice(0),null,!0),t.undone=Lo(e.undone.slice(0),null,!0)},setGutterMarker:Li((function(e,t,r){return sa(this,e,\"gutter\",(function(e){var n=e.gutterMarkers||(e.gutterMarkers={});return n[t]=r,!r&&ne(n)&&(e.gutterMarkers=null),!0}))})),clearGutter:Li((function(e){var t=this;this.iter((function(r){r.gutterMarkers&&r.gutterMarkers[e]&&sa(t,r,\"gutter\",(function(){return r.gutterMarkers[e]=null,ne(r.gutterMarkers)&&(r.gutterMarkers=null),!0}))}))})),lineInfo:function(e){var t;if(\"number\"==typeof e){if(!rt(this,e))return null;if(t=e,e=Xe(this,e),!e)return null}else if(t=et(e),null==t)return null;return{line:t,handle:e,text:e.text,gutterMarkers:e.gutterMarkers,textClass:e.textClass,bgClass:e.bgClass,wrapClass:e.wrapClass,widgets:e.widgets}},addLineClass:Li((function(e,t,r){return sa(this,e,\"gutter\"==t?\"gutter\":\"class\",(function(e){var n=\"text\"==t?\"textClass\":\"background\"==t?\"bgClass\":\"gutter\"==t?\"gutterClass\":\"wrapClass\";if(e[n]){if(k(r).test(e[n]))return!1;e[n]+=\" \"+r}else e[n]=r;return!0}))})),removeLineClass:Li((function(e,t,r){return sa(this,e,\"gutter\"==t?\"gutter\":\"class\",(function(e){var n=\"text\"==t?\"textClass\":\"background\"==t?\"bgClass\":\"gutter\"==t?\"gutterClass\":\"wrapClass\",i=e[n];if(!i)return!1;if(null==r)e[n]=null;else{var o=i.match(k(r));if(!o)return!1;var a=o.index+o[0].length;e[n]=i.slice(0,o.index)+(o.index&&a!=i.length?\" \":\"\")+i.slice(a)||null}return!0}))})),addLineWidget:Li((function(e,t,r){return fa(this,e,t,r)})),removeLineWidget:function(e){e.clear()},markText:function(e,t,r){return ma(this,dt(this,e),dt(this,t),r,r&&r.type||\"range\")},setBookmark:function(e,t){var r={replacedWith:t&&(null==t.nodeType?t.widget:t),insertLeft:t&&t.insertLeft,clearWhenEmpty:!1,shared:t&&t.shared,handleMouseEvents:t&&t.handleMouseEvents};return e=dt(this,e),ma(this,e,e,r,\"bookmark\")},findMarksAt:function(e){e=dt(this,e);var t=[],r=Xe(this,e.line).markedSpans;if(r)for(var n=0;n<r.length;++n){var i=r[n];(null==i.from||i.from<=e.ch)&&(null==i.to||i.to>=e.ch)&&t.push(i.marker.parent||i.marker)}return t},findMarks:function(e,t,r){e=dt(this,e),t=dt(this,t);var n=[],i=e.line;return this.iter(e.line,t.line+1,(function(o){var a=o.markedSpans;if(a)for(var s=0;s<a.length;s++){var l=a[s];null!=l.to&&i==e.line&&e.ch>=l.to||null==l.from&&i!=e.line||null!=l.from&&i==t.line&&l.from>=t.ch||r&&!r(l.marker)||n.push(l.marker.parent||l.marker)}++i})),n},getAllMarks:function(){var e=[];return this.iter((function(t){var r=t.markedSpans;if(r)for(var n=0;n<r.length;++n)null!=r[n].from&&e.push(r[n].marker)})),e},posFromIndex:function(e){var t,r=this.first,n=this.lineSeparator().length;return this.iter((function(i){var o=i.text.length+n;if(o>e)return t=e,!0;e-=o,++r})),dt(this,it(r,t))},indexFromPos:function(e){e=dt(this,e);var t=e.ch;if(e.line<this.first||e.ch<0)return 0;var r=this.lineSeparator().length;return this.iter(this.first,e.line,(function(e){t+=e.text.length+r})),t},copy:function(e){var t=new Ca(Qe(this,this.first,this.first+this.size),this.modeOption,this.first,this.lineSep,this.direction);return t.scrollTop=this.scrollTop,t.scrollLeft=this.scrollLeft,t.sel=this.sel,t.extend=!1,e&&(t.history.undoDepth=this.history.undoDepth,t.setHistory(this.getHistory())),t},linkedDoc:function(e){e||(e={});var t=this.first,r=this.first+this.size;null!=e.from&&e.from>t&&(t=e.from),null!=e.to&&e.to<r&&(r=e.to);var n=new Ca(Qe(this,t,r),e.mode||this.modeOption,t,this.lineSep,this.direction);return e.sharedHist&&(n.history=this.history),(this.linked||(this.linked=[])).push({doc:n,sharedHist:e.sharedHist}),n.linked=[{doc:this,isParent:!0,sharedHist:e.sharedHist}],_a(n,ya(this)),n},unlinkDoc:function(e){if(e instanceof Is&&(e=e.doc),this.linked)for(var t=0;t<this.linked.length;++t){var r=this.linked[t];if(r.doc==e){this.linked.splice(t,1),e.unlinkDoc(this),ba(ya(this));break}}if(e.history==this.history){var n=[e.id];vo(e,(function(e){return n.push(e.id)}),!0),e.history=new wo(null),e.history.done=Lo(this.history.done,n),e.history.undone=Lo(this.history.undone,n)}},iterLinkedDocs:function(e){vo(this,e)},getMode:function(){return this.mode},getEditor:function(){return this.cm},splitLines:function(e){return this.lineSep?e.split(this.lineSep):Le(e)},lineSeparator:function(){return this.lineSep||\"\\n\"},setDirection:Li((function(e){\"rtl\"!=e&&(e=\"ltr\"),e!=this.direction&&(this.direction=e,this.iter((function(e){return e.order=null})),this.cm&&bo(this.cm))}))}),Ca.prototype.eachLine=Ca.prototype.iter;var xa=0;function ka(e){var t=this;if(Oa(t),!ye(t,e)&&!$r(t.display,e)){Ce(e),a&&(xa=+new Date);var r=Pn(t,e,!0),n=e.dataTransfer.files;if(r&&!t.isReadOnly())if(n&&n.length&&window.FileReader&&window.File)for(var i=n.length,o=Array(i),s=0,l=function(){++s==i&&Ni(t,(function(){r=dt(t.doc,r);var e={from:r,to:r,text:t.doc.splitLines(o.filter((function(e){return null!=e})).join(t.doc.lineSeparator())),origin:\"paste\"};Yo(t.doc,e),Ho(t.doc,ao(dt(t.doc,r),dt(t.doc,so(e))))}))()},c=function(e,r){if(t.options.allowDropFileTypes&&-1==H(t.options.allowDropFileTypes,e.type))l();else{var n=new FileReader;n.onerror=function(){return l()},n.onload=function(){var e=n.result;/[\\x00-\\x08\\x0e-\\x1f]{2}/.test(e)||(o[r]=e),l()},n.readAsText(e)}},u=0;u<n.length;u++)c(n[u],u);else{if(t.state.draggingText&&t.doc.sel.contains(r)>-1)return t.state.draggingText(e),void setTimeout((function(){return t.display.input.focus()}),20);try{var d=e.dataTransfer.getData(\"Text\");if(d){var f;if(t.state.draggingText&&!t.state.draggingText.copy&&(f=t.listSelections()),$o(t.doc,ao(r,r)),f)for(var h=0;h<f.length;++h)na(t.doc,\"\",f[h].anchor,f[h].head,\"drag\");t.replaceSelection(d,\"around\",\"paste\"),t.display.input.focus()}}catch(p){}}}}function Ta(e,t){if(a&&(!e.state.draggingText||+new Date-xa<100))Te(t);else if(!ye(e,t)&&!$r(e.display,t)&&(t.dataTransfer.setData(\"Text\",e.getSelection()),t.dataTransfer.effectAllowed=\"copyMove\",t.dataTransfer.setDragImage&&!f)){var r=M(\"img\",null,null,\"position: fixed; left: 0; top: 0;\");r.src=\"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\",d&&(r.width=r.height=1,e.display.wrapper.appendChild(r),r._top=r.offsetTop),t.dataTransfer.setDragImage(r,0,0),d&&r.parentNode.removeChild(r)}}function Sa(e,t){var r=Pn(e,t);if(r){var n=document.createDocumentFragment();qn(e,r,n),e.display.dragCursor||(e.display.dragCursor=M(\"div\",null,\"CodeMirror-cursors CodeMirror-dragcursors\"),e.display.lineSpace.insertBefore(e.display.dragCursor,e.display.cursorDiv)),D(e.display.dragCursor,n)}}function Oa(e){e.display.dragCursor&&(e.display.lineSpace.removeChild(e.display.dragCursor),e.display.dragCursor=null)}function Da(e){if(document.getElementsByClassName){for(var t=document.getElementsByClassName(\"CodeMirror\"),r=[],n=0;n<t.length;n++){var i=t[n].CodeMirror;i&&r.push(i)}r.length&&r[0].operation((function(){for(var t=0;t<r.length;t++)e(r[t])}))}}var Ma=!1;function Aa(){Ma||(Na(),Ma=!0)}function Na(){var e;pe(window,\"resize\",(function(){null==e&&(e=setTimeout((function(){e=null,Da(Ea)}),100))})),pe(window,\"blur\",(function(){return Da(Yn)}))}function Ea(e){var t=e.display;t.cachedCharWidth=t.cachedTextHeight=t.cachedPaddingH=null,t.scrollbarsClipped=!1,e.setSize()}for(var La={3:\"Pause\",8:\"Backspace\",9:\"Tab\",13:\"Enter\",16:\"Shift\",17:\"Ctrl\",18:\"Alt\",19:\"Pause\",20:\"CapsLock\",27:\"Esc\",32:\"Space\",33:\"PageUp\",34:\"PageDown\",35:\"End\",36:\"Home\",37:\"Left\",38:\"Up\",39:\"Right\",40:\"Down\",44:\"PrintScrn\",45:\"Insert\",46:\"Delete\",59:\";\",61:\"=\",91:\"Mod\",92:\"Mod\",93:\"Mod\",106:\"*\",107:\"=\",109:\"-\",110:\".\",111:\"/\",145:\"ScrollLock\",173:\"-\",186:\";\",187:\"=\",188:\",\",189:\"-\",190:\".\",191:\"/\",192:\"`\",219:\"[\",220:\"\\\\\",221:\"]\",222:\"'\",224:\"Mod\",63232:\"Up\",63233:\"Down\",63234:\"Left\",63235:\"Right\",63272:\"Delete\",63273:\"Home\",63275:\"End\",63276:\"PageUp\",63277:\"PageDown\",63302:\"Insert\"},Pa=0;Pa<10;Pa++)La[Pa+48]=La[Pa+96]=String(Pa);for(var Ra=65;Ra<=90;Ra++)La[Ra]=String.fromCharCode(Ra);for(var Ia=1;Ia<=12;Ia++)La[Ia+111]=La[Ia+63235]=\"F\"+Ia;var Wa={};function Ba(e){var t,r,n,i,o=e.split(/-(?!$)/);e=o[o.length-1];for(var a=0;a<o.length-1;a++){var s=o[a];if(/^(cmd|meta|m)$/i.test(s))i=!0;else if(/^a(lt)?$/i.test(s))t=!0;else if(/^(c|ctrl|control)$/i.test(s))r=!0;else{if(!/^s(hift)?$/i.test(s))throw new Error(\"Unrecognized modifier name: \"+s);n=!0}}return t&&(e=\"Alt-\"+e),r&&(e=\"Ctrl-\"+e),i&&(e=\"Cmd-\"+e),n&&(e=\"Shift-\"+e),e}function ja(e){var t={};for(var r in e)if(e.hasOwnProperty(r)){var n=e[r];if(/^(name|fallthrough|(de|at)tach)$/.test(r))continue;if(\"...\"==n){delete e[r];continue}for(var i=X(r.split(\" \"),Ba),o=0;o<i.length;o++){var a=void 0,s=void 0;o==i.length-1?(s=i.join(\" \"),a=n):(s=i.slice(0,o+1).join(\" \"),a=\"...\");var l=t[s];if(l){if(l!=a)throw new Error(\"Inconsistent bindings for \"+s)}else t[s]=a}delete e[r]}for(var c in t)e[c]=t[c];return e}function Ha(e,t,r,n){t=qa(t);var i=t.call?t.call(e,n):t[e];if(!1===i)return\"nothing\";if(\"...\"===i)return\"multi\";if(null!=i&&r(i))return\"handled\";if(t.fallthrough){if(\"[object Array]\"!=Object.prototype.toString.call(t.fallthrough))return Ha(e,t.fallthrough,r,n);for(var o=0;o<t.fallthrough.length;o++){var a=Ha(e,t.fallthrough[o],r,n);if(a)return a}}}function Fa(e){var t=\"string\"==typeof e?e:La[e.keyCode];return\"Ctrl\"==t||\"Alt\"==t||\"Shift\"==t||\"Mod\"==t}function $a(e,t,r){var n=e;return t.altKey&&\"Alt\"!=n&&(e=\"Alt-\"+e),(C?t.metaKey:t.ctrlKey)&&\"Ctrl\"!=n&&(e=\"Ctrl-\"+e),(C?t.ctrlKey:t.metaKey)&&\"Mod\"!=n&&(e=\"Cmd-\"+e),!r&&t.shiftKey&&\"Shift\"!=n&&(e=\"Shift-\"+e),e}function Ua(e,t){if(d&&34==e.keyCode&&e[\"char\"])return!1;var r=La[e.keyCode];return null!=r&&!e.altGraphKey&&(3==e.keyCode&&e.code&&(r=e.code),$a(r,e,t))}function qa(e){return\"string\"==typeof e?Wa[e]:e}function za(e,t){for(var r=e.doc.sel.ranges,n=[],i=0;i<r.length;i++){var o=t(r[i]);while(n.length&&ot(o.from,G(n).to)<=0){var a=n.pop();if(ot(a.from,o.from)<0){o.from=a.from;break}}n.push(o)}Ai(e,(function(){for(var t=n.length-1;t>=0;t--)na(e.doc,\"\",n[t].from,n[t].to,\"+delete\");ai(e)}))}function Ka(e,t,r){var n=ae(e.text,t+r,r);return n<0||n>e.text.length?null:n}function Ja(e,t,r){var n=Ka(e,t.ch,r);return null==n?null:new it(t.line,n,r<0?\"after\":\"before\")}function Va(e,t,r,n,i){if(e){\"rtl\"==t.doc.direction&&(i=-i);var o=fe(r,t.doc.direction);if(o){var a,s=i<0?G(o):o[0],l=i<0==(1==s.level),c=l?\"after\":\"before\";if(s.level>0||\"rtl\"==t.doc.direction){var u=en(t,r);a=i<0?r.text.length-1:0;var d=tn(t,u,a).top;a=se((function(e){return tn(t,u,e).top==d}),i<0==(1==s.level)?s.from:s.to-1,a),\"before\"==c&&(a=Ka(r,a,1))}else a=i<0?s.to:s.from;return new it(n,a,c)}}return new it(n,i<0?r.text.length:0,i<0?\"before\":\"after\")}function Ga(e,t,r,n){var i=fe(t,e.doc.direction);if(!i)return Ja(t,r,n);r.ch>=t.text.length?(r.ch=t.text.length,r.sticky=\"before\"):r.ch<=0&&(r.ch=0,r.sticky=\"after\");var o=ue(i,r.ch,r.sticky),a=i[o];if(\"ltr\"==e.doc.direction&&a.level%2==0&&(n>0?a.to>r.ch:a.from<r.ch))return Ja(t,r,n);var s,l=function(e,r){return Ka(t,e instanceof it?e.ch:e,r)},c=function(r){return e.options.lineWrapping?(s=s||en(e,t),xn(e,t,s,r)):{begin:0,end:t.text.length}},u=c(\"before\"==r.sticky?l(r,-1):r.ch);if(\"rtl\"==e.doc.direction||1==a.level){var d=1==a.level==n<0,f=l(r,d?1:-1);if(null!=f&&(d?f<=a.to&&f<=u.end:f>=a.from&&f>=u.begin)){var h=d?\"before\":\"after\";return new it(r.line,f,h)}}var p=function(e,t,n){for(var o=function(e,t){return t?new it(r.line,l(e,1),\"before\"):new it(r.line,e,\"after\")};e>=0&&e<i.length;e+=t){var a=i[e],s=t>0==(1!=a.level),c=s?n.begin:l(n.end,-1);if(a.from<=c&&c<a.to)return o(c,s);if(c=s?a.from:l(a.to,-1),n.begin<=c&&c<n.end)return o(c,s)}},m=p(o+n,n,u);if(m)return m;var g=n>0?u.end:l(u.begin,-1);return null==g||n>0&&g==t.text.length||(m=p(n>0?0:i.length-1,n,c(g)),!m)?null:m}Wa.basic={Left:\"goCharLeft\",Right:\"goCharRight\",Up:\"goLineUp\",Down:\"goLineDown\",End:\"goLineEnd\",Home:\"goLineStartSmart\",PageUp:\"goPageUp\",PageDown:\"goPageDown\",Delete:\"delCharAfter\",Backspace:\"delCharBefore\",\"Shift-Backspace\":\"delCharBefore\",Tab:\"defaultTab\",\"Shift-Tab\":\"indentAuto\",Enter:\"newlineAndIndent\",Insert:\"toggleOverwrite\",Esc:\"singleSelection\"},Wa.pcDefault={\"Ctrl-A\":\"selectAll\",\"Ctrl-D\":\"deleteLine\",\"Ctrl-Z\":\"undo\",\"Shift-Ctrl-Z\":\"redo\",\"Ctrl-Y\":\"redo\",\"Ctrl-Home\":\"goDocStart\",\"Ctrl-End\":\"goDocEnd\",\"Ctrl-Up\":\"goLineUp\",\"Ctrl-Down\":\"goLineDown\",\"Ctrl-Left\":\"goGroupLeft\",\"Ctrl-Right\":\"goGroupRight\",\"Alt-Left\":\"goLineStart\",\"Alt-Right\":\"goLineEnd\",\"Ctrl-Backspace\":\"delGroupBefore\",\"Ctrl-Delete\":\"delGroupAfter\",\"Ctrl-S\":\"save\",\"Ctrl-F\":\"find\",\"Ctrl-G\":\"findNext\",\"Shift-Ctrl-G\":\"findPrev\",\"Shift-Ctrl-F\":\"replace\",\"Shift-Ctrl-R\":\"replaceAll\",\"Ctrl-[\":\"indentLess\",\"Ctrl-]\":\"indentMore\",\"Ctrl-U\":\"undoSelection\",\"Shift-Ctrl-U\":\"redoSelection\",\"Alt-U\":\"redoSelection\",fallthrough:\"basic\"},Wa.emacsy={\"Ctrl-F\":\"goCharRight\",\"Ctrl-B\":\"goCharLeft\",\"Ctrl-P\":\"goLineUp\",\"Ctrl-N\":\"goLineDown\",\"Alt-F\":\"goWordRight\",\"Alt-B\":\"goWordLeft\",\"Ctrl-A\":\"goLineStart\",\"Ctrl-E\":\"goLineEnd\",\"Ctrl-V\":\"goPageDown\",\"Shift-Ctrl-V\":\"goPageUp\",\"Ctrl-D\":\"delCharAfter\",\"Ctrl-H\":\"delCharBefore\",\"Alt-D\":\"delWordAfter\",\"Alt-Backspace\":\"delWordBefore\",\"Ctrl-K\":\"killLine\",\"Ctrl-T\":\"transposeChars\",\"Ctrl-O\":\"openLine\"},Wa.macDefault={\"Cmd-A\":\"selectAll\",\"Cmd-D\":\"deleteLine\",\"Cmd-Z\":\"undo\",\"Shift-Cmd-Z\":\"redo\",\"Cmd-Y\":\"redo\",\"Cmd-Home\":\"goDocStart\",\"Cmd-Up\":\"goDocStart\",\"Cmd-End\":\"goDocEnd\",\"Cmd-Down\":\"goDocEnd\",\"Alt-Left\":\"goGroupLeft\",\"Alt-Right\":\"goGroupRight\",\"Cmd-Left\":\"goLineLeft\",\"Cmd-Right\":\"goLineRight\",\"Alt-Backspace\":\"delGroupBefore\",\"Ctrl-Alt-Backspace\":\"delGroupAfter\",\"Alt-Delete\":\"delGroupAfter\",\"Cmd-S\":\"save\",\"Cmd-F\":\"find\",\"Cmd-G\":\"findNext\",\"Shift-Cmd-G\":\"findPrev\",\"Cmd-Alt-F\":\"replace\",\"Shift-Cmd-Alt-F\":\"replaceAll\",\"Cmd-[\":\"indentLess\",\"Cmd-]\":\"indentMore\",\"Cmd-Backspace\":\"delWrappedLineLeft\",\"Cmd-Delete\":\"delWrappedLineRight\",\"Cmd-U\":\"undoSelection\",\"Shift-Cmd-U\":\"redoSelection\",\"Ctrl-Up\":\"goDocStart\",\"Ctrl-Down\":\"goDocEnd\",fallthrough:[\"basic\",\"emacsy\"]},Wa[\"default\"]=y?Wa.macDefault:Wa.pcDefault;var Xa={selectAll:Go,singleSelection:function(e){return e.setSelection(e.getCursor(\"anchor\"),e.getCursor(\"head\"),U)},killLine:function(e){return za(e,(function(t){if(t.empty()){var r=Xe(e.doc,t.head.line).text.length;return t.head.ch==r&&t.head.line<e.lastLine()?{from:t.head,to:it(t.head.line+1,0)}:{from:t.head,to:it(t.head.line,r)}}return{from:t.from(),to:t.to()}}))},deleteLine:function(e){return za(e,(function(t){return{from:it(t.from().line,0),to:dt(e.doc,it(t.to().line+1,0))}}))},delLineLeft:function(e){return za(e,(function(e){return{from:it(e.from().line,0),to:e.from()}}))},delWrappedLineLeft:function(e){return za(e,(function(t){var r=e.charCoords(t.head,\"div\").top+5,n=e.coordsChar({left:0,top:r},\"div\");return{from:n,to:t.from()}}))},delWrappedLineRight:function(e){return za(e,(function(t){var r=e.charCoords(t.head,\"div\").top+5,n=e.coordsChar({left:e.display.lineDiv.offsetWidth+100,top:r},\"div\");return{from:t.from(),to:n}}))},undo:function(e){return e.undo()},redo:function(e){return e.redo()},undoSelection:function(e){return e.undoSelection()},redoSelection:function(e){return e.redoSelection()},goDocStart:function(e){return e.extendSelection(it(e.firstLine(),0))},goDocEnd:function(e){return e.extendSelection(it(e.lastLine()))},goLineStart:function(e){return e.extendSelectionsBy((function(t){return Ya(e,t.head.line)}),{origin:\"+move\",bias:1})},goLineStartSmart:function(e){return e.extendSelectionsBy((function(t){return Za(e,t.head)}),{origin:\"+move\",bias:1})},goLineEnd:function(e){return e.extendSelectionsBy((function(t){return Qa(e,t.head.line)}),{origin:\"+move\",bias:-1})},goLineRight:function(e){return e.extendSelectionsBy((function(t){var r=e.cursorCoords(t.head,\"div\").top+5;return e.coordsChar({left:e.display.lineDiv.offsetWidth+100,top:r},\"div\")}),z)},goLineLeft:function(e){return e.extendSelectionsBy((function(t){var r=e.cursorCoords(t.head,\"div\").top+5;return e.coordsChar({left:0,top:r},\"div\")}),z)},goLineLeftSmart:function(e){return e.extendSelectionsBy((function(t){var r=e.cursorCoords(t.head,\"div\").top+5,n=e.coordsChar({left:0,top:r},\"div\");return n.ch<e.getLine(n.line).search(/\\S/)?Za(e,t.head):n}),z)},goLineUp:function(e){return e.moveV(-1,\"line\")},goLineDown:function(e){return e.moveV(1,\"line\")},goPageUp:function(e){return e.moveV(-1,\"page\")},goPageDown:function(e){return e.moveV(1,\"page\")},goCharLeft:function(e){return e.moveH(-1,\"char\")},goCharRight:function(e){return e.moveH(1,\"char\")},goColumnLeft:function(e){return e.moveH(-1,\"column\")},goColumnRight:function(e){return e.moveH(1,\"column\")},goWordLeft:function(e){return e.moveH(-1,\"word\")},goGroupRight:function(e){return e.moveH(1,\"group\")},goGroupLeft:function(e){return e.moveH(-1,\"group\")},goWordRight:function(e){return e.moveH(1,\"word\")},delCharBefore:function(e){return e.deleteH(-1,\"codepoint\")},delCharAfter:function(e){return e.deleteH(1,\"char\")},delWordBefore:function(e){return e.deleteH(-1,\"word\")},delWordAfter:function(e){return e.deleteH(1,\"word\")},delGroupBefore:function(e){return e.deleteH(-1,\"group\")},delGroupAfter:function(e){return e.deleteH(1,\"group\")},indentAuto:function(e){return e.indentSelection(\"smart\")},indentMore:function(e){return e.indentSelection(\"add\")},indentLess:function(e){return e.indentSelection(\"subtract\")},insertTab:function(e){return e.replaceSelection(\"\\t\")},insertSoftTab:function(e){for(var t=[],r=e.listSelections(),n=e.options.tabSize,i=0;i<r.length;i++){var o=r[i].from(),a=B(e.getLine(o.line),o.ch,n);t.push(V(n-a%n))}e.replaceSelections(t)},defaultTab:function(e){e.somethingSelected()?e.indentSelection(\"add\"):e.execCommand(\"insertTab\")},transposeChars:function(e){return Ai(e,(function(){for(var t=e.listSelections(),r=[],n=0;n<t.length;n++)if(t[n].empty()){var i=t[n].head,o=Xe(e.doc,i.line).text;if(o)if(i.ch==o.length&&(i=new it(i.line,i.ch-1)),i.ch>0)i=new it(i.line,i.ch+1),e.replaceRange(o.charAt(i.ch-1)+o.charAt(i.ch-2),it(i.line,i.ch-2),i,\"+transpose\");else if(i.line>e.doc.first){var a=Xe(e.doc,i.line-1).text;a&&(i=new it(i.line,1),e.replaceRange(o.charAt(0)+e.doc.lineSeparator()+a.charAt(a.length-1),it(i.line-1,a.length-1),i,\"+transpose\"))}r.push(new io(i,i))}e.setSelections(r)}))},newlineAndIndent:function(e){return Ai(e,(function(){for(var t=e.listSelections(),r=t.length-1;r>=0;r--)e.replaceRange(e.doc.lineSeparator(),t[r].anchor,t[r].head,\"+input\");t=e.listSelections();for(var n=0;n<t.length;n++)e.indentLine(t[n].from().line,null,!0);ai(e)}))},openLine:function(e){return e.replaceSelection(\"\\n\",\"start\")},toggleOverwrite:function(e){return e.toggleOverwrite()}};function Ya(e,t){var r=Xe(e.doc,t),n=Yt(r);return n!=r&&(t=et(n)),Va(!0,e,n,t,1)}function Qa(e,t){var r=Xe(e.doc,t),n=Qt(r);return n!=r&&(t=et(n)),Va(!0,e,r,t,-1)}function Za(e,t){var r=Ya(e,t.line),n=Xe(e.doc,r.line),i=fe(n,e.doc.direction);if(!i||0==i[0].level){var o=Math.max(r.ch,n.text.search(/\\S/)),a=t.line==r.line&&t.ch<=o&&t.ch;return it(r.line,a?0:o,r.sticky)}return r}function es(e,t,r){if(\"string\"==typeof t&&(t=Xa[t],!t))return!1;e.display.input.ensurePolled();var n=e.display.shift,i=!1;try{e.isReadOnly()&&(e.state.suppressEdits=!0),r&&(e.display.shift=!1),i=t(e)!=$}finally{e.display.shift=n,e.state.suppressEdits=!1}return i}function ts(e,t,r){for(var n=0;n<e.state.keyMaps.length;n++){var i=Ha(t,e.state.keyMaps[n],r,e);if(i)return i}return e.options.extraKeys&&Ha(t,e.options.extraKeys,r,e)||Ha(t,e.options.keyMap,r,e)}var rs=new j;function ns(e,t,r,n){var i=e.state.keySeq;if(i){if(Fa(t))return\"handled\";if(/\\'$/.test(t)?e.state.keySeq=null:rs.set(50,(function(){e.state.keySeq==i&&(e.state.keySeq=null,e.display.input.reset())})),is(e,i+\" \"+t,r,n))return!0}return is(e,t,r,n)}function is(e,t,r,n){var i=ts(e,t,n);return\"multi\"==i&&(e.state.keySeq=t),\"handled\"==i&&Or(e,\"keyHandled\",e,t,r),\"handled\"!=i&&\"multi\"!=i||(Ce(r),Jn(e)),!!i}function os(e,t){var r=Ua(t,!0);return!!r&&(t.shiftKey&&!e.state.keySeq?ns(e,\"Shift-\"+r,t,(function(t){return es(e,t,!0)}))||ns(e,r,t,(function(t){if(\"string\"==typeof t?/^go[A-Z]/.test(t):t.motion)return es(e,t)})):ns(e,r,t,(function(t){return es(e,t)})))}function as(e,t,r){return ns(e,\"'\"+r+\"'\",t,(function(t){return es(e,t,!0)}))}var ss=null;function ls(e){var t=this;if((!e.target||e.target==t.display.input.getField())&&(t.curOp.focus=E(),!ye(t,e))){a&&s<11&&27==e.keyCode&&(e.returnValue=!1);var n=e.keyCode;t.display.shift=16==n||e.shiftKey;var i=os(t,e);d&&(ss=i?n:null,i||88!=n||Re||!(y?e.metaKey:e.ctrlKey)||t.replaceSelection(\"\",null,\"cut\")),r&&!y&&!i&&46==n&&e.shiftKey&&!e.ctrlKey&&document.execCommand&&document.execCommand(\"cut\"),18!=n||/\\bCodeMirror-crosshair\\b/.test(t.display.lineDiv.className)||cs(t)}}function cs(e){var t=e.display.lineDiv;function r(e){18!=e.keyCode&&e.altKey||(S(t,\"CodeMirror-crosshair\"),ge(document,\"keyup\",r),ge(document,\"mouseover\",r))}L(t,\"CodeMirror-crosshair\"),pe(document,\"keyup\",r),pe(document,\"mouseover\",r)}function us(e){16==e.keyCode&&(this.doc.sel.shift=!1),ye(this,e)}function ds(e){var t=this;if((!e.target||e.target==t.display.input.getField())&&!($r(t.display,e)||ye(t,e)||e.ctrlKey&&!e.altKey||y&&e.metaKey)){var r=e.keyCode,n=e.charCode;if(d&&r==ss)return ss=null,void Ce(e);if(!d||e.which&&!(e.which<10)||!os(t,e)){var i=String.fromCharCode(null==n?r:n);\"\\b\"!=i&&(as(t,e,i)||t.display.input.onKeyPress(e))}}}var fs,hs,ps=400,ms=function(e,t,r){this.time=e,this.pos=t,this.button=r};function gs(e,t){var r=+new Date;return hs&&hs.compare(r,e,t)?(fs=hs=null,\"triple\"):fs&&fs.compare(r,e,t)?(hs=new ms(r,e,t),fs=null,\"double\"):(fs=new ms(r,e,t),hs=null,\"single\")}function vs(e){var t=this,r=t.display;if(!(ye(t,e)||r.activeTouch&&r.input.supportsTouch()))if(r.input.ensurePolled(),r.shift=e.shiftKey,$r(r,e))l||(r.scroller.draggable=!1,setTimeout((function(){return r.scroller.draggable=!0}),100));else if(!Ss(t,e)){var n=Pn(t,e),i=Oe(e),o=n?gs(n,i):\"single\";window.focus(),1==i&&t.state.selectingText&&t.state.selectingText(e),n&&ys(t,i,n,o,e)||(1==i?n?bs(t,n,o,e):Se(e)==r.scroller&&Ce(e):2==i?(n&&Ro(t.doc,n),setTimeout((function(){return r.input.focus()}),20)):3==i&&(x?t.display.input.onContextMenu(e):Gn(t)))}}function ys(e,t,r,n,i){var o=\"Click\";return\"double\"==n?o=\"Double\"+o:\"triple\"==n&&(o=\"Triple\"+o),o=(1==t?\"Left\":2==t?\"Middle\":\"Right\")+o,ns(e,$a(o,i),i,(function(t){if(\"string\"==typeof t&&(t=Xa[t]),!t)return!1;var n=!1;try{e.isReadOnly()&&(e.state.suppressEdits=!0),n=t(e,r)!=$}finally{e.state.suppressEdits=!1}return n}))}function _s(e,t,r){var n=e.getOption(\"configureMouse\"),i=n?n(e,t,r):{};if(null==i.unit){var o=_?r.shiftKey&&r.metaKey:r.altKey;i.unit=o?\"rectangle\":\"single\"==t?\"char\":\"double\"==t?\"word\":\"line\"}return(null==i.extend||e.doc.extend)&&(i.extend=e.doc.extend||r.shiftKey),null==i.addNew&&(i.addNew=y?r.metaKey:r.ctrlKey),null==i.moveOnDrag&&(i.moveOnDrag=!(y?r.altKey:r.ctrlKey)),i}function bs(e,t,r,n){a?setTimeout(I(Vn,e),0):e.curOp.focus=E();var i,o=_s(e,r,n),s=e.doc.sel;e.options.dragDrop&&Ae&&!e.isReadOnly()&&\"single\"==r&&(i=s.contains(t))>-1&&(ot((i=s.ranges[i]).from(),t)<0||t.xRel>0)&&(ot(i.to(),t)>0||t.xRel<0)?ws(e,n,t,o):xs(e,n,t,o)}function ws(e,t,r,n){var i=e.display,o=!1,c=Ni(e,(function(t){l&&(i.scroller.draggable=!1),e.state.draggingText=!1,e.state.delayingBlurEvent&&(e.hasFocus()?e.state.delayingBlurEvent=!1:Gn(e)),ge(i.wrapper.ownerDocument,\"mouseup\",c),ge(i.wrapper.ownerDocument,\"mousemove\",u),ge(i.scroller,\"dragstart\",d),ge(i.scroller,\"drop\",c),o||(Ce(t),n.addNew||Ro(e.doc,r,null,null,n.extend),l&&!f||a&&9==s?setTimeout((function(){i.wrapper.ownerDocument.body.focus({preventScroll:!0}),i.input.focus()}),20):i.input.focus())})),u=function(e){o=o||Math.abs(t.clientX-e.clientX)+Math.abs(t.clientY-e.clientY)>=10},d=function(){return o=!0};l&&(i.scroller.draggable=!0),e.state.draggingText=c,c.copy=!n.moveOnDrag,pe(i.wrapper.ownerDocument,\"mouseup\",c),pe(i.wrapper.ownerDocument,\"mousemove\",u),pe(i.scroller,\"dragstart\",d),pe(i.scroller,\"drop\",c),e.state.delayingBlurEvent=!0,setTimeout((function(){return i.input.focus()}),20),i.scroller.dragDrop&&i.scroller.dragDrop()}function Cs(e,t,r){if(\"char\"==r)return new io(t,t);if(\"word\"==r)return e.findWordAt(t);if(\"line\"==r)return new io(it(t.line,0),dt(e.doc,it(t.line+1,0)));var n=r(e,t);return new io(n.from,n.to)}function xs(e,t,r,n){a&&Gn(e);var i=e.display,o=e.doc;Ce(t);var s,l,c=o.sel,u=c.ranges;if(n.addNew&&!n.extend?(l=o.sel.contains(r),s=l>-1?u[l]:new io(r,r)):(s=o.sel.primary(),l=o.sel.primIndex),\"rectangle\"==n.unit)n.addNew||(s=new io(r,r)),r=Pn(e,t,!0,!0),l=-1;else{var d=Cs(e,r,n.unit);s=n.extend?Po(s,d.anchor,d.head,n.extend):d}n.addNew?-1==l?(l=u.length,Fo(o,oo(e,u.concat([s]),l),{scroll:!1,origin:\"*mouse\"})):u.length>1&&u[l].empty()&&\"char\"==n.unit&&!n.extend?(Fo(o,oo(e,u.slice(0,l).concat(u.slice(l+1)),0),{scroll:!1,origin:\"*mouse\"}),c=o.sel):Wo(o,l,s,q):(l=0,Fo(o,new no([s],0),q),c=o.sel);var f=r;function h(t){if(0!=ot(f,t))if(f=t,\"rectangle\"==n.unit){for(var i=[],a=e.options.tabSize,u=B(Xe(o,r.line).text,r.ch,a),d=B(Xe(o,t.line).text,t.ch,a),h=Math.min(u,d),p=Math.max(u,d),m=Math.min(r.line,t.line),g=Math.min(e.lastLine(),Math.max(r.line,t.line));m<=g;m++){var v=Xe(o,m).text,y=K(v,h,a);h==p?i.push(new io(it(m,y),it(m,y))):v.length>y&&i.push(new io(it(m,y),it(m,K(v,p,a))))}i.length||i.push(new io(r,r)),Fo(o,oo(e,c.ranges.slice(0,l).concat(i),l),{origin:\"*mouse\",scroll:!1}),e.scrollIntoView(t)}else{var _,b=s,w=Cs(e,t,n.unit),C=b.anchor;ot(w.anchor,C)>0?(_=w.head,C=ct(b.from(),w.anchor)):(_=w.anchor,C=lt(b.to(),w.head));var x=c.ranges.slice(0);x[l]=ks(e,new io(dt(o,C),_)),Fo(o,oo(e,x,l),q)}}var p=i.wrapper.getBoundingClientRect(),m=0;function g(t){var r=++m,a=Pn(e,t,!0,\"rectangle\"==n.unit);if(a)if(0!=ot(a,f)){e.curOp.focus=E(),h(a);var s=ei(i,o);(a.line>=s.to||a.line<s.from)&&setTimeout(Ni(e,(function(){m==r&&g(t)})),150)}else{var l=t.clientY<p.top?-20:t.clientY>p.bottom?20:0;l&&setTimeout(Ni(e,(function(){m==r&&(i.scroller.scrollTop+=l,g(t))})),50)}}function v(t){e.state.selectingText=!1,m=1/0,t&&(Ce(t),i.input.focus()),ge(i.wrapper.ownerDocument,\"mousemove\",y),ge(i.wrapper.ownerDocument,\"mouseup\",_),o.history.lastSelOrigin=null}var y=Ni(e,(function(e){0!==e.buttons&&Oe(e)?g(e):v(e)})),_=Ni(e,v);e.state.selectingText=_,pe(i.wrapper.ownerDocument,\"mousemove\",y),pe(i.wrapper.ownerDocument,\"mouseup\",_)}function ks(e,t){var r=t.anchor,n=t.head,i=Xe(e.doc,r.line);if(0==ot(r,n)&&r.sticky==n.sticky)return t;var o=fe(i);if(!o)return t;var a=ue(o,r.ch,r.sticky),s=o[a];if(s.from!=r.ch&&s.to!=r.ch)return t;var l,c=a+(s.from==r.ch==(1!=s.level)?0:1);if(0==c||c==o.length)return t;if(n.line!=r.line)l=(n.line-r.line)*(\"ltr\"==e.doc.direction?1:-1)>0;else{var u=ue(o,n.ch,n.sticky),d=u-a||(n.ch-r.ch)*(1==s.level?-1:1);l=u==c-1||u==c?d<0:d>0}var f=o[c+(l?-1:0)],h=l==(1==f.level),p=h?f.from:f.to,m=h?\"after\":\"before\";return r.ch==p&&r.sticky==m?t:new io(new it(r.line,p,m),n)}function Ts(e,t,r,n){var i,o;if(t.touches)i=t.touches[0].clientX,o=t.touches[0].clientY;else try{i=t.clientX,o=t.clientY}catch(f){return!1}if(i>=Math.floor(e.display.gutters.getBoundingClientRect().right))return!1;n&&Ce(t);var a=e.display,s=a.lineDiv.getBoundingClientRect();if(o>s.bottom||!be(e,r))return ke(t);o-=s.top-a.viewOffset;for(var l=0;l<e.display.gutterSpecs.length;++l){var c=a.gutters.childNodes[l];if(c&&c.getBoundingClientRect().right>=i){var u=tt(e.doc,o),d=e.display.gutterSpecs[l];return ve(e,r,e,u,d.className,t),ke(t)}}}function Ss(e,t){return Ts(e,t,\"gutterClick\",!0)}function Os(e,t){$r(e.display,t)||Ds(e,t)||ye(e,t,\"contextmenu\")||x||e.display.input.onContextMenu(t)}function Ds(e,t){return!!be(e,\"gutterContextMenu\")&&Ts(e,t,\"gutterContextMenu\",!1)}function Ms(e){e.display.wrapper.className=e.display.wrapper.className.replace(/\\s*cm-s-\\S+/g,\"\")+e.options.theme.replace(/(^|\\s)\\s*/g,\" cm-s-\"),dn(e)}ms.prototype.compare=function(e,t,r){return this.time+ps>e&&0==ot(t,this.pos)&&r==this.button};var As={toString:function(){return\"CodeMirror.Init\"}},Ns={},Es={};function Ls(e){var t=e.optionHandlers;function r(r,n,i,o){e.defaults[r]=n,i&&(t[r]=o?function(e,t,r){r!=As&&i(e,t,r)}:i)}e.defineOption=r,e.Init=As,r(\"value\",\"\",(function(e,t){return e.setValue(t)}),!0),r(\"mode\",null,(function(e,t){e.doc.modeOption=t,ho(e)}),!0),r(\"indentUnit\",2,ho,!0),r(\"indentWithTabs\",!1),r(\"smartIndent\",!0),r(\"tabSize\",4,(function(e){po(e),dn(e),In(e)}),!0),r(\"lineSeparator\",null,(function(e,t){if(e.doc.lineSep=t,t){var r=[],n=e.doc.first;e.doc.iter((function(e){for(var i=0;;){var o=e.text.indexOf(t,i);if(-1==o)break;i=o+t.length,r.push(it(n,o))}n++}));for(var i=r.length-1;i>=0;i--)na(e.doc,t,r[i],it(r[i].line,r[i].ch+t.length))}})),r(\"specialChars\",/[\\u0000-\\u001f\\u007f-\\u009f\\u00ad\\u061c\\u200b-\\u200c\\u200e\\u200f\\u2028\\u2029\\ufeff\\ufff9-\\ufffc]/g,(function(e,t,r){e.state.specialChars=new RegExp(t.source+(t.test(\"\\t\")?\"\":\"|\\t\"),\"g\"),r!=As&&e.refresh()})),r(\"specialCharPlaceholder\",pr,(function(e){return e.refresh()}),!0),r(\"electricChars\",!0),r(\"inputStyle\",v?\"contenteditable\":\"textarea\",(function(){throw new Error(\"inputStyle can not (yet) be changed in a running editor\")}),!0),r(\"spellcheck\",!1,(function(e,t){return e.getInputField().spellcheck=t}),!0),r(\"autocorrect\",!1,(function(e,t){return e.getInputField().autocorrect=t}),!0),r(\"autocapitalize\",!1,(function(e,t){return e.getInputField().autocapitalize=t}),!0),r(\"rtlMoveVisually\",!b),r(\"wholeLineUpdateBefore\",!0),r(\"theme\",\"default\",(function(e){Ms(e),Xi(e)}),!0),r(\"keyMap\",\"default\",(function(e,t,r){var n=qa(t),i=r!=As&&qa(r);i&&i.detach&&i.detach(e,n),n.attach&&n.attach(e,i||null)})),r(\"extraKeys\",null),r(\"configureMouse\",null),r(\"lineWrapping\",!1,Rs,!0),r(\"gutters\",[],(function(e,t){e.display.gutterSpecs=Vi(t,e.options.lineNumbers),Xi(e)}),!0),r(\"fixedGutter\",!0,(function(e,t){e.display.gutters.style.left=t?Nn(e.display)+\"px\":\"0\",e.refresh()}),!0),r(\"coverGutterNextToScrollbar\",!1,(function(e){return vi(e)}),!0),r(\"scrollbarStyle\",\"native\",(function(e){bi(e),vi(e),e.display.scrollbars.setScrollTop(e.doc.scrollTop),e.display.scrollbars.setScrollLeft(e.doc.scrollLeft)}),!0),r(\"lineNumbers\",!1,(function(e,t){e.display.gutterSpecs=Vi(e.options.gutters,t),Xi(e)}),!0),r(\"firstLineNumber\",1,Xi,!0),r(\"lineNumberFormatter\",(function(e){return e}),Xi,!0),r(\"showCursorWhenSelecting\",!1,$n,!0),r(\"resetSelectionOnContextMenu\",!0),r(\"lineWiseCopyCut\",!0),r(\"pasteLinesPerSelection\",!0),r(\"selectionsMayTouch\",!1),r(\"readOnly\",!1,(function(e,t){\"nocursor\"==t&&(Yn(e),e.display.input.blur()),e.display.input.readOnlyChanged(t)})),r(\"screenReaderLabel\",null,(function(e,t){t=\"\"===t?null:t,e.display.input.screenReaderLabelChanged(t)})),r(\"disableInput\",!1,(function(e,t){t||e.display.input.reset()}),!0),r(\"dragDrop\",!0,Ps),r(\"allowDropFileTypes\",null),r(\"cursorBlinkRate\",530),r(\"cursorScrollMargin\",0),r(\"cursorHeight\",1,$n,!0),r(\"singleCursorHeightPerLine\",!0,$n,!0),r(\"workTime\",100),r(\"workDelay\",100),r(\"flattenSpans\",!0,po,!0),r(\"addModeClass\",!1,po,!0),r(\"pollInterval\",100),r(\"undoDepth\",200,(function(e,t){return e.doc.history.undoDepth=t})),r(\"historyEventDelay\",1250),r(\"viewportMargin\",10,(function(e){return e.refresh()}),!0),r(\"maxHighlightLength\",1e4,po,!0),r(\"moveInputWithCursor\",!0,(function(e,t){t||e.display.input.resetPosition()})),r(\"tabindex\",null,(function(e,t){return e.display.input.getField().tabIndex=t||\"\"})),r(\"autofocus\",null),r(\"direction\",\"ltr\",(function(e,t){return e.doc.setDirection(t)}),!0),r(\"phrases\",null)}function Ps(e,t,r){var n=r&&r!=As;if(!t!=!n){var i=e.display.dragFunctions,o=t?pe:ge;o(e.display.scroller,\"dragstart\",i.start),o(e.display.scroller,\"dragenter\",i.enter),o(e.display.scroller,\"dragover\",i.over),o(e.display.scroller,\"dragleave\",i.leave),o(e.display.scroller,\"drop\",i.drop)}}function Rs(e){e.options.lineWrapping?(L(e.display.wrapper,\"CodeMirror-wrap\"),e.display.sizer.style.minWidth=\"\",e.display.sizerWidth=null):(S(e.display.wrapper,\"CodeMirror-wrap\"),ar(e)),Ln(e),In(e),dn(e),setTimeout((function(){return vi(e)}),100)}function Is(e,t){var r=this;if(!(this instanceof Is))return new Is(e,t);this.options=t=t?W(t):{},W(Ns,t,!1);var n=t.value;\"string\"==typeof n?n=new Ca(n,t.mode,null,t.lineSeparator,t.direction):t.mode&&(n.modeOption=t.mode),this.doc=n;var i=new Is.inputStyles[t.inputStyle](this),o=this.display=new Yi(e,n,i,t);for(var c in o.wrapper.CodeMirror=this,Ms(this),t.lineWrapping&&(this.display.wrapper.className+=\" CodeMirror-wrap\"),bi(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:-1,cutIncoming:-1,selectingText:!1,draggingText:!1,highlight:new j,keySeq:null,specialChars:null},t.autofocus&&!v&&o.input.focus(),a&&s<11&&setTimeout((function(){return r.display.input.reset(!0)}),20),Ws(this),Aa(),Ci(this),this.curOp.forceUpdate=!0,yo(this,n),t.autofocus&&!v||this.hasFocus()?setTimeout((function(){r.hasFocus()&&!r.state.focused&&Xn(r)}),20):Yn(this),Es)Es.hasOwnProperty(c)&&Es[c](this,t[c],As);Ji(this),t.finishInit&&t.finishInit(this);for(var u=0;u<Bs.length;++u)Bs[u](this);xi(this),l&&t.lineWrapping&&\"optimizelegibility\"==getComputedStyle(o.lineDiv).textRendering&&(o.lineDiv.style.textRendering=\"auto\")}function Ws(e){var t=e.display;pe(t.scroller,\"mousedown\",Ni(e,vs)),pe(t.scroller,\"dblclick\",a&&s<11?Ni(e,(function(t){if(!ye(e,t)){var r=Pn(e,t);if(r&&!Ss(e,t)&&!$r(e.display,t)){Ce(t);var n=e.findWordAt(r);Ro(e.doc,n.anchor,n.head)}}})):function(t){return ye(e,t)||Ce(t)}),pe(t.scroller,\"contextmenu\",(function(t){return Os(e,t)})),pe(t.input.getField(),\"contextmenu\",(function(r){t.scroller.contains(r.target)||Os(e,r)}));var r,n={end:0};function i(){t.activeTouch&&(r=setTimeout((function(){return t.activeTouch=null}),1e3),n=t.activeTouch,n.end=+new Date)}function o(e){if(1!=e.touches.length)return!1;var t=e.touches[0];return t.radiusX<=1&&t.radiusY<=1}function l(e,t){if(null==t.left)return!0;var r=t.left-e.left,n=t.top-e.top;return r*r+n*n>400}pe(t.scroller,\"touchstart\",(function(i){if(!ye(e,i)&&!o(i)&&!Ss(e,i)){t.input.ensurePolled(),clearTimeout(r);var a=+new Date;t.activeTouch={start:a,moved:!1,prev:a-n.end<=300?n:null},1==i.touches.length&&(t.activeTouch.left=i.touches[0].pageX,t.activeTouch.top=i.touches[0].pageY)}})),pe(t.scroller,\"touchmove\",(function(){t.activeTouch&&(t.activeTouch.moved=!0)})),pe(t.scroller,\"touchend\",(function(r){var n=t.activeTouch;if(n&&!$r(t,r)&&null!=n.left&&!n.moved&&new Date-n.start<300){var o,a=e.coordsChar(t.activeTouch,\"page\");o=!n.prev||l(n,n.prev)?new io(a,a):!n.prev.prev||l(n,n.prev.prev)?e.findWordAt(a):new io(it(a.line,0),dt(e.doc,it(a.line+1,0))),e.setSelection(o.anchor,o.head),e.focus(),Ce(r)}i()})),pe(t.scroller,\"touchcancel\",i),pe(t.scroller,\"scroll\",(function(){t.scroller.clientHeight&&(di(e,t.scroller.scrollTop),hi(e,t.scroller.scrollLeft,!0),ve(e,\"scroll\",e))})),pe(t.scroller,\"mousewheel\",(function(t){return ro(e,t)})),pe(t.scroller,\"DOMMouseScroll\",(function(t){return ro(e,t)})),pe(t.wrapper,\"scroll\",(function(){return t.wrapper.scrollTop=t.wrapper.scrollLeft=0})),t.dragFunctions={enter:function(t){ye(e,t)||Te(t)},over:function(t){ye(e,t)||(Sa(e,t),Te(t))},start:function(t){return Ta(e,t)},drop:Ni(e,ka),leave:function(t){ye(e,t)||Oa(e)}};var c=t.input.getField();pe(c,\"keyup\",(function(t){return us.call(e,t)})),pe(c,\"keydown\",Ni(e,ls)),pe(c,\"keypress\",Ni(e,ds)),pe(c,\"focus\",(function(t){return Xn(e,t)})),pe(c,\"blur\",(function(t){return Yn(e,t)}))}Is.defaults=Ns,Is.optionHandlers=Es;var Bs=[];function js(e,t,r,n){var i,o=e.doc;null==r&&(r=\"add\"),\"smart\"==r&&(o.mode.indent?i=yt(e,t).state:r=\"prev\");var a=e.options.tabSize,s=Xe(o,t),l=B(s.text,null,a);s.stateAfter&&(s.stateAfter=null);var c,u=s.text.match(/^\\s*/)[0];if(n||/\\S/.test(s.text)){if(\"smart\"==r&&(c=o.mode.indent(i,s.text.slice(u.length),s.text),c==$||c>150)){if(!n)return;r=\"prev\"}}else c=0,r=\"not\";\"prev\"==r?c=t>o.first?B(Xe(o,t-1).text,null,a):0:\"add\"==r?c=l+e.options.indentUnit:\"subtract\"==r?c=l-e.options.indentUnit:\"number\"==typeof r&&(c=l+r),c=Math.max(0,c);var d=\"\",f=0;if(e.options.indentWithTabs)for(var h=Math.floor(c/a);h;--h)f+=a,d+=\"\\t\";if(f<c&&(d+=V(c-f)),d!=u)return na(o,d,it(t,0),it(t,u.length),\"+input\"),s.stateAfter=null,!0;for(var p=0;p<o.sel.ranges.length;p++){var m=o.sel.ranges[p];if(m.head.line==t&&m.head.ch<u.length){var g=it(t,u.length);Wo(o,p,new io(g,g));break}}}Is.defineInitHook=function(e){return Bs.push(e)};var Hs=null;function Fs(e){Hs=e}function $s(e,t,r,n,i){var o=e.doc;e.display.shift=!1,n||(n=o.sel);var a=+new Date-200,s=\"paste\"==i||e.state.pasteIncoming>a,l=Le(t),c=null;if(s&&n.ranges.length>1)if(Hs&&Hs.text.join(\"\\n\")==t){if(n.ranges.length%Hs.text.length==0){c=[];for(var u=0;u<Hs.text.length;u++)c.push(o.splitLines(Hs.text[u]))}}else l.length==n.ranges.length&&e.options.pasteLinesPerSelection&&(c=X(l,(function(e){return[e]})));for(var d=e.curOp.updateInput,f=n.ranges.length-1;f>=0;f--){var h=n.ranges[f],p=h.from(),m=h.to();h.empty()&&(r&&r>0?p=it(p.line,p.ch-r):e.state.overwrite&&!s?m=it(m.line,Math.min(Xe(o,m.line).text.length,m.ch+G(l).length)):s&&Hs&&Hs.lineWise&&Hs.text.join(\"\\n\")==l.join(\"\\n\")&&(p=m=it(p.line,0)));var g={from:p,to:m,text:c?c[f%c.length]:l,origin:i||(s?\"paste\":e.state.cutIncoming>a?\"cut\":\"+input\")};Yo(e.doc,g),Or(e,\"inputRead\",e,g)}t&&!s&&qs(e,t),ai(e),e.curOp.updateInput<2&&(e.curOp.updateInput=d),e.curOp.typing=!0,e.state.pasteIncoming=e.state.cutIncoming=-1}function Us(e,t){var r=e.clipboardData&&e.clipboardData.getData(\"Text\");if(r)return e.preventDefault(),t.isReadOnly()||t.options.disableInput||Ai(t,(function(){return $s(t,r,0,null,\"paste\")})),!0}function qs(e,t){if(e.options.electricChars&&e.options.smartIndent)for(var r=e.doc.sel,n=r.ranges.length-1;n>=0;n--){var i=r.ranges[n];if(!(i.head.ch>100||n&&r.ranges[n-1].head.line==i.head.line)){var o=e.getModeAt(i.head),a=!1;if(o.electricChars){for(var s=0;s<o.electricChars.length;s++)if(t.indexOf(o.electricChars.charAt(s))>-1){a=js(e,i.head.line,\"smart\");break}}else o.electricInput&&o.electricInput.test(Xe(e.doc,i.head.line).text.slice(0,i.head.ch))&&(a=js(e,i.head.line,\"smart\"));a&&Or(e,\"electricInput\",e,i.head.line)}}}function zs(e){for(var t=[],r=[],n=0;n<e.doc.sel.ranges.length;n++){var i=e.doc.sel.ranges[n].head.line,o={anchor:it(i,0),head:it(i+1,0)};r.push(o),t.push(e.getRange(o.anchor,o.head))}return{text:t,ranges:r}}function Ks(e,t,r,n){e.setAttribute(\"autocorrect\",r?\"\":\"off\"),e.setAttribute(\"autocapitalize\",n?\"\":\"off\"),e.setAttribute(\"spellcheck\",!!t)}function Js(){var e=M(\"textarea\",null,null,\"position: absolute; bottom: -1em; padding: 0; width: 1px; height: 1em; outline: none\"),t=M(\"div\",[e],null,\"overflow: hidden; position: relative; width: 3px; height: 0px;\");return l?e.style.width=\"1000px\":e.setAttribute(\"wrap\",\"off\"),m&&(e.style.border=\"1px solid black\"),Ks(e),t}function Vs(e){var t=e.optionHandlers,r=e.helpers={};e.prototype={constructor:e,focus:function(){window.focus(),this.display.input.focus()},setOption:function(e,r){var n=this.options,i=n[e];n[e]==r&&\"mode\"!=e||(n[e]=r,t.hasOwnProperty(e)&&Ni(this,t[e])(this,r,i),ve(this,\"optionChange\",this,e))},getOption:function(e){return this.options[e]},getDoc:function(){return this.doc},addKeyMap:function(e,t){this.state.keyMaps[t?\"push\":\"unshift\"](qa(e))},removeKeyMap:function(e){for(var t=this.state.keyMaps,r=0;r<t.length;++r)if(t[r]==e||t[r].name==e)return t.splice(r,1),!0},addOverlay:Ei((function(t,r){var n=t.token?t:e.getMode(this.options,t);if(n.startState)throw new Error(\"Overlays may not be stateful.\");Y(this.state.overlays,{mode:n,modeSpec:t,opaque:r&&r.opaque,priority:r&&r.priority||0},(function(e){return e.priority})),this.state.modeGen++,In(this)})),removeOverlay:Ei((function(e){for(var t=this.state.overlays,r=0;r<t.length;++r){var n=t[r].modeSpec;if(n==e||\"string\"==typeof e&&n.name==e)return t.splice(r,1),this.state.modeGen++,void In(this)}})),indentLine:Ei((function(e,t,r){\"string\"!=typeof t&&\"number\"!=typeof t&&(t=null==t?this.options.smartIndent?\"smart\":\"prev\":t?\"add\":\"subtract\"),rt(this.doc,e)&&js(this,e,t,r)})),indentSelection:Ei((function(e){for(var t=this.doc.sel.ranges,r=-1,n=0;n<t.length;n++){var i=t[n];if(i.empty())i.head.line>r&&(js(this,i.head.line,e,!0),r=i.head.line,n==this.doc.sel.primIndex&&ai(this));else{var o=i.from(),a=i.to(),s=Math.max(r,o.line);r=Math.min(this.lastLine(),a.line-(a.ch?0:1))+1;for(var l=s;l<r;++l)js(this,l,e);var c=this.doc.sel.ranges;0==o.ch&&t.length==c.length&&c[n].from().ch>0&&Wo(this.doc,n,new io(o,c[n].to()),U)}}})),getTokenAt:function(e,t){return xt(this,e,t)},getLineTokens:function(e,t){return xt(this,it(e),t,!0)},getTokenTypeAt:function(e){e=dt(this.doc,e);var t,r=vt(this,Xe(this.doc,e.line)),n=0,i=(r.length-1)/2,o=e.ch;if(0==o)t=r[2];else for(;;){var a=n+i>>1;if((a?r[2*a-1]:0)>=o)i=a;else{if(!(r[2*a+1]<o)){t=r[2*a+2];break}n=a+1}}var s=t?t.indexOf(\"overlay \"):-1;return s<0?t:0==s?null:t.slice(0,s-1)},getModeAt:function(t){var r=this.doc.mode;return r.innerMode?e.innerMode(r,this.getTokenAt(t).state).mode:r},getHelper:function(e,t){return this.getHelpers(e,t)[0]},getHelpers:function(e,t){var n=[];if(!r.hasOwnProperty(t))return n;var i=r[t],o=this.getModeAt(e);if(\"string\"==typeof o[t])i[o[t]]&&n.push(i[o[t]]);else if(o[t])for(var a=0;a<o[t].length;a++){var s=i[o[t][a]];s&&n.push(s)}else o.helperType&&i[o.helperType]?n.push(i[o.helperType]):i[o.name]&&n.push(i[o.name]);for(var l=0;l<i._global.length;l++){var c=i._global[l];c.pred(o,this)&&-1==H(n,c.val)&&n.push(c.val)}return n},getStateAfter:function(e,t){var r=this.doc;return e=ut(r,null==e?r.first+r.size-1:e),yt(this,e+1,t).state},cursorCoords:function(e,t){var r,n=this.doc.sel.primary();return r=null==e?n.head:\"object\"==typeof e?dt(this.doc,e):e?n.from():n.to(),yn(this,r,t||\"page\")},charCoords:function(e,t){return vn(this,dt(this.doc,e),t||\"page\")},coordsChar:function(e,t){return e=gn(this,e,t||\"page\"),wn(this,e.left,e.top)},lineAtHeight:function(e,t){return e=gn(this,{top:e,left:0},t||\"page\").top,tt(this.doc,e+this.display.viewOffset)},heightAtLine:function(e,t,r){var n,i=!1;if(\"number\"==typeof e){var o=this.doc.first+this.doc.size-1;e<this.doc.first?e=this.doc.first:e>o&&(e=o,i=!0),n=Xe(this.doc,e)}else n=e;return mn(this,n,{top:0,left:0},t||\"page\",r||i).top+(i?this.doc.height-ir(n):0)},defaultTextHeight:function(){return Dn(this.display)},defaultCharWidth:function(){return Mn(this.display)},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(e,t,r,n,i){var o=this.display;e=yn(this,dt(this.doc,e));var a=e.bottom,s=e.left;if(t.style.position=\"absolute\",t.setAttribute(\"cm-ignore-events\",\"true\"),this.display.input.setUneditable(t),o.sizer.appendChild(t),\"over\"==n)a=e.top;else if(\"above\"==n||\"near\"==n){var l=Math.max(o.wrapper.clientHeight,this.doc.height),c=Math.max(o.sizer.clientWidth,o.lineSpace.clientWidth);(\"above\"==n||e.bottom+t.offsetHeight>l)&&e.top>t.offsetHeight?a=e.top-t.offsetHeight:e.bottom+t.offsetHeight<=l&&(a=e.bottom),s+t.offsetWidth>c&&(s=c-t.offsetWidth)}t.style.top=a+\"px\",t.style.left=t.style.right=\"\",\"right\"==i?(s=o.sizer.clientWidth-t.offsetWidth,t.style.right=\"0px\"):(\"left\"==i?s=0:\"middle\"==i&&(s=(o.sizer.clientWidth-t.offsetWidth)/2),t.style.left=s+\"px\"),r&&ni(this,{left:s,top:a,right:s+t.offsetWidth,bottom:a+t.offsetHeight})},triggerOnKeyDown:Ei(ls),triggerOnKeyPress:Ei(ds),triggerOnKeyUp:us,triggerOnMouseDown:Ei(vs),execCommand:function(e){if(Xa.hasOwnProperty(e))return Xa[e].call(null,this)},triggerElectric:Ei((function(e){qs(this,e)})),findPosH:function(e,t,r,n){var i=1;t<0&&(i=-1,t=-t);for(var o=dt(this.doc,e),a=0;a<t;++a)if(o=Gs(this.doc,o,i,r,n),o.hitSide)break;return o},moveH:Ei((function(e,t){var r=this;this.extendSelectionsBy((function(n){return r.display.shift||r.doc.extend||n.empty()?Gs(r.doc,n.head,e,t,r.options.rtlMoveVisually):e<0?n.from():n.to()}),z)})),deleteH:Ei((function(e,t){var r=this.doc.sel,n=this.doc;r.somethingSelected()?n.replaceSelection(\"\",null,\"+delete\"):za(this,(function(r){var i=Gs(n,r.head,e,t,!1);return e<0?{from:i,to:r.head}:{from:r.head,to:i}}))})),findPosV:function(e,t,r,n){var i=1,o=n;t<0&&(i=-1,t=-t);for(var a=dt(this.doc,e),s=0;s<t;++s){var l=yn(this,a,\"div\");if(null==o?o=l.left:l.left=o,a=Xs(this,l,i,r),a.hitSide)break}return a},moveV:Ei((function(e,t){var r=this,n=this.doc,i=[],o=!this.display.shift&&!n.extend&&n.sel.somethingSelected();if(n.extendSelectionsBy((function(a){if(o)return e<0?a.from():a.to();var s=yn(r,a.head,\"div\");null!=a.goalColumn&&(s.left=a.goalColumn),i.push(s.left);var l=Xs(r,s,e,t);return\"page\"==t&&a==n.sel.primary()&&oi(r,vn(r,l,\"div\").top-s.top),l}),z),i.length)for(var a=0;a<n.sel.ranges.length;a++)n.sel.ranges[a].goalColumn=i[a]})),findWordAt:function(e){var t=this.doc,r=Xe(t,e.line).text,n=e.ch,i=e.ch;if(r){var o=this.getHelper(e,\"wordChars\");\"before\"!=e.sticky&&i!=r.length||!n?++i:--n;var a=r.charAt(n),s=re(a,o)?function(e){return re(e,o)}:/\\s/.test(a)?function(e){return/\\s/.test(e)}:function(e){return!/\\s/.test(e)&&!re(e)};while(n>0&&s(r.charAt(n-1)))--n;while(i<r.length&&s(r.charAt(i)))++i}return new io(it(e.line,n),it(e.line,i))},toggleOverwrite:function(e){null!=e&&e==this.state.overwrite||((this.state.overwrite=!this.state.overwrite)?L(this.display.cursorDiv,\"CodeMirror-overwrite\"):S(this.display.cursorDiv,\"CodeMirror-overwrite\"),ve(this,\"overwriteToggle\",this,this.state.overwrite))},hasFocus:function(){return this.display.input.getField()==E()},isReadOnly:function(){return!(!this.options.readOnly&&!this.doc.cantEdit)},scrollTo:Ei((function(e,t){si(this,e,t)})),getScrollInfo:function(){var e=this.display.scroller;return{left:e.scrollLeft,top:e.scrollTop,height:e.scrollHeight-Kr(this)-this.display.barHeight,width:e.scrollWidth-Kr(this)-this.display.barWidth,clientHeight:Vr(this),clientWidth:Jr(this)}},scrollIntoView:Ei((function(e,t){null==e?(e={from:this.doc.sel.primary().head,to:null},null==t&&(t=this.options.cursorScrollMargin)):\"number\"==typeof e?e={from:it(e,0),to:null}:null==e.from&&(e={from:e,to:null}),e.to||(e.to=e.from),e.margin=t||0,null!=e.from.line?li(this,e):ui(this,e.from,e.to,e.margin)})),setSize:Ei((function(e,t){var r=this,n=function(e){return\"number\"==typeof e||/^\\d+$/.test(String(e))?e+\"px\":e};null!=e&&(this.display.wrapper.style.width=n(e)),null!=t&&(this.display.wrapper.style.height=n(t)),this.options.lineWrapping&&un(this);var i=this.display.viewFrom;this.doc.iter(i,this.display.viewTo,(function(e){if(e.widgets)for(var t=0;t<e.widgets.length;t++)if(e.widgets[t].noHScroll){Wn(r,i,\"widget\");break}++i})),this.curOp.forceUpdate=!0,ve(this,\"refresh\",this)})),operation:function(e){return Ai(this,e)},startOperation:function(){return Ci(this)},endOperation:function(){return xi(this)},refresh:Ei((function(){var e=this.display.cachedTextHeight;In(this),this.curOp.forceUpdate=!0,dn(this),si(this,this.doc.scrollLeft,this.doc.scrollTop),qi(this.display),(null==e||Math.abs(e-Dn(this.display))>.5||this.options.lineWrapping)&&Ln(this),ve(this,\"refresh\",this)})),swapDoc:Ei((function(e){var t=this.doc;return t.cm=null,this.state.selectingText&&this.state.selectingText(),yo(this,e),dn(this),this.display.input.reset(),si(this,e.scrollLeft,e.scrollTop),this.curOp.forceScroll=!0,Or(this,\"swapDoc\",this,t),t})),phrase:function(e){var t=this.options.phrases;return t&&Object.prototype.hasOwnProperty.call(t,e)?t[e]:e},getInputField:function(){return this.display.input.getField()},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},we(e),e.registerHelper=function(t,n,i){r.hasOwnProperty(t)||(r[t]=e[t]={_global:[]}),r[t][n]=i},e.registerGlobalHelper=function(t,n,i,o){e.registerHelper(t,n,o),r[t]._global.push({pred:i,val:o})}}function Gs(e,t,r,n,i){var o=t,a=r,s=Xe(e,t.line),l=i&&\"rtl\"==e.direction?-r:r;function c(){var r=t.line+l;return!(r<e.first||r>=e.first+e.size)&&(t=new it(r,t.ch,t.sticky),s=Xe(e,r))}function u(o){var a;if(\"codepoint\"==n){var u=s.text.charCodeAt(t.ch+(n>0?0:-1));a=isNaN(u)?null:new it(t.line,Math.max(0,Math.min(s.text.length,t.ch+r*(u>=55296&&u<56320?2:1))),-r)}else a=i?Ga(e.cm,s,t,r):Ja(s,t,r);if(null==a){if(o||!c())return!1;t=Va(i,e.cm,s,t.line,l)}else t=a;return!0}if(\"char\"==n||\"codepoint\"==n)u();else if(\"column\"==n)u(!0);else if(\"word\"==n||\"group\"==n)for(var d=null,f=\"group\"==n,h=e.cm&&e.cm.getHelper(t,\"wordChars\"),p=!0;;p=!1){if(r<0&&!u(!p))break;var m=s.text.charAt(t.ch)||\"\\n\",g=re(m,h)?\"w\":f&&\"\\n\"==m?\"n\":!f||/\\s/.test(m)?null:\"p\";if(!f||p||g||(g=\"s\"),d&&d!=g){r<0&&(r=1,u(),t.sticky=\"after\");break}if(g&&(d=g),r>0&&!u(!p))break}var v=Jo(e,t,o,a,!0);return at(o,v)&&(v.hitSide=!0),v}function Xs(e,t,r,n){var i,o,a=e.doc,s=t.left;if(\"page\"==n){var l=Math.min(e.display.wrapper.clientHeight,window.innerHeight||document.documentElement.clientHeight),c=Math.max(l-.5*Dn(e.display),3);i=(r>0?t.bottom:t.top)+r*c}else\"line\"==n&&(i=r>0?t.bottom+3:t.top-3);for(;;){if(o=wn(e,s,i),!o.outside)break;if(r<0?i<=0:i>=a.height){o.hitSide=!0;break}i+=5*r}return o}var Ys=function(e){this.cm=e,this.lastAnchorNode=this.lastAnchorOffset=this.lastFocusNode=this.lastFocusOffset=null,this.polling=new j,this.composing=null,this.gracePeriod=!1,this.readDOMTimeout=null};function Qs(e,t){var r=Zr(e,t.line);if(!r||r.hidden)return null;var n=Xe(e.doc,t.line),i=Xr(r,n,t.line),o=fe(n,e.doc.direction),a=\"left\";if(o){var s=ue(o,t.ch);a=s%2?\"right\":\"left\"}var l=on(i.map,t.ch,a);return l.offset=\"right\"==l.collapse?l.end:l.start,l}function Zs(e){for(var t=e;t;t=t.parentNode)if(/CodeMirror-gutter-wrapper/.test(t.className))return!0;return!1}function el(e,t){return t&&(e.bad=!0),e}function tl(e,t,r,n,i){var o=\"\",a=!1,s=e.doc.lineSeparator(),l=!1;function c(e){return function(t){return t.id==e}}function u(){a&&(o+=s,l&&(o+=s),a=l=!1)}function d(e){e&&(u(),o+=e)}function f(t){if(1==t.nodeType){var r=t.getAttribute(\"cm-text\");if(r)return void d(r);var o,h=t.getAttribute(\"cm-marker\");if(h){var p=e.findMarks(it(n,0),it(i+1,0),c(+h));return void(p.length&&(o=p[0].find(0))&&d(Ye(e.doc,o.from,o.to).join(s)))}if(\"false\"==t.getAttribute(\"contenteditable\"))return;var m=/^(pre|div|p|li|table|br)$/i.test(t.nodeName);if(!/^br$/i.test(t.nodeName)&&0==t.textContent.length)return;m&&u();for(var g=0;g<t.childNodes.length;g++)f(t.childNodes[g]);/^(pre|p)$/i.test(t.nodeName)&&(l=!0),m&&(a=!0)}else 3==t.nodeType&&d(t.nodeValue.replace(/\\u200b/g,\"\").replace(/\\u00a0/g,\" \"))}for(;;){if(f(t),t==r)break;t=t.nextSibling,l=!1}return o}function rl(e,t,r){var n;if(t==e.display.lineDiv){if(n=e.display.lineDiv.childNodes[r],!n)return el(e.clipPos(it(e.display.viewTo-1)),!0);t=null,r=0}else for(n=t;;n=n.parentNode){if(!n||n==e.display.lineDiv)return null;if(n.parentNode&&n.parentNode==e.display.lineDiv)break}for(var i=0;i<e.display.view.length;i++){var o=e.display.view[i];if(o.node==n)return nl(o,t,r)}}function nl(e,t,r){var n=e.text.firstChild,i=!1;if(!t||!N(n,t))return el(it(et(e.line),0),!0);if(t==n&&(i=!0,t=n.childNodes[r],r=0,!t)){var o=e.rest?G(e.rest):e.line;return el(it(et(o),o.text.length),i)}var a=3==t.nodeType?t:null,s=t;a||1!=t.childNodes.length||3!=t.firstChild.nodeType||(a=t.firstChild,r&&(r=a.nodeValue.length));while(s.parentNode!=n)s=s.parentNode;var l=e.measure,c=l.maps;function u(t,r,n){for(var i=-1;i<(c?c.length:0);i++)for(var o=i<0?l.map:c[i],a=0;a<o.length;a+=3){var s=o[a+2];if(s==t||s==r){var u=et(i<0?e.line:e.rest[i]),d=o[a]+n;return(n<0||s!=t)&&(d=o[a+(n?1:0)]),it(u,d)}}}var d=u(a,s,r);if(d)return el(d,i);for(var f=s.nextSibling,h=a?a.nodeValue.length-r:0;f;f=f.nextSibling){if(d=u(f,f.firstChild,0),d)return el(it(d.line,d.ch-h),i);h+=f.textContent.length}for(var p=s.previousSibling,m=r;p;p=p.previousSibling){if(d=u(p,p.firstChild,-1),d)return el(it(d.line,d.ch+m),i);m+=p.textContent.length}}Ys.prototype.init=function(e){var t=this,r=this,n=r.cm,i=r.div=e.lineDiv;function o(e){for(var t=e.target;t;t=t.parentNode){if(t==i)return!0;if(/\\bCodeMirror-(?:line)?widget\\b/.test(t.className))break}return!1}function a(e){if(o(e)&&!ye(n,e)){if(n.somethingSelected())Fs({lineWise:!1,text:n.getSelections()}),\"cut\"==e.type&&n.replaceSelection(\"\",null,\"cut\");else{if(!n.options.lineWiseCopyCut)return;var t=zs(n);Fs({lineWise:!0,text:t.text}),\"cut\"==e.type&&n.operation((function(){n.setSelections(t.ranges,0,U),n.replaceSelection(\"\",null,\"cut\")}))}if(e.clipboardData){e.clipboardData.clearData();var a=Hs.text.join(\"\\n\");if(e.clipboardData.setData(\"Text\",a),e.clipboardData.getData(\"Text\")==a)return void e.preventDefault()}var s=Js(),l=s.firstChild;n.display.lineSpace.insertBefore(s,n.display.lineSpace.firstChild),l.value=Hs.text.join(\"\\n\");var c=document.activeElement;R(l),setTimeout((function(){n.display.lineSpace.removeChild(s),c.focus(),c==i&&r.showPrimarySelection()}),50)}}Ks(i,n.options.spellcheck,n.options.autocorrect,n.options.autocapitalize),pe(i,\"paste\",(function(e){!o(e)||ye(n,e)||Us(e,n)||s<=11&&setTimeout(Ni(n,(function(){return t.updateFromDOM()})),20)})),pe(i,\"compositionstart\",(function(e){t.composing={data:e.data,done:!1}})),pe(i,\"compositionupdate\",(function(e){t.composing||(t.composing={data:e.data,done:!1})})),pe(i,\"compositionend\",(function(e){t.composing&&(e.data!=t.composing.data&&t.readFromDOMSoon(),t.composing.done=!0)})),pe(i,\"touchstart\",(function(){return r.forceCompositionEnd()})),pe(i,\"input\",(function(){t.composing||t.readFromDOMSoon()})),pe(i,\"copy\",a),pe(i,\"cut\",a)},Ys.prototype.screenReaderLabelChanged=function(e){e?this.div.setAttribute(\"aria-label\",e):this.div.removeAttribute(\"aria-label\")},Ys.prototype.prepareSelection=function(){var e=Un(this.cm,!1);return e.focus=document.activeElement==this.div,e},Ys.prototype.showSelection=function(e,t){e&&this.cm.display.view.length&&((e.focus||t)&&this.showPrimarySelection(),this.showMultipleSelections(e))},Ys.prototype.getSelection=function(){return this.cm.display.wrapper.ownerDocument.getSelection()},Ys.prototype.showPrimarySelection=function(){var e=this.getSelection(),t=this.cm,n=t.doc.sel.primary(),i=n.from(),o=n.to();if(t.display.viewTo==t.display.viewFrom||i.line>=t.display.viewTo||o.line<t.display.viewFrom)e.removeAllRanges();else{var a=rl(t,e.anchorNode,e.anchorOffset),s=rl(t,e.focusNode,e.focusOffset);if(!a||a.bad||!s||s.bad||0!=ot(ct(a,s),i)||0!=ot(lt(a,s),o)){var l=t.display.view,c=i.line>=t.display.viewFrom&&Qs(t,i)||{node:l[0].measure.map[2],offset:0},u=o.line<t.display.viewTo&&Qs(t,o);if(!u){var d=l[l.length-1].measure,f=d.maps?d.maps[d.maps.length-1]:d.map;u={node:f[f.length-1],offset:f[f.length-2]-f[f.length-3]}}if(c&&u){var h,p=e.rangeCount&&e.getRangeAt(0);try{h=T(c.node,c.offset,u.offset,u.node)}catch(m){}h&&(!r&&t.state.focused?(e.collapse(c.node,c.offset),h.collapsed||(e.removeAllRanges(),e.addRange(h))):(e.removeAllRanges(),e.addRange(h)),p&&null==e.anchorNode?e.addRange(p):r&&this.startGracePeriod()),this.rememberSelection()}else e.removeAllRanges()}}},Ys.prototype.startGracePeriod=function(){var e=this;clearTimeout(this.gracePeriod),this.gracePeriod=setTimeout((function(){e.gracePeriod=!1,e.selectionChanged()&&e.cm.operation((function(){return e.cm.curOp.selectionChanged=!0}))}),20)},Ys.prototype.showMultipleSelections=function(e){D(this.cm.display.cursorDiv,e.cursors),D(this.cm.display.selectionDiv,e.selection)},Ys.prototype.rememberSelection=function(){var e=this.getSelection();this.lastAnchorNode=e.anchorNode,this.lastAnchorOffset=e.anchorOffset,this.lastFocusNode=e.focusNode,this.lastFocusOffset=e.focusOffset},Ys.prototype.selectionInEditor=function(){var e=this.getSelection();if(!e.rangeCount)return!1;var t=e.getRangeAt(0).commonAncestorContainer;return N(this.div,t)},Ys.prototype.focus=function(){\"nocursor\"!=this.cm.options.readOnly&&(this.selectionInEditor()&&document.activeElement==this.div||this.showSelection(this.prepareSelection(),!0),this.div.focus())},Ys.prototype.blur=function(){this.div.blur()},Ys.prototype.getField=function(){return this.div},Ys.prototype.supportsTouch=function(){return!0},Ys.prototype.receivedFocus=function(){var e=this;function t(){e.cm.state.focused&&(e.pollSelection(),e.polling.set(e.cm.options.pollInterval,t))}this.selectionInEditor()?this.pollSelection():Ai(this.cm,(function(){return e.cm.curOp.selectionChanged=!0})),this.polling.set(this.cm.options.pollInterval,t)},Ys.prototype.selectionChanged=function(){var e=this.getSelection();return e.anchorNode!=this.lastAnchorNode||e.anchorOffset!=this.lastAnchorOffset||e.focusNode!=this.lastFocusNode||e.focusOffset!=this.lastFocusOffset},Ys.prototype.pollSelection=function(){if(null==this.readDOMTimeout&&!this.gracePeriod&&this.selectionChanged()){var e=this.getSelection(),t=this.cm;if(g&&u&&this.cm.display.gutterSpecs.length&&Zs(e.anchorNode))return this.cm.triggerOnKeyDown({type:\"keydown\",keyCode:8,preventDefault:Math.abs}),this.blur(),void this.focus();if(!this.composing){this.rememberSelection();var r=rl(t,e.anchorNode,e.anchorOffset),n=rl(t,e.focusNode,e.focusOffset);r&&n&&Ai(t,(function(){Fo(t.doc,ao(r,n),U),(r.bad||n.bad)&&(t.curOp.selectionChanged=!0)}))}}},Ys.prototype.pollContent=function(){null!=this.readDOMTimeout&&(clearTimeout(this.readDOMTimeout),this.readDOMTimeout=null);var e,t,r,n=this.cm,i=n.display,o=n.doc.sel.primary(),a=o.from(),s=o.to();if(0==a.ch&&a.line>n.firstLine()&&(a=it(a.line-1,Xe(n.doc,a.line-1).length)),s.ch==Xe(n.doc,s.line).text.length&&s.line<n.lastLine()&&(s=it(s.line+1,0)),a.line<i.viewFrom||s.line>i.viewTo-1)return!1;a.line==i.viewFrom||0==(e=Rn(n,a.line))?(t=et(i.view[0].line),r=i.view[0].node):(t=et(i.view[e].line),r=i.view[e-1].node.nextSibling);var l,c,u=Rn(n,s.line);if(u==i.view.length-1?(l=i.viewTo-1,c=i.lineDiv.lastChild):(l=et(i.view[u+1].line)-1,c=i.view[u+1].node.previousSibling),!r)return!1;var d=n.doc.splitLines(tl(n,r,c,t,l)),f=Ye(n.doc,it(t,0),it(l,Xe(n.doc,l).text.length));while(d.length>1&&f.length>1)if(G(d)==G(f))d.pop(),f.pop(),l--;else{if(d[0]!=f[0])break;d.shift(),f.shift(),t++}var h=0,p=0,m=d[0],g=f[0],v=Math.min(m.length,g.length);while(h<v&&m.charCodeAt(h)==g.charCodeAt(h))++h;var y=G(d),_=G(f),b=Math.min(y.length-(1==d.length?h:0),_.length-(1==f.length?h:0));while(p<b&&y.charCodeAt(y.length-p-1)==_.charCodeAt(_.length-p-1))++p;if(1==d.length&&1==f.length&&t==a.line)while(h&&h>a.ch&&y.charCodeAt(y.length-p-1)==_.charCodeAt(_.length-p-1))h--,p++;d[d.length-1]=y.slice(0,y.length-p).replace(/^\\u200b+/,\"\"),d[0]=d[0].slice(h).replace(/\\u200b+$/,\"\");var w=it(t,h),C=it(l,f.length?G(f).length-p:0);return d.length>1||d[0]||ot(w,C)?(na(n.doc,d,w,C,\"+input\"),!0):void 0},Ys.prototype.ensurePolled=function(){this.forceCompositionEnd()},Ys.prototype.reset=function(){this.forceCompositionEnd()},Ys.prototype.forceCompositionEnd=function(){this.composing&&(clearTimeout(this.readDOMTimeout),this.composing=null,this.updateFromDOM(),this.div.blur(),this.div.focus())},Ys.prototype.readFromDOMSoon=function(){var e=this;null==this.readDOMTimeout&&(this.readDOMTimeout=setTimeout((function(){if(e.readDOMTimeout=null,e.composing){if(!e.composing.done)return;e.composing=null}e.updateFromDOM()}),80))},Ys.prototype.updateFromDOM=function(){var e=this;!this.cm.isReadOnly()&&this.pollContent()||Ai(this.cm,(function(){return In(e.cm)}))},Ys.prototype.setUneditable=function(e){e.contentEditable=\"false\"},Ys.prototype.onKeyPress=function(e){0==e.charCode||this.composing||(e.preventDefault(),this.cm.isReadOnly()||Ni(this.cm,$s)(this.cm,String.fromCharCode(null==e.charCode?e.keyCode:e.charCode),0))},Ys.prototype.readOnlyChanged=function(e){this.div.contentEditable=String(\"nocursor\"!=e)},Ys.prototype.onContextMenu=function(){},Ys.prototype.resetPosition=function(){},Ys.prototype.needsContentAttribute=!0;var il=function(e){this.cm=e,this.prevInput=\"\",this.pollingFast=!1,this.polling=new j,this.hasSelection=!1,this.composing=null};function ol(e,t){if(t=t?W(t):{},t.value=e.value,!t.tabindex&&e.tabIndex&&(t.tabindex=e.tabIndex),!t.placeholder&&e.placeholder&&(t.placeholder=e.placeholder),null==t.autofocus){var r=E();t.autofocus=r==e||null!=e.getAttribute(\"autofocus\")&&r==document.body}function n(){e.value=s.getValue()}var i;if(e.form&&(pe(e.form,\"submit\",n),!t.leaveSubmitMethodAlone)){var o=e.form;i=o.submit;try{var a=o.submit=function(){n(),o.submit=i,o.submit(),o.submit=a}}catch(l){}}t.finishInit=function(r){r.save=n,r.getTextArea=function(){return e},r.toTextArea=function(){r.toTextArea=isNaN,n(),e.parentNode.removeChild(r.getWrapperElement()),e.style.display=\"\",e.form&&(ge(e.form,\"submit\",n),t.leaveSubmitMethodAlone||\"function\"!=typeof e.form.submit||(e.form.submit=i))}},e.style.display=\"none\";var s=Is((function(t){return e.parentNode.insertBefore(t,e.nextSibling)}),t);return s}function al(e){e.off=ge,e.on=pe,e.wheelEventPixels=to,e.Doc=Ca,e.splitLines=Le,e.countColumn=B,e.findColumn=K,e.isWordChar=te,e.Pass=$,e.signal=ve,e.Line=sr,e.changeEnd=so,e.scrollbarModel=_i,e.Pos=it,e.cmpPos=ot,e.modes=Be,e.mimeModes=je,e.resolveMode=$e,e.getMode=Ue,e.modeExtensions=qe,e.extendMode=ze,e.copyState=Ke,e.startState=Ve,e.innerMode=Je,e.commands=Xa,e.keyMap=Wa,e.keyName=Ua,e.isModifierKey=Fa,e.lookupKey=Ha,e.normalizeKeyMap=ja,e.StringStream=Ge,e.SharedTextMarker=ga,e.TextMarker=pa,e.LineWidget=ua,e.e_preventDefault=Ce,e.e_stopPropagation=xe,e.e_stop=Te,e.addClass=L,e.contains=N,e.rmClass=S,e.keyNames=La}il.prototype.init=function(e){var t=this,r=this,n=this.cm;this.createField(e);var i=this.textarea;function o(e){if(!ye(n,e)){if(n.somethingSelected())Fs({lineWise:!1,text:n.getSelections()});else{if(!n.options.lineWiseCopyCut)return;var t=zs(n);Fs({lineWise:!0,text:t.text}),\"cut\"==e.type?n.setSelections(t.ranges,null,U):(r.prevInput=\"\",i.value=t.text.join(\"\\n\"),R(i))}\"cut\"==e.type&&(n.state.cutIncoming=+new Date)}}e.wrapper.insertBefore(this.wrapper,e.wrapper.firstChild),m&&(i.style.width=\"0px\"),pe(i,\"input\",(function(){a&&s>=9&&t.hasSelection&&(t.hasSelection=null),r.poll()})),pe(i,\"paste\",(function(e){ye(n,e)||Us(e,n)||(n.state.pasteIncoming=+new Date,r.fastPoll())})),pe(i,\"cut\",o),pe(i,\"copy\",o),pe(e.scroller,\"paste\",(function(t){if(!$r(e,t)&&!ye(n,t)){if(!i.dispatchEvent)return n.state.pasteIncoming=+new Date,void r.focus();var o=new Event(\"paste\");o.clipboardData=t.clipboardData,i.dispatchEvent(o)}})),pe(e.lineSpace,\"selectstart\",(function(t){$r(e,t)||Ce(t)})),pe(i,\"compositionstart\",(function(){var e=n.getCursor(\"from\");r.composing&&r.composing.range.clear(),r.composing={start:e,range:n.markText(e,n.getCursor(\"to\"),{className:\"CodeMirror-composing\"})}})),pe(i,\"compositionend\",(function(){r.composing&&(r.poll(),r.composing.range.clear(),r.composing=null)}))},il.prototype.createField=function(e){this.wrapper=Js(),this.textarea=this.wrapper.firstChild},il.prototype.screenReaderLabelChanged=function(e){e?this.textarea.setAttribute(\"aria-label\",e):this.textarea.removeAttribute(\"aria-label\")},il.prototype.prepareSelection=function(){var e=this.cm,t=e.display,r=e.doc,n=Un(e);if(e.options.moveInputWithCursor){var i=yn(e,r.sel.primary().head,\"div\"),o=t.wrapper.getBoundingClientRect(),a=t.lineDiv.getBoundingClientRect();n.teTop=Math.max(0,Math.min(t.wrapper.clientHeight-10,i.top+a.top-o.top)),n.teLeft=Math.max(0,Math.min(t.wrapper.clientWidth-10,i.left+a.left-o.left))}return n},il.prototype.showSelection=function(e){var t=this.cm,r=t.display;D(r.cursorDiv,e.cursors),D(r.selectionDiv,e.selection),null!=e.teTop&&(this.wrapper.style.top=e.teTop+\"px\",this.wrapper.style.left=e.teLeft+\"px\")},il.prototype.reset=function(e){if(!this.contextMenuPending&&!this.composing){var t=this.cm;if(t.somethingSelected()){this.prevInput=\"\";var r=t.getSelection();this.textarea.value=r,t.state.focused&&R(this.textarea),a&&s>=9&&(this.hasSelection=r)}else e||(this.prevInput=this.textarea.value=\"\",a&&s>=9&&(this.hasSelection=null))}},il.prototype.getField=function(){return this.textarea},il.prototype.supportsTouch=function(){return!1},il.prototype.focus=function(){if(\"nocursor\"!=this.cm.options.readOnly&&(!v||E()!=this.textarea))try{this.textarea.focus()}catch(e){}},il.prototype.blur=function(){this.textarea.blur()},il.prototype.resetPosition=function(){this.wrapper.style.top=this.wrapper.style.left=0},il.prototype.receivedFocus=function(){this.slowPoll()},il.prototype.slowPoll=function(){var e=this;this.pollingFast||this.polling.set(this.cm.options.pollInterval,(function(){e.poll(),e.cm.state.focused&&e.slowPoll()}))},il.prototype.fastPoll=function(){var e=!1,t=this;function r(){var n=t.poll();n||e?(t.pollingFast=!1,t.slowPoll()):(e=!0,t.polling.set(60,r))}t.pollingFast=!0,t.polling.set(20,r)},il.prototype.poll=function(){var e=this,t=this.cm,r=this.textarea,n=this.prevInput;if(this.contextMenuPending||!t.state.focused||Pe(r)&&!n&&!this.composing||t.isReadOnly()||t.options.disableInput||t.state.keySeq)return!1;var i=r.value;if(i==n&&!t.somethingSelected())return!1;if(a&&s>=9&&this.hasSelection===i||y&&/[\\uf700-\\uf7ff]/.test(i))return t.display.input.reset(),!1;if(t.doc.sel==t.display.selForContextMenu){var o=i.charCodeAt(0);if(8203!=o||n||(n=\"​\"),8666==o)return this.reset(),this.cm.execCommand(\"undo\")}var l=0,c=Math.min(n.length,i.length);while(l<c&&n.charCodeAt(l)==i.charCodeAt(l))++l;return Ai(t,(function(){$s(t,i.slice(l),n.length-l,null,e.composing?\"*compose\":null),i.length>1e3||i.indexOf(\"\\n\")>-1?r.value=e.prevInput=\"\":e.prevInput=i,e.composing&&(e.composing.range.clear(),e.composing.range=t.markText(e.composing.start,t.getCursor(\"to\"),{className:\"CodeMirror-composing\"}))})),!0},il.prototype.ensurePolled=function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)},il.prototype.onKeyPress=function(){a&&s>=9&&(this.hasSelection=null),this.fastPoll()},il.prototype.onContextMenu=function(e){var t=this,r=t.cm,n=r.display,i=t.textarea;t.contextMenuPending&&t.contextMenuPending();var o=Pn(r,e),c=n.scroller.scrollTop;if(o&&!d){var u=r.options.resetSelectionOnContextMenu;u&&-1==r.doc.sel.contains(o)&&Ni(r,Fo)(r.doc,ao(o),U);var f,h=i.style.cssText,p=t.wrapper.style.cssText,m=t.wrapper.offsetParent.getBoundingClientRect();if(t.wrapper.style.cssText=\"position: static\",i.style.cssText=\"position: absolute; width: 30px; height: 30px;\\n      top: \"+(e.clientY-m.top-5)+\"px; left: \"+(e.clientX-m.left-5)+\"px;\\n      z-index: 1000; background: \"+(a?\"rgba(255, 255, 255, .05)\":\"transparent\")+\";\\n      outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);\",l&&(f=window.scrollY),n.input.focus(),l&&window.scrollTo(null,f),n.input.reset(),r.somethingSelected()||(i.value=t.prevInput=\" \"),t.contextMenuPending=y,n.selForContextMenu=r.doc.sel,clearTimeout(n.detectingSelectAll),a&&s>=9&&v(),x){Te(e);var g=function(){ge(window,\"mouseup\",g),setTimeout(y,20)};pe(window,\"mouseup\",g)}else setTimeout(y,50)}function v(){if(null!=i.selectionStart){var e=r.somethingSelected(),o=\"​\"+(e?i.value:\"\");i.value=\"⇚\",i.value=o,t.prevInput=e?\"\":\"​\",i.selectionStart=1,i.selectionEnd=o.length,n.selForContextMenu=r.doc.sel}}function y(){if(t.contextMenuPending==y&&(t.contextMenuPending=!1,t.wrapper.style.cssText=p,i.style.cssText=h,a&&s<9&&n.scrollbars.setScrollTop(n.scroller.scrollTop=c),null!=i.selectionStart)){(!a||a&&s<9)&&v();var e=0,o=function(){n.selForContextMenu==r.doc.sel&&0==i.selectionStart&&i.selectionEnd>0&&\"​\"==t.prevInput?Ni(r,Go)(r):e++<10?n.detectingSelectAll=setTimeout(o,500):(n.selForContextMenu=null,n.input.reset())};n.detectingSelectAll=setTimeout(o,200)}}},il.prototype.readOnlyChanged=function(e){e||this.reset(),this.textarea.disabled=\"nocursor\"==e,this.textarea.readOnly=!!e},il.prototype.setUneditable=function(){},il.prototype.needsContentAttribute=!1,Ls(Is),Vs(Is);var sl=\"iter insert remove copy getEditor constructor\".split(\" \");for(var ll in Ca.prototype)Ca.prototype.hasOwnProperty(ll)&&H(sl,ll)<0&&(Is.prototype[ll]=function(e){return function(){return e.apply(this.doc,arguments)}}(Ca.prototype[ll]));return we(Ca),Is.inputStyles={textarea:il,contenteditable:Ys},Is.defineMode=function(e){Is.defaults.mode||\"null\"==e||(Is.defaults.mode=e),He.apply(this,arguments)},Is.defineMIME=Fe,Is.defineMode(\"null\",(function(){return{token:function(e){return e.skipToEnd()}}})),Is.defineMIME(\"text/plain\",\"null\"),Is.defineExtension=function(e,t){Is.prototype[e]=t},Is.defineDocExtension=function(e,t){Ca.prototype[e]=t},Is.fromTextArea=ol,al(Is),Is.version=\"5.58.3\",Is}))},\"5aed\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";(function($){var core_js_modules_es7_symbol_async_iterator__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(\"ac4d\"),core_js_modules_es7_symbol_async_iterator__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(core_js_modules_es7_symbol_async_iterator__WEBPACK_IMPORTED_MODULE_0__),core_js_modules_es6_symbol__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(\"8a81\"),core_js_modules_es6_symbol__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(core_js_modules_es6_symbol__WEBPACK_IMPORTED_MODULE_1__),core_js_modules_es6_string_iterator__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(\"5df3\"),core_js_modules_es6_string_iterator__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(core_js_modules_es6_string_iterator__WEBPACK_IMPORTED_MODULE_2__),core_js_modules_es6_array_from__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(\"1c4c\"),core_js_modules_es6_array_from__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(core_js_modules_es6_array_from__WEBPACK_IMPORTED_MODULE_3__),core_js_modules_es7_object_get_own_property_descriptors__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(\"8e6e\"),core_js_modules_es7_object_get_own_property_descriptors__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(core_js_modules_es7_object_get_own_property_descriptors__WEBPACK_IMPORTED_MODULE_4__),core_js_modules_es6_object_keys__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(\"456d\"),core_js_modules_es6_object_keys__WEBPACK_IMPORTED_MODULE_5___default=__webpack_require__.n(core_js_modules_es6_object_keys__WEBPACK_IMPORTED_MODULE_5__),C_Users_Administrator_Desktop_ued_document_node_modules_vue_babel_preset_app_node_modules_babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(\"d0ff\"),core_js_modules_es6_regexp_to_string__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(\"6b54\"),core_js_modules_es6_regexp_to_string__WEBPACK_IMPORTED_MODULE_7___default=__webpack_require__.n(core_js_modules_es6_regexp_to_string__WEBPACK_IMPORTED_MODULE_7__),core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(\"c5f6\"),core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_8___default=__webpack_require__.n(core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_8__),core_js_modules_es6_array_find_index__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__(\"20d6\"),core_js_modules_es6_array_find_index__WEBPACK_IMPORTED_MODULE_9___default=__webpack_require__.n(core_js_modules_es6_array_find_index__WEBPACK_IMPORTED_MODULE_9__),core_js_modules_es6_array_find__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__(\"7514\"),core_js_modules_es6_array_find__WEBPACK_IMPORTED_MODULE_10___default=__webpack_require__.n(core_js_modules_es6_array_find__WEBPACK_IMPORTED_MODULE_10__),C_Users_Administrator_Desktop_ued_document_node_modules_vue_babel_preset_app_node_modules_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_11__=__webpack_require__(\"fc11\"),core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_12__=__webpack_require__(\"3b2b\"),core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_12___default=__webpack_require__.n(core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_12__),core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_13__=__webpack_require__(\"ac6a\"),core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_13___default=__webpack_require__.n(core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_13__),core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_14__=__webpack_require__(\"7f7f\"),core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_14___default=__webpack_require__.n(core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_14__),core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_15__=__webpack_require__(\"a481\"),core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_15___default=__webpack_require__.n(core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_15__),core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_16__=__webpack_require__(\"28a5\"),core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_16___default=__webpack_require__.n(core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_16__),vuex__WEBPACK_IMPORTED_MODULE_17__=__webpack_require__(\"2f62\"),_api_api__WEBPACK_IMPORTED_MODULE_18__=__webpack_require__(\"4ec3\"),_editors_vue__WEBPACK_IMPORTED_MODULE_19__=__webpack_require__(\"f93f\"),_setting_vue__WEBPACK_IMPORTED_MODULE_20__=__webpack_require__(\"49f7\"),vue_codemirror__WEBPACK_IMPORTED_MODULE_21__=__webpack_require__(\"8f94\"),vue_codemirror__WEBPACK_IMPORTED_MODULE_21___default=__webpack_require__.n(vue_codemirror__WEBPACK_IMPORTED_MODULE_21__),codemirror_lib_codemirror_css__WEBPACK_IMPORTED_MODULE_22__=__webpack_require__(\"a7be\"),codemirror_lib_codemirror_css__WEBPACK_IMPORTED_MODULE_22___default=__webpack_require__.n(codemirror_lib_codemirror_css__WEBPACK_IMPORTED_MODULE_22__),codemirror_mode_javascript_javascript_js__WEBPACK_IMPORTED_MODULE_23__=__webpack_require__(\"f9d4\"),codemirror_mode_javascript_javascript_js__WEBPACK_IMPORTED_MODULE_23___default=__webpack_require__.n(codemirror_mode_javascript_javascript_js__WEBPACK_IMPORTED_MODULE_23__),codemirror_theme_base16_light_css__WEBPACK_IMPORTED_MODULE_24__=__webpack_require__(\"cc10\"),codemirror_theme_base16_light_css__WEBPACK_IMPORTED_MODULE_24___default=__webpack_require__.n(codemirror_theme_base16_light_css__WEBPACK_IMPORTED_MODULE_24__),qs__WEBPACK_IMPORTED_MODULE_25__=__webpack_require__(\"4328\"),qs__WEBPACK_IMPORTED_MODULE_25___default=__webpack_require__.n(qs__WEBPACK_IMPORTED_MODULE_25__);function _createForOfIteratorHelper(e,t){var r;if(\"undefined\"===typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(r=_unsupportedIterableToArray(e))||t&&e&&\"number\"===typeof e.length){r&&(e=r);var n=0,i=function(){};return{s:i,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:i}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var o,a=!0,s=!1;return{s:function(){r=e[Symbol.iterator]()},n:function(){var e=r.next();return a=e.done,e},e:function(e){s=!0,o=e},f:function(){try{a||null==r.return||r.return()}finally{if(s)throw o}}}}function _unsupportedIterableToArray(e,t){if(e){if(\"string\"===typeof e)return _arrayLikeToArray(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return\"Object\"===r&&e.constructor&&(r=e.constructor.name),\"Map\"===r||\"Set\"===r?Array.from(e):\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?_arrayLikeToArray(e,t):void 0}}function _arrayLikeToArray(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function ownKeys(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function _objectSpread(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?ownKeys(Object(r),!0).forEach((function(t){Object(C_Users_Administrator_Desktop_ued_document_node_modules_vue_babel_preset_app_node_modules_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_11__[\"a\"])(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):ownKeys(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var id=1e3;function treeToTemplate(tree){var num=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;function parse(item,result){var rule=item.rule?\"|\"+item.rule:\"\",value=item.default_value;if(item.default_value&&0===item.default_value.indexOf(\"[\")&&\"]\"===item.default_value.substring(item.default_value.length-1))try{var reg=/\\s*/g,reg2=/\\\"/g;value=value.substring(1,value.length-1).replace(reg,\"\").replace(reg2,\"\").split(\",\"),result[item.name+rule]=value}catch(e){result[item.name+rule]=value}else if(item.name.length)switch(item.type){case 1:result[item.name+rule]=value;break;case 2:\"\"===value&&(value=1);var parsed=parseFloat(value);isNaN(parsed)||(value=parsed),result[item.name+rule]=value;break;case 3:\"true\"===value&&(value=!0),\"false\"===value&&(value=!1),\"0\"===value&&(value=!1),value=!!value,result[item.name+rule]=value;break;case 4:result[item.name+rule]={},item.children.forEach((function(e){parse(e,result[item.name+rule])}));break;case 5:if(value)try{result[item.name+rule]=value}catch(e){result[item.name+rule]=item.value}else result[item.name+rule]=item.children.length?[{}]:[],item.children.forEach((function(e){parse(e,result[item.name+rule][0])}));break;case 6:if(1==num)try{var fun=eval(item.default_value);result[item.name+rule]=fun()}catch(e){result[item.name+rule]=item.default_value}else result[item.name+rule]=value;break;case 7:if(1==num)try{result[item.name+rule]=new RegExp(item.default_value)}catch(e){result[item.name+rule]=item.default_value}else{var _reg=/\\\\/g;result[item.name+rule]=item.default_value.replace(_reg,\"\")}break;case 8:result[item.name+rule]=null;break}}var result={};return tree.length&&tree.forEach((function(e){parse(e,result)})),result}function romoveSlash(e){var t={},r=/\\//g;for(var n in e)\"string\"==typeof e[n]&&r.test(e[n])?t[n]=e[n].replace(r,\"\"):t[n]=e[n];return t}__webpack_exports__[\"a\"]={name:\"chapter\",components:{editors:_editors_vue__WEBPACK_IMPORTED_MODULE_19__[\"a\"],setting:_setting_vue__WEBPACK_IMPORTED_MODULE_20__[\"a\"],codemirror:vue_codemirror__WEBPACK_IMPORTED_MODULE_21__[\"codemirror\"]},data:function(){return{isHeaderLast:!0,docName:\"\",docTitle:\"\",defaultCheckedKeys:[],layout:\"\",has_manage:!0,filterText:\"\",chapters:[],defaultProps:{children:\"children\",label:\"name\"},defaultExpanded:[],defaultSelect:\"\",menuBarVisible:!1,clientX:\"\",clientY:\"\",selectNodeObj:{},rightSelectNodeObj:{},rightSelectNode:{},addFirst:!0,addNodeObj:{name:\"\",is_dir:1,layout:0},dialogTitle:\"\",dialogFormLabel:\"\",dialogVisible:!1,dialogMoveVisible:!1,dialogMoveTitle:\"\",moveDoc:\"\",moveClass:\"\",docList:[],docChapters:[],showSetting:!1,dialogVisibleCopy:!1,copyNodeName:\"\",methodArr:[],paramsArr:[{type:\"String\",value:1},{type:\"Number\",value:2},{type:\"Boolean\",value:3},{type:\"Object\",value:4},{type:\"Array\",value:5},{type:\"Function\",value:6},{type:\"RegExp\",value:7},{type:\"Null\",value:8}],form:{method:1,url:\"\",description:\"\",body_param_location:3,tab_location:\"1\"},formCompared:{},formCopy:{method:1,url:\"\",description:\"\",body_param_location:3,tab_location:\"1\"},baseRequestData:{already:0,isChecked:!1,name:\"\",type:1,enabled:2,default_value:\"\",description:\"\",rule:\"\",children:[]},markDownContent:\"\",apiHeaderTreeData:[],apiParamsTreeData:[],apiBodyTreeData:[],apiResTreeData:[],apiResTreeDataCopy:[{already:0,isChecked:!1,name:\"\",type:1,enabled:2,default_value:\"\",description:\"\",rule:\"\",children:[]}],chapter_id:\"\",isDocEmpty:!1,previewId:\"\",loading:\"\",confirmDisabled:!1,confirmCopyDisabled:!1,apiHeaderTreeDataCompared:\"\",apiParamsTreeDataCompared:\"\",apiBodyTreeDataCompared:\"\",apiResTreeDataCompared:\"\",markDownContentCompared:\"\",isSave:!0,isFormChange:!1,isApiHeaderTreeDataChange:!1,isApiParamsTreeDataChange:!1,isApiBodyTreeDataChange:!1,isApiResTreeDataChange:!1,isMarkDownContentChange:!1,treeActive:!1,isViewRequest:!1,isViewResponse:!1,requestMockTemplate:\"\",requestMockJson:\"\",responseMockTemplate:\"\",responseMockJson:\"\",responseMockJsonList:[],requestMockHeight:\"\",responseMockHeight:\"\",mockApiUrl:\"\",mockApiUrl2:\"\",isDelete:!1,code:\"\",cmOptions:{tabSize:4,mode:{name:\"javascript\",json:!0},theme:\"base16-light\",lineNumbers:!0,line:!0,highlightDifferences:!0},importDialogVisible:!1,importDisabled:!1,importQuery:{data:null,location:null,type:null},importDialogTitle:\"导入键值对\",isSubmit:!1,addFlag:!1}},computed:_objectSpread({},Object(vuex__WEBPACK_IMPORTED_MODULE_17__[\"b\"])({UserInfo:\"UserInfo\"})),watch:{filterText:function(e){this.$refs.chaptersTree.filter(e)},dialogVisible:function(e){e&&setTimeout((function(){document.querySelector(\".only-input-dialog .el-input__inner\").focus()}),300)},UserInfo:function(e){e&&this.getOperRecord()},markDownContent:{deep:!0,handler:function(e,t){var r=JSON.stringify(e),n=JSON.stringify(this.markDownContentCompared);this.isMarkDownContentChange=r!=n}},form:{deep:!0,immediate:!1,handler:function(e,t){var r=JSON.parse(JSON.stringify(e));delete r.tab_location;var n=\"\";n=r.url?JSON.stringify(r):'\"\"';var i=JSON.parse(JSON.stringify(this.formCompared));delete i.tab_location;var o=JSON.stringify(i);this.isFormChange=n!=o}},apiHeaderTreeData:{deep:!0,immediate:!1,handler:function(e){if(e){var t=JSON.parse(JSON.stringify(e)),r=\"\";t.length&&(t.forEach((function(e){delete e.already})),t=t.filter((function(e){return e.name||e.description})),r=t.length?JSON.stringify(t):'\"\"');var n=JSON.parse(JSON.stringify(this.apiHeaderTreeDataCompared)),i=JSON.stringify(n);this.isApiHeaderTreeDataChange=r!=i}}},apiParamsTreeData:{deep:!0,immediate:!1,handler:function(e){if(e){var t=JSON.parse(JSON.stringify(e)),r=\"\";t.length&&(t.forEach((function(e){delete e.already})),t=t.filter((function(e){return e.name||e.description})),r=t.length?JSON.stringify(t):'\"\"');var n=JSON.parse(JSON.stringify(this.apiParamsTreeDataCompared)),i=JSON.stringify(n);this.isApiParamsTreeDataChange=r!=i}}},apiBodyTreeData:{deep:!0,immediate:!1,handler:function(e){if(e){var t=JSON.parse(JSON.stringify(e)),r=\"\";t.length&&(t.forEach((function(e){delete e.already})),t=t.filter((function(e){return e.name||e.description})),r=t.length?JSON.stringify(t):'\"\"');var n=JSON.parse(JSON.stringify(this.apiBodyTreeDataCompared)),i=JSON.stringify(n);this.isApiBodyTreeDataChange=r!=i}}},apiResTreeData:{deep:!0,immediate:!1,handler:function(e){if(e){var t=JSON.parse(JSON.stringify(e));t.length&&0==t[0].already&&(t=t.filter((function(e){return e.name||e.description}))),t.length?t.forEach((function(e){e.data&&e.data.length&&(e.data.forEach((function(e){delete e.already})),e.data=e.data.filter((function(e){return e.name||e.description})))})):t=[{description:\"\",data:[]}];var r=\"\";r=JSON.stringify(t);var n=JSON.parse(JSON.stringify(this.apiResTreeDataCompared)),i=JSON.stringify(n);this.isApiResTreeDataChange=r!=i}}}},created:function(){this.$route.query&&\"add\"==this.$route.query.type?this.clickIconAddNode(!0):(this.UserInfo&&this.getOperRecord(),this.getChapters()),this.getMethodType(),this.mockApiUrl=location.origin+\"/document/mockApiReponse/\".concat(this.$route.params.id)+\"/\"},mounted:function(){var e=this;document.addEventListener(\"keydown\",(function(t){var r=0;t=t||event||window.event,r=t.keyCode||t.which||t.charCode,(t.ctrlKey||t.metaKey)&&83==r&&(t.preventDefault(),e.saveApi())}))},beforeRouteLeave:function(e,t,r){var n=this;this.isFormChange||this.isApiHeaderTreeDataChange||this.isApiParamsTreeDataChange||this.isApiBodyTreeDataChange||this.isApiResTreeDataChange||this.isMarkDownContentChange?this.$confirm(\"您有数据尚未保存，确认保存?\",\"提示\",{showClose:!1,closeOnClickModal:!1,confirmButtonText:\"确认\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){n.saveApi()})).catch((function(){n.$message({type:\"info\",message:\"已取消\"}),r()})):r()},methods:{urlChange:function(){this.mockApiUrl=location.origin+\"/document/mockApiReponse/\".concat(this.$route.params.id)+\"/\"+this.form.url},initCreateChapter:function(){var e=this;Object(_api_api__WEBPACK_IMPORTED_MODULE_18__[\"c\"])({document_id:this.$route.params.id,parent_id:0,is_dir:1,layout:0,name:\"默认目录\"}).then((function(t){e.chapter_id=t.data.id;var r=t.data;if(e.addFirst)e.chapters.push(r);else{var n=e.rightSelectNodeObj;n.children||e.$set(n,\"children\",[]),n.children.push(r)}e.$nextTick((function(){e.$refs.chaptersTree.setCurrentKey(r.id),e.handleNodeClick(e.$refs.chaptersTree.getCurrentNode());var t=JSON.parse(localStorage.getItem(\"we7_doc_user_\"+e.UserInfo.id)),n=t[\"document_\"+e.$route.params.id];e.defaultExpanded=n.defaultExpanded,e.defaultExpanded.push(r.id)}))})).catch((function(){}))},getOperRecord:function(){var e=\"we7_doc_user_\"+this.UserInfo.id,t=JSON.parse(localStorage.getItem(e)),r=\"document_\"+this.$route.params.id,n={};n[r]={defaultExpanded:[],defaultSelect:\"\"},t?t[r]?(this.defaultExpanded=t[r].defaultExpanded,this.defaultSelect=t[r].defaultSelect):(t[r]={defaultExpanded:[],defaultSelect:\"\"},localStorage.setItem(e,JSON.stringify(t))):localStorage.setItem(e,JSON.stringify(n))},setOperRecord:function(e){var t=this.$route.query.type,r=this.$route.params.id;if(\"add\"==t){var n={};n[\"document_\"+r]={defaultExpanded:[],defaultSelect:\"\"},localStorage.setItem(\"we7_doc_user_\"+this.UserInfo.id,JSON.stringify(n))}else{var i=JSON.parse(localStorage.getItem(\"we7_doc_user_\"+this.UserInfo.id)),o=i[\"document_\"+this.$route.params.id];e.is_dir,o.defaultSelect=e.id,localStorage.setItem(\"we7_doc_user_\"+this.UserInfo.id,JSON.stringify(i))}},getChapters:function(){var e=this;Object(_api_api__WEBPACK_IMPORTED_MODULE_18__[\"h\"])({document_id:this.$route.params.id}).then((function(t){if(200==t.code){var r=\"\";if(localStorage[\"currentData_\"+e.$route.params.id]&&(r=JSON.parse(localStorage[\"currentData_\"+e.$route.params.id])),e.docName=t.data.document.name,0==t.data.catalog.length)e.isDocEmpty=!0;else if(t.data.catalog&&!r){var n=function r(n){if(n.length){var i,o=_createForOfIteratorHelper(n);try{for(o.s();!(i=o.n()).done;){var a=i.value;try{if(a.is_dir&&a.children.length)return r(a.children),!1;if(!a.is_dir)return e.isDocEmpty=!1,e.chapters=e.initTreeData(t.data.catalog),e.handleNodeClick(a),e.defaultExpanded=[a.parent_id],!1;e.isDocEmpty=!0,e.has_manage=t.data.acl.has_manage,e.chapters=e.initTreeData(t.data.catalog)}catch(s){}}}catch(l){o.e(l)}finally{o.f()}}};t.data.catalog.length&&n(t.data.catalog)}else e.isDocEmpty=!1,e.docName=t.data.document.name,e.has_manage=t.data.acl.has_manage,e.chapters=e.initTreeData(t.data.catalog),r?e.$nextTick((function(){if(e.$refs.chaptersTree.setCurrentKey(r.id),null!=e.$refs.chaptersTree.getCurrentNode()){e.handleNodeClick(e.$refs.chaptersTree.getCurrentNode());var n=JSON.parse(localStorage.getItem(\"we7_doc_user_\"+e.UserInfo.id)),i=n[\"document_\"+e.$route.params.id];e.defaultExpanded=i.defaultExpanded,e.defaultExpanded.push(e.$refs.chaptersTree.getCurrentNode().id)}else{e.$refs.chaptersTree.setCurrentKey(t.data.catalog[0].id),e.handleNodeClick(t.data.catalog[0]);var o=JSON.parse(localStorage.getItem(\"we7_doc_user_\"+e.UserInfo.id)),a=o[\"document_\"+e.$route.params.id];e.defaultExpanded=a.defaultExpanded,e.defaultExpanded.push(t.data.catalog[0])}})):e.$nextTick((function(){e.$refs.chaptersTree.setCurrentKey(t.data.catalog[0].id),e.handleNodeClick(t.data.catalog[0])}))}}))},initTreeData:function(e){function t(e,r){for(var n=0;n<e.length;n++)e[n].is_dir?t(e[n].children,e[n].default_show_chapter_id):e[n][\"is_default\"]=e[n].default_show_chapter_id==e[n].id||e[n].id==r}return t(e),e},readDoc:function(){var e=this.$router.resolve({path:\"/chapter/\"+this.$route.params.id,query:{id:this.previewId}});window.open(e.href,\"_blank\")},filterNode:function(e,t){return!e||-1!==t.name.indexOf(e)},handleNodeClick:function(e){var t=this;if(this.isViewRequest=!1,this.isViewResponse=!1,e.is_dir){var r=this.$route.params.id;if(localStorage[\"currentData_\"+r]){var n=JSON.parse(localStorage[\"currentData_\"+r]);this.defaultCheckedKeys=[n.id]}else{var i=function e(t){if(t.length){var r,n=_createForOfIteratorHelper(t);try{for(n.s();!(r=n.n()).done;){var i=r.value;if(!i.is_dir)return o.defaultCheckedKeys=[i.id],!1;e(i.children)}}catch(a){n.e(a)}finally{n.f()}}},o=this;i(this.chapters)}this.$nextTick((function(){$(\".w7-tree .is-current\").find(\".el-tree-node__children\").length,$(\".w7-tree .is-current\").find(\".el-tree-node__children .el-tree-node\").length;var e=$(\".w7-tree .is-current\").prop(\"aria-expanded\");if(localStorage[\"currentData_\"+t.$route.params.id])e&&$(\".w7-tree .is-current\").attr(\"data-active\",\"\");else{var r=$(\".w7-tree .is-current\").prop(\"aria-expanded\");r&&$(\".w7-tree .is-checked\").attr(\"data-active\",\"tree-active\")}}))}else{this.$nextTick((function(){t.isDelete||$(\".w7-tree .el-tree-node\").removeClass(\"is-checked\").attr({\"data-active\":\"\"}),t.isDelete=!1}));var a=this.$route.params.id;if(localStorage[\"currentData_\"+a]=JSON.stringify(e),this.isFormChange||this.isApiHeaderTreeDataChange||this.isApiParamsTreeDataChange||this.isApiBodyTreeDataChange||this.isApiResTreeDataChange||this.isMarkDownContentChange)return this.$confirm(\"您有数据尚未保存，确认保存?\",\"提示\",{showClose:!1,closeOnClickModal:!1,confirmButtonText:\"确认\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){t.saveApi(),t.isFormChange=!1,t.isApiHeaderTreeDataChange=!1,t.isApiParamsTreeDataChange=!1,t.isApiBodyTreeDataChange=!1,t.isApiResTreeDataChange=!1,t.isMarkDownContentChange=!1,t.getOperRecord()})).catch((function(){t.$message({type:\"info\",message:\"已取消\"}),t.isFormChange=!1,t.isApiHeaderTreeDataChange=!1,t.isApiParamsTreeDataChange=!1,t.isApiBodyTreeDataChange=!1,t.isApiResTreeDataChange=!1,t.isMarkDownContentChange=!1,t.previewId=e.id,t.docTitle=e.name,t.chapter_id=e.id,t.viewChapter(),t.treeActive=!0,t.menuBarVisible&&(t.menuBarVisible=!1),t.selectNodeObj=e,t.setOperRecord(e),t.$nextTick((function(){$(\".w7-tree .is-current\").attr(\"data-active\",\"tree-active\")}))})),!1;this.previewId=e.id,this.docTitle=e.name,this.chapter_id=e.id,this.selectNodeObj=e,this.viewChapter(),this.treeActive=!0,this.menuBarVisible&&(this.menuBarVisible=!1),this.setOperRecord(e),this.$nextTick((function(){var e=$(\".w7-tree .is-current\").find(\".el-tree-node__children\").length,t=$(\".w7-tree .is-current\").find(\".el-tree-node__children .el-tree-node\").length;(0==e||e>0)&&0==t&&setTimeout((function(){var e=$(\".w7-tree .is-current\").prop(\"aria-expanded\"),t=$(\".w7-tree .is-checked\").prop(\"aria-expanded\");e||$(\".w7-tree .is-current\").attr(\"data-active\",\"tree-active\"),t||$(\".w7-tree .is-checked:last\").attr(\"data-active\",\"tree-active\")}),600)}))}},updateXY:function(e){this.clientX=e.clientX,this.clientY=e.clientY},shortcut:function(e,t){this.rightSelectNodeObj=e,this.rightSelectNode=t,this.addChildNode(!1)},leftClick:function(e,t){1!=this.menuBarVisible?this.rightClick(!1,e,t):this.menuBarVisible=!1},rightClick:function(e,t,r){var n=this;this.rightSelectNodeObj=t,this.rightSelectNode=r,this.menuBarVisible=!1,this.menuBarVisible=!0,this.$nextTick((function(){var t=document.querySelector(\"#menu-bar\"),r=window.innerHeight,i=t.offsetHeight;e?(r-e.clientY>i?(t.style.top=e.clientY+20+\"px\",t.className=\"menu-bar bottom\"):(t.style.top=e.clientY-i-10+\"px\",t.className=\"menu-bar top\"),t.style.left=e.clientX-50+\"px\"):(r-n.clientY>i?(t.style.top=n.clientY+20+\"px\",t.className=\"menu-bar bottom\"):(t.style.top=n.clientY-i-20+\"px\",t.className=\"menu-bar top\"),t.style.left=n.clientX-50+\"px\")})),document.addEventListener(\"click\",this.removeRightClickEvent)},removeRightClickEvent:function(){this.menuBarVisible=!1,document.removeEventListener(\"click\",this.removeRightClickEvent)},clickIconAddNode:function(e){this.addFirst=!0,this.dialogTitle=e?\"新建目录\":\"新建文档\",this.dialogFormLabel=e?\"目录名称\":\"文档名称\",this.addNodeObj.name=\"\",this.addNodeObj.is_dir=e?1:0,this.addNodeObj.layout=e?0:1,this.dialogVisible=!0,this.rightSelectNode={},this.rightSelectNodeObj={}},updateNode:function(e){this.dialogTitle=\"重命名\",localStorage.rename=this.rightSelectNodeObj.name,this.addNodeObj.name=this.rightSelectNodeObj.name,this.dialogFormLabel=e?\"新的目录名称\":\"新的文档名称\",this.dialogVisible=!0},copyNode:function(){this.copyNodeName=this.rightSelectNodeObj.name,this.dialogVisibleCopy=!0},addChildNode:function(e){this.addFirst=!1,5==this.rightSelectNode.level&&e?this.$message(\"第五级只能为文档！\"):(this.dialogTitle=e?\"新建目录\":\"新建文档\",this.dialogFormLabel=e?\"目录名称\":\"文档名称\",this.addNodeObj.name=\"\",this.addNodeObj.is_dir=e?1:0,this.dialogVisible=!0)},confirmBtnCopy:function(){var e=this;this.copyNodeName?(this.confirmCopyDisabled=!0,this.$post(\"/admin/chapter/copy\",{document_id:this.$route.params.id,chapter_id:this.rightSelectNodeObj.id,parent_id:this.rightSelectNodeObj.parent_id,name:this.copyNodeName}).then((function(t){var r=t.data;if(e.confirmCopyDisabled=!1,0!=e.rightSelectNodeObj.parent_id){var n=e.rightSelectNode,i=n.parent;i.data.children.push(r)}else e.chapters.push(r);e.$message(\"复制成功！\"),e.dialogVisibleCopy=!1,e.$nextTick((function(){e.$refs.chaptersTree.setCurrentKey(r.id),e.handleNodeClick(e.$refs.chaptersTree.getCurrentNode());var t=JSON.parse(localStorage.getItem(\"we7_doc_user_\"+e.UserInfo.id)),n=t[\"document_\"+e.$route.params.id];e.defaultExpanded=n.defaultExpanded,e.defaultExpanded.push(r.id)}))}))):this.$message(\"章节名称不能为空！\")},confirmBtn:function(){var e=this;if(this.addFlag)return!1;this.addFlag=!0,this.addNodeObj.name?(this.confirmDisabled=!0,\"新建目录\"==this.dialogTitle&&(this.formCompared=\"\",this.markDownContentCompared=\"\",this.apiResTreeDataCompared=[],this.apiResTreeDataCompared.push({description:\"\",data:[]}),Object(_api_api__WEBPACK_IMPORTED_MODULE_18__[\"c\"])({document_id:this.$route.params.id,parent_id:this.addFirst?0:this.rightSelectNode.data.id,is_dir:this.addNodeObj.is_dir,layout:this.addNodeObj.layout,name:this.addNodeObj.name}).then((function(t){e.chapter_id=t.data.id,e.confirmDisabled=!1;var r=t.data;if(e.addFirst)e.chapters.push(r);else{var n=e.rightSelectNodeObj;n.children||e.$set(n,\"children\",[]),n.children.push(r)}e.$message(\"新增成功！\"),e.dialogVisible=!1,setTimeout((function(){e.addFlag=!1}),3e3)})).catch((function(){e.dialogVisible=!1,e.confirmDisabled=!1,setTimeout((function(){e.addFlag=!1}),3e3)}))),\"新建文档\"==this.dialogTitle&&(this.formCompared=\"\",this.markDownContentCompared=\"\",this.apiResTreeDataCompared=[],this.apiResTreeDataCompared.push({description:\"\",data:[]}),Object(_api_api__WEBPACK_IMPORTED_MODULE_18__[\"c\"])({document_id:this.$route.params.id,parent_id:this.addFirst?0:this.rightSelectNode.data.id,is_dir:this.addNodeObj.is_dir,layout:this.addNodeObj.layout,name:this.addNodeObj.name}).then((function(t){e.chapter_id=t.data.id,e.confirmDisabled=!1;var r=t.data;if(e.addFirst)e.chapters.push(r);else{var n=e.rightSelectNodeObj;n.children||e.$set(n,\"children\",[]),n.children.push(r)}e.$message(\"新增成功！\"),e.emptyForm(),e.isDocEmpty=!1,e.dialogVisible=!1,setTimeout((function(){e.addFlag=!1}),3e3),e.$nextTick((function(){e.$refs.chaptersTree.setCurrentKey(r.id),e.handleNodeClick(e.$refs.chaptersTree.getCurrentNode());var t=JSON.parse(localStorage.getItem(\"we7_doc_user_\"+e.UserInfo.id)),n=t[\"document_\"+e.$route.params.id];e.defaultExpanded=n.defaultExpanded,e.defaultExpanded.push(r.id)}))})).catch((function(){e.dialogVisible=!1,e.confirmDisabled=!1,setTimeout((function(){e.addFlag=!1}),3e3)}))),\"重命名\"==this.dialogTitle&&this.$post(\"/admin/chapter/update\",{document_id:this.$route.params.id,chapter_id:this.rightSelectNodeObj.id,name:this.addNodeObj.name}).then((function(){e.$message(\"修改成功！\"),e.rightSelectNodeObj.name=e.addNodeObj.name,e.dialogVisible=!1,e.confirmDisabled=!1;var t=e.docTitle,r=localStorage.rename;t==r&&(e.docTitle=e.addNodeObj.name),setTimeout((function(){e.addFlag=!1}),3e3)})).catch((function(){e.dialogVisible=!1,e.confirmDisabled=!1,setTimeout((function(){e.addFlag=!1}),3e3)}))):this.$message(\"章节名称不能为空！\")},removeNode:function(){var e=this,t=[];if(t.push(this.rightSelectNodeObj.id),this.rightSelectNodeObj.is_dir&&this.rightSelectNodeObj.children&&this.rightSelectNodeObj.children.length){var r=function e(r){r.forEach((function(r){t.push(r.id),r.children&&r.children.length&&e(r.children)}))};r(this.rightSelectNodeObj.children)}this.$confirm(\"确定删除该章节吗?\",\"提示\",{confirmButtonText:\"确定\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){e.$post(\"/admin/chapter/delete\",{document_id:e.$route.params.id,chapter_id:t}).then((function(){if(localStorage[\"currentData_\"+e.$route.params.id]){var r=JSON.parse(localStorage[\"currentData_\"+e.$route.params.id]);if(r){var n=r.id;t.forEach((function(t){t===n&&(localStorage[\"currentData_\"+e.$route.params.id]=\"\")}))}}var i=e.rightSelectNode,o=e.rightSelectNodeObj,a=i.parent,s=a.data.children||a.data,l=s.findIndex((function(e){return e.id===o.id}));s.splice(l,1),e.$message(\"删除成功！\"),e.selectNodeObj={},e.isDelete=!0,e.getChapters()}))})).catch((function(){}))},handleDrop:function(e,t,r){var n=this;this.$post(\"/admin/chapter/sort\",{document_id:this.$route.params.id,chapter_id:e.data.id,target:{chapter_id:t.data.id,parent_id:t.data.parent_id,position:r}}).then((function(){n.$message(\"修改成功！\")}))},allowDrop:function(e,t,r){if(t.data.is_dir||\"inner\"!==r)return!0},openMoveDialog:function(e){this.dialogMoveTitle=e?\"移动目录\":\"移动文档\",this.moveDoc=\"\",this.moveClass=\"\",this.dialogMoveVisible=!0},remoteMethod:function(e){var t=this;\"\"!==e?this.$post(\"/admin/document/all\",{keyword:e}).then((function(e){t.docList=e.data.data})):this.options=[]},changeDoc:function(e){var t=this;this.$post(\"/admin/chapter/detail\",{document_id:e}).then((function(e){t.docChapters=t.deleteA(t.deleteA(e.data.catalog))}))},deleteA:function(e){if(e.length)for(var t=e.length-1;t>=0;t--)e[t][\"is_dir\"]?e[t].children&&!e[t].children.length?delete e[t].children:e[t].children&&this.deleteA(e[t][\"children\"]):e.splice(t,1);return e},moveNode:function(){var e=this;this.moveDoc||this.$message(\"项目不能为空！\");var t=0;this.moveClass.length&&(t=this.moveClass[this.moveClass.length-1]),this.$post(\"/admin/chapter/sort\",{document_id:this.$route.params.id,chapter_id:this.rightSelectNodeObj.id,target:{document_id:this.moveDoc,chapter_id:t,position:\"move\"}}).then((function(){e.$message(\"移动成功！\"),e.dialogMoveVisible=!1,Object(_api_api__WEBPACK_IMPORTED_MODULE_18__[\"h\"])({document_id:e.$route.params.id}).then((function(t){200==t.code&&(t.data.catalog.length?(localStorage[\"currentData_\"+e.$route.params.id]=\"\",e.getChapters()):(e.isDocEmpty=!0,e.chapters=[]))}))}))},defaultFile:function(){var e=this;this.$post(\"/admin/chapter/default-show\",{document_id:this.$route.params.id,chapter_id:this.rightSelectNodeObj.parent_id,show_chapter_id:this.rightSelectNodeObj.id}).then((function(){e.getChapters(),e.$message(\"设置默认文档成功！\")}))},handleClose:function(){this.getChapters(),this.showSetting=!1},getMethodType:function(){var e=this;Object(_api_api__WEBPACK_IMPORTED_MODULE_18__[\"m\"])({}).then((function(t){t.data&&t.data.methodLabel&&(e.methodArr=t.data.methodLabel.option)}))},tabRequest:function(e){localStorage.tab_location=e.name,this.refreshRequestMock()},paramNameChange:function(e,t){t.name.length&&(t.already=Number(t.already)+1,1==t.already&&this.insertAfter(e,t))},resParamNameChange:function(e,t){t.name.length&&(t.already=Number(t.already)+1,1==t.already&&this.insertAfter(e,t))},addFirstNode:function(){var e=JSON.parse(JSON.stringify(this.baseRequestData)),t=this;function r(r){var n=r.length-1;\"\"==r[n].name&&\"\"==r[n].description?t.$message.warning(\"已存在空白行，请勿再次添加！\"):r.push(e)}var n=this.form.tab_location;1==n?r(this.apiHeaderTreeData):2==n?r(this.apiParamsTreeData):3==n&&r(this.apiBodyTreeData)},addResFirstNode:function(){var e=this,t=JSON.parse(JSON.stringify(this.baseRequestData));function r(r){var n=r.length-1;\"\"==r[n].name&&\"\"==r[n].description?e.$message.warning(\"已存在空白行，请勿再次添加！\"):r.push(t)}r(this.apiResTreeData)},addApiTreeNode:function(e){var t={id:id++,already:0,isChecked:!1,name:\"\",type:1,enabled:2,default_value:\"\",description:\"\",rule:\"\",children:[]};e.children||this.$set(e,\"children\",[]),4==e.type||5==e.type?e.children.push(t):this.$message.warning(\"参数类型为Object或者为Array才可添加！\")},addResApiTreeNode:function(e){var t={id:id++,already:0,isChecked:!1,name:\"\",type:1,enabled:2,default_value:\"\",description:\"\",rule:\"\",children:[]};e.children||this.$set(e,\"children\",[]),4==e.type||5==e.type?e.children.push(t):this.$message.warning(\"参数类型为Object或者为Array才可添加！\")},removeApiTreeNode:function(e,t){var r=this.apiHeaderTreeData.length,n=this.apiParamsTreeData.length,i=this.apiBodyTreeData.length,o=this.form.tab_location;if(1==o&&1==r&&1==e.level)return this.$message.closeAll(),this.$message.error(\"已经是最后一个了，勿删！\"),!1;if(2==o&&1==n&&1==e.level)return this.$message.closeAll(),this.$message.error(\"已经是最后一个了，勿删！\"),!1;if(3==o&&1==i&&1==e.level)return this.$message.closeAll(),this.$message.error(\"已经是最后一个了，勿删！\"),!1;var a=e.parent,s=a.data.children||a.data,l=s.findIndex((function(e){return e.id===t.id}));s.splice(l,1)},removeResApiTreeNode:function(e,t,r){var n=this.apiResTreeData[r].data.length;if(1==n&&1==e.level)return this.$message.closeAll(),this.$message.error(\"已经是最后一个了，勿删！\"),!1;var i=e.parent,o=i.data.children||i.data,a=o.findIndex((function(e){return e.id===t.id}));o.splice(a,1)},insertAfter:function(e,t){var r=e.parent,n={id:id++,already:0,isChecked:!1,name:\"\",type:1,enabled:2,default_value:\"\",description:\"\",rule:\"\",children:[]};Array.isArray(r.data)?r.data.push(n):r.data.children.push(n)},saveApi:function(){var e=this,t=(this.form.tab_location,this.form.body_param_location,\"\"),r={},n={};n={},n[\"1\"]=this.apiHeaderTreeData,n[\"2\"]=this.apiParamsTreeData,n[\"request_body\"]=this.apiBodyTreeData,r.api=this.form,r.body=n,r.reponse=this.apiResTreeData,r.extend=this.markDownContent,t=this.chapter_id,1==this.layout?(Object(_api_api__WEBPACK_IMPORTED_MODULE_18__[\"w\"])({document_id:this.$route.params.id,chapter_id:t,layout:1,record:r}).then((function(t){200==t.code&&(e.$message.closeAll(),e.$message.success(\"保存成功！\"),e.isFormChange=!1,e.isApiHeaderTreeDataChange=!1,e.isApiParamsTreeDataChange=!1,e.isApiBodyTreeDataChange=!1,e.isApiResTreeDataChange=!1,e.isMarkDownContentChange=!1)})),1==this.responseMockJson.length?(this.saveResponseMockJson(this.responseMockJson),this.getResponseMockJson(2)):this.getResponseMockJson(3)):Object(_api_api__WEBPACK_IMPORTED_MODULE_18__[\"w\"])({document_id:this.$route.params.id,chapter_id:t,layout:0,content:this.markDownContent}).then((function(t){200==t.code&&(e.$message.closeAll(),e.$message.success(\"保存成功！\"),e.isFormChange=!1,e.isApiHeaderTreeDataChange=!1,e.isApiParamsTreeDataChange=!1,e.isApiBodyTreeDataChange=!1,e.isApiResTreeDataChange=!1,e.isMarkDownContentChange=!1)}))},emptyForm:function(){this.docTitle=\"\",this.form=this.formCopy,this.apiHeaderTreeData=this.apiTreeDataCopy,this.apiParamsTreeData=this.apiTreeDataCopy,this.apiBodyTreeData=this.apiTreeDataCopy,this.apiResTreeData=this.apiResTreeDataCopy,this.markDownContent=\"\"},viewChapter:function(){var e=this,t=this.chapter_id,r=this.$route.params.id;this.loading=this.$loading(),Object(_api_api__WEBPACK_IMPORTED_MODULE_18__[\"D\"])({chapter_id:t,document_id:r}).then((function(r){if(e.loading.close(),e.defaultCheckedKeys=[t],200==r.code)if(e.layout=r.data.layout,1==r.data.layout){var n=JSON.parse(JSON.stringify(r.data.record)),i=JSON.parse(JSON.stringify(e.baseRequestData)),o=JSON.parse(JSON.stringify(e.baseRequestData)),a=JSON.parse(JSON.stringify(e.baseRequestData)),s=JSON.parse(JSON.stringify(e.baseRequestData));if(n.api?(e.formCompared=JSON.parse(JSON.stringify(n.api)),e.formCompared.url||(e.formCompared=\"\"),e.form=JSON.parse(JSON.stringify(n.api)),e.form.tab_location=localStorage.tab_location||e.form.tab_location.toString(),e.form.body_param_location=e.form.body_param_location,e.mockApiUrl2=location.origin+\"/mock/\".concat(e.$route.params.id,\"/\").concat(t),e.mockApiUrl=location.origin+\"/document/mockApiReponse/\".concat(e.$route.params.id)+\"/\"+e.form.url):(e.formCompared=\"\",e.form=JSON.parse(JSON.stringify(e.formCopy))),n.body[1].length?(e.apiHeaderTreeData=JSON.parse(JSON.stringify(n.body[\"1\"])),e.apiHeaderTreeDataCompared=JSON.parse(JSON.stringify(n.body[\"1\"])),e.apiHeaderTreeData.push(i)):(e.apiHeaderTreeDataCompared=\"\",e.apiHeaderTreeData=[i]),n.body[2].length?(e.apiParamsTreeData=JSON.parse(JSON.stringify(n.body[\"2\"])),e.apiParamsTreeDataCompared=JSON.parse(JSON.stringify(n.body[\"2\"])),e.apiParamsTreeData.push(o)):(e.apiParamsTreeDataCompared=\"\",e.apiParamsTreeData=[o]),n.body.request_body.length?(e.apiBodyTreeData=JSON.parse(JSON.stringify(n.body.request_body)),e.apiBodyTreeDataCompared=JSON.parse(JSON.stringify(n.body.request_body)),e.apiBodyTreeData.push(a)):(e.apiBodyTreeDataCompared=\"\",e.apiBodyTreeData=[a]),n.reponse.length)e.apiResTreeData=JSON.parse(JSON.stringify(n.reponse)),e.apiResTreeData.forEach((function(e){e.data.push(JSON.parse(JSON.stringify(s)))})),e.apiResTreeDataCompared=JSON.parse(JSON.stringify(n.reponse));else{var l=JSON.parse(JSON.stringify(e.baseRequestData));e.apiResTreeDataCompared=[],e.apiResTreeDataCompared.push({description:\"\",data:[]}),e.apiResTreeData=[{description:\"\",data:[l]}]}null==n.extend?(e.markDownContent=\"\",e.markDownContentCompared=\"\"):(e.markDownContent=JSON.parse(JSON.stringify(n.extend)),e.markDownContentCompared=JSON.parse(JSON.stringify(n.extend)))}else null==r.data.content?(e.markDownContent=\"\",e.markDownContentCompared=\"\"):(e.markDownContent=r.data.content,e.markDownContentCompared=r.data.content)})).catch((function(t){e.loading.close()}))},addResNode:function(){var e=JSON.parse(JSON.stringify(this.baseRequestData));this.apiResTreeData.push({description:\"\",data:[e]}),this.$message.closeAll(),this.$message.success(\"添加成功\")},deleteApiItem:function(e){var t=this;this.$confirm(\"确认删除该数据吗?\",\"提示\",{confirmButtonText:\"确认\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){t.apiResTreeData.splice(e,1)})).catch((function(){t.$message({type:\"info\",message:\"已取消\"})}))},typeChange:function(e){4!=e.type&&5!=e.type||(e.default_value=\"\")},viewRequestMock:function(){this.isViewRequest=!0,this.isViewRequest&&this.refreshRequestMock()},refreshRequestMock:function(){var e=this,t=this.form.tab_location;1==t?(this.requestMockTemplate=treeToTemplate(this.apiHeaderTreeData),this.requestMockJson=this.$mock.mock(treeToTemplate(this.apiHeaderTreeData,1)),this.requestMockJson=romoveSlash(this.requestMockJson)):2==t?(this.requestMockTemplate=treeToTemplate(this.apiParamsTreeData),this.requestMockJson=this.$mock.mock(treeToTemplate(this.apiParamsTreeData,1)),this.requestMockJson=romoveSlash(this.requestMockJson)):(this.requestMockTemplate=treeToTemplate(this.apiBodyTreeData),this.requestMockJson=this.$mock.mock(treeToTemplate(this.apiBodyTreeData,1)),this.requestMockJson=romoveSlash(this.requestMockJson)),this.$nextTick((function(){var t=e.$refs.requestMockLeftHeight.offsetHeight+32,r=e.$refs.requestMockRightHeight.offsetHeight+32;e.requestMockHeight=t>r?t:t<r?r:t}))},viewResponseMock:function(){this.isViewResponse=!0,this.isViewResponse&&this.refreshResponseMock()},getResponseMockJson:function(e){for(var t=this,r=function(e){t.responseMockTemplate=[],t.responseMockJson=[],t.apiResTreeData.forEach((function(e){t.responseMockTemplate.push(treeToTemplate(e.data)),t.responseMockJson.push(t.$mock.mock(treeToTemplate(e.data,1)))}));var r=[];t.responseMockJson.forEach((function(e){r.push(romoveSlash(e))})),t.responseMockJson=r,t.saveResponseMockJson(t.responseMockJson)},n=0;n<e;n++)r(n)},saveResponseMockJson:function(e){var t=qs__WEBPACK_IMPORTED_MODULE_25___default.a.stringify(e);Object(_api_api__WEBPACK_IMPORTED_MODULE_18__[\"x\"])({chapter_id:this.chapter_id,document_id:this.$route.params.id,respond:t}).then((function(e){e.code}))},refreshResponseMock:function(){var e=this;this.responseMockTemplate=[],this.responseMockJson=[],this.apiResTreeData.forEach((function(t){e.responseMockTemplate.push(treeToTemplate(t.data)),e.responseMockJson.push(e.$mock.mock(treeToTemplate(t.data,1)))}));var t=[];this.responseMockJson.forEach((function(e){t.push(romoveSlash(e))})),this.responseMockJson=t,this.$nextTick((function(){var t=e.$refs.responseMockLeftHeight.offsetHeight+32,r=e.$refs.responseMockRightHeight.offsetHeight+32;e.responseMockHeight=t>r?t:r}))},onCopy:function(e){this.$message.success(\"复制成功\")},goMock:function(){window.open(\"https://github.com/nuysoft/Mock/wiki/Syntax-Specification\")},showImportDialog:function(e){this.importDialogVisible=!0,this.importQuery.type=e,this.importQuery.data=\"\",this.isSubmit=!1,\"key_word\"==e?(this.importQuery.location=this.form.tab_location,this.importDialogTitle=\"导入键值对\"):(this.importQuery.location=10,this.importDialogTitle=\"导入JSON\")},importSubmit:function(){var e=this;if(this.isSubmit)return!1;this.isSubmit=!0,setTimeout((function(){e.importSubmitFun(),e.isSubmit=!1}),500)},importSubmitFun:function(){var e=this;if(this.importQuery.data.length)if(10==this.importQuery.location)try{var t=JSON.parse(this.importQuery.data);t&&(this.importDisabled=!0,Object(_api_api__WEBPACK_IMPORTED_MODULE_18__[\"r\"])(this.importQuery).then((function(t){200==t.code&&(e.$message.success(\"提交成功\"),e.importDialogVisible=!1,t.data&&t.data.length&&t.data.forEach((function(e){e.id=id++})),e.apiResTreeData.unshift({description:\"\",data:t.data}),e.importDisabled=!1)})).catch((function(t){e.importDisabled=!1})))}catch(r){this.$message.closeAll(),this.$message.error(\"导入数据不是标准的JSON格式\")}else this.importDisabled=!0,Object(_api_api__WEBPACK_IMPORTED_MODULE_18__[\"r\"])(this.importQuery).then((function(t){if(200==t.code){e.$message.success(\"提交成功\"),e.importDialogVisible=!1;var r=e.importQuery.location;if(t.data&&t.data.length&&t.data.forEach((function(e){e.id=id++})),1==r){var n,i=e.apiHeaderTreeData.length-1;(n=e.apiHeaderTreeData).splice.apply(n,[i,0].concat(Object(C_Users_Administrator_Desktop_ued_document_node_modules_vue_babel_preset_app_node_modules_babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_6__[\"a\"])(t.data)))}else if(2==r){var o,a=e.apiParamsTreeData.length-1;(o=e.apiParamsTreeData).splice.apply(o,[a,0].concat(Object(C_Users_Administrator_Desktop_ued_document_node_modules_vue_babel_preset_app_node_modules_babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_6__[\"a\"])(t.data)))}else if(3==r){var s,l=e.apiBodyTreeData.length-1;(s=e.apiBodyTreeData).splice.apply(s,[l,0].concat(Object(C_Users_Administrator_Desktop_ued_document_node_modules_vue_babel_preset_app_node_modules_babel_runtime_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_6__[\"a\"])(t.data)))}e.importDisabled=!1}})).catch((function(t){e.importDisabled=!1}));else this.$message.closeAll(),this.$message.error(\"导入数据不能为空\")},allowApiTreeDrop:function(e,t,r){return e.data.level===t.data.level&&(e.data.aboveId===t.data.aboveId?\"prev\"===r||\"next\"===r:void 0)},handleApiNodeDrop:function(e,t){for(var r=t.parent.data,n=0;n<r.length;n++)delete r[n].id;switch(e){case\"header\":this.apiHeaderTreeData=r;break;case\"params\":this.apiParamsTreeData=r;break;case\"body\":this.apiBodyTreeData=r;break;case\"res\":this.apiResTreeData[0].data=r;break;default:}},apiHeaderNodeDrop:function(e,t){this.handleApiNodeDrop(\"header\",t,e)},apiParamsNodeDrop:function(e,t){this.handleApiNodeDrop(\"params\",t,e)},apiBodyNodeDrop:function(e,t){this.handleApiNodeDrop(\"body\",t,e)},apiResNodeDrop:function(e,t){this.handleApiNodeDrop(\"res\",t,e)}}}}).call(this,__webpack_require__(\"1157\"))},\"5df3\":function(e,t,r){\"use strict\";var n=r(\"02f4\")(!0);r(\"01f9\")(String,\"String\",(function(e){this._t=String(e),this._i=0}),(function(){var e,t=this._t,r=this._i;return r>=t.length?{value:void 0,done:!0}:(e=n(t,r),this._i+=e.length,{value:e,done:!1})}))},\"67ab\":function(e,t,r){var n=r(\"ca5a\")(\"meta\"),i=r(\"d3f4\"),o=r(\"69a8\"),a=r(\"86cc\").f,s=0,l=Object.isExtensible||function(){return!0},c=!r(\"79e5\")((function(){return l(Object.preventExtensions({}))})),u=function(e){a(e,n,{value:{i:\"O\"+ ++s,w:{}}})},d=function(e,t){if(!i(e))return\"symbol\"==typeof e?e:(\"string\"==typeof e?\"S\":\"P\")+e;if(!o(e,n)){if(!l(e))return\"F\";if(!t)return\"E\";u(e)}return e[n].i},f=function(e,t){if(!o(e,n)){if(!l(e))return!0;if(!t)return!1;u(e)}return e[n].w},h=function(e){return c&&p.NEED&&l(e)&&!o(e,n)&&u(e),e},p=e.exports={KEY:n,NEED:!1,fastKey:d,getWeak:f,onFreeze:h}},7514:function(e,t,r){\"use strict\";var n=r(\"5ca1\"),i=r(\"0a49\")(5),o=\"find\",a=!0;o in[]&&Array(1)[o]((function(){a=!1})),n(n.P+n.F*a,\"Array\",{find:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),r(\"9c6c\")(o)},\"7af4\":function(e,t,r){},\"7bbc\":function(e,t,r){var n=r(\"6821\"),i=r(\"9093\").f,o={}.toString,a=\"object\"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(e){try{return i(e)}catch(t){return a.slice()}};e.exports.f=function(e){return a&&\"[object Window]\"==o.call(e)?s(e):i(n(e))}},\"7d1d\":function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAQCAYAAAAWGF8bAAAB40lEQVQ4jaWSPWhUQRSFJwaLQBBSqG+DRWIhsQkRhJjSVogEIb2JM9+Z2bDCqmATSaxsLN4TtbARxB9IE8VCC0UQbOwUJFZiIQbNEkRt/CHXIk/RJbtZyYWp7plvztx7nGtR1Wq1V9JZ4DnwSVJD0uMY4/HJycnuVvc2rJTSMPAW+C7pLnBO0nlJTwADnk1NTe3sCDY9Pd0PfACWvPf7m/vAYWCldL59UyBwA1j13u9ppZE0BvwETraF1Wq1HcA3YK6DhxeAly0F5RJOlTMa3Qwo6QSwJmm8Xq/3NDePAaslzLz3gx04nPitBz4CE84557z3h4Afkp7GGA/8TyTm5+e3ee+HgUdlIg46SfeBd9VqtbfVxf7crldyu92qX6/Xe4A3wD0HNCRdaeekkttiVtiDdhrgIrDiJC1LurZVYAjhEvDeAXeAxobJX7Duf4BmXc6sq1mWUuoDlkMINx0wFEL4CrxKKR1NKe2NMQ6klPoqud2q5HahkttiltvDrLCrWWGXY4y7YowD3vtBSUeAF8CXmZmZfc65P8lf+isGBsxVcpvNcrOssEaW2+essLXdhdWAxSbta0ljzc67QggjksbLjA2V312Hrp/T5QJGgQlJ4yGEEdtgDG2rkttsVtiZTrS/AEKgFMIAi18YAAAAAElFTkSuQmCC\"},\"8a81\":function(e,t,r){\"use strict\";var n=r(\"7726\"),i=r(\"69a8\"),o=r(\"9e1e\"),a=r(\"5ca1\"),s=r(\"2aba\"),l=r(\"67ab\").KEY,c=r(\"79e5\"),u=r(\"5537\"),d=r(\"7f20\"),f=r(\"ca5a\"),h=r(\"2b4c\"),p=r(\"37c8\"),m=r(\"3a72\"),g=r(\"d4c0\"),v=r(\"1169\"),y=r(\"cb7c\"),_=r(\"d3f4\"),b=r(\"4bf8\"),w=r(\"6821\"),C=r(\"6a99\"),x=r(\"4630\"),k=r(\"2aeb\"),T=r(\"7bbc\"),S=r(\"11e9\"),O=r(\"2621\"),D=r(\"86cc\"),M=r(\"0d58\"),A=S.f,N=D.f,E=T.f,L=n.Symbol,P=n.JSON,R=P&&P.stringify,I=\"prototype\",W=h(\"_hidden\"),B=h(\"toPrimitive\"),j={}.propertyIsEnumerable,H=u(\"symbol-registry\"),F=u(\"symbols\"),$=u(\"op-symbols\"),U=Object[I],q=\"function\"==typeof L&&!!O.f,z=n.QObject,K=!z||!z[I]||!z[I].findChild,J=o&&c((function(){return 7!=k(N({},\"a\",{get:function(){return N(this,\"a\",{value:7}).a}})).a}))?function(e,t,r){var n=A(U,t);n&&delete U[t],N(e,t,r),n&&e!==U&&N(U,t,n)}:N,V=function(e){var t=F[e]=k(L[I]);return t._k=e,t},G=q&&\"symbol\"==typeof L.iterator?function(e){return\"symbol\"==typeof e}:function(e){return e instanceof L},X=function(e,t,r){return e===U&&X($,t,r),y(e),t=C(t,!0),y(r),i(F,t)?(r.enumerable?(i(e,W)&&e[W][t]&&(e[W][t]=!1),r=k(r,{enumerable:x(0,!1)})):(i(e,W)||N(e,W,x(1,{})),e[W][t]=!0),J(e,t,r)):N(e,t,r)},Y=function(e,t){y(e);var r,n=g(t=w(t)),i=0,o=n.length;while(o>i)X(e,r=n[i++],t[r]);return e},Q=function(e,t){return void 0===t?k(e):Y(k(e),t)},Z=function(e){var t=j.call(this,e=C(e,!0));return!(this===U&&i(F,e)&&!i($,e))&&(!(t||!i(this,e)||!i(F,e)||i(this,W)&&this[W][e])||t)},ee=function(e,t){if(e=w(e),t=C(t,!0),e!==U||!i(F,t)||i($,t)){var r=A(e,t);return!r||!i(F,t)||i(e,W)&&e[W][t]||(r.enumerable=!0),r}},te=function(e){var t,r=E(w(e)),n=[],o=0;while(r.length>o)i(F,t=r[o++])||t==W||t==l||n.push(t);return n},re=function(e){var t,r=e===U,n=E(r?$:w(e)),o=[],a=0;while(n.length>a)!i(F,t=n[a++])||r&&!i(U,t)||o.push(F[t]);return o};q||(L=function(){if(this instanceof L)throw TypeError(\"Symbol is not a constructor!\");var e=f(arguments.length>0?arguments[0]:void 0),t=function(r){this===U&&t.call($,r),i(this,W)&&i(this[W],e)&&(this[W][e]=!1),J(this,e,x(1,r))};return o&&K&&J(U,e,{configurable:!0,set:t}),V(e)},s(L[I],\"toString\",(function(){return this._k})),S.f=ee,D.f=X,r(\"9093\").f=T.f=te,r(\"52a7\").f=Z,O.f=re,o&&!r(\"2d00\")&&s(U,\"propertyIsEnumerable\",Z,!0),p.f=function(e){return V(h(e))}),a(a.G+a.W+a.F*!q,{Symbol:L});for(var ne=\"hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables\".split(\",\"),ie=0;ne.length>ie;)h(ne[ie++]);for(var oe=M(h.store),ae=0;oe.length>ae;)m(oe[ae++]);a(a.S+a.F*!q,\"Symbol\",{for:function(e){return i(H,e+=\"\")?H[e]:H[e]=L(e)},keyFor:function(e){if(!G(e))throw TypeError(e+\" is not a symbol!\");for(var t in H)if(H[t]===e)return t},useSetter:function(){K=!0},useSimple:function(){K=!1}}),a(a.S+a.F*!q,\"Object\",{create:Q,defineProperty:X,defineProperties:Y,getOwnPropertyDescriptor:ee,getOwnPropertyNames:te,getOwnPropertySymbols:re});var se=c((function(){O.f(1)}));a(a.S+a.F*se,\"Object\",{getOwnPropertySymbols:function(e){return O.f(b(e))}}),P&&a(a.S+a.F*(!q||c((function(){var e=L();return\"[null]\"!=R([e])||\"{}\"!=R({a:e})||\"{}\"!=R(Object(e))}))),\"JSON\",{stringify:function(e){var t,r,n=[e],i=1;while(arguments.length>i)n.push(arguments[i++]);if(r=t=n[1],(_(t)||void 0!==e)&&!G(e))return v(t)||(t=function(e,t){if(\"function\"==typeof r&&(t=r.call(this,e,t)),!G(t))return t}),n[1]=t,R.apply(P,n)}}),L[I][B]||r(\"32e9\")(L[I],B,L[I].valueOf),d(L,\"Symbol\"),d(Math,\"Math\",!0),d(n.JSON,\"JSON\",!0)},\"8e6e\":function(e,t,r){var n=r(\"5ca1\"),i=r(\"990b\"),o=r(\"6821\"),a=r(\"11e9\"),s=r(\"f1ae\");n(n.S,\"Object\",{getOwnPropertyDescriptors:function(e){var t,r,n=o(e),l=a.f,c=i(n),u={},d=0;while(c.length>d)r=l(n,t=c[d++]),void 0!==r&&s(u,t,r);return u}})},\"8f94\":function(e,t,r){!function(t,n){e.exports=n(r(\"56b3\"))}(0,(function(e){return function(e){function t(n){if(r[n])return r[n].exports;var i=r[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var r={};return t.m=e,t.c=r,t.i=function(e){return e},t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,\"a\",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p=\"/\",t(t.s=3)}([function(t,r){t.exports=e},function(e,t,r){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0});var n=r(0),i=function(e){return e&&e.__esModule?e:{default:e}}(n),o=window.CodeMirror||i.default;\"function\"!=typeof Object.assign&&Object.defineProperty(Object,\"assign\",{value:function(e,t){if(null==e)throw new TypeError(\"Cannot convert undefined or null to object\");for(var r=Object(e),n=1;n<arguments.length;n++){var i=arguments[n];if(null!=i)for(var o in i)Object.prototype.hasOwnProperty.call(i,o)&&(r[o]=i[o])}return r},writable:!0,configurable:!0}),t.default={name:\"codemirror\",data:function(){return{content:\"\",codemirror:null,cminstance:null}},props:{code:String,value:String,marker:Function,unseenLines:Array,name:{type:String,default:\"codemirror\"},placeholder:{type:String,default:\"\"},merge:{type:Boolean,default:!1},options:{type:Object,default:function(){return{}}},events:{type:Array,default:function(){return[]}},globalOptions:{type:Object,default:function(){return{}}},globalEvents:{type:Array,default:function(){return[]}}},watch:{options:{deep:!0,handler:function(e){for(var t in e)this.cminstance.setOption(t,e[t])}},merge:function(){this.$nextTick(this.switchMerge)},code:function(e){this.handerCodeChange(e)},value:function(e){this.handerCodeChange(e)}},methods:{initialize:function(){var e=this,t=Object.assign({},this.globalOptions,this.options);this.merge?(this.codemirror=o.MergeView(this.$refs.mergeview,t),this.cminstance=this.codemirror.edit):(this.codemirror=o.fromTextArea(this.$refs.textarea,t),this.cminstance=this.codemirror,this.cminstance.setValue(this.code||this.value||this.content)),this.cminstance.on(\"change\",(function(t){e.content=t.getValue(),e.$emit&&e.$emit(\"input\",e.content)}));var r={};[\"scroll\",\"changes\",\"beforeChange\",\"cursorActivity\",\"keyHandled\",\"inputRead\",\"electricInput\",\"beforeSelectionChange\",\"viewportChange\",\"swapDoc\",\"gutterClick\",\"gutterContextMenu\",\"focus\",\"blur\",\"refresh\",\"optionChange\",\"scrollCursorIntoView\",\"update\"].concat(this.events).concat(this.globalEvents).filter((function(e){return!r[e]&&(r[e]=!0)})).forEach((function(t){e.cminstance.on(t,(function(){for(var r=arguments.length,n=Array(r),i=0;i<r;i++)n[i]=arguments[i];e.$emit.apply(e,[t].concat(n));var o=t.replace(/([A-Z])/g,\"-$1\").toLowerCase();o!==t&&e.$emit.apply(e,[o].concat(n))}))})),this.$emit(\"ready\",this.codemirror),this.unseenLineMarkers(),this.refresh()},refresh:function(){var e=this;this.$nextTick((function(){e.cminstance.refresh()}))},destroy:function(){var e=this.cminstance.doc.cm.getWrapperElement();e&&e.remove&&e.remove()},handerCodeChange:function(e){if(e!==this.cminstance.getValue()){var t=this.cminstance.getScrollInfo();this.cminstance.setValue(e),this.content=e,this.cminstance.scrollTo(t.left,t.top)}this.unseenLineMarkers()},unseenLineMarkers:function(){var e=this;void 0!==this.unseenLines&&void 0!==this.marker&&this.unseenLines.forEach((function(t){var r=e.cminstance.lineInfo(t);e.cminstance.setGutterMarker(t,\"breakpoints\",r.gutterMarkers?null:e.marker())}))},switchMerge:function(){var e=this.cminstance.doc.history,t=this.cminstance.doc.cleanGeneration;this.options.value=this.cminstance.getValue(),this.destroy(),this.initialize(),this.cminstance.doc.history=e,this.cminstance.doc.cleanGeneration=t}},mounted:function(){this.initialize()},beforeDestroy:function(){this.destroy()}}},function(e,t,r){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0});var n=r(1),i=r.n(n);for(var o in n)[\"default\",\"default\"].indexOf(o)<0&&function(e){r.d(t,e,(function(){return n[e]}))}(o);var a=r(5),s=r(4),l=s(i.a,a.a,!1,null,null,null);t.default=l.exports},function(e,t,r){\"use strict\";function n(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,\"__esModule\",{value:!0}),t.install=t.codemirror=t.CodeMirror=void 0;var i=r(0),o=n(i),a=r(2),s=n(a),l=window.CodeMirror||o.default,c=function(e,t){t&&(t.options&&(s.default.props.globalOptions.default=function(){return t.options}),t.events&&(s.default.props.globalEvents.default=function(){return t.events})),e.component(s.default.name,s.default)},u={CodeMirror:l,codemirror:s.default,install:c};t.default=u,t.CodeMirror=l,t.codemirror=s.default,t.install=c},function(e,t){e.exports=function(e,t,r,n,i,o){var a,s=e=e||{},l=typeof e.default;\"object\"!==l&&\"function\"!==l||(a=e,s=e.default);var c,u=\"function\"==typeof s?s.options:s;if(t&&(u.render=t.render,u.staticRenderFns=t.staticRenderFns,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId=i),o?(c=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},u._ssrRegister=c):n&&(c=n),c){var d=u.functional,f=d?u.render:u.beforeCreate;d?(u._injectStyles=c,u.render=function(e,t){return c.call(t),f(e,t)}):u.beforeCreate=f?[].concat(f,c):[c]}return{esModule:a,exports:s,options:u}}},function(e,t,r){\"use strict\";var n=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r(\"div\",{staticClass:\"vue-codemirror\",class:{merge:e.merge}},[e.merge?r(\"div\",{ref:\"mergeview\"}):r(\"textarea\",{ref:\"textarea\",attrs:{name:e.name,placeholder:e.placeholder}})])},i=[],o={render:n,staticRenderFns:i};t.a=o}])}))},\"990b\":function(e,t,r){var n=r(\"9093\"),i=r(\"2621\"),o=r(\"cb7c\"),a=r(\"7726\").Reflect;e.exports=a&&a.ownKeys||function(e){var t=n.f(o(e)),r=i.f;return r?t.concat(r(e)):t}},a7be:function(e,t,r){},a9f2:function(e,t,r){},aa77:function(e,t,r){var n=r(\"5ca1\"),i=r(\"be13\"),o=r(\"79e5\"),a=r(\"fdef\"),s=\"[\"+a+\"]\",l=\"​\",c=RegExp(\"^\"+s+s+\"*\"),u=RegExp(s+s+\"*$\"),d=function(e,t,r){var i={},s=o((function(){return!!a[e]()||l[e]()!=l})),c=i[e]=s?t(f):a[e];r&&(i[r]=c),n(n.P+n.F*s,\"String\",i)},f=d.trim=function(e,t){return e=String(i(e)),1&t&&(e=e.replace(c,\"\")),2&t&&(e=e.replace(u,\"\")),e};e.exports=d},ac4d:function(e,t,r){r(\"3a72\")(\"asyncIterator\")},c5f6:function(e,t,r){\"use strict\";var n=r(\"7726\"),i=r(\"69a8\"),o=r(\"2d95\"),a=r(\"5dbc\"),s=r(\"6a99\"),l=r(\"79e5\"),c=r(\"9093\").f,u=r(\"11e9\").f,d=r(\"86cc\").f,f=r(\"aa77\").trim,h=\"Number\",p=n[h],m=p,g=p.prototype,v=o(r(\"2aeb\")(g))==h,y=\"trim\"in String.prototype,_=function(e){var t=s(e,!1);if(\"string\"==typeof t&&t.length>2){t=y?t.trim():f(t,3);var r,n,i,o=t.charCodeAt(0);if(43===o||45===o){if(r=t.charCodeAt(2),88===r||120===r)return NaN}else if(48===o){switch(t.charCodeAt(1)){case 66:case 98:n=2,i=49;break;case 79:case 111:n=8,i=55;break;default:return+t}for(var a,l=t.slice(2),c=0,u=l.length;c<u;c++)if(a=l.charCodeAt(c),a<48||a>i)return NaN;return parseInt(l,n)}}return+t};if(!p(\" 0o1\")||!p(\"0b1\")||p(\"+0x1\")){p=function(e){var t=arguments.length<1?0:e,r=this;return r instanceof p&&(v?l((function(){g.valueOf.call(r)})):o(r)!=h)?a(new m(_(t)),r,p):_(t)};for(var b,w=r(\"9e1e\")?c(m):\"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger\".split(\",\"),C=0;w.length>C;C++)i(m,b=w[C])&&!i(p,b)&&d(p,b,u(m,b));p.prototype=g,g.constructor=p,r(\"2aba\")(n,h,p)}},cc10:function(e,t,r){},cd1c:function(e,t,r){var n=r(\"e853\");e.exports=function(e,t){return new(n(e))(t)}},ce4d:function(e,t,r){},d0ff:function(e,t,r){\"use strict\";function n(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function i(e){if(Array.isArray(e))return n(e)}function o(e){if(\"undefined\"!==typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}function a(e,t){if(e){if(\"string\"===typeof e)return n(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return\"Object\"===r&&e.constructor&&(r=e.constructor.name),\"Map\"===r||\"Set\"===r?Array.from(e):\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?n(e,t):void 0}}function s(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}function l(e){return i(e)||o(e)||a(e)||s()}r.d(t,\"a\",(function(){return l}))},d4c0:function(e,t,r){var n=r(\"0d58\"),i=r(\"2621\"),o=r(\"52a7\");e.exports=function(e){var t=n(e),r=i.f;if(r){var a,s=r(e),l=o.f,c=0;while(s.length>c)l.call(e,a=s[c++])&&t.push(a)}return t}},e853:function(e,t,r){var n=r(\"d3f4\"),i=r(\"1169\"),o=r(\"2b4c\")(\"species\");e.exports=function(e){var t;return i(e)&&(t=e.constructor,\"function\"!=typeof t||t!==Array&&!i(t.prototype)||(t=void 0),n(t)&&(t=t[o],null===t&&(t=void 0))),void 0===t?Array:t}},f1ae:function(e,t,r){\"use strict\";var n=r(\"86cc\"),i=r(\"4630\");e.exports=function(e,t,r){t in e?n.f(e,t,i(0,r)):e[t]=r}},f93f:function(e,t,r){\"use strict\";var n=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r(\"div\",{staticClass:\"editors\"},[r(\"mavon-editor\",{ref:\"mavonEditor\",attrs:{boxShadow:!1,scrollStyle:!0,ishljs:!0,codeStyle:e.code_style,navigation:!1},on:{imgAdd:e.$imgAdd,input:e.input},model:{value:e.contentMd,callback:function(t){e.contentMd=t},expression:\"contentMd\"}}),r(\"div\")],1)},i=[],o={props:[\"chapter_id\",\"markDownContent\"],data:function(){return{code_style:\"tomorrow-night-blue\",chapterInfo:{name:\"\",updated_at:\"\",username:\"\"},contentMd:\"\",old_contentMd:\"\",timer:\"\"}},watch:{markDownContent:function(e){this.contentMd=e}},mounted:function(){var e=document.documentElement.clientHeight;this.$refs.mavonEditor.$el.style.height=e-310+\"px\"},destroyed:function(){},methods:{input:function(){this.$emit(\"input\",this.contentMd)},$imgAdd:function(e,t){var r=this,n=(t.size/1048576).toFixed(2);if(n<=5){var i=new FormData;i.append(\"file\",t),i.append(\"document_id\",this.$route.params.id),i.append(\"chapter_id\",this.chapter_id),this.$post(\"/admin/upload/image\",i,{headers:{\"Content-Type\":\"multipart/form-data\"}}).then((function(t){r.$refs.mavonEditor.$img2Url(e,t.data.url)})).catch((function(e){}))}else this.$refs.mavonEditor.$img2Url(e,\"\"),this.$message.closeAll(),this.$message.error(\"请上传不大于5M的文件\")}}},a=o,s=(r(\"4238\"),r(\"2877\")),l=Object(s[\"a\"])(a,n,i,!1,null,\"7d82a91c\",null);t[\"a\"]=l.exports},f9d4:function(e,t,r){(function(e){e(r(\"56b3\"))})((function(e){\"use strict\";e.defineMode(\"javascript\",(function(t,r){var n,i,o=t.indentUnit,a=r.statementIndent,s=r.jsonld,l=r.json||s,c=r.typescript,u=r.wordCharacters||/[\\w$\\xa1-\\uffff]/,d=function(){function e(e){return{type:e,style:\"keyword\"}}var t=e(\"keyword a\"),r=e(\"keyword b\"),n=e(\"keyword c\"),i=e(\"keyword d\"),o=e(\"operator\"),a={type:\"atom\",style:\"atom\"};return{if:e(\"if\"),while:t,with:t,else:r,do:r,try:r,finally:r,return:i,break:i,continue:i,new:e(\"new\"),delete:n,void:n,throw:n,debugger:e(\"debugger\"),var:e(\"var\"),const:e(\"var\"),let:e(\"var\"),function:e(\"function\"),catch:e(\"catch\"),for:e(\"for\"),switch:e(\"switch\"),case:e(\"case\"),default:e(\"default\"),in:o,typeof:o,instanceof:o,true:a,false:a,null:a,undefined:a,NaN:a,Infinity:a,this:e(\"this\"),class:e(\"class\"),super:e(\"atom\"),yield:n,export:e(\"export\"),import:e(\"import\"),extends:n,await:n}}(),f=/[+\\-*&%=<>!?|~^@]/,h=/^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)\"/;function p(e){var t,r=!1,n=!1;while(null!=(t=e.next())){if(!r){if(\"/\"==t&&!n)return;\"[\"==t?n=!0:n&&\"]\"==t&&(n=!1)}r=!r&&\"\\\\\"==t}}function m(e,t,r){return n=e,i=r,t}function g(e,t){var r=e.next();if('\"'==r||\"'\"==r)return t.tokenize=v(r),t.tokenize(e,t);if(\".\"==r&&e.match(/^\\d[\\d_]*(?:[eE][+\\-]?[\\d_]+)?/))return m(\"number\",\"number\");if(\".\"==r&&e.match(\"..\"))return m(\"spread\",\"meta\");if(/[\\[\\]{}\\(\\),;\\:\\.]/.test(r))return m(r);if(\"=\"==r&&e.eat(\">\"))return m(\"=>\",\"operator\");if(\"0\"==r&&e.match(/^(?:x[\\dA-Fa-f_]+|o[0-7_]+|b[01_]+)n?/))return m(\"number\",\"number\");if(/\\d/.test(r))return e.match(/^[\\d_]*(?:n|(?:\\.[\\d_]*)?(?:[eE][+\\-]?[\\d_]+)?)?/),m(\"number\",\"number\");if(\"/\"==r)return e.eat(\"*\")?(t.tokenize=y,y(e,t)):e.eat(\"/\")?(e.skipToEnd(),m(\"comment\",\"comment\")):et(e,t,1)?(p(e),e.match(/^\\b(([gimyus])(?![gimyus]*\\2))+\\b/),m(\"regexp\",\"string-2\")):(e.eat(\"=\"),m(\"operator\",\"operator\",e.current()));if(\"`\"==r)return t.tokenize=_,_(e,t);if(\"#\"==r&&\"!\"==e.peek())return e.skipToEnd(),m(\"meta\",\"meta\");if(\"#\"==r&&e.eatWhile(u))return m(\"variable\",\"property\");if(\"<\"==r&&e.match(\"!--\")||\"-\"==r&&e.match(\"->\")&&!/\\S/.test(e.string.slice(0,e.start)))return e.skipToEnd(),m(\"comment\",\"comment\");if(f.test(r))return\">\"==r&&t.lexical&&\">\"==t.lexical.type||(e.eat(\"=\")?\"!\"!=r&&\"=\"!=r||e.eat(\"=\"):/[<>*+\\-|&?]/.test(r)&&(e.eat(r),\">\"==r&&e.eat(r))),\"?\"==r&&e.eat(\".\")?m(\".\"):m(\"operator\",\"operator\",e.current());if(u.test(r)){e.eatWhile(u);var n=e.current();if(\".\"!=t.lastType){if(d.propertyIsEnumerable(n)){var i=d[n];return m(i.type,i.style,n)}if(\"async\"==n&&e.match(/^(\\s|\\/\\*([^*]|\\*(?!\\/))*?\\*\\/)*[\\[\\(\\w]/,!1))return m(\"async\",\"keyword\",n)}return m(\"variable\",\"variable\",n)}}function v(e){return function(t,r){var n,i=!1;if(s&&\"@\"==t.peek()&&t.match(h))return r.tokenize=g,m(\"jsonld-keyword\",\"meta\");while(null!=(n=t.next())){if(n==e&&!i)break;i=!i&&\"\\\\\"==n}return i||(r.tokenize=g),m(\"string\",\"string\")}}function y(e,t){var r,n=!1;while(r=e.next()){if(\"/\"==r&&n){t.tokenize=g;break}n=\"*\"==r}return m(\"comment\",\"comment\")}function _(e,t){var r,n=!1;while(null!=(r=e.next())){if(!n&&(\"`\"==r||\"$\"==r&&e.eat(\"{\"))){t.tokenize=g;break}n=!n&&\"\\\\\"==r}return m(\"quasi\",\"string-2\",e.current())}var b=\"([{}])\";function w(e,t){t.fatArrowAt&&(t.fatArrowAt=null);var r=e.string.indexOf(\"=>\",e.start);if(!(r<0)){if(c){var n=/:\\s*(?:\\w+(?:<[^>]*>|\\[\\])?|\\{[^}]*\\})\\s*$/.exec(e.string.slice(e.start,r));n&&(r=n.index)}for(var i=0,o=!1,a=r-1;a>=0;--a){var s=e.string.charAt(a),l=b.indexOf(s);if(l>=0&&l<3){if(!i){++a;break}if(0==--i){\"(\"==s&&(o=!0);break}}else if(l>=3&&l<6)++i;else if(u.test(s))o=!0;else if(/[\"'\\/`]/.test(s))for(;;--a){if(0==a)return;var d=e.string.charAt(a-1);if(d==s&&\"\\\\\"!=e.string.charAt(a-2)){a--;break}}else if(o&&!i){++a;break}}o&&!i&&(t.fatArrowAt=a)}}var C={atom:!0,number:!0,variable:!0,string:!0,regexp:!0,this:!0,\"jsonld-keyword\":!0};function x(e,t,r,n,i,o){this.indented=e,this.column=t,this.type=r,this.prev=i,this.info=o,null!=n&&(this.align=n)}function k(e,t){for(var r=e.localVars;r;r=r.next)if(r.name==t)return!0;for(var n=e.context;n;n=n.prev)for(r=n.vars;r;r=r.next)if(r.name==t)return!0}function T(e,t,r,n,i){var o=e.cc;S.state=e,S.stream=i,S.marked=null,S.cc=o,S.style=t,e.lexical.hasOwnProperty(\"align\")||(e.lexical.align=!0);while(1){var a=o.length?o.pop():l?q:$;if(a(r,n)){while(o.length&&o[o.length-1].lex)o.pop()();return S.marked?S.marked:\"variable\"==r&&k(e,n)?\"variable-2\":t}}}var S={state:null,column:null,marked:null,cc:null};function O(){for(var e=arguments.length-1;e>=0;e--)S.cc.push(arguments[e])}function D(){return O.apply(null,arguments),!0}function M(e,t){for(var r=t;r;r=r.next)if(r.name==e)return!0;return!1}function A(e){var t=S.state;if(S.marked=\"def\",t.context)if(\"var\"==t.lexical.info&&t.context&&t.context.block){var n=N(e,t.context);if(null!=n)return void(t.context=n)}else if(!M(e,t.localVars))return void(t.localVars=new P(e,t.localVars));r.globalVars&&!M(e,t.globalVars)&&(t.globalVars=new P(e,t.globalVars))}function N(e,t){if(t){if(t.block){var r=N(e,t.prev);return r?r==t.prev?t:new L(r,t.vars,!0):null}return M(e,t.vars)?t:new L(t.prev,new P(e,t.vars),!1)}return null}function E(e){return\"public\"==e||\"private\"==e||\"protected\"==e||\"abstract\"==e||\"readonly\"==e}function L(e,t,r){this.prev=e,this.vars=t,this.block=r}function P(e,t){this.name=e,this.next=t}var R=new P(\"this\",new P(\"arguments\",null));function I(){S.state.context=new L(S.state.context,S.state.localVars,!1),S.state.localVars=R}function W(){S.state.context=new L(S.state.context,S.state.localVars,!0),S.state.localVars=null}function B(){S.state.localVars=S.state.context.vars,S.state.context=S.state.context.prev}function j(e,t){var r=function(){var r=S.state,n=r.indented;if(\"stat\"==r.lexical.type)n=r.lexical.indented;else for(var i=r.lexical;i&&\")\"==i.type&&i.align;i=i.prev)n=i.indented;r.lexical=new x(n,S.stream.column(),e,null,r.lexical,t)};return r.lex=!0,r}function H(){var e=S.state;e.lexical.prev&&(\")\"==e.lexical.type&&(e.indented=e.lexical.indented),e.lexical=e.lexical.prev)}function F(e){function t(r){return r==e?D():\";\"==e||\"}\"==r||\")\"==r||\"]\"==r?O():D(t)}return t}function $(e,t){return\"var\"==e?D(j(\"vardef\",t),ke,F(\";\"),H):\"keyword a\"==e?D(j(\"form\"),K,$,H):\"keyword b\"==e?D(j(\"form\"),$,H):\"keyword d\"==e?S.stream.match(/^\\s*$/,!1)?D():D(j(\"stat\"),V,F(\";\"),H):\"debugger\"==e?D(F(\";\")):\"{\"==e?D(j(\"}\"),W,de,H,B):\";\"==e?D():\"if\"==e?(\"else\"==S.state.lexical.info&&S.state.cc[S.state.cc.length-1]==H&&S.state.cc.pop()(),D(j(\"form\"),K,$,H,Ae)):\"function\"==e?D(Pe):\"for\"==e?D(j(\"form\"),Ne,$,H):\"class\"==e||c&&\"interface\"==t?(S.marked=\"keyword\",D(j(\"form\",\"class\"==e?e:t),je,H)):\"variable\"==e?c&&\"declare\"==t?(S.marked=\"keyword\",D($)):c&&(\"module\"==t||\"enum\"==t||\"type\"==t)&&S.stream.match(/^\\s*\\w/,!1)?(S.marked=\"keyword\",\"enum\"==t?D(Ye):\"type\"==t?D(Ie,F(\"operator\"),ge,F(\";\")):D(j(\"form\"),Te,F(\"{\"),j(\"}\"),de,H,H)):c&&\"namespace\"==t?(S.marked=\"keyword\",D(j(\"form\"),q,$,H)):c&&\"abstract\"==t?(S.marked=\"keyword\",D($)):D(j(\"stat\"),ie):\"switch\"==e?D(j(\"form\"),K,F(\"{\"),j(\"}\",\"switch\"),W,de,H,H,B):\"case\"==e?D(q,F(\":\")):\"default\"==e?D(F(\":\")):\"catch\"==e?D(j(\"form\"),I,U,$,H,B):\"export\"==e?D(j(\"stat\"),Ue,H):\"import\"==e?D(j(\"stat\"),ze,H):\"async\"==e?D($):\"@\"==t?D(q,$):O(j(\"stat\"),q,F(\";\"),H)}function U(e){if(\"(\"==e)return D(We,F(\")\"))}function q(e,t){return J(e,t,!1)}function z(e,t){return J(e,t,!0)}function K(e){return\"(\"!=e?O():D(j(\")\"),V,F(\")\"),H)}function J(e,t,r){if(S.state.fatArrowAt==S.stream.start){var n=r?ee:Z;if(\"(\"==e)return D(I,j(\")\"),ce(We,\")\"),H,F(\"=>\"),n,B);if(\"variable\"==e)return O(I,Te,F(\"=>\"),n,B)}var i=r?X:G;return C.hasOwnProperty(e)?D(i):\"function\"==e?D(Pe,i):\"class\"==e||c&&\"interface\"==t?(S.marked=\"keyword\",D(j(\"form\"),Be,H)):\"keyword c\"==e||\"async\"==e?D(r?z:q):\"(\"==e?D(j(\")\"),V,F(\")\"),H,i):\"operator\"==e||\"spread\"==e?D(r?z:q):\"[\"==e?D(j(\"]\"),Xe,H,i):\"{\"==e?ue(ae,\"}\",null,i):\"quasi\"==e?O(Y,i):\"new\"==e?D(te(r)):\"import\"==e?D(q):D()}function V(e){return e.match(/[;\\}\\)\\],]/)?O():O(q)}function G(e,t){return\",\"==e?D(V):X(e,t,!1)}function X(e,t,r){var n=0==r?G:X,i=0==r?q:z;return\"=>\"==e?D(I,r?ee:Z,B):\"operator\"==e?/\\+\\+|--/.test(t)||c&&\"!\"==t?D(n):c&&\"<\"==t&&S.stream.match(/^([^<>]|<[^<>]*>)*>\\s*\\(/,!1)?D(j(\">\"),ce(ge,\">\"),H,n):\"?\"==t?D(q,F(\":\"),i):D(i):\"quasi\"==e?O(Y,n):\";\"!=e?\"(\"==e?ue(z,\")\",\"call\",n):\".\"==e?D(oe,n):\"[\"==e?D(j(\"]\"),V,F(\"]\"),H,n):c&&\"as\"==t?(S.marked=\"keyword\",D(ge,n)):\"regexp\"==e?(S.state.lastType=S.marked=\"operator\",S.stream.backUp(S.stream.pos-S.stream.start-1),D(i)):void 0:void 0}function Y(e,t){return\"quasi\"!=e?O():\"${\"!=t.slice(t.length-2)?D(Y):D(q,Q)}function Q(e){if(\"}\"==e)return S.marked=\"string-2\",S.state.tokenize=_,D(Y)}function Z(e){return w(S.stream,S.state),O(\"{\"==e?$:q)}function ee(e){return w(S.stream,S.state),O(\"{\"==e?$:z)}function te(e){return function(t){return\".\"==t?D(e?ne:re):\"variable\"==t&&c?D(we,e?X:G):O(e?z:q)}}function re(e,t){if(\"target\"==t)return S.marked=\"keyword\",D(G)}function ne(e,t){if(\"target\"==t)return S.marked=\"keyword\",D(X)}function ie(e){return\":\"==e?D(H,$):O(G,F(\";\"),H)}function oe(e){if(\"variable\"==e)return S.marked=\"property\",D()}function ae(e,t){return\"async\"==e?(S.marked=\"property\",D(ae)):\"variable\"==e||\"keyword\"==S.style?(S.marked=\"property\",\"get\"==t||\"set\"==t?D(se):(c&&S.state.fatArrowAt==S.stream.start&&(r=S.stream.match(/^\\s*:\\s*/,!1))&&(S.state.fatArrowAt=S.stream.pos+r[0].length),D(le))):\"number\"==e||\"string\"==e?(S.marked=s?\"property\":S.style+\" property\",D(le)):\"jsonld-keyword\"==e?D(le):c&&E(t)?(S.marked=\"keyword\",D(ae)):\"[\"==e?D(q,fe,F(\"]\"),le):\"spread\"==e?D(z,le):\"*\"==t?(S.marked=\"keyword\",D(ae)):\":\"==e?O(le):void 0;var r}function se(e){return\"variable\"!=e?O(le):(S.marked=\"property\",D(Pe))}function le(e){return\":\"==e?D(z):\"(\"==e?O(Pe):void 0}function ce(e,t,r){function n(i,o){if(r?r.indexOf(i)>-1:\",\"==i){var a=S.state.lexical;return\"call\"==a.info&&(a.pos=(a.pos||0)+1),D((function(r,n){return r==t||n==t?O():O(e)}),n)}return i==t||o==t?D():r&&r.indexOf(\";\")>-1?O(e):D(F(t))}return function(r,i){return r==t||i==t?D():O(e,n)}}function ue(e,t,r){for(var n=3;n<arguments.length;n++)S.cc.push(arguments[n]);return D(j(t,r),ce(e,t),H)}function de(e){return\"}\"==e?D():O($,de)}function fe(e,t){if(c){if(\":\"==e)return D(ge);if(\"?\"==t)return D(fe)}}function he(e,t){if(c&&(\":\"==e||\"in\"==t))return D(ge)}function pe(e){if(c&&\":\"==e)return S.stream.match(/^\\s*\\w+\\s+is\\b/,!1)?D(q,me,ge):D(ge)}function me(e,t){if(\"is\"==t)return S.marked=\"keyword\",D()}function ge(e,t){return\"keyof\"==t||\"typeof\"==t||\"infer\"==t?(S.marked=\"keyword\",D(\"typeof\"==t?z:ge)):\"variable\"==e||\"void\"==t?(S.marked=\"type\",D(be)):\"|\"==t||\"&\"==t?D(ge):\"string\"==e||\"number\"==e||\"atom\"==e?D(be):\"[\"==e?D(j(\"]\"),ce(ge,\"]\",\",\"),H,be):\"{\"==e?D(j(\"}\"),ce(ye,\"}\",\",;\"),H,be):\"(\"==e?D(ce(_e,\")\"),ve,be):\"<\"==e?D(ce(ge,\">\"),ge):void 0}function ve(e){if(\"=>\"==e)return D(ge)}function ye(e,t){return\"variable\"==e||\"keyword\"==S.style?(S.marked=\"property\",D(ye)):\"?\"==t||\"number\"==e||\"string\"==e?D(ye):\":\"==e?D(ge):\"[\"==e?D(F(\"variable\"),he,F(\"]\"),ye):\"(\"==e?O(Re,ye):void 0}function _e(e,t){return\"variable\"==e&&S.stream.match(/^\\s*[?:]/,!1)||\"?\"==t?D(_e):\":\"==e?D(ge):\"spread\"==e?D(_e):O(ge)}function be(e,t){return\"<\"==t?D(j(\">\"),ce(ge,\">\"),H,be):\"|\"==t||\".\"==e||\"&\"==t?D(ge):\"[\"==e?D(ge,F(\"]\"),be):\"extends\"==t||\"implements\"==t?(S.marked=\"keyword\",D(ge)):\"?\"==t?D(ge,F(\":\"),ge):void 0}function we(e,t){if(\"<\"==t)return D(j(\">\"),ce(ge,\">\"),H,be)}function Ce(){return O(ge,xe)}function xe(e,t){if(\"=\"==t)return D(ge)}function ke(e,t){return\"enum\"==t?(S.marked=\"keyword\",D(Ye)):O(Te,fe,De,Me)}function Te(e,t){return c&&E(t)?(S.marked=\"keyword\",D(Te)):\"variable\"==e?(A(t),D()):\"spread\"==e?D(Te):\"[\"==e?ue(Oe,\"]\"):\"{\"==e?ue(Se,\"}\"):void 0}function Se(e,t){return\"variable\"!=e||S.stream.match(/^\\s*:/,!1)?(\"variable\"==e&&(S.marked=\"property\"),\"spread\"==e?D(Te):\"}\"==e?O():\"[\"==e?D(q,F(\"]\"),F(\":\"),Se):D(F(\":\"),Te,De)):(A(t),D(De))}function Oe(){return O(Te,De)}function De(e,t){if(\"=\"==t)return D(z)}function Me(e){if(\",\"==e)return D(ke)}function Ae(e,t){if(\"keyword b\"==e&&\"else\"==t)return D(j(\"form\",\"else\"),$,H)}function Ne(e,t){return\"await\"==t?D(Ne):\"(\"==e?D(j(\")\"),Ee,H):void 0}function Ee(e){return\"var\"==e?D(ke,Le):\"variable\"==e?D(Le):O(Le)}function Le(e,t){return\")\"==e?D():\";\"==e?D(Le):\"in\"==t||\"of\"==t?(S.marked=\"keyword\",D(q,Le)):O(q,Le)}function Pe(e,t){return\"*\"==t?(S.marked=\"keyword\",D(Pe)):\"variable\"==e?(A(t),D(Pe)):\"(\"==e?D(I,j(\")\"),ce(We,\")\"),H,pe,$,B):c&&\"<\"==t?D(j(\">\"),ce(Ce,\">\"),H,Pe):void 0}function Re(e,t){return\"*\"==t?(S.marked=\"keyword\",D(Re)):\"variable\"==e?(A(t),D(Re)):\"(\"==e?D(I,j(\")\"),ce(We,\")\"),H,pe,B):c&&\"<\"==t?D(j(\">\"),ce(Ce,\">\"),H,Re):void 0}function Ie(e,t){return\"keyword\"==e||\"variable\"==e?(S.marked=\"type\",D(Ie)):\"<\"==t?D(j(\">\"),ce(Ce,\">\"),H):void 0}function We(e,t){return\"@\"==t&&D(q,We),\"spread\"==e?D(We):c&&E(t)?(S.marked=\"keyword\",D(We)):c&&\"this\"==e?D(fe,De):O(Te,fe,De)}function Be(e,t){return\"variable\"==e?je(e,t):He(e,t)}function je(e,t){if(\"variable\"==e)return A(t),D(He)}function He(e,t){return\"<\"==t?D(j(\">\"),ce(Ce,\">\"),H,He):\"extends\"==t||\"implements\"==t||c&&\",\"==e?(\"implements\"==t&&(S.marked=\"keyword\"),D(c?ge:q,He)):\"{\"==e?D(j(\"}\"),Fe,H):void 0}function Fe(e,t){return\"async\"==e||\"variable\"==e&&(\"static\"==t||\"get\"==t||\"set\"==t||c&&E(t))&&S.stream.match(/^\\s+[\\w$\\xa1-\\uffff]/,!1)?(S.marked=\"keyword\",D(Fe)):\"variable\"==e||\"keyword\"==S.style?(S.marked=\"property\",D($e,Fe)):\"number\"==e||\"string\"==e?D($e,Fe):\"[\"==e?D(q,fe,F(\"]\"),$e,Fe):\"*\"==t?(S.marked=\"keyword\",D(Fe)):c&&\"(\"==e?O(Re,Fe):\";\"==e||\",\"==e?D(Fe):\"}\"==e?D():\"@\"==t?D(q,Fe):void 0}function $e(e,t){if(\"?\"==t)return D($e);if(\":\"==e)return D(ge,De);if(\"=\"==t)return D(z);var r=S.state.lexical.prev,n=r&&\"interface\"==r.info;return O(n?Re:Pe)}function Ue(e,t){return\"*\"==t?(S.marked=\"keyword\",D(Ge,F(\";\"))):\"default\"==t?(S.marked=\"keyword\",D(q,F(\";\"))):\"{\"==e?D(ce(qe,\"}\"),Ge,F(\";\")):O($)}function qe(e,t){return\"as\"==t?(S.marked=\"keyword\",D(F(\"variable\"))):\"variable\"==e?O(z,qe):void 0}function ze(e){return\"string\"==e?D():\"(\"==e?O(q):O(Ke,Je,Ge)}function Ke(e,t){return\"{\"==e?ue(Ke,\"}\"):(\"variable\"==e&&A(t),\"*\"==t&&(S.marked=\"keyword\"),D(Ve))}function Je(e){if(\",\"==e)return D(Ke,Je)}function Ve(e,t){if(\"as\"==t)return S.marked=\"keyword\",D(Ke)}function Ge(e,t){if(\"from\"==t)return S.marked=\"keyword\",D(q)}function Xe(e){return\"]\"==e?D():O(ce(z,\"]\"))}function Ye(){return O(j(\"form\"),Te,F(\"{\"),j(\"}\"),ce(Qe,\"}\"),H,H)}function Qe(){return O(Te,De)}function Ze(e,t){return\"operator\"==e.lastType||\",\"==e.lastType||f.test(t.charAt(0))||/[,.]/.test(t.charAt(0))}function et(e,t,r){return t.tokenize==g&&/^(?:operator|sof|keyword [bcd]|case|new|export|default|spread|[\\[{}\\(,;:]|=>)$/.test(t.lastType)||\"quasi\"==t.lastType&&/\\{\\s*$/.test(e.string.slice(0,e.pos-(r||0)))}return B.lex=!0,H.lex=!0,{startState:function(e){var t={tokenize:g,lastType:\"sof\",cc:[],lexical:new x((e||0)-o,0,\"block\",!1),localVars:r.localVars,context:r.localVars&&new L(null,null,!1),indented:e||0};return r.globalVars&&\"object\"==typeof r.globalVars&&(t.globalVars=r.globalVars),t},token:function(e,t){if(e.sol()&&(t.lexical.hasOwnProperty(\"align\")||(t.lexical.align=!1),t.indented=e.indentation(),w(e,t)),t.tokenize!=y&&e.eatSpace())return null;var r=t.tokenize(e,t);return\"comment\"==n?r:(t.lastType=\"operator\"!=n||\"++\"!=i&&\"--\"!=i?n:\"incdec\",T(t,r,n,i,e))},indent:function(t,n){if(t.tokenize==y||t.tokenize==_)return e.Pass;if(t.tokenize!=g)return 0;var i,s=n&&n.charAt(0),l=t.lexical;if(!/^\\s*else\\b/.test(n))for(var c=t.cc.length-1;c>=0;--c){var u=t.cc[c];if(u==H)l=l.prev;else if(u!=Ae)break}while((\"stat\"==l.type||\"form\"==l.type)&&(\"}\"==s||(i=t.cc[t.cc.length-1])&&(i==G||i==X)&&!/^[,\\.=+\\-*:?[\\(]/.test(n)))l=l.prev;a&&\")\"==l.type&&\"stat\"==l.prev.type&&(l=l.prev);var d=l.type,f=s==d;return\"vardef\"==d?l.indented+(\"operator\"==t.lastType||\",\"==t.lastType?l.info.length+1:0):\"form\"==d&&\"{\"==s?l.indented:\"form\"==d?l.indented+o:\"stat\"==d?l.indented+(Ze(t,n)?a||o:0):\"switch\"!=l.info||f||0==r.doubleIndentSwitch?l.align?l.column+(f?0:1):l.indented+(f?0:o):l.indented+(/^(?:case|default)\\b/.test(n)?o:2*o)},electricInput:/^\\s*(?:case .*?:|default:|\\{|\\})$/,blockCommentStart:l?null:\"/*\",blockCommentEnd:l?null:\"*/\",blockCommentContinue:l?null:\" * \",lineComment:l?null:\"//\",fold:\"brace\",closeBrackets:\"()[]{}''\\\"\\\"``\",helperType:l?\"json\":\"javascript\",jsonldMode:s,jsonMode:l,expressionAllowed:et,skipExpression:function(e){var t=e.cc[e.cc.length-1];t!=q&&t!=z||e.cc.pop()}}})),e.registerHelper(\"wordChars\",\"javascript\",/[\\w$]/),e.defineMIME(\"text/javascript\",\"javascript\"),e.defineMIME(\"text/ecmascript\",\"javascript\"),e.defineMIME(\"application/javascript\",\"javascript\"),e.defineMIME(\"application/x-javascript\",\"javascript\"),e.defineMIME(\"application/ecmascript\",\"javascript\"),e.defineMIME(\"application/json\",{name:\"javascript\",json:!0}),e.defineMIME(\"application/x-json\",{name:\"javascript\",json:!0}),e.defineMIME(\"application/ld+json\",{name:\"javascript\",jsonld:!0}),e.defineMIME(\"text/typescript\",{name:\"javascript\",typescript:!0}),e.defineMIME(\"application/typescript\",{name:\"javascript\",typescript:!0})}))},fc11:function(e,t,r){\"use strict\";function n(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}r.d(t,\"a\",(function(){return n}))},fdef:function(e,t){e.exports=\"\\t\\n\\v\\f\\r   ᠎             　\\u2028\\u2029\\ufeff\"}}]);"
  },
  {
    "path": "public/js/chunk-079f5797.19ae5348.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-079f5797\"],{\"0be6\":function(t,e,a){\"use strict\";a(\"d733\")},\"5b97\":function(t,e,a){\"use strict\";(function(t){a(\"ac6a\");e[\"a\"]={data:function(){return{keyword:\"\",loading:!1,docList:[],currentPage:1,pageCount:0,total:0}},created:function(){this.getList()},methods:{getList:function(){var t=this;this.loading=!0,this.$post(\"/admin/document/all\",{page:this.currentPage,name:this.keyword,role:\"all\"}).then((function(e){t.docList=e.data.data,t.pageCount=e.data.page_count,t.total=e.data.total,t.loading=!1}))},operStar:function(t){var e=this,a=t.star_id?\"/admin/star/delete\":\"/admin/star/add\",n=t.star_id?\"取消成功！\":\"添加成功！\",i={document_id:t.id};t.star_id&&(i[\"id\"]=t.star_id),this.$post(a,i).then((function(a){e.$message(n),e.docList.forEach((function(e){e.id!=t.id||(e.star_id=a.data.star_id||\"\")}))}))},readDoc:function(e){var a=this.$router.resolve({path:\"/chapter/\"+e});t(document).trigger(\"mouseup\"),window.open(a.href,\"_blank\")},editDoc:function(e){var a=this.$router.resolve({path:\"/admin/document/chapter/\"+e});t(window).trigger(\"mouseup\"),window.open(a.href,\"_blank\")}}}}).call(this,a(\"1157\"))},\"9be8\":function(t,e,a){\"use strict\";a.r(e);var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a(\"div\",{staticClass:\"we7-document-involved\"},[a(\"div\",{staticClass:\"page-head\"},[t._v(\"\\n    我参与的\\n  \")]),a(\"div\",{staticClass:\"search-box\"},[a(\"div\",{staticClass:\"demo-input-suffix\"},[a(\"el-input\",{attrs:{placeholder:\"请输入文档名称\",clearable:\"\"},nativeOn:{keyup:function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")?null:t.getList(e)}},model:{value:t.keyword,callback:function(e){t.keyword=e},expression:\"keyword\"}},[a(\"i\",{staticClass:\"el-input__icon el-icon-search\",attrs:{slot:\"suffix\"},on:{click:t.getList},slot:\"suffix\"})])],1)]),a(\"el-table\",{ref:\"multipleTable\",staticClass:\"w7-table\",attrs:{data:t.docList,\"header-cell-style\":{background:\"#f7f9fc\",color:\"#606266\"},\"empty-text\":\"没有与搜索条件匹配的项\"}},[a(\"el-table-column\",{attrs:{label:\"文档名称\"},scopedSlots:t._u([{key:\"default\",fn:function(e){return a(\"div\",{staticClass:\"doc-icons\"},[a(\"i\",{staticClass:\"wi wi-document color-blue\"}),a(\"span\",{staticClass:\"name\",on:{click:function(a){return t.readDoc(e.row.id)}}},[t._v(t._s(e.row.name))]),e.row.star_id?a(\"i\",{staticClass:\"wi wi-star color-yellow\"}):t._e(),e.row.is_public?t._e():a(\"div\",{staticClass:\"we7-label\"},[a(\"i\",{staticClass:\"wi wi-lock\"},[a(\"span\",{staticClass:\"font\"},[t._v(\"私有\")])])])])}}])}),a(\"el-table-column\",{attrs:{label:\"来自\",prop:\"author.name\"}}),a(\"el-table-column\",{attrs:{label:\"角色\",prop:\"acl.name\"}}),a(\"el-table-column\",{attrs:{label:\"操作\",align:\"right\"},scopedSlots:t._u([{key:\"default\",fn:function(e){return a(\"div\",{staticClass:\"oper\"},[e.row.acl.has_edit?a(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"编辑\",placement:\"bottom\"}},[a(\"i\",{staticClass:\"wq wq-bianji\",on:{click:function(a){return t.editDoc(e.row.id)}}})]):t._e(),e.row.acl.has_read?a(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"预览\",placement:\"bottom\"}},[a(\"i\",{staticClass:\"wq wq-chakan\",on:{click:function(a){return t.readDoc(e.row.id)}}})]):t._e(),a(\"el-tooltip\",{attrs:{effect:\"dark\",content:e.row.star_id?\"取消星标\":\"添加星标\",placement:\"bottom\"}},[a(\"i\",{staticClass:\"wi wi-star\",class:{checked:e.row.star_id},on:{click:function(a){return t.operStar(e.row)}}})])],1)}}])})],1),a(\"div\",{staticClass:\"btns\"},[a(\"el-pagination\",{attrs:{background:\"\",layout:\"prev, pager, next, total\",\"prev-text\":\"上一页\",\"next-text\":\"下一页\",\"page-size\":15,\"current-page\":t.currentPage,\"page-count\":t.pageCount,total:t.total,\"hide-on-single-page\":!0},on:{\"current-change\":t.getList,\"update:currentPage\":function(e){t.currentPage=e},\"update:current-page\":function(e){t.currentPage=e}}})],1)],1)},i=[],o=a(\"5b97\"),s=o[\"a\"],r=(a(\"0be6\"),a(\"2877\")),c=Object(r[\"a\"])(s,n,i,!1,null,null,null);e[\"default\"]=c.exports},d733:function(t,e,a){}}]);"
  },
  {
    "path": "public/js/chunk-07e6273c.1984b9b7.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-07e6273c\"],{\"11e9\":function(t,e,a){var n=a(\"52a7\"),l=a(\"4630\"),i=a(\"6821\"),o=a(\"6a99\"),r=a(\"69a8\"),s=a(\"c69a\"),c=Object.getOwnPropertyDescriptor;e.f=a(\"9e1e\")?c:function(t,e){if(t=i(t),e=o(e,!0),s)try{return c(t,e)}catch(a){}if(r(t,e))return l(!n.f.call(t,e),t[e])}},\"2f21\":function(t,e,a){\"use strict\";var n=a(\"79e5\");t.exports=function(t,e){return!!t&&n((function(){e?t.call(null,(function(){}),1):t.call(null)}))}},\"3bf9\":function(t,e,a){\"use strict\";a(\"9ff8\")},\"3c4d\":function(t,e,a){\"use strict\";a.r(e);var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a(\"div\",{staticClass:\"setting-nav\"},[a(\"div\",{staticClass:\"page-head\"},[t._v(\"导航设置\")]),a(\"el-tabs\",{on:{\"tab-click\":t.handleClick},model:{value:t.activeName,callback:function(e){t.activeName=e},expression:\"activeName\"}},[a(\"el-tab-pane\",{attrs:{label:\"风格设置\",name:\"style\"}},[a(\"div\",{staticClass:\"we7-panel-form\"},[a(\"div\",{staticClass:\"we7-panel-form__header\"},[t._v(\"导航风格\")]),a(\"div\",{staticClass:\"we7-panel-form__body\"},[a(\"div\",{staticClass:\"we7-panel-form__item\"},[a(\"div\",{staticClass:\"we7-panel-form__label\"},[t._v(\"导航风格设置\")]),a(\"div\",{staticClass:\"we7-panel-form__value\"},[t._v(t._s(t.styleData[t.style]))]),a(\"div\",{staticClass:\"we7-panel-form__action\"},[a(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"编辑\",placement:\"bottom\"}},[a(\"i\",{staticClass:\"wi wi-edit wi-oper\",on:{click:function(e){t.dialogStyle=!0}}})])],1)])])])]),a(\"el-tab-pane\",{attrs:{label:\"菜单设置\",name:\"menu\"}},[a(\"div\",{staticClass:\"search-box\"},[a(\"div\",{staticClass:\"demo-input-btn\"},[a(\"el-button\",{staticClass:\"add-menu\",attrs:{type:\"primary\"},on:{click:function(e){return t.openDialogMenu(\"add\")}}},[t._v(\"新增菜单\")])],1)]),a(\"el-table\",{ref:\"multipleTable\",staticClass:\"w7-table\",attrs:{data:t.menuList,\"header-cell-style\":{background:\"#f7f9fc\",color:\"#606266\"},\"default-sort\":{prop:\"sort\",order:\"ascending\"}}},[a(\"el-table-column\",{attrs:{label:\"菜单名称\",prop:\"name\"}}),a(\"el-table-column\",{attrs:{label:\"排序\",prop:\"sort\"}}),a(\"el-table-column\",{attrs:{label:\"操作\",align:\"right\"},scopedSlots:t._u([{key:\"default\",fn:function(e){return a(\"div\",{staticClass:\"oper\"},[a(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"编辑\",placement:\"bottom\"}},[a(\"i\",{staticClass:\"wi wi-edit wi-oper\",on:{click:function(a){return t.openDialogMenu(\"edit\",e.row)}}})]),a(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"删除\",placement:\"bottom\"}},[a(\"i\",{staticClass:\"wi wi-delete wi-oper\",on:{click:function(a){return t.delMenu(e.row.id,e.$index)}}})])],1)}}])})],1)],1)],1),a(\"el-dialog\",{staticClass:\"w7-dialog\",attrs:{title:\"导航风格设置\",visible:t.dialogStyle,\"close-on-click-modal\":!1,center:\"\"},on:{\"update:visible\":function(e){t.dialogStyle=e}}},[a(\"el-form\",{attrs:{\"label-width\":\"120px\",\"label-position\":\"left\"}},[a(\"el-form-item\",{attrs:{label:\"导航风格\"}},[a(\"el-select\",{model:{value:t.style,callback:function(e){t.style=e},expression:\"style\"}},t._l(t.styleList,(function(t){return a(\"el-option\",{key:t.value,attrs:{label:t.label,value:t.value}})})),1)],1)],1),a(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[a(\"el-button\",{attrs:{type:\"primary\"},on:{click:t.confirmStyle}},[t._v(\"确 定\")]),a(\"el-button\",{on:{click:function(e){t.dialogStyle=!1}}},[t._v(\"取 消\")])],1)],1),a(\"el-dialog\",{staticClass:\"w7-dialog\",attrs:{title:t.dialogMenuTitle,visible:t.dialogMenu,\"close-on-click-modal\":!1,center:\"\"},on:{\"update:visible\":function(e){t.dialogMenu=e},close:t.closeDialogMenu}},[a(\"el-form\",{ref:\"menuForm\",staticClass:\"w7-form__no-required-icon\",attrs:{model:t.menuData,rules:t.rules,\"label-width\":\"120px\",\"label-position\":\"left\"}},[a(\"el-form-item\",{attrs:{label:\"菜单名称\",prop:\"name\"}},[a(\"el-input\",{model:{value:t.menuData.name,callback:function(e){t.$set(t.menuData,\"name\",e)},expression:\"menuData.name\"}})],1),a(\"el-form-item\",{attrs:{label:\"排序\",prop:\"sort\"}},[a(\"el-input\",{model:{value:t.menuData.sort,callback:function(e){t.$set(t.menuData,\"sort\",e)},expression:\"menuData.sort\"}}),a(\"div\",{staticClass:\"we7-help-block\"},[t._v(\"排序为升序排序，数字越小，排名越靠前\")])],1),a(\"el-form-item\",{attrs:{label:\"菜单链接\",prop:\"url\"}},[a(\"el-input\",{model:{value:t.menuData.url,callback:function(e){t.$set(t.menuData,\"url\",e)},expression:\"menuData.url\"}}),a(\"div\",{staticClass:\"we7-help-block\"},[t._v(\"支持相对链接。非相对链接请填写以http或https开头的完整链接\")])],1)],1),a(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[a(\"el-button\",{attrs:{type:\"primary\"},on:{click:t.confirm}},[t._v(\"确 定\")]),a(\"el-button\",{on:{click:t.closeDialogMenu}},[t._v(\"取 消\")])],1)],1)],1)},l=[],i=(a(\"8e6e\"),a(\"ac6a\"),a(\"456d\"),a(\"fc11\"));a(\"55dd\"),a(\"7f7f\");function o(t,e){var a=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),a.push.apply(a,n)}return a}function r(t){for(var e=1;e<arguments.length;e++){var a=null!=arguments[e]?arguments[e]:{};e%2?o(Object(a),!0).forEach((function(e){Object(i[\"a\"])(t,e,a[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(a)):o(Object(a)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(a,e))}))}return t}var s={data:function(){return{activeName:\"style\",menuList:[],dialogStyle:!1,style:\"\",styleData:{black:\"黑色\",white:\"白色\"},styleList:[{value:\"white\",label:\"白色\"},{value:\"black\",label:\"黑色\"}],dialogMenu:!1,dialogMenuTitle:\"\",menuData:{id:\"\",name:\"\",sort:\"\",url:\"\"},rules:{name:[{required:!0,message:\"请填写菜单名称\",trigger:\"blur\"}],sort:[{required:!0,message:\"请填写排序\",trigger:\"blur\"}],url:[{required:!0,message:\"请填写菜单链接\",trigger:\"blur\"}]}}},created:function(){this.getStyle(),this.getMenuData()},methods:{getStyle:function(){var t=this;this.$post(\"/admin/menu/get-theme\").then((function(e){t.style=e.data||\"white\"}))},getMenuData:function(){var t=this;this.$post(\"/admin/menu/all\").then((function(e){t.menuList=e.data}))},confirmStyle:function(){var t=this;this.$post(\"/admin/menu/set-theme\",{theme:this.style}).then((function(){t.$message(\"修改成功！\"),t.dialogStyle=!1,t.$store.dispatch(\"getNavMenu\")}))},openDialogMenu:function(t,e){if(\"add\"==t)this.dialogMenuTitle=\"新增菜单\",this.menuData={id:\"\",name:\"\",sort:\"\",url:\"\"};else{this.dialogMenuTitle=\"编辑菜单\";var a=JSON.parse(JSON.stringify(e));this.menuData={id:a.id,name:a.name,sort:a.sort,url:a.url}}this.dialogMenu=!0},closeDialogMenu:function(){this.$refs.menuForm.resetFields(),this.dialogMenu=!1},confirm:function(){var t=this;this.$refs.menuForm.validate((function(e){e&&(\"新增菜单\"==t.dialogMenuTitle?t.$post(\"/admin/menu/add\",r({},t.menuData)).then((function(){t.getMenuData(),t.$message(\"新增成功！\"),t.dialogMenu=!1})):t.$post(\"/admin/menu/update\",r({},t.menuData)).then((function(){t.getMenuData(),t.$message(\"修改成功！\"),t.dialogMenu=!1})))}))},delMenu:function(t,e){var a=this;this.$confirm(\"确定要删除该菜单吗?\",\"提示\",{confirmButtonText:\"确定\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){a.$post(\"/admin/menu/delete\",{id:t}).then((function(){a.menuList.splice(e,1),a.$message(\"删除成功！\")}))}))},handleClick:function(){}}},c=s,u=(a(\"3bf9\"),a(\"2877\")),f=Object(u[\"a\"])(c,n,l,!1,null,null,null);e[\"default\"]=f.exports},\"55dd\":function(t,e,a){\"use strict\";var n=a(\"5ca1\"),l=a(\"d8e8\"),i=a(\"4bf8\"),o=a(\"79e5\"),r=[].sort,s=[1,2,3];n(n.P+n.F*(o((function(){s.sort(void 0)}))||!o((function(){s.sort(null)}))||!a(\"2f21\")(r)),\"Array\",{sort:function(t){return void 0===t?r.call(i(this)):r.call(i(this),l(t))}})},\"8e6e\":function(t,e,a){var n=a(\"5ca1\"),l=a(\"990b\"),i=a(\"6821\"),o=a(\"11e9\"),r=a(\"f1ae\");n(n.S,\"Object\",{getOwnPropertyDescriptors:function(t){var e,a,n=i(t),s=o.f,c=l(n),u={},f=0;while(c.length>f)a=s(n,e=c[f++]),void 0!==a&&r(u,e,a);return u}})},9093:function(t,e,a){var n=a(\"ce10\"),l=a(\"e11e\").concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return n(t,l)}},\"990b\":function(t,e,a){var n=a(\"9093\"),l=a(\"2621\"),i=a(\"cb7c\"),o=a(\"7726\").Reflect;t.exports=o&&o.ownKeys||function(t){var e=n.f(i(t)),a=l.f;return a?e.concat(a(t)):e}},\"9ff8\":function(t,e,a){},f1ae:function(t,e,a){\"use strict\";var n=a(\"86cc\"),l=a(\"4630\");t.exports=function(t,e,a){e in t?n.f(t,e,l(0,a)):t[e]=a}},fc11:function(t,e,a){\"use strict\";function n(t,e,a){return e in t?Object.defineProperty(t,e,{value:a,enumerable:!0,configurable:!0,writable:!0}):t[e]=a,t}a.d(e,\"a\",(function(){return n}))}}]);"
  },
  {
    "path": "public/js/chunk-10615ad3.5901db24.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-10615ad3\"],{\"02f4\":function(t,n,e){var i=e(\"4588\"),r=e(\"be13\");t.exports=function(t){return function(n,e){var c,a,s=String(r(n)),o=i(e),l=s.length;return o<0||o>=l?t?\"\":void 0:(c=s.charCodeAt(o),c<55296||c>56319||o+1===l||(a=s.charCodeAt(o+1))<56320||a>57343?t?s.charAt(o):c:t?s.slice(o,o+2):a-56320+(c-55296<<10)+65536)}}},\"0bfb\":function(t,n,e){\"use strict\";var i=e(\"cb7c\");t.exports=function(){var t=i(this),n=\"\";return t.global&&(n+=\"g\"),t.ignoreCase&&(n+=\"i\"),t.multiline&&(n+=\"m\"),t.unicode&&(n+=\"u\"),t.sticky&&(n+=\"y\"),n}},1169:function(t,n,e){var i=e(\"2d95\");t.exports=Array.isArray||function(t){return\"Array\"==i(t)}},\"11e9\":function(t,n,e){var i=e(\"52a7\"),r=e(\"4630\"),c=e(\"6821\"),a=e(\"6a99\"),s=e(\"69a8\"),o=e(\"c69a\"),l=Object.getOwnPropertyDescriptor;n.f=e(\"9e1e\")?l:function(t,n){if(t=c(t),n=a(n,!0),o)try{return l(t,n)}catch(e){}if(s(t,n))return r(!i.f.call(t,n),t[n])}},\"1c4c\":function(t,n,e){\"use strict\";var i=e(\"9b43\"),r=e(\"5ca1\"),c=e(\"4bf8\"),a=e(\"1fa8\"),s=e(\"33a4\"),o=e(\"9def\"),l=e(\"f1ae\"),u=e(\"27ee\");r(r.S+r.F*!e(\"5cc5\")((function(t){Array.from(t)})),\"Array\",{from:function(t){var n,e,r,A,b=c(t),g=\"function\"==typeof this?this:Array,f=arguments.length,d=f>1?arguments[1]:void 0,h=void 0!==d,m=0,v=u(b);if(h&&(d=i(d,f>2?arguments[2]:void 0,2)),void 0==v||g==Array&&s(v))for(n=o(b.length),e=new g(n);n>m;m++)l(e,m,h?d(b[m],m):b[m]);else for(A=v.call(b),e=new g;!(r=A.next()).done;m++)l(e,m,h?a(A,d,[r.value,m],!0):r.value);return e.length=m,e}})},\"37c8\":function(t,n,e){n.f=e(\"2b4c\")},3846:function(t,n,e){e(\"9e1e\")&&\"g\"!=/./g.flags&&e(\"86cc\").f(RegExp.prototype,\"flags\",{configurable:!0,get:e(\"0bfb\")})},\"385c\":function(t,n,e){\"use strict\";e.r(n);var i=function(){var t=this,n=t.$createElement,i=t._self._c||n;return i(\"div\",{staticClass:\"install\"},[i(\"div\",{staticClass:\"i-con\"},[i(\"div\",{staticClass:\"c-top\"},[t.testLoading?[i(\"img\",{attrs:{src:e(\"76fc\")}}),t._v(\"正在进行安装环境检测，已检测\"),i(\"span\",{staticClass:\"num\"},[t._v(t._s(t.num))]),t._v(\"项参数\\n      \")]:t._e(),t.testSuccess?[i(\"img\",{attrs:{src:e(\"76fc\")}}),t._v(\"检测完成，已检测\"),i(\"span\",{staticClass:\"num\"},[t._v(t._s(t.num))]),t._v(\"项参数\\n      \")]:t._e(),t.testError?[i(\"img\",{attrs:{src:e(\"e163\")}}),t._v(\"检测完成，\"),i(\"span\",{staticClass:\"num error\"},[t._v(t._s(t.errorNum))]),t._v(\"项参数不满足安装条件，请配置后重新检测！\\n      \")]:t._e()],2),i(\"ul\",[t._m(0),t._l(t.list,(function(n,r){return i(\"li\",{key:r},[i(\"span\",{staticClass:\"l-left\"},[t._v(t._s(n.name))]),i(\"span\",{staticClass:\"l-center\"},[1==n.id||12==n.id?[i(\"img\",{attrs:{src:e(\"b249\")}})]:[n.enable?i(\"img\",{attrs:{src:e(\"9ace\")}}):i(\"img\",{attrs:{src:e(\"b249\")}})],t._v(\"\\n          \"+t._s(n.result)+\"\\n        \")],2),i(\"span\",{staticClass:\"l-right\"},[1==n.id||12==n.id?[n.enable?i(\"span\",[t._v(\"异常\")]):t._e()]:[n.enable?t._e():i(\"span\",[t._v(\"异常\")])]],2)])}))],2),i(\"div\",{staticClass:\"c-bottom\"},[t.testError?i(\"span\",{staticClass:\"btn\",on:{click:t.test}},[t._v(\"重新检测\")]):t._e(),t.testSuccess?i(\"span\",{staticClass:\"btn\",on:{click:t.nextStep}},[t._v(\"下一步\")]):t._e()])])])},r=[function(){var t=this,n=t.$createElement,e=t._self._c||n;return e(\"li\",{staticClass:\"li1\"},[e(\"span\",{staticClass:\"l-left\"},[t._v(\"检测记录\")]),e(\"span\",{staticClass:\"l-center\"},[t._v(\"检测结果\")]),e(\"span\",{staticClass:\"l-right\"})])}],c=(e(\"ac4d\"),e(\"8a81\"),e(\"5df3\"),e(\"1c4c\"),e(\"7f7f\"),e(\"6b54\"),e(\"ac6a\"),e(\"4ec3\"));function a(t,n){var e;if(\"undefined\"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(e=s(t))||n&&t&&\"number\"===typeof t.length){e&&(t=e);var i=0,r=function(){};return{s:r,n:function(){return i>=t.length?{done:!0}:{done:!1,value:t[i++]}},e:function(t){throw t},f:r}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var c,a=!0,o=!1;return{s:function(){e=t[Symbol.iterator]()},n:function(){var t=e.next();return a=t.done,t},e:function(t){o=!0,c=t},f:function(){try{a||null==e.return||e.return()}finally{if(o)throw c}}}}function s(t,n){if(t){if(\"string\"===typeof t)return o(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);return\"Object\"===e&&t.constructor&&(e=t.constructor.name),\"Map\"===e||\"Set\"===e?Array.from(t):\"Arguments\"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?o(t,n):void 0}}function o(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,i=new Array(n);e<n;e++)i[e]=t[e];return i}var l={name:\"installOne\",data:function(){return{num:0,errorNum:0,list:\"\",localList:\"\",errorClass:!1,testLoading:!0,testSuccess:!1,testError:!1}},created:function(){this.systemDetection()},methods:{systemDetection:function(){var t=this;Object(c[\"y\"])().then((function(n){if(200==n.code){var e,i=a(n.data);try{for(i.s();!(e=i.n()).done;){var r=e.value;if(1!=r.id||r.enable){if(1==r.id&&1==r.enable)return t.list=n.data.slice(0,2),t.num=1,t.errorNum=1,t.testLoading=!1,t.testSuccess=!1,t.testError=!0,!1;1==r.id&&2==r.enable&&t.$router.push({name:\"adminLoginPage\"})}else t.list=n.data.slice(1,n.data.length),t.num=t.list.length}}catch(s){i.e(s)}finally{i.f()}var c=[];t.list.forEach((function(t){t.enable||c.push(t)})),c.length?(t.list=c,t.testLoading=!1,t.testSuccess=!1,t.testError=!0,t.errorNum=c.length):(t.testLoading=!1,t.testSuccess=!0,t.testError=!1)}else t.list=n.data})).catch((function(t){}))},test:function(){this.systemDetection()},nextStep:function(){this.$router.push({name:\"installTwo\"})}}},u=l,A=(e(\"bd28\"),e(\"2877\")),b=Object(A[\"a\"])(u,i,r,!1,null,\"cc65867e\",null);n[\"default\"]=b.exports},\"3a72\":function(t,n,e){var i=e(\"7726\"),r=e(\"8378\"),c=e(\"2d00\"),a=e(\"37c8\"),s=e(\"86cc\").f;t.exports=function(t){var n=r.Symbol||(r.Symbol=c?{}:i.Symbol||{});\"_\"==t.charAt(0)||t in n||s(n,t,{value:a.f(t)})}},\"5df3\":function(t,n,e){\"use strict\";var i=e(\"02f4\")(!0);e(\"01f9\")(String,\"String\",(function(t){this._t=String(t),this._i=0}),(function(){var t,n=this._t,e=this._i;return e>=n.length?{value:void 0,done:!0}:(t=i(n,e),this._i+=t.length,{value:t,done:!1})}))},\"67ab\":function(t,n,e){var i=e(\"ca5a\")(\"meta\"),r=e(\"d3f4\"),c=e(\"69a8\"),a=e(\"86cc\").f,s=0,o=Object.isExtensible||function(){return!0},l=!e(\"79e5\")((function(){return o(Object.preventExtensions({}))})),u=function(t){a(t,i,{value:{i:\"O\"+ ++s,w:{}}})},A=function(t,n){if(!r(t))return\"symbol\"==typeof t?t:(\"string\"==typeof t?\"S\":\"P\")+t;if(!c(t,i)){if(!o(t))return\"F\";if(!n)return\"E\";u(t)}return t[i].i},b=function(t,n){if(!c(t,i)){if(!o(t))return!0;if(!n)return!1;u(t)}return t[i].w},g=function(t){return l&&f.NEED&&o(t)&&!c(t,i)&&u(t),t},f=t.exports={KEY:i,NEED:!1,fastKey:A,getWeak:b,onFreeze:g}},\"6b54\":function(t,n,e){\"use strict\";e(\"3846\");var i=e(\"cb7c\"),r=e(\"0bfb\"),c=e(\"9e1e\"),a=\"toString\",s=/./[a],o=function(t){e(\"2aba\")(RegExp.prototype,a,t,!0)};e(\"79e5\")((function(){return\"/a/b\"!=s.call({source:\"a\",flags:\"b\"})}))?o((function(){var t=i(this);return\"/\".concat(t.source,\"/\",\"flags\"in t?t.flags:!c&&t instanceof RegExp?r.call(t):void 0)})):s.name!=a&&o((function(){return s.call(this)}))},\"76fc\":function(t,n){t.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAAyCAYAAAAjrenXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkRFNkMwMEM0QzI3RTExRUFCOTNFRDdDOTk3NzQ1MjM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkRFNkMwMEM1QzI3RTExRUFCOTNFRDdDOTk3NzQ1MjM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6REU2QzAwQzJDMjdFMTFFQUI5M0VEN0M5OTc3NDUyMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6REU2QzAwQzNDMjdFMTFFQUI5M0VEN0M5OTc3NDUyMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6LpemyAAAF50lEQVR42sxaCWwVVRT9HaAuaA2INlUqKGJFUVsSjdRG1IhLlSpKtNgIrmi1GFzK5pKgxpYWKC64ESAiQmKCRbQENQJGcIsR41LBSgVSUIMQRCVYinpuOGOuN+//PzOdb73JgT/zZuad9+a++86906yhTaWJmO1EoBq4mcfzgHpgi+viD0qbInXixUh4MLAIaAEqgUOJu4FNwELgtLg6i4P4UGA58CVQAXRzXCPnbgS+BpYB53Yl8cuANfK2gRGO9rXAOsf5q4APgdXApVE7zwrp4zLQUcAUoNDR/hdntJ7kxIqBiUCZ9Oe45zOgFlgKf/8zbuLZwFgSONnR3k4fngFsTPKMQcADdJkejvZvgTrgZQygvbPEjwDuAO4DjnO0/wK8AMwGfgg4WfKcCXxujqO9DZgFzMUAfgtLvA8wHqgCejvat5OskN4T0U2PInkZRJ6jfSfwNPAMBrAzHfF8zu7tQE/Hw76hOyyie8Rh4oZj6EYFjvbfgReBmRjANku8gP6bzP8kckwH3uACjM38Dah4xRUeF/BEhlhr+7mOpuOeFiF+EQ5WOggLwTdJeF0iQ+baOTGIEvw3CbjScYtEnioZ5SOGtIxsPnA6ZyBjpFMMZi0wghxeIicdksvln1x18nVqjVvpz11qIN8M3ISfJ/Ht+3asZ6KG+PC2xP/MQL7NEO/T3RD/Maa+RFwNYFj9FWgFdnfymT/pSCTEu5vQE9XkOaMpZ0sci11E2GLg+YiD0PfkeI6tO4qdA3zBcHVhkpB6BlBDiTsmbnW4N8IzRlMJDjLnO7he7Oz2ZqR4KonoSmZ7LfEOdXxkSNJXcxfVMyyB+XLgcKAv0AvoD9wP7FDXjeceEWbd/KORPGoC33qFeFA+Z85T6+NabhorTezdQuEk7vK5Ol+NzebigP0dbYn/nKQxndUodSdr4xLgtQCRQa77Xp2rC9ifntQ9ngmBeQEfIteVq+MnqGeC2A6VSIsVYdbPDHCf3ih3edS/vg0M2HmZyi1FM88MuTbeI/RaSWenqN9bPbO1Dw4R/nx7h+TDWqPJjoJUEXzbbImfBRwS0FV0yhXFNgZ1UbjSYSbH3eCxZOCbhLWzu0COpNP4hWaH/8rjTqZ1wPkBOtL5ZUFEsvq+1jTXFpvdvdmPwatVQ5C0/xP1eziT6rA20pQoUplOKNZDLe73ia8wo8tN8yCpXB3g757cFcPYBcAwldE0pvDvvsYL3tZapUlt/VkspaVzlcXqeCpwXkDSxwAL9CRgBrenuH6c0VSNmvguM+u3BRBAU1lX8TN1CYuVSWqHvoly/JTaxRdi1SlmWxbkXXpRYpDrrTqcb+JqOl9vY1XAL5tJyHqWYW4ahdYQkr0XeB9YBZxgNPyoFH3kmESnwVVXkUG0ML8T+5hlgnShqpxiK7sT4XAKZrI2yaxP4FsRd67EdQdcBaFKzppvMhtLA3Q8hH4bRHO085nXmzf+MEg9HjWRmGeUW0PAUCfhrIizv0a5j1WGIm1PBW5gFqSvewyzWxuUuKt2KJ0vUcfPmQUSxHJYE8llbXFzkk2mgumenkCpVE2OQtyPlcPNZrEsQ9t9JPJeitipq7Cxfr8xNZNXmLfqjGkS3OahKMTl1d5pctEm5pCZIP8qA4EmXxWFeIJ+3qCO+9OFjs8Q+eUkv5sb05IoPu5bN+aRZercJuaNrTERjqWuYk2C/XVGPQ6gOhwWA+88+HJ+JoiL/UFZ2WSqAe8CkxPRPjlmMcTKW9sK8vdkgrhfRboGmGvcqIZJ78AQfeZzEuaoIk9ppoj7W/U4rnZdYyxh3XAaq1fJLJtiq5kCLKEKSXWZJO6bzJR80t5gymPyZeM7htFs82YqmJTPMhJC1koRFuiq0L7Wib+eELIPJg5+q+nhkLxPUouI//Yz7VIzfxSYDdIdmVqcyWyfKDrWO6wckI2qnoWifiZKLWBxZ0bi3wXX/4y4rquMpHZ/K0VYXUhleEsihi8fcf69ykeJg39RUchsah8xh1FnLNdALPa3AAMATwODKLu5H7UAAAAASUVORK5CYII=\"},\"7bbc\":function(t,n,e){var i=e(\"6821\"),r=e(\"9093\").f,c={}.toString,a=\"object\"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(t){try{return r(t)}catch(n){return a.slice()}};t.exports.f=function(t){return a&&\"[object Window]\"==c.call(t)?s(t):r(i(t))}},\"8a81\":function(t,n,e){\"use strict\";var i=e(\"7726\"),r=e(\"69a8\"),c=e(\"9e1e\"),a=e(\"5ca1\"),s=e(\"2aba\"),o=e(\"67ab\").KEY,l=e(\"79e5\"),u=e(\"5537\"),A=e(\"7f20\"),b=e(\"ca5a\"),g=e(\"2b4c\"),f=e(\"37c8\"),d=e(\"3a72\"),h=e(\"d4c0\"),m=e(\"1169\"),v=e(\"cb7c\"),I=e(\"d3f4\"),p=e(\"4bf8\"),E=e(\"6821\"),y=e(\"6a99\"),w=e(\"4630\"),R=e(\"2aeb\"),M=e(\"7bbc\"),N=e(\"11e9\"),Z=e(\"2621\"),S=e(\"86cc\"),O=e(\"0d58\"),D=N.f,G=S.f,j=M.f,C=i.Symbol,J=i.JSON,Q=J&&J.stringify,k=\"prototype\",F=g(\"_hidden\"),U=g(\"toPrimitive\"),B={}.propertyIsEnumerable,z=u(\"symbol-registry\"),T=u(\"symbols\"),W=u(\"op-symbols\"),Y=Object[k],L=\"function\"==typeof C&&!!Z.f,P=i.QObject,V=!P||!P[k]||!P[k].findChild,H=c&&l((function(){return 7!=R(G({},\"a\",{get:function(){return G(this,\"a\",{value:7}).a}})).a}))?function(t,n,e){var i=D(Y,n);i&&delete Y[n],G(t,n,e),i&&t!==Y&&G(Y,n,i)}:G,x=function(t){var n=T[t]=R(C[k]);return n._k=t,n},X=L&&\"symbol\"==typeof C.iterator?function(t){return\"symbol\"==typeof t}:function(t){return t instanceof C},K=function(t,n,e){return t===Y&&K(W,n,e),v(t),n=y(n,!0),v(e),r(T,n)?(e.enumerable?(r(t,F)&&t[F][n]&&(t[F][n]=!1),e=R(e,{enumerable:w(0,!1)})):(r(t,F)||G(t,F,w(1,{})),t[F][n]=!0),H(t,n,e)):G(t,n,e)},q=function(t,n){v(t);var e,i=h(n=E(n)),r=0,c=i.length;while(c>r)K(t,e=i[r++],n[e]);return t},_=function(t,n){return void 0===n?R(t):q(R(t),n)},$=function(t){var n=B.call(this,t=y(t,!0));return!(this===Y&&r(T,t)&&!r(W,t))&&(!(n||!r(this,t)||!r(T,t)||r(this,F)&&this[F][t])||n)},tt=function(t,n){if(t=E(t),n=y(n,!0),t!==Y||!r(T,n)||r(W,n)){var e=D(t,n);return!e||!r(T,n)||r(t,F)&&t[F][n]||(e.enumerable=!0),e}},nt=function(t){var n,e=j(E(t)),i=[],c=0;while(e.length>c)r(T,n=e[c++])||n==F||n==o||i.push(n);return i},et=function(t){var n,e=t===Y,i=j(e?W:E(t)),c=[],a=0;while(i.length>a)!r(T,n=i[a++])||e&&!r(Y,n)||c.push(T[n]);return c};L||(C=function(){if(this instanceof C)throw TypeError(\"Symbol is not a constructor!\");var t=b(arguments.length>0?arguments[0]:void 0),n=function(e){this===Y&&n.call(W,e),r(this,F)&&r(this[F],t)&&(this[F][t]=!1),H(this,t,w(1,e))};return c&&V&&H(Y,t,{configurable:!0,set:n}),x(t)},s(C[k],\"toString\",(function(){return this._k})),N.f=tt,S.f=K,e(\"9093\").f=M.f=nt,e(\"52a7\").f=$,Z.f=et,c&&!e(\"2d00\")&&s(Y,\"propertyIsEnumerable\",$,!0),f.f=function(t){return x(g(t))}),a(a.G+a.W+a.F*!L,{Symbol:C});for(var it=\"hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables\".split(\",\"),rt=0;it.length>rt;)g(it[rt++]);for(var ct=O(g.store),at=0;ct.length>at;)d(ct[at++]);a(a.S+a.F*!L,\"Symbol\",{for:function(t){return r(z,t+=\"\")?z[t]:z[t]=C(t)},keyFor:function(t){if(!X(t))throw TypeError(t+\" is not a symbol!\");for(var n in z)if(z[n]===t)return n},useSetter:function(){V=!0},useSimple:function(){V=!1}}),a(a.S+a.F*!L,\"Object\",{create:_,defineProperty:K,defineProperties:q,getOwnPropertyDescriptor:tt,getOwnPropertyNames:nt,getOwnPropertySymbols:et});var st=l((function(){Z.f(1)}));a(a.S+a.F*st,\"Object\",{getOwnPropertySymbols:function(t){return Z.f(p(t))}}),J&&a(a.S+a.F*(!L||l((function(){var t=C();return\"[null]\"!=Q([t])||\"{}\"!=Q({a:t})||\"{}\"!=Q(Object(t))}))),\"JSON\",{stringify:function(t){var n,e,i=[t],r=1;while(arguments.length>r)i.push(arguments[r++]);if(e=n=i[1],(I(n)||void 0!==t)&&!X(t))return m(n)||(n=function(t,n){if(\"function\"==typeof e&&(n=e.call(this,t,n)),!X(n))return n}),i[1]=n,Q.apply(J,i)}}),C[k][U]||e(\"32e9\")(C[k],U,C[k].valueOf),A(C,\"Symbol\"),A(Math,\"Math\",!0),A(i.JSON,\"JSON\",!0)},9093:function(t,n,e){var i=e(\"ce10\"),r=e(\"e11e\").concat(\"length\",\"prototype\");n.f=Object.getOwnPropertyNames||function(t){return i(t,r)}},\"9ace\":function(t,n){t.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkVFNDE5MTM5QzI3RTExRUFBQzBCRTdBNzg4N0UxRDhEIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkVFNDE5MTNBQzI3RTExRUFBQzBCRTdBNzg4N0UxRDhEIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RUU0MTkxMzdDMjdFMTFFQUFDMEJFN0E3ODg3RTFEOEQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RUU0MTkxMzhDMjdFMTFFQUFDMEJFN0E3ODg3RTFEOEQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4h0EUsAAABeUlEQVR42mJkQAOWW73MgFQKELsCsTRU+CkQ7wbiOce9t51CVs+IpJEPSE0H4igG/GAZEGcCDfoENwCqeS8QmzAQB0CucAUZwgQVmEGsZlYmFhBlBtXDwAS03RxIRxKjWVtAnWGVwxwGLQE1EDcSFF5M0AAjSvMEsxYGJiD89OsLTDgVZIALsZq//fnOkH2iguHJt2cwKReQATIwnrGwPgMPCzexmkFAGmTAfxBLmF2Iode0AawYZggBzWDALButmgikBb///c7w/NsrhmB5HwYTEQOGZ99eMvQADfz65xtDzolKrJqB4BHIAC2Q60G8u58fMDz99hxsiIe0I8Pbn+8ZMo6XMjz//hJX8KwGeWEOssjOZ/sZ1j/ayvD3/1+GirPNDK9+vMEXvrNhKXERkIpFluFgZmf48fcnPs2LgSkxDpYSs6DJEw4IaD4F1cMANgBoEihlOAPxQiLS1AKQWqgeRG5EypWGSNlZFhbaQLwHmp3PI6sHCDAAOxKM/1qz5MgAAAAASUVORK5CYII=\"},ac4d:function(t,n,e){e(\"3a72\")(\"asyncIterator\")},b249:function(t,n){t.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkY4OEI3QjdEQzI3RjExRUFCMDE3Q0U3QTIzNkU3RDg2IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkY4OEI3QjdFQzI3RjExRUFCMDE3Q0U3QTIzNkU3RDg2Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Rjg4QjdCN0JDMjdGMTFFQUIwMTdDRTdBMjM2RTdEODYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Rjg4QjdCN0NDMjdGMTFFQUIwMTdDRTdBMjM2RTdEODYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4GdyTVAAABA0lEQVR42mJ8ZqvHgAZMgDgFiF2BWAYq9gSIdwPxHCA+g6yYEckAXiCeAsRxDPjBIiDOBuIvIA4TkuY9aJr/AnEWFP9DEgep2QvEPMgGTAViMzSbbgDxdCi+hSZnBnUtAwsQmwJxLBanagNxK9QSDSzy8UA8CWRAKh7/lhMIj1SQAW54FFiDAhqIj+OQdwUZII3HgJsEXCDLxEAhABnwlAL9j0EG7KTAgN0gA2aTqfk/EM9igqbtRWQYsACIz7NAOdnQxIKeGtOBmBmL5hNAnIOembhBKQuIE6Fxj8vZ84A4D4i/IecFEPgKxMlAbATNG6D0/wOKb0PFjKBZ/RtME0CAAQBfvjGDHtEXRgAAAABJRU5ErkJggg==\"},bd28:function(t,n,e){\"use strict\";e(\"be6b\")},be6b:function(t,n,e){},d4c0:function(t,n,e){var i=e(\"0d58\"),r=e(\"2621\"),c=e(\"52a7\");t.exports=function(t){var n=i(t),e=r.f;if(e){var a,s=e(t),o=c.f,l=0;while(s.length>l)o.call(t,a=s[l++])&&n.push(a)}return n}},e163:function(t,n){t.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAAAyCAYAAADMb4LpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkRBRTAwNTkwQzI3RjExRUFCQkJBQjgxNzM5Mzg0QzA2IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkRBRTAwNTkxQzI3RjExRUFCQkJBQjgxNzM5Mzg0QzA2Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6REFFMDA1OEVDMjdGMTFFQUJCQkFCODE3MzkzODRDMDYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6REFFMDA1OEZDMjdGMTFFQUJCQkFCODE3MzkzODRDMDYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7JjqEJAAAFAklEQVR42tRaa4gWVRieHbXU1NVtk1bTTLtnxmpeQFstCqUfaRFRFkVoUGn5x/ACggshigiKoEim9iOQEkvt5hWzhC5qbEsGBestXNNVd101c3W359nvPXH2dWZ25jujzPfCw3xzZubMM+e9nPe85ys6/tgQLw8ZANwH3C/HgUCJhV5yXyPQDPwLnBH8DdQI/gCqyvZUncqHRFFM8oOBJ4EngFHAbV66chzYB3wH7AZ+wQdddSFfDrwMPCsjeyPlLPAN8AWwGR9yPg75bsCrwJvAwwledl5Gj+qvs9puBjoB3cWcbhetdUjQ9yXgS2A1sA0f0qzJlwIzgbeAHhEdtQC/inp5PAhUA+cSkCHx/sDdwEPAUNEyfxe18+wh4ANgJT6inuQX42Qa0CVChZ8BnwN7xelSE5BoPdZWPEInHy2+NUECQZhcAJaRfEvARTrLRmANsBNoul7Gbchrwccwkk0GXgj7EE2+HlgFrACOOvLqIPZ9UsJlIvLqQ4bh8DbwkmUhDb66bxMwOwXiVPtffC9wDBjnqJ39wBQ6rN3ui/0Y6Z6CJTBirZfIQukDfCqRx1U6avJXlKpdhSG2WLWVSnRJY2CMNJL8RashjdEJ66NTyr7e5EveYaSLl22xzfocyTdYDV0zTt7W6iVfpl8jt2ScfLdCJn+N2dh5SXHGyXeNctis23xnHSrPWg03pRTrUxekCD1VU6vZ1KvG4gIwmdY8LIh8r4ySL1XnDUHkSzJKvnfQyNcVyMjfqs7rSP5EO+rJKvmTviwWbOlbIDZ/ypciUJRtZdXmT5g4/4/VeEcBkG9kLccsA2usCwNc8+yQ9quO/dq8DpuVlKmHGBnk+JLfVcphShU1jv0OjEOeK/4eDi9hXYd1oMsmdQWmqrVy0tSgWEWbNuQPqvvLHUfpQ/GdMRK91jv2N0ydV9vk96mLI1JwMNYt06qwaT77bfJVlpopr0uG6SKPerna51jHbJILkHespst65Bkhdlg3PADMcXjnXOBnL1d52w0sdehrkZer/RjZgDDZZJOnvKdqOPPEZpMKnWu+apsB3JnHqE8U7RlhmWa2ObHJ02kXWudclHwC9Ev4zv4hNZq7EhJ/EIePVPMcjPqxIPKUSuBH67zMy+1Q9LzBqyaWCr9SC6OtwHL7Pk2eZvMicNpq4whsShD7j4bMsodiEuc8s12ZGYu2r2HUW6LImwngOTVLVkiHcXL9hgCb54gdiUGcmt7l5TbwjHB7aCKI6wQykDxlD/CK17auPkLidhzbXQCMlJl2HPBuTBvfq4hTg8+D+IGgZ/yI/jZ4uc21ZhVCOaE9FeMDfpJQ+W0M4pNw+EENjCG+New5v51+P6bKVMpcIs6z0HOv/HYGcZoU97zaVMOACSC+OephP8YLuBf6uFouctduFnDAIZWgH3FHcbpqp29UgPiu9jrwY76I4ZNbjt+r9sGi7tUSVuNIP9EozekedY2z/HAQr4rTkZ9gpGrF+SrVwoJa4H7Rn2JKYQv4MkkT+H+DyQELGM6c45P8D6Eozz9OlMtoDw24xvx9nThrtdwzXQgH7ZpQc1NB+rekJPIlT+Hm1huiibA/UhyJyGlqJX9aa2/JJxHfIVJwNl7p5TbKKr22OyxGgoifFtL3ctGSL3FX8nZYmy+OGLWHy/Rgpiyk35eZ00nSIP9/OUJyby6UnwG+lrLKFuBp0dCSNEgb+U+AAQCwyUnyOlpmgQAAAABJRU5ErkJggg==\"},f1ae:function(t,n,e){\"use strict\";var i=e(\"86cc\"),r=e(\"4630\");t.exports=function(t,n,e){n in t?i.f(t,n,r(0,e)):t[n]=e}}}]);"
  },
  {
    "path": "public/js/chunk-168777de.cb8bf66b.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-168777de\"],{\"02f4\":function(e,t,r){var a=r(\"4588\"),n=r(\"be13\");e.exports=function(e){return function(t,r){var o,i,s=String(n(t)),u=a(r),c=s.length;return u<0||u>=c?e?\"\":void 0:(o=s.charCodeAt(u),o<55296||o>56319||u+1===c||(i=s.charCodeAt(u+1))<56320||i>57343?e?s.charAt(u):o:e?s.slice(u,u+2):i-56320+(o-55296<<10)+65536)}}},\"0390\":function(e,t,r){\"use strict\";var a=r(\"02f4\")(!0);e.exports=function(e,t,r){return t+(r?a(e,t).length:1)}},\"0bfb\":function(e,t,r){\"use strict\";var a=r(\"cb7c\");e.exports=function(){var e=a(this),t=\"\";return e.global&&(t+=\"g\"),e.ignoreCase&&(t+=\"i\"),e.multiline&&(t+=\"m\"),e.unicode&&(t+=\"u\"),e.sticky&&(t+=\"y\"),t}},\"11e9\":function(e,t,r){var a=r(\"52a7\"),n=r(\"4630\"),o=r(\"6821\"),i=r(\"6a99\"),s=r(\"69a8\"),u=r(\"c69a\"),c=Object.getOwnPropertyDescriptor;t.f=r(\"9e1e\")?c:function(e,t){if(e=o(e),t=i(t,!0),u)try{return c(e,t)}catch(r){}if(s(e,t))return n(!a.f.call(e,t),e[t])}},\"214f\":function(e,t,r){\"use strict\";r(\"b0c5\");var a=r(\"2aba\"),n=r(\"32e9\"),o=r(\"79e5\"),i=r(\"be13\"),s=r(\"2b4c\"),u=r(\"520a\"),c=s(\"species\"),l=!o((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:\"7\"},e},\"7\"!==\"\".replace(e,\"$<a>\")})),_=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var r=\"ab\".split(e);return 2===r.length&&\"a\"===r[0]&&\"b\"===r[1]}();e.exports=function(e,t,r){var p=s(e),f=!o((function(){var t={};return t[p]=function(){return 7},7!=\"\"[e](t)})),d=f?!o((function(){var t=!1,r=/a/;return r.exec=function(){return t=!0,null},\"split\"===e&&(r.constructor={},r.constructor[c]=function(){return r}),r[p](\"\"),!t})):void 0;if(!f||!d||\"replace\"===e&&!l||\"split\"===e&&!_){var m=/./[p],v=r(i,p,\"\"[e],(function(e,t,r,a,n){return t.exec===u?f&&!n?{done:!0,value:m.call(t,r,a)}:{done:!0,value:e.call(r,t,a)}:{done:!1}})),h=v[0],g=v[1];a(String.prototype,e,h),n(RegExp.prototype,p,2==t?function(e,t){return g.call(e,this,t)}:function(e){return g.call(e,this)})}}},\"23e5\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";var core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(\"3b2b\"),core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_0__),core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(\"ac6a\"),core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1__),core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(\"7f7f\"),core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_2__),core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(\"a481\"),core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_3__),core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(\"28a5\"),core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_4__),_api_api__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(\"4ec3\");function treeToTemplate(tree){var num=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;function parse(item,result){var rule=item.rule?\"|\"+item.rule:\"\",value=item.default_value;if(item.default_value&&0===item.default_value.indexOf(\"[\")&&\"]\"===item.default_value.substring(item.default_value.length-1))try{var reg=/\\s*/g,reg2=/\\\"/g;value=value.substring(1,value.length-1).replace(reg,\"\").replace(reg2,\"\").split(\",\"),result[item.name+rule]=value}catch(e){result[item.name+rule]=value}else if(item.name.length)switch(item.type){case 1:result[item.name+rule]=value;break;case 2:\"\"===value&&(value=1);var parsed=parseFloat(value);isNaN(parsed)||(value=parsed),result[item.name+rule]=value;break;case 3:\"true\"===value&&(value=!0),\"false\"===value&&(value=!1),\"0\"===value&&(value=!1),value=!!value,result[item.name+rule]=value;break;case 4:result[item.name+rule]={},item.children.forEach((function(e){parse(e,result[item.name+rule])}));break;case 5:if(value)try{result[item.name+rule]=value}catch(e){result[item.name+rule]=item.value}else result[item.name+rule]=item.children.length?[{}]:[],item.children.forEach((function(e){parse(e,result[item.name+rule][0])}));break;case 6:if(1==num)try{var fun=eval(item.default_value);result[item.name+rule]=fun()}catch(e){result[item.name+rule]=item.default_value}else result[item.name+rule]=value;break;case 7:if(1==num)try{result[item.name+rule]=new RegExp(item.default_value)}catch(e){result[item.name+rule]=item.default_value}else{var _reg=/\\\\/g;result[item.name+rule]=item.default_value.replace(_reg,\"\")}break;case 8:result[item.name+rule]=null;break}}var result={};return tree.length&&tree.forEach((function(e){parse(e,result)})),result}function romoveSlash(e){var t={},r=/\\//g;for(var a in e)\"string\"==typeof e[a]&&r.test(e[a])?t[a]=e[a].replace(r,\"\"):t[a]=e[a];return t}__webpack_exports__[\"a\"]={name:\"mock\",data:function(){return{loading:\"\",requestHeaderMockTemplate:\"\",requestParamsMockTemplate:\"\",requestBodyMockTemplate:\"\",requestHeaderMockJson:\"\",requesParamstMockJson:\"\",requestBodyMockJson:\"\",responseMockTemplate:\"\",apiHeaderTreeData:[],apiParamsTreeData:[],apiBodyTreeData:[],apiResTreeData:[],responseMockJson:\"\",reponseIndex:0}},created:function(){this.mockDetail(),this.reponseIndex=this.$route.query.reponse},methods:{mockDetail:function(){var e=this,t=this.$route.params.chapter_id,r=this.$route.params.document_id;this.loading=this.$loading(),Object(_api_api__WEBPACK_IMPORTED_MODULE_5__[\"v\"])({chapter_id:t,document_id:r,show_record:1}).then((function(t){if(e.loading.close(),200==t.code&&t.data.record){var r=JSON.parse(JSON.stringify(t.data.record));r.body[1].length&&(e.apiHeaderTreeData=JSON.parse(JSON.stringify(r.body[\"1\"]))),r.body[2].length?e.apiParamsTreeData=JSON.parse(JSON.stringify(r.body[\"2\"])):e.apiParamsTreeData=[],r.body.request_body.length?e.apiBodyTreeData=JSON.parse(JSON.stringify(r.body.request_body)):e.apiBodyTreeData=[],r.reponse.length?e.apiResTreeData=JSON.parse(JSON.stringify(r.reponse)):e.apiResTreeData=[],e.initMock()}})).catch((function(t){e.loading.close()}))},initMock:function(){var e=this;this.requestHeaderMockTemplate=treeToTemplate(this.apiHeaderTreeData),this.requestHeaderMockJson=this.$mock.mock(treeToTemplate(this.apiHeaderTreeData,1)),this.requestHeaderMockJson=romoveSlash(this.requestHeaderMockJson),this.requestParamsMockTemplate=treeToTemplate(this.apiParamsTreeData),this.requesParamstMockJson=this.$mock.mock(treeToTemplate(this.apiParamsTreeData,1)),this.requesParamstMockJson=romoveSlash(this.requesParamstMockJson),this.requestBodyMockTemplate=treeToTemplate(this.apiBodyTreeData),this.requestBodyMockJson=this.$mock.mock(treeToTemplate(this.apiBodyTreeData,1)),this.requestBodyMockJson=romoveSlash(this.requestBodyMockJson),this.responseMockTemplate=[],this.responseMockJson=[],this.apiResTreeData.forEach((function(t){e.responseMockTemplate.push(treeToTemplate(t.data)),e.responseMockJson.push(e.$mock.mock(treeToTemplate(t.data,1)))}));var t=[];this.responseMockJson.forEach((function(e){t.push(romoveSlash(e))})),this.responseMockJson=t}}}},\"28a5\":function(e,t,r){\"use strict\";var a=r(\"aae3\"),n=r(\"cb7c\"),o=r(\"ebd6\"),i=r(\"0390\"),s=r(\"9def\"),u=r(\"5f1b\"),c=r(\"520a\"),l=r(\"79e5\"),_=Math.min,p=[].push,f=\"split\",d=\"length\",m=\"lastIndex\",v=4294967295,h=!l((function(){RegExp(v,\"y\")}));r(\"214f\")(\"split\",2,(function(e,t,r,l){var g;return g=\"c\"==\"abbc\"[f](/(b)*/)[1]||4!=\"test\"[f](/(?:)/,-1)[d]||2!=\"ab\"[f](/(?:ab)*/)[d]||4!=\".\"[f](/(.?)(.?)/)[d]||\".\"[f](/()()/)[d]>1||\"\"[f](/.?/)[d]?function(e,t){var n=String(this);if(void 0===e&&0===t)return[];if(!a(e))return r.call(n,e,t);var o,i,s,u=[],l=(e.ignoreCase?\"i\":\"\")+(e.multiline?\"m\":\"\")+(e.unicode?\"u\":\"\")+(e.sticky?\"y\":\"\"),_=0,f=void 0===t?v:t>>>0,h=new RegExp(e.source,l+\"g\");while(o=c.call(h,n)){if(i=h[m],i>_&&(u.push(n.slice(_,o.index)),o[d]>1&&o.index<n[d]&&p.apply(u,o.slice(1)),s=o[0][d],_=i,u[d]>=f))break;h[m]===o.index&&h[m]++}return _===n[d]?!s&&h.test(\"\")||u.push(\"\"):u.push(n.slice(_)),u[d]>f?u.slice(0,f):u}:\"0\"[f](void 0,0)[d]?function(e,t){return void 0===e&&0===t?[]:r.call(this,e,t)}:r,[function(r,a){var n=e(this),o=void 0==r?void 0:r[t];return void 0!==o?o.call(r,n,a):g.call(String(n),r,a)},function(e,t){var a=l(g,e,this,t,g!==r);if(a.done)return a.value;var c=n(e),p=String(this),f=o(c,RegExp),d=c.unicode,m=(c.ignoreCase?\"i\":\"\")+(c.multiline?\"m\":\"\")+(c.unicode?\"u\":\"\")+(h?\"y\":\"g\"),b=new f(h?c:\"^(?:\"+c.source+\")\",m),E=void 0===t?v:t>>>0;if(0===E)return[];if(0===p.length)return null===u(b,p)?[p]:[];var k=0,M=0,x=[];while(M<p.length){b.lastIndex=h?M:0;var y,T=u(b,h?p:p.slice(M));if(null===T||(y=_(s(b.lastIndex+(h?0:M)),p.length))===k)M=i(p,M,d);else{if(x.push(p.slice(k,M)),x.length===E)return x;for(var D=1;D<=T.length-1;D++)if(x.push(T[D]),x.length===E)return x;M=k=y}}return x.push(p.slice(k)),x}]}))},\"3b2b\":function(e,t,r){var a=r(\"7726\"),n=r(\"5dbc\"),o=r(\"86cc\").f,i=r(\"9093\").f,s=r(\"aae3\"),u=r(\"0bfb\"),c=a.RegExp,l=c,_=c.prototype,p=/a/g,f=/a/g,d=new c(p)!==p;if(r(\"9e1e\")&&(!d||r(\"79e5\")((function(){return f[r(\"2b4c\")(\"match\")]=!1,c(p)!=p||c(f)==f||\"/a/i\"!=c(p,\"i\")})))){c=function(e,t){var r=this instanceof c,a=s(e),o=void 0===t;return!r&&a&&e.constructor===c&&o?e:n(d?new l(a&&!o?e.source:e,t):l((a=e instanceof c)?e.source:e,a&&o?u.call(e):t),r?this:_,c)};for(var m=function(e){e in c||o(c,e,{configurable:!0,get:function(){return l[e]},set:function(t){l[e]=t}})},v=i(l),h=0;v.length>h;)m(v[h++]);_.constructor=c,c.prototype=_,r(\"2aba\")(a,\"RegExp\",c)}r(\"7a56\")(\"RegExp\")},\"520a\":function(e,t,r){\"use strict\";var a=r(\"0bfb\"),n=RegExp.prototype.exec,o=String.prototype.replace,i=n,s=\"lastIndex\",u=function(){var e=/a/,t=/b*/g;return n.call(e,\"a\"),n.call(t,\"a\"),0!==e[s]||0!==t[s]}(),c=void 0!==/()??/.exec(\"\")[1],l=u||c;l&&(i=function(e){var t,r,i,l,_=this;return c&&(r=new RegExp(\"^\"+_.source+\"$(?!\\\\s)\",a.call(_))),u&&(t=_[s]),i=n.call(_,e),u&&i&&(_[s]=_.global?i.index+i[0].length:t),c&&i&&i.length>1&&o.call(i[0],r,(function(){for(l=1;l<arguments.length-2;l++)void 0===arguments[l]&&(i[l]=void 0)})),i}),e.exports=i},\"5dbc\":function(e,t,r){var a=r(\"d3f4\"),n=r(\"8b97\").set;e.exports=function(e,t,r){var o,i=t.constructor;return i!==r&&\"function\"==typeof i&&(o=i.prototype)!==r.prototype&&a(o)&&n&&n(e,o),e}},\"5f1b\":function(e,t,r){\"use strict\";var a=r(\"23c6\"),n=RegExp.prototype.exec;e.exports=function(e,t){var r=e.exec;if(\"function\"===typeof r){var o=r.call(e,t);if(\"object\"!==typeof o)throw new TypeError(\"RegExp exec method returned something other than an Object or null\");return o}if(\"RegExp\"!==a(e))throw new TypeError(\"RegExp#exec called on incompatible receiver\");return n.call(e,t)}},\"6c8c\":function(e,t,r){\"use strict\";r.r(t);var a=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r(\"div\",{staticClass:\"mock-wrap\"},[e.responseMockJson.length?[r(\"pre\",[e._v(e._s(e.responseMockJson[e.reponseIndex]))])]:e._e()],2)},n=[],o=r(\"23e5\"),i=o[\"a\"],s=r(\"2877\"),u=Object(s[\"a\"])(i,a,n,!1,null,null,null);t[\"default\"]=u.exports},\"8b97\":function(e,t,r){var a=r(\"d3f4\"),n=r(\"cb7c\"),o=function(e,t){if(n(e),!a(t)&&null!==t)throw TypeError(t+\": can't set as prototype!\")};e.exports={set:Object.setPrototypeOf||(\"__proto__\"in{}?function(e,t,a){try{a=r(\"9b43\")(Function.call,r(\"11e9\").f(Object.prototype,\"__proto__\").set,2),a(e,[]),t=!(e instanceof Array)}catch(n){t=!0}return function(e,r){return o(e,r),t?e.__proto__=r:a(e,r),e}}({},!1):void 0),check:o}},9093:function(e,t,r){var a=r(\"ce10\"),n=r(\"e11e\").concat(\"length\",\"prototype\");t.f=Object.getOwnPropertyNames||function(e){return a(e,n)}},a481:function(e,t,r){\"use strict\";var a=r(\"cb7c\"),n=r(\"4bf8\"),o=r(\"9def\"),i=r(\"4588\"),s=r(\"0390\"),u=r(\"5f1b\"),c=Math.max,l=Math.min,_=Math.floor,p=/\\$([$&`']|\\d\\d?|<[^>]*>)/g,f=/\\$([$&`']|\\d\\d?)/g,d=function(e){return void 0===e?e:String(e)};r(\"214f\")(\"replace\",2,(function(e,t,r,m){return[function(a,n){var o=e(this),i=void 0==a?void 0:a[t];return void 0!==i?i.call(a,o,n):r.call(String(o),a,n)},function(e,t){var n=m(r,e,this,t);if(n.done)return n.value;var _=a(e),p=String(this),f=\"function\"===typeof t;f||(t=String(t));var h=_.global;if(h){var g=_.unicode;_.lastIndex=0}var b=[];while(1){var E=u(_,p);if(null===E)break;if(b.push(E),!h)break;var k=String(E[0]);\"\"===k&&(_.lastIndex=s(p,o(_.lastIndex),g))}for(var M=\"\",x=0,y=0;y<b.length;y++){E=b[y];for(var T=String(E[0]),D=c(l(i(E.index),p.length),0),O=[],P=1;P<E.length;P++)O.push(d(E[P]));var w=E.groups;if(f){var R=[T].concat(O,D,p);void 0!==w&&R.push(w);var q=String(t.apply(void 0,R))}else q=v(T,p,D,O,w,t);D>=x&&(M+=p.slice(x,D)+q,x=D+T.length)}return M+p.slice(x)}];function v(e,t,a,o,i,s){var u=a+e.length,c=o.length,l=f;return void 0!==i&&(i=n(i),l=p),r.call(s,l,(function(r,n){var s;switch(n.charAt(0)){case\"$\":return\"$\";case\"&\":return e;case\"`\":return t.slice(0,a);case\"'\":return t.slice(u);case\"<\":s=i[n.slice(1,-1)];break;default:var l=+n;if(0===l)return r;if(l>c){var p=_(l/10);return 0===p?r:p<=c?void 0===o[p-1]?n.charAt(1):o[p-1]+n.charAt(1):r}s=o[l-1]}return void 0===s?\"\":s}))}}))},aae3:function(e,t,r){var a=r(\"d3f4\"),n=r(\"2d95\"),o=r(\"2b4c\")(\"match\");e.exports=function(e){var t;return a(e)&&(void 0!==(t=e[o])?!!t:\"RegExp\"==n(e))}},b0c5:function(e,t,r){\"use strict\";var a=r(\"520a\");r(\"5ca1\")({target:\"RegExp\",proto:!0,forced:a!==/./.exec},{exec:a})}}]);"
  },
  {
    "path": "public/js/chunk-1e630799.897fa4c7.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-1e630799\"],{\"11e9\":function(t,e,r){var n=r(\"52a7\"),a=r(\"4630\"),o=r(\"6821\"),s=r(\"6a99\"),i=r(\"69a8\"),c=r(\"c69a\"),l=Object.getOwnPropertyDescriptor;e.f=r(\"9e1e\")?l:function(t,e){if(t=o(t),e=s(e,!0),c)try{return l(t,e)}catch(r){}if(i(t,e))return a(!n.f.call(t,e),t[e])}},\"8e6e\":function(t,e,r){var n=r(\"5ca1\"),a=r(\"990b\"),o=r(\"6821\"),s=r(\"11e9\"),i=r(\"f1ae\");n(n.S,\"Object\",{getOwnPropertyDescriptors:function(t){var e,r,n=o(t),c=s.f,l=a(n),u={},f=0;while(l.length>f)r=c(n,e=l[f++]),void 0!==r&&i(u,e,r);return u}})},9093:function(t,e,r){var n=r(\"ce10\"),a=r(\"e11e\").concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return n(t,a)}},\"990b\":function(t,e,r){var n=r(\"9093\"),a=r(\"2621\"),o=r(\"cb7c\"),s=r(\"7726\").Reflect;t.exports=s&&s.ownKeys||function(t){var e=n.f(o(t)),r=a.f;return r?e.concat(r(t)):e}},\"9f63\":function(t,e,r){},b745:function(t,e,r){\"use strict\";r(\"9f63\")},e378:function(t,e,r){\"use strict\";r.r(e);var n=function(){var t=this,e=t.$createElement,r=t._self._c||e;return r(\"div\",{staticClass:\"layout-container container\"},[r(\"div\",{staticClass:\"page-head\"},[t._v(\"用户管理\")]),r(\"div\",{staticClass:\"search-box\"},[r(\"div\",{staticClass:\"search-box-input\"},[r(\"el-input\",{staticClass:\"demo-input-suffix\",attrs:{placeholder:\"请输入用户名称\",clearable:\"\"},nativeOn:{keyup:function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")?null:t.search(e)}},model:{value:t.keyword,callback:function(e){t.keyword=e},expression:\"keyword\"}},[r(\"i\",{staticClass:\"el-input__icon el-icon-search\",attrs:{slot:\"suffix\"},on:{click:t.search},slot:\"suffix\"})])],1),r(\"div\",{staticClass:\"demo-input-btn\"},[r(\"router-link\",{staticClass:\"el-button el-button--primary we7-button-normal\",attrs:{to:\"user/create\",type:\"button\"}},[t._v(\"创建用户\")])],1)]),r(\"el-table\",{ref:\"multipleTable\",staticClass:\"w7-table\",attrs:{data:t.userList,\"header-cell-style\":{background:\"#f7f9fc\",color:\"#606266\"},\"empty-text\":\"没有与搜索条件匹配的项\"}},[r(\"el-table-column\",{attrs:{label:\"账号\",prop:\"username\"}}),r(\"el-table-column\",{attrs:{label:\"添加时间\",prop:\"created_at\",sortable:\"\",\"column-key\":\"date\"},scopedSlots:t._u([{key:\"default\",fn:function(e){return[t.UserInfo.id!=e.row.id?r(\"div\",[t._v(t._s(e.row.created_at))]):t._e()]}}])}),r(\"el-table-column\",{attrs:{label:\"身份\",prop:\"role\"}}),r(\"el-table-column\",{attrs:{label:\"管理权限\"},scopedSlots:t._u([{key:\"default\",fn:function(e){return[r(\"span\",[t._v(t._s(e.row.manage_doc_count)+\"个文档\")])]}}])}),r(\"el-table-column\",{attrs:{label:\"操作权限\"},scopedSlots:t._u([{key:\"default\",fn:function(e){return[r(\"span\",[t._v(t._s(e.row.operate_doc_count)+\"个文档\")])]}}])}),r(\"el-table-column\",{attrs:{label:\"仅阅读\"},scopedSlots:t._u([{key:\"default\",fn:function(e){return[r(\"span\",[t._v(t._s(e.row.read_doc_count)+\"个文档\")])]}}])}),r(\"el-table-column\",{attrs:{label:\"操作\",align:\"right\"},scopedSlots:t._u([{key:\"default\",fn:function(e){return r(\"div\",{staticClass:\"oper\"},[r(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"个人资料\",placement:\"bottom\"}},[r(\"i\",{staticClass:\" wi el-icon-user\",on:{click:function(r){return t.openPersonDetail(e.row.id)}}})]),r(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"设置\",placement:\"bottom\"}},[r(\"i\",{staticClass:\"wi wi-tools\",on:{click:function(r){return t.openEditorUser(e.row)}}})]),r(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"权限管理\",placement:\"bottom\"}},[r(\"i\",{staticClass:\"wi wi-quanxian2\",on:{click:function(r){return t.openPermission(e.row.id)}}})]),r(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"删除\",placement:\"bottom\"}},[t.UserInfo.id!=e.row.id?r(\"i\",{staticClass:\"wi wi-delete\",on:{click:function(r){return t.deleteSelectRows(e.row.id)}}}):t._e()])],1)}}])})],1),r(\"div\",{staticClass:\"btns\"},[r(\"el-pagination\",{attrs:{background:\"\",layout:\"prev, pager, next, total\",\"prev-text\":\"上一页\",\"next-text\":\"下一页\",\"current-page\":t.currentPage,\"page-count\":t.pageCount,total:t.total,\"hide-on-single-page\":!0},on:{\"current-change\":t.getuserlist,\"update:currentPage\":function(e){t.currentPage=e},\"update:current-page\":function(e){t.currentPage=e}}})],1),r(\"el-dialog\",{staticClass:\"w7-dialog\",attrs:{title:\"账号设置\",visible:t.dialogEditUserVisible,\"close-on-click-modal\":!1,center:\"\"},on:{\"update:visible\":function(e){t.dialogEditUserVisible=e}}},[r(\"el-form\",{attrs:{model:t.formData,\"label-width\":\"105px\",\"label-position\":\"left\"}},[r(\"el-form-item\",{attrs:{label:\"用户名\"}},[r(\"el-input\",{model:{value:t.formData.username,callback:function(e){t.$set(t.formData,\"username\",e)},expression:\"formData.username\"}})],1),r(\"el-form-item\",{attrs:{label:\"密码\"}},[r(\"el-input\",{attrs:{type:\"password\"},model:{value:t.formData.userpass,callback:function(e){t.$set(t.formData,\"userpass\",e)},expression:\"formData.userpass\"}})],1),r(\"el-form-item\",{attrs:{label:\"确认密码\"}},[r(\"el-input\",{attrs:{type:\"password\"},model:{value:t.formData.userpass_confirmation,callback:function(e){t.$set(t.formData,\"userpass_confirmation\",e)},expression:\"formData.userpass_confirmation\"}})],1)],1),r(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[r(\"el-button\",{attrs:{type:\"primary\"},on:{click:t.editorUser}},[t._v(\"确 定\")]),r(\"el-button\",{on:{click:function(e){t.dialogEditUserVisible=!1}}},[t._v(\"取 消\")])],1)],1)],1)},a=[],o=(r(\"8e6e\"),r(\"ac6a\"),r(\"456d\"),r(\"fc11\")),s=r(\"2f62\");function i(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function c(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?i(Object(r),!0).forEach((function(e){Object(o[\"a\"])(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):i(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}var l={data:function(){return{keyword:\"\",userList:[],currentPage:1,pageCount:0,total:0,dialogEditUserVisible:!1,formData:{id:\"\",username:\"\",userpass:\"\",userpass_confirmation:\"\"}}},computed:c({},Object(s[\"b\"])({UserInfo:\"UserInfo\"})),created:function(){this.$store.dispatch(\"getUserInfo\"),this.getuserlist()},methods:{search:function(){this.currentPage=1,this.getuserlist()},getuserlist:function(){var t=this;this.$post(\"/admin/user/search\",{page:this.currentPage,username:this.keyword}).then((function(e){t.userList=e.data.data,t.currentPage=e.data.page_current,t.pageCount=e.data.pageCount,t.total=e.data.total}))},openPersonDetail:function(t){this.$router.push({name:\"userDetail\",params:{id:t}})},openEditorUser:function(t){this.formData.id=t.id,this.formData.username=t.username,this.dialogEditUserVisible=!0},editorUser:function(){var t=this;this.$post(\"/admin/user/update-by-id\",this.formData).then((function(){t.$message(\"修改成功！\"),t.getuserlist(),t.dialogEditUserVisible=!1}))},openPermission:function(t){this.$router.push(\"/admin/user/\"+t)},deleteSelectRows:function(t){var e=this;this.$confirm(\"此操作将永久删除用户, 是否继续?\",\"提示\",{confirmButtonText:\"确定\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){e.$post(\"/admin/user/delete-by-ids\",{ids:t}).then((function(t){e.$message(t),e.getuserlist(),e.selectRowID=\"\"}))}))}}},u=l,f=(r(\"b745\"),r(\"2877\")),p=Object(f[\"a\"])(u,n,a,!1,null,\"1598ee81\",null);e[\"default\"]=p.exports},f1ae:function(t,e,r){\"use strict\";var n=r(\"86cc\"),a=r(\"4630\");t.exports=function(t,e,r){e in t?n.f(t,e,a(0,r)):t[e]=r}},fc11:function(t,e,r){\"use strict\";function n(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}r.d(e,\"a\",(function(){return n}))}}]);"
  },
  {
    "path": "public/js/chunk-20afbe1d.bcdaad46.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-20afbe1d\"],{\"11e9\":function(e,t,s){var a=s(\"52a7\"),r=s(\"4630\"),o=s(\"6821\"),i=s(\"6a99\"),n=s(\"69a8\"),l=s(\"c69a\"),c=Object.getOwnPropertyDescriptor;t.f=s(\"9e1e\")?c:function(e,t){if(e=o(e),t=i(t,!0),l)try{return c(e,t)}catch(s){}if(n(e,t))return r(!a.f.call(e,t),e[t])}},3310:function(e,t,s){\"use strict\";s.r(t);var a=function(){var e=this,t=e.$createElement,s=e._self._c||t;return s(\"el-container\",{staticClass:\"account-info\"},[s(\"el-aside\",{staticClass:\"admin-view-aside\",attrs:{width:e.isCollapse?\"64px\":\"240px\"}},[s(\"el-menu\",{staticClass:\"admin-view-menu\",attrs:{\"default-active\":\"1\",collapse:e.isCollapse}},[s(\"el-menu-item\",{attrs:{index:\"1\"}},[s(\"i\",{staticClass:\"wi wi-lock\"}),s(\"span\",{attrs:{slot:\"title\"},slot:\"title\"},[e._v(\"账户信息\")])])],1)],1),s(\"el-main\",[s(\"div\",{staticClass:\"page-head\"},[e._v(\"账户信息\")]),s(\"div\",{staticClass:\"we7-panel-form\"},[s(\"div\",{staticClass:\"we7-panel-form__header\"},[e._v(\"账户信息\")]),s(\"div\",{staticClass:\"we7-panel-form__body\"},[e.UserInfo.user_source&&e.UserInfo.user_source.username?s(\"div\",{staticClass:\"we7-panel-form__item\"},[s(\"div\",{staticClass:\"we7-panel-form__label\"},[e._v(\"已绑\"+e._s(e.UserInfo.user_source.source_name))]),s(\"div\",{staticClass:\"we7-panel-form__value\"},[e._v(e._s(e.UserInfo.user_source.username))]),s(\"el-button\",{attrs:{type:\"primary\",size:\"mini\"},on:{click:e.untie}},[e._v(\"解绑\")])],1):e._e(),s(\"div\",{staticClass:\"we7-panel-form__item\"},[s(\"div\",{staticClass:\"we7-panel-form__label\"},[e._v(\"账号\")]),s(\"div\",{staticClass:\"we7-panel-form__value\"},[e._v(e._s(e.UserInfo.username))]),s(\"div\",{staticClass:\"we7-panel-form__action\"},[s(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"编辑\",placement:\"bottom\"}},[s(\"i\",{staticClass:\"wi wi-edit wi-oper\",on:{click:function(t){return e.openDialog(\"name\")}}})])],1)]),s(\"div\",{staticClass:\"we7-panel-form__item\"},[s(\"div\",{staticClass:\"we7-panel-form__label\"},[e._v(\"密码\")]),s(\"div\",{staticClass:\"we7-panel-form__value\"},[e._v(\"******\")]),s(\"div\",{staticClass:\"we7-panel-form__action\"},[s(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"编辑\",placement:\"bottom\"}},[s(\"i\",{staticClass:\"wi wi-edit wi-oper\",on:{click:function(t){return e.openDialog(\"pass\")}}})])],1)])])]),s(\"el-dialog\",{staticClass:\"w7-dialog\",attrs:{title:e.dialogTitle,visible:e.dialogVisible,\"close-on-click-modal\":!1,center:\"\"},on:{\"update:visible\":function(t){e.dialogVisible=t}}},[s(\"el-form\",{ref:\"ruleForm\",staticClass:\"w7-form__no-required-icon\",attrs:{model:e.formData,rules:e.rules,\"status-icon\":\"\",\"label-width\":\"105px\",\"label-position\":\"left\"}},[\"name\"==e.dialogType?[s(\"el-form-item\",{attrs:{label:\"账号\",prop:\"username\"}},[s(\"el-input\",{model:{value:e.formData.username,callback:function(t){e.$set(e.formData,\"username\",t)},expression:\"formData.username\"}})],1),e.UserInfo.no_password?e._e():s(\"el-form-item\",{attrs:{label:\"密码\",prop:\"userpass\"}},[s(\"el-input\",{attrs:{\"show-password\":\"\"},model:{value:e.formData.userpass,callback:function(t){e.$set(e.formData,\"userpass\",t)},expression:\"formData.userpass\"}})],1)]:e._e(),\"pass\"==e.dialogType?[e.UserInfo.no_password?e._e():s(\"el-form-item\",{attrs:{label:\"旧密码\",prop:\"old_userpass\"}},[s(\"el-input\",{attrs:{\"show-password\":\"\"},model:{value:e.formData.old_userpass,callback:function(t){e.$set(e.formData,\"old_userpass\",t)},expression:\"formData.old_userpass\"}})],1),s(\"el-form-item\",{attrs:{label:\"新密码\",prop:\"new_userpass\"}},[s(\"el-input\",{attrs:{\"show-password\":\"\"},model:{value:e.formData.new_userpass,callback:function(t){e.$set(e.formData,\"new_userpass\",t)},expression:\"formData.new_userpass\"}})],1),s(\"el-form-item\",{attrs:{label:\"确认密码\",prop:\"confirm_userpass\"}},[s(\"el-input\",{attrs:{\"show-password\":\"\"},model:{value:e.formData.confirm_userpass,callback:function(t){e.$set(e.formData,\"confirm_userpass\",t)},expression:\"formData.confirm_userpass\"}})],1)]:e._e()],2),s(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[s(\"el-button\",{attrs:{type:\"primary\"},on:{click:e.confirm}},[e._v(\"确 定\")]),s(\"el-button\",{on:{click:function(t){e.dialogVisible=!1}}},[e._v(\"取 消\")])],1)],1)],1)],1)},r=[],o=(s(\"8e6e\"),s(\"ac6a\"),s(\"456d\"),s(\"fc11\")),i=s(\"2f62\"),n=s(\"4ec3\");function l(e,t){var s=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),s.push.apply(s,a)}return s}function c(e){for(var t=1;t<arguments.length;t++){var s=null!=arguments[t]?arguments[t]:{};t%2?l(Object(s),!0).forEach((function(t){Object(o[\"a\"])(e,t,s[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(s)):l(Object(s)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(s,t))}))}return e}var u={data:function(){var e=this,t=function(t,s,a){\"\"===s?a(new Error(\"请输入新密码\")):(\"\"!==e.formData.confirm_userpass&&e.$refs.ruleForm.validateField(\"confirm_userpass\"),a())},s=function(t,s,a){\"\"===s?a(new Error(\"请再次输入密码\")):s!==e.formData.new_userpass?a(new Error(\"两次输入密码不一致!\")):a()};return{isCollapse:!1,dialogVisible:!1,dialogType:\"\",dialogTitle:\"\",formData:{username:\"\",old_userpass:\"\",new_userpass:\"\",confirm_userpass:\"\",userpass:\"\"},rules:{new_userpass:[{validator:t,trigger:\"blur\"}],confirm_userpass:[{validator:s,trigger:\"blur\"}],username:[{required:!0,message:\"请输入用户账号\",trigger:\"blur\"}],old_userpass:[{required:!0,message:\"请输入旧密码\",trigger:\"blur\"}],userpass:[{required:!0,message:\"请输入密码确认\",trigger:\"blur\"}]}}},computed:c({},Object(i[\"b\"])({UserInfo:\"UserInfo\"})),methods:{openDialog:function(e){var t=this;this.dialogType=e,\"name\"==e?(this.dialogTitle=\"账号设置\",this.formData.username=this.UserInfo.username):this.dialogTitle=\"密码设置\",this.dialogVisible=!0,this.$nextTick((function(){t.$refs.ruleForm.resetFields()}))},confirm:function(){var e=this;this.$refs.ruleForm.validate((function(t){if(t){var s={};s=\"name\"==e.dialogType?{username:e.formData.username}:{userpass:e.formData.new_userpass},e.UserInfo.no_password||(\"name\"==e.dialogType?s[\"old_userpass\"]=e.formData.userpass:s[\"old_userpass\"]=e.formData.old_userpass),e.$post(\"/admin/user/update-self\",s).then((function(){e.$message(\"修改成功！\"),\"name\"==e.dialogType&&e.$store.dispatch(\"getUserInfo\"),e.dialogVisible=!1,\"pass\"==e.dialogType&&(window.location.href=window.location.origin+\"/common/auth/logout\")}))}}))},untie:function(){var e=this;this.$confirm(\"操作解绑后需要重新绑定，确认执行该操作吗?\",\"解绑\",{confirmButtonText:\"确认\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){Object(n[\"C\"])().then((function(t){200==t.code&&(e.$message.closeAll(),e.$message.success(\"解绑成功！\"),e.$store.dispatch(\"getUserInfo\"))})).catch((function(e){}))})).catch((function(){e.$message({type:\"info\",message:\"已取消\"})}))},logout:function(){Object(n[\"u\"])().then((function(e){200==e.code&&(location.href=e.data)}))}}},f=u,p=(s(\"c88b\"),s(\"2877\")),m=Object(p[\"a\"])(f,a,r,!1,null,\"25228318\",null);t[\"default\"]=m.exports},\"59cf\":function(e,t,s){},\"8e6e\":function(e,t,s){var a=s(\"5ca1\"),r=s(\"990b\"),o=s(\"6821\"),i=s(\"11e9\"),n=s(\"f1ae\");a(a.S,\"Object\",{getOwnPropertyDescriptors:function(e){var t,s,a=o(e),l=i.f,c=r(a),u={},f=0;while(c.length>f)s=l(a,t=c[f++]),void 0!==s&&n(u,t,s);return u}})},9093:function(e,t,s){var a=s(\"ce10\"),r=s(\"e11e\").concat(\"length\",\"prototype\");t.f=Object.getOwnPropertyNames||function(e){return a(e,r)}},\"990b\":function(e,t,s){var a=s(\"9093\"),r=s(\"2621\"),o=s(\"cb7c\"),i=s(\"7726\").Reflect;e.exports=i&&i.ownKeys||function(e){var t=a.f(o(e)),s=r.f;return s?t.concat(s(e)):t}},c88b:function(e,t,s){\"use strict\";s(\"59cf\")},f1ae:function(e,t,s){\"use strict\";var a=s(\"86cc\"),r=s(\"4630\");e.exports=function(e,t,s){t in e?a.f(e,t,r(0,s)):e[t]=s}},fc11:function(e,t,s){\"use strict\";function a(e,t,s){return t in e?Object.defineProperty(e,t,{value:s,enumerable:!0,configurable:!0,writable:!0}):e[t]=s,e}s.d(t,\"a\",(function(){return a}))}}]);"
  },
  {
    "path": "public/js/chunk-211c6b12.01b14833.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-211c6b12\"],{\"02f4\":function(e,t,n){var r=n(\"4588\"),i=n(\"be13\");e.exports=function(e){return function(t,n){var o,a,s=String(i(t)),c=r(n),l=s.length;return c<0||c>=l?e?\"\":void 0:(o=s.charCodeAt(c),o<55296||o>56319||c+1===l||(a=s.charCodeAt(c+1))<56320||a>57343?e?s.charAt(c):o:e?s.slice(c,c+2):a-56320+(o-55296<<10)+65536)}}},\"0390\":function(e,t,n){\"use strict\";var r=n(\"02f4\")(!0);e.exports=function(e,t,n){return t+(n?r(e,t).length:1)}},\"0bfb\":function(e,t,n){\"use strict\";var r=n(\"cb7c\");e.exports=function(){var e=r(this),t=\"\";return e.global&&(t+=\"g\"),e.ignoreCase&&(t+=\"i\"),e.multiline&&(t+=\"m\"),e.unicode&&(t+=\"u\"),e.sticky&&(t+=\"y\"),t}},1169:function(e,t,n){var r=n(\"2d95\");e.exports=Array.isArray||function(e){return\"Array\"==r(e)}},\"11e9\":function(e,t,n){var r=n(\"52a7\"),i=n(\"4630\"),o=n(\"6821\"),a=n(\"6a99\"),s=n(\"69a8\"),c=n(\"c69a\"),l=Object.getOwnPropertyDescriptor;t.f=n(\"9e1e\")?l:function(e,t){if(e=o(e),t=a(t,!0),c)try{return l(e,t)}catch(n){}if(s(e,t))return i(!r.f.call(e,t),e[t])}},\"1c4c\":function(e,t,n){\"use strict\";var r=n(\"9b43\"),i=n(\"5ca1\"),o=n(\"4bf8\"),a=n(\"1fa8\"),s=n(\"33a4\"),c=n(\"9def\"),l=n(\"f1ae\"),u=n(\"27ee\");i(i.S+i.F*!n(\"5cc5\")((function(e){Array.from(e)})),\"Array\",{from:function(e){var t,n,i,d,h=o(e),f=\"function\"==typeof this?this:Array,p=arguments.length,m=p>1?arguments[1]:void 0,g=void 0!==m,v=0,b=u(h);if(g&&(m=r(m,p>2?arguments[2]:void 0,2)),void 0==b||f==Array&&s(b))for(t=c(h.length),n=new f(t);t>v;v++)l(n,v,g?m(h[v],v):h[v]);else for(d=b.call(h),n=new f;!(i=d.next()).done;v++)l(n,v,g?a(d,m,[i.value,v],!0):i.value);return n.length=v,n}})},\"1ec4\":function(e,t){e.exports=function(e){var t=document.querySelector(e.tocSelector);if(t&&t.scrollHeight>t.clientHeight){var n=t.querySelector(\".\"+e.activeListItemClass);n&&(t.scrollTop=n.offsetTop)}}},\"214f\":function(e,t,n){\"use strict\";n(\"b0c5\");var r=n(\"2aba\"),i=n(\"32e9\"),o=n(\"79e5\"),a=n(\"be13\"),s=n(\"2b4c\"),c=n(\"520a\"),l=s(\"species\"),u=!o((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:\"7\"},e},\"7\"!==\"\".replace(e,\"$<a>\")})),d=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var n=\"ab\".split(e);return 2===n.length&&\"a\"===n[0]&&\"b\"===n[1]}();e.exports=function(e,t,n){var h=s(e),f=!o((function(){var t={};return t[h]=function(){return 7},7!=\"\"[e](t)})),p=f?!o((function(){var t=!1,n=/a/;return n.exec=function(){return t=!0,null},\"split\"===e&&(n.constructor={},n.constructor[l]=function(){return n}),n[h](\"\"),!t})):void 0;if(!f||!p||\"replace\"===e&&!u||\"split\"===e&&!d){var m=/./[h],g=n(a,h,\"\"[e],(function(e,t,n,r,i){return t.exec===c?f&&!i?{done:!0,value:m.call(t,n,r)}:{done:!0,value:e.call(n,t,r)}:{done:!1}})),v=g[0],b=g[1];r(String.prototype,e,v),i(RegExp.prototype,h,2==t?function(e,t){return b.call(e,this,t)}:function(e){return b.call(e,this)})}}},\"28a5\":function(e,t,n){\"use strict\";var r=n(\"aae3\"),i=n(\"cb7c\"),o=n(\"ebd6\"),a=n(\"0390\"),s=n(\"9def\"),c=n(\"5f1b\"),l=n(\"520a\"),u=n(\"79e5\"),d=Math.min,h=[].push,f=\"split\",p=\"length\",m=\"lastIndex\",g=4294967295,v=!u((function(){RegExp(g,\"y\")}));n(\"214f\")(\"split\",2,(function(e,t,n,u){var b;return b=\"c\"==\"abbc\"[f](/(b)*/)[1]||4!=\"test\"[f](/(?:)/,-1)[p]||2!=\"ab\"[f](/(?:ab)*/)[p]||4!=\".\"[f](/(.?)(.?)/)[p]||\".\"[f](/()()/)[p]>1||\"\"[f](/.?/)[p]?function(e,t){var i=String(this);if(void 0===e&&0===t)return[];if(!r(e))return n.call(i,e,t);var o,a,s,c=[],u=(e.ignoreCase?\"i\":\"\")+(e.multiline?\"m\":\"\")+(e.unicode?\"u\":\"\")+(e.sticky?\"y\":\"\"),d=0,f=void 0===t?g:t>>>0,v=new RegExp(e.source,u+\"g\");while(o=l.call(v,i)){if(a=v[m],a>d&&(c.push(i.slice(d,o.index)),o[p]>1&&o.index<i[p]&&h.apply(c,o.slice(1)),s=o[0][p],d=a,c[p]>=f))break;v[m]===o.index&&v[m]++}return d===i[p]?!s&&v.test(\"\")||c.push(\"\"):c.push(i.slice(d)),c[p]>f?c.slice(0,f):c}:\"0\"[f](void 0,0)[p]?function(e,t){return void 0===e&&0===t?[]:n.call(this,e,t)}:n,[function(n,r){var i=e(this),o=void 0==n?void 0:n[t];return void 0!==o?o.call(n,i,r):b.call(String(i),n,r)},function(e,t){var r=u(b,e,this,t,b!==n);if(r.done)return r.value;var l=i(e),h=String(this),f=o(l,RegExp),p=l.unicode,m=(l.ignoreCase?\"i\":\"\")+(l.multiline?\"m\":\"\")+(l.unicode?\"u\":\"\")+(v?\"y\":\"g\"),y=new f(v?l:\"^(?:\"+l.source+\")\",m),C=void 0===t?g:t>>>0;if(0===C)return[];if(0===h.length)return null===c(y,h)?[h]:[];var w=0,S=0,k=[];while(S<h.length){y.lastIndex=v?S:0;var _,x=c(y,v?h:h.slice(S));if(null===x||(_=d(s(y.lastIndex+(v?0:S)),h.length))===w)S=a(h,S,p);else{if(k.push(h.slice(w,S)),k.length===C)return k;for(var E=1;E<=x.length-1;E++)if(k.push(x[E]),k.length===C)return k;S=w=_}}return k.push(h.slice(w)),k}]}))},\"37c8\":function(e,t,n){t.f=n(\"2b4c\")},3846:function(e,t,n){n(\"9e1e\")&&\"g\"!=/./g.flags&&n(\"86cc\").f(RegExp.prototype,\"flags\",{configurable:!0,get:n(\"0bfb\")})},\"3a72\":function(e,t,n){var r=n(\"7726\"),i=n(\"8378\"),o=n(\"2d00\"),a=n(\"37c8\"),s=n(\"86cc\").f;e.exports=function(e){var t=i.Symbol||(i.Symbol=o?{}:r.Symbol||{});\"_\"==e.charAt(0)||e in t||s(t,e,{value:a.f(e)})}},\"408a\":function(e,t,n){\"use strict\";(function(e){n(\"ac4d\"),n(\"8a81\"),n(\"5df3\"),n(\"1c4c\"),n(\"8e6e\"),n(\"456d\"),n(\"28a5\"),n(\"a481\");var r=n(\"0122\"),i=(n(\"7f7f\"),n(\"ac6a\"),n(\"4917\"),n(\"6b54\"),n(\"fc11\")),o=n(\"2f62\"),a=n(\"d7b0\"),s=n(\"7577\"),c=n.n(s),l=n(\"6297\");function u(e,t){var n;if(\"undefined\"===typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=d(e))||t&&e&&\"number\"===typeof e.length){n&&(e=n);var r=0,i=function(){};return{s:i,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:i}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var o,a=!0,s=!1;return{s:function(){n=e[Symbol.iterator]()},n:function(){var e=n.next();return a=e.done,e},e:function(e){s=!0,o=e},f:function(){try{a||null==n.return||n.return()}finally{if(s)throw o}}}}function d(e,t){if(e){if(\"string\"===typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return\"Object\"===n&&e.constructor&&(n=e.constructor.name),\"Map\"===n||\"Set\"===n?Array.from(e):\"Arguments\"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?h(e,t):void 0}}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function f(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function p(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?f(Object(n),!0).forEach((function(t){Object(i[\"a\"])(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):f(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}t[\"a\"]={name:\"viewHome\",components:{QrcodeVue:a[\"a\"]},data:function(){return{document_id:this.$route.params.id,document_name:\"\",chapters:[],defaultProps:{children:\"children\",label:\"name\"},selectChapterId:\"\",expandIdArray:[],keyword:\"\",articleFlag:!0,articleContent:{author:{},content:\"\"},articleInfoList:[],filterWord:\"\",shareUrl:\"\",showShareWechat:!1,projectName:\"\",loading:\"\",mockUrl:\"\",keywords:\"\",noData:!1,isFixTop:!1,imgDialogShow:!1,imgDialogSrc:\"\",navigation:[],feedVisible:!1,feedTitle:\"您的反馈建议\",feedData:{feedType:[],feedText:\"\",feedImg:[]},feedRules:{feedType:[{required:!0,message:\"请选择至少一个问题类型\",trigger:\"blur\"}],feedText:[{required:!0,message:\"请填写意见反馈\",trigger:\"blur\"},{max:200,message:\"不能超过200个字\",trigger:\"change\"}]},feedType:[\"内容没找到\",\"内容没更新\",\"描述不清楚\",\"链接有错误\",\"步骤不完整\",\"代码/图片缺失\"],imgVisible:!1,dialogImageUrl:\"\",feedFileList:[],hideUpload:!1,isPhone:!1,showPhoneNav:!1}},computed:p({},Object(o[\"b\"])({UserInfo:\"UserInfo\"})),watch:{$route:{handler:function(e){e.hash||this.getArticle()},deep:!0}},created:function(){this.getDocumentName(),this.isMobile()},mounted:function(){var t=this,n=this;document.addEventListener(\"scroll\",(function(){var e=document.documentElement.scrollTop||document.body.scrollTop;t.isFixTop=e>100})),e(document).on(\"click\",\".markdown-body .markdown-content img\",(function(){var t=e(this).attr(\"src\");n.imgDialogShow=!0,n.imgDialogSrc=t})),document.onmousedown=function(e){if(!e.target.toElement.nodeValue||\"文档反馈\"!=e.target.toElement.nodeValue){var t=document.querySelector(\"#feedBtn\");if(\"none\"!=t.style.display&&(t.style.display=\"none\"),document.selection)document.selection.empty();else{var n=document.getSelection();n.removeAllRanges()}}},document.querySelector(\".article\").onmouseup=function(e){e=e||window.event;var t=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0,n=e.clientX-50,r=e.clientY+t-60,i=\"\";if(i=document.selection?document.selection.createRange().text.toString():document.getSelection().toString(),i){var o=document.querySelector(\"#feedBtn\");o.style.display=\"block\",o.style.position=\"absolute\",o.style.left=n+\"px\",o.style.top=r+\"px\"}else{var a=document.querySelector(\"#feedBtn\");a.style.display=\"none\"}}},beforeDestroy:function(){document.onmousedown=null,c.a.destroy()},methods:{isMobile:function(){navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i)?this.isPhone=!0:this.isPhone=!1},showNav:function(){this.showPhoneNav=!0},closeNav:function(){this.showPhoneNav=!1},querySearch:function(e,t){var n=e?this.getFilterList(e):[];t(n)},getFilterList:function(e){var t=this.chapters,n=[],r=function t(r){r.forEach((function(r){r.name&&r.name.indexOf(e)>-1&&n.push({id:r.id,name:r.name}),r.children&&r.children.length&&t(r.children)}))};return r(t),n},handleSelect:function(e){this.$refs.chaptersTree.setCurrentKey(e.id),this.handleNodeClick(e),this.filterWord=\"\",this.filterList=[]},getDocumentName:function(){var e=this;this.$post(\"/document/detail\",{document_id:this.document_id}).then((function(t){e.document_name=t.data.name,e.getChapters()}))},getChapters:function(){var e=this;this.$post(\"/document/chapter/list\",{document_id:this.$route.params.id}).then((function(t){if(t.data.length)if(t.data.forEach((function(e){e.is_dir&&0==e.children.length||e.children.forEach((function(e){e.is_dir&&0==e.children.length&&e.children.push({is_dir:!1})}))})),e.chapters=t.data,e.$route.query.id){e.selectChapterId=e.$route.query.id;var n=\"\",i=function e(t,r){t.forEach((function(t){t.children.length||e(t.children),t.id!=r||(n=t.name)}))};i(e.chapters,e.selectChapterId),document.title=n?n+\" — \"+e.document_name:e.document_name,e.getArticle(),e.$nextTick((function(){e.selectNode(e.selectChapterId),localStorage.docId=e.selectChapterId}))}else{var o=function t(n){if(n.length){var i,o=u(n);try{var a=function(){var n=i.value;try{if(n.is_dir&&n.children.length)return t(n.children),{v:!1};if(!n.is_dir&&n.id)return e.$nextTick((function(){e.handleNodeClick(n),e.selectNode(n.id),e.defaultExpanded=[n.parent_id]})),{v:!1}}catch(r){}};for(o.s();!(i=o.n()).done;){var s=a();if(\"object\"===Object(r[\"a\"])(s))return s.v}}catch(c){o.e(c)}finally{o.f()}}};o(t.data)}else e.noData=!0}))},goDefaultChaper:function(e,t){for(var n=0;n<e.length;n++)if(!e[n].is_dir&&(e[n].default_show_chapter_id==e[n].id||t==e[n].id))return this.selectChapterId=e[n].id,void this.changeRoute(this.selectChapterId,e[n].name,!0);for(var r=0;r<e.length;r++)e[r].is_dir&&e[r].children.length&&e[r].children[0].id&&this.goDefaultChaper(e[r].children,e[r].default_show_chapter_id)},handleNodeClick:function(e){e.is_dir?localStorage.docId&&this.$refs.chaptersTree.setCurrentKey(localStorage.docId):(this.changeRoute(e.id,e.name),localStorage.docId=e.id,localStorage.docName=e.name,this.closeNav())},handleNodeExpand:function(e){e.default_show_chapter_id&&(this.selectNode(e.default_show_chapter_id),this.changeRoute(e.default_show_chapter_id,e.name))},changeRoute:function(e,t,n){e==this.$route.query.id?this.getArticle():(this.selectChapterId=e,this.$router.replace({path:\"/chapter/\"+this.document_id,query:{id:this.selectChapterId}})),n&&this.selectNode(this.selectChapterId),document.title=t+\"-\"+this.document_name},getArticle:function(){var e=this,t={document_id:this.document_id,chapter_id:this.$route.query.id};this.$route.query.share_key&&(t[\"share_key\"]=this.$route.query.share_key),this.loading=this.$loading(),this.$post(\"/document/chapter/detail\",t).then((function(t){200==t.code&&(e.articleContent=t.data,e.navigation=t.data.navigation.split(\">\"),e.loading.close(),t.data.api?e.mockUrl=location.origin+\"/document/mockApiReponse/\".concat(e.$route.params.id)+\"/\"+t.data.api.url:e.mockUrl=\"\",t.data.document&&(e.projectName=t.data.document.name),e.articleContent.content=t.data.content?e.$refs.mavonEditor.markdownIt.render(t.data.content):\"\",e.$nextTick((function(){var t=e.$route.hash;t?(window.location.hash=\"\",window.location.hash=decodeURIComponent(t)):window.scroll({top:0}),e.initToc()})),e.articleFlag=!0,e.UserInfo.username?e.getShareKey():e.shareUrl=window.location.href)})).catch((function(t){e.loading.close()}))},initToc:function(e){var t=document.querySelector(\".markdown-content\"),n=t.querySelectorAll(\"h1, h2, h3, h4, h5, h6, h7\"),r={};Array.prototype.forEach.call(n,(function(e){var t=e.id?e.id:\"h\"+e.querySelector(\"a\").id.replace(/[\\!\\@\\#\\$\\%\\^\\&\\*\\(\\)\\:]/gi,\"\");r[t]=isNaN(r[t])?0:++r[t],r[t]?e.id=t+\"-\"+r[t]:e.id=t})),this.$nextTick((function(){var t={contentSelector:\".markdown-content\",tocSelector:\".js-toc\",headingSelector:\"h1, h2, h3 \",scrollSmooth:!0,scrollSmoothOffset:-60,headingsOffset:100,hasInnerContainers:!0};e=Object.assign(t,e),c.a.init(e)}))},selectNode:function(e){this.expandIdArray=[],this.expandIdArray.push(e),this.$refs.chaptersTree.setCurrentKey(e)},search:function(){var e=this;\"\"!=this.keyword?this.$post(\"/document/chapter/search\",{document_id:this.$route.params.id,keywords:this.keyword}).then((function(t){e.articleFlag=!1,t.data.forEach((function(t){t.content=e.$refs.mavonEditor.markdownIt.render(t.content),t.content=e.htmlToWord(t.content),t.name=e.highlight(t.name),t.content=e.highlight(t.content)})),e.articleInfoList=t.data})):this.$message(\"搜索关键字不能为空！\")},highlight:function(e){var t=this.keyword;e=e.split(\"\"),t=t.split(\"\");var n=\"\";for(var r in e)-1!==t.indexOf(e[r])?n=n+'<span class=\"highlight\">'+e[r]+\"</span>\":n+=e[r];return n},htmlToWord:function(e){var t=e.replace(/<(style|script|iframe)[^>]*?>[\\s\\S]+?<\\/\\1\\s*>/gi,\"\").replace(/<[^>]+?>/g,\"\").replace(/\\s+/g,\" \").replace(/ /g,\" \").replace(/>/g,\" \");return t},getShareKey:function(){var e=this;this.$post(\"/admin/share/url\",{chapter_id:this.$route.query.id,document_id:this.$route.params.id}).then((function(t){e.shareUrl=t.data}))},shareToWeibo:function(){var e=\"http://service.weibo.com/share/share.php?url=\"+this.shareUrl+\"&title=\"+this.articleContent.name;window.open(e,\"_blank\")},shareToQQ:function(){var e=\"https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=\"+this.shareUrl+\"&title=\"+this.articleContent.name;window.open(e,\"_blank\")},onCopy:function(){this.$message.success(\"复制成功！\")},operStar:function(){var e=this,t=this.articleContent.star_id?\"/admin/star/delete\":\"/admin/star/add\",n={document_id:this.$route.params.id};this.articleContent.star_id?n[\"id\"]=this.articleContent.star_id:n[\"chapter_id\"]=this.$route.query.id,this.$post(t,n).then((function(t){e.articleContent.star_id=t.data.star_id||\"\"}))},goSearch:function(){var e=this.$route.params.id,t=this.keywords;t?this.$router.push({name:\"searchResults\",query:{id:e,keywords:t}}):this.$message.error(\"搜索关键字不能为空！\")},closeImgDialog:function(){this.imgDialogShow=!1},showImgDialog:function(){this.imgDialogShow=!0},openFeedBack:function(){document.querySelector(\"#feedBtn\").style.display=\"none\",this.feedVisible=!0},handlePictureCardPreview:function(e){this.dialogImageUrl=e.url,this.dialogVisible=!0},submitFeed:function(){var e=this;this.$refs.feedForm.validate((function(t){if(t){var n=e.feedData;Object(l[\"c\"])({document_id:e.document_id,type:n.feedType.toString(),content:n.feedText,images:n.feedImg}).then((function(t){200==t.code?(e.$message({type:\"success\",message:\"提交成功\"}),e.feedVisible=!1,e.feedData={feedType:[],feedText:\"\",feedImg:[]},e.feedFileList=[],setTimeout((function(){e.hideUpload=!1}),100)):e.$message({type:\"fail\",message:\"提交失败,请重试\"})})).catch((function(e){}))}}))},beforeAvatarUpload:function(e){var t=5,n=e.size/1024/1024<=t;return n||this.$message.error(\"上传图片大小不能超过\".concat(t,\"MB!\")),n},handleRemoveImage:function(e,t){var n=e.response.data.url,r=this.feedData.feedImg.indexOf(n);this.feedData.feedImg.splice(r,1),this.hideUpload=t.length>=3},handleChangeImage:function(e,t){this.hideUpload=t.length>=3},handleUploadSuccess:function(e){200===e.code?this.feedData.feedImg.push(e.data.url):this.$message.error(e.message)}}}}).call(this,n(\"1157\"))},\"47f3\":function(e,t,n){},4917:function(e,t,n){\"use strict\";var r=n(\"cb7c\"),i=n(\"9def\"),o=n(\"0390\"),a=n(\"5f1b\");n(\"214f\")(\"match\",1,(function(e,t,n,s){return[function(n){var r=e(this),i=void 0==n?void 0:n[t];return void 0!==i?i.call(n,r):new RegExp(n)[t](String(r))},function(e){var t=s(n,e,this);if(t.done)return t.value;var c=r(e),l=String(this);if(!c.global)return a(c,l);var u=c.unicode;c.lastIndex=0;var d,h=[],f=0;while(null!==(d=a(c,l))){var p=String(d[0]);h[f]=p,\"\"===p&&(c.lastIndex=o(l,i(c.lastIndex),u)),f++}return 0===f?null:h}]}))},\"520a\":function(e,t,n){\"use strict\";var r=n(\"0bfb\"),i=RegExp.prototype.exec,o=String.prototype.replace,a=i,s=\"lastIndex\",c=function(){var e=/a/,t=/b*/g;return i.call(e,\"a\"),i.call(t,\"a\"),0!==e[s]||0!==t[s]}(),l=void 0!==/()??/.exec(\"\")[1],u=c||l;u&&(a=function(e){var t,n,a,u,d=this;return l&&(n=new RegExp(\"^\"+d.source+\"$(?!\\\\s)\",r.call(d))),c&&(t=d[s]),a=i.call(d,e),c&&a&&(d[s]=d.global?a.index+a[0].length:t),l&&a&&a.length>1&&o.call(a[0],n,(function(){for(u=1;u<arguments.length-2;u++)void 0===arguments[u]&&(a[u]=void 0)})),a}),e.exports=a},5841:function(e,t,n){},\"5bb8\":function(e,t){e.exports={tocSelector:\".js-toc\",contentSelector:\".js-toc-content\",headingSelector:\"h1, h2, h3\",ignoreSelector:\".js-toc-ignore\",hasInnerContainers:!1,linkClass:\"toc-link\",extraLinkClasses:\"\",activeLinkClass:\"is-active-link\",listClass:\"toc-list\",extraListClasses:\"\",isCollapsedClass:\"is-collapsed\",collapsibleClass:\"is-collapsible\",listItemClass:\"toc-list-item\",activeListItemClass:\"is-active-li\",collapseDepth:0,scrollSmooth:!0,scrollSmoothDuration:420,scrollSmoothOffset:0,scrollEndCallback:function(e){},headingsOffset:1,throttleTimeout:50,positionFixedSelector:null,positionFixedClass:\"is-position-fixed\",fixedSidebarOffset:\"auto\",includeHtml:!1,onClick:function(e){},orderedList:!0,scrollContainer:null,skipRendering:!1,headingLabelCallback:!1,ignoreHiddenElements:!1,headingObjectCallback:null,basePath:\"\",disableTocScrollSync:!1}},\"5df3\":function(e,t,n){\"use strict\";var r=n(\"02f4\")(!0);n(\"01f9\")(String,\"String\",(function(e){this._t=String(e),this._i=0}),(function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=r(t,n),this._i+=e.length,{value:e,done:!1})}))},\"5f1b\":function(e,t,n){\"use strict\";var r=n(\"23c6\"),i=RegExp.prototype.exec;e.exports=function(e,t){var n=e.exec;if(\"function\"===typeof n){var o=n.call(e,t);if(\"object\"!==typeof o)throw new TypeError(\"RegExp exec method returned something other than an Object or null\");return o}if(\"RegExp\"!==r(e))throw new TypeError(\"RegExp#exec called on incompatible receiver\");return i.call(e,t)}},6297:function(e,t,n){\"use strict\";n.d(t,\"b\",(function(){return i})),n.d(t,\"a\",(function(){return o})),n.d(t,\"c\",(function(){return a}));var r=n(\"1c1e\"),i=function(e){return Object(r[\"a\"])({url:\"/admin/document/feedback-list\",data:e,method:\"post\"})},o=function(e){return Object(r[\"a\"])({url:\"/admin/document/feedback-detail\",data:e,method:\"post\"})},a=function(e){return Object(r[\"a\"])({url:\"/document/feedback/add\",data:e,method:\"post\"})}},\"67ab\":function(e,t,n){var r=n(\"ca5a\")(\"meta\"),i=n(\"d3f4\"),o=n(\"69a8\"),a=n(\"86cc\").f,s=0,c=Object.isExtensible||function(){return!0},l=!n(\"79e5\")((function(){return c(Object.preventExtensions({}))})),u=function(e){a(e,r,{value:{i:\"O\"+ ++s,w:{}}})},d=function(e,t){if(!i(e))return\"symbol\"==typeof e?e:(\"string\"==typeof e?\"S\":\"P\")+e;if(!o(e,r)){if(!c(e))return\"F\";if(!t)return\"E\";u(e)}return e[r].i},h=function(e,t){if(!o(e,r)){if(!c(e))return!0;if(!t)return!1;u(e)}return e[r].w},f=function(e){return l&&p.NEED&&c(e)&&!o(e,r)&&u(e),e},p=e.exports={KEY:r,NEED:!1,fastKey:d,getWeak:h,onFreeze:f}},\"6b54\":function(e,t,n){\"use strict\";n(\"3846\");var r=n(\"cb7c\"),i=n(\"0bfb\"),o=n(\"9e1e\"),a=\"toString\",s=/./[a],c=function(e){n(\"2aba\")(RegExp.prototype,a,e,!0)};n(\"79e5\")((function(){return\"/a/b\"!=s.call({source:\"a\",flags:\"b\"})}))?c((function(){var e=r(this);return\"/\".concat(e.source,\"/\",\"flags\"in e?e.flags:!o&&e instanceof RegExp?i.call(e):void 0)})):s.name!=a&&c((function(){return s.call(this)}))},7577:function(e,t,n){(function(r){var i,o,a;(function(n,r){o=[],i=r(n),a=\"function\"===typeof i?i.apply(t,o):i,void 0===a||(e.exports=a)})(\"undefined\"!==typeof r?r:this.window||this.global,(function(e){\"use strict\";var t,r,i=n(\"5bb8\"),o={},a={},s=n(\"83fa\"),c=n(\"a65a\"),l=n(\"1ec4\"),u=!!e&&!!e.document&&!!e.document.querySelector&&!!e.addEventListener;if(\"undefined\"!==typeof window||u){var d,h=Object.prototype.hasOwnProperty;return a.destroy=function(){if(!o.skipRendering)try{document.querySelector(o.tocSelector).innerHTML=\"\"}catch(e){}o.scrollContainer&&document.querySelector(o.scrollContainer)?(document.querySelector(o.scrollContainer).removeEventListener(\"scroll\",this._scrollListener,!1),document.querySelector(o.scrollContainer).removeEventListener(\"resize\",this._scrollListener,!1),t&&document.querySelector(o.scrollContainer).removeEventListener(\"click\",this._clickListener,!1)):(document.removeEventListener(\"scroll\",this._scrollListener,!1),document.removeEventListener(\"resize\",this._scrollListener,!1),t&&document.removeEventListener(\"click\",this._clickListener,!1))},a.init=function(e){if(u&&(o=f(i,e||{}),this.options=o,this.state={},o.scrollSmooth&&(o.duration=o.scrollSmoothDuration,o.offset=o.scrollSmoothOffset,a.scrollSmooth=n(\"bbe6\").initSmoothScrolling(o)),t=s(o),r=c(o),this._buildHtml=t,this._parseContent=r,a.destroy(),d=r.selectHeadings(o.contentSelector,o.headingSelector),null!==d)){var h=r.nestHeadingsArray(d),m=h.nest;o.skipRendering||t.render(o.tocSelector,m),this._scrollListener=p((function(e){t.updateToc(d),!o.disableTocScrollSync&&l(o);var n=e&&e.target&&e.target.scrollingElement&&0===e.target.scrollingElement.scrollTop;(e&&(0===e.eventPhase||null===e.currentTarget)||n)&&(t.updateToc(d),o.scrollEndCallback&&o.scrollEndCallback(e))}),o.throttleTimeout),this._scrollListener(),o.scrollContainer&&document.querySelector(o.scrollContainer)?(document.querySelector(o.scrollContainer).addEventListener(\"scroll\",this._scrollListener,!1),document.querySelector(o.scrollContainer).addEventListener(\"resize\",this._scrollListener,!1)):(document.addEventListener(\"scroll\",this._scrollListener,!1),document.addEventListener(\"resize\",this._scrollListener,!1));var g=null;return this._clickListener=p((function(e){o.scrollSmooth&&t.disableTocAnimation(e),t.updateToc(d),g&&clearTimeout(g),g=setTimeout((function(){t.enableTocAnimation()}),o.scrollSmoothDuration)}),o.throttleTimeout),o.scrollContainer&&document.querySelector(o.scrollContainer)?document.querySelector(o.scrollContainer).addEventListener(\"click\",this._clickListener,!1):document.addEventListener(\"click\",this._clickListener,!1),this}},a.refresh=function(e){a.destroy(),a.init(e||this.options)},e.tocbot=a,a}function f(){for(var e={},t=0;t<arguments.length;t++){var n=arguments[t];for(var r in n)h.call(n,r)&&(e[r]=n[r])}return e}function p(e,t,n){var r,i;return t||(t=250),function(){var o=n||this,a=+new Date,s=arguments;r&&a<r+t?(clearTimeout(i),i=setTimeout((function(){r=a,e.apply(o,s)}),t)):(r=a,e.apply(o,s))}}}))}).call(this,n(\"c8ba\"))},\"7abe\":function(e,t,n){\"use strict\";n.r(t);var r=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"view\"},[e.isPhone?n(\"div\",{staticClass:\"navBtn\"},[n(\"i\",{staticClass:\"el-icon-s-unfold\",on:{click:e.showNav}})]):e._e(),e.showPhoneNav?n(\"div\",{staticClass:\"shadow\",on:{click:e.closeNav}}):e._e(),n(\"div\",{staticClass:\"document-name\"},[e._v(e._s(e.document_name))]),e.noData?n(\"div\",{staticStyle:{\"padding-top\":\"20px\",\"text-align\":\"center\"}},[e._v(\"\\n    暂无数据\\n  \")]):e._e(),n(\"div\",{staticClass:\"chapter-warpper\"},[n(\"el-button\",{attrs:{type:\"primary\",id:\"feedBtn\"},on:{click:e.openFeedBack}},[n(\"i\",{staticClass:\"wq wq-bianji\"}),n(\"span\",[e._v(\"文档反馈\")]),n(\"span\",{staticClass:\"triangle\"}),n(\"span\",{staticClass:\"triangle-1\"})]),n(\"el-scrollbar\",[n(\"el-container\",{staticClass:\"home-container\"},[e.noData?e._e():n(\"el-aside\",{staticClass:\"w7-aside-home\",class:{phone:e.showPhoneNav}},[n(\"div\",{staticClass:\"w7-aside-home-box\"},[n(\"el-scrollbar\",{staticClass:\"w7-aside-home-content\"},[n(\"el-tree\",{ref:\"chaptersTree\",staticClass:\"w7-tree\",attrs:{data:e.chapters,props:e.defaultProps,\"empty-text\":\"\",\"node-key\":\"id\",\"highlight-current\":!0,\"default-expanded-keys\":e.expandIdArray,accordion:!0},on:{\"node-click\":e.handleNodeClick,\"node-expand\":e.handleNodeExpand},scopedSlots:e._u([{key:\"default\",fn:function(t){var r=t.node,i=t.data;return r.label?n(\"span\",{staticClass:\"custom-tree-node\",class:{doc:!i.is_dir}},[n(\"div\",{staticClass:\"text-over\"},[n(\"span\",{class:[\"dir\",i.is_dir?\"dir\"+r.level:\"\",r.level?\"level\"+r.level:\"\"],attrs:{title:r.label}},[e._v(e._s(r.label))])])]):e._e()}}],null,!0)})],1)],1)]),n(\"el-main\",{attrs:{id:\"home-index\"}},[e.noData?e._e():[e.articleFlag?e._e():n(\"div\",{staticClass:\"line\"}),n(\"div\",{staticClass:\"warpper\"},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.articleFlag,expression:\"articleFlag\"}],staticClass:\"article\"},[n(\"div\",{staticClass:\"search-wrap\"},[n(\"div\",{staticClass:\"navigation\"},[e.navigation.length?[e._l(e.navigation,(function(t,r){return[n(\"span\",{key:r,class:{\"last-active\":r==e.navigation.length-1}},[e._v(e._s(t))]),r<e.navigation.length-1?n(\"span\",{staticStyle:{color:\"#999\"}},[e._v(\"\\n                          >\\n                        \")]):e._e()]}))]:e._e()],2),n(\"el-input\",{attrs:{placeholder:\"请输入关键字搜索\",maxlength:\"10\"},nativeOn:{keyup:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.goSearch(t)}},model:{value:e.keywords,callback:function(t){e.keywords=t},expression:\"keywords\"}},[n(\"i\",{staticClass:\"el-input__icon el-icon-search\",attrs:{slot:\"suffix\"},on:{click:e.goSearch},slot:\"suffix\"})])],1),n(\"p\",{staticClass:\"title\"},[e._v(e._s(e.articleContent.name))]),n(\"div\",{staticClass:\"info\"},[n(\"span\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.articleContent.updated_at,expression:\"articleContent.updated_at\"}],staticClass:\"time\"},[e._v(\"更新时间：\"+e._s(e.articleContent.updated_at))]),n(\"span\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.articleContent.author.username,expression:\"articleContent.author.username\"}],staticClass:\"author\"},[e._v(\"作者：\"+e._s(e.articleContent.author.username))]),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.articleContent.content,expression:\"articleContent.content\"}],staticClass:\"share\"},[n(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"分享到新浪微博\",placement:\"bottom\"}},[n(\"div\",{staticClass:\"share-block\",on:{click:e.shareToWeibo}},[n(\"i\",{staticClass:\"wi wi-weibo\"})])]),n(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"分享到微信\",placement:\"bottom\"}},[n(\"div\",{staticClass:\"share-block\",on:{click:function(t){e.showShareWechat=!0}}},[n(\"i\",{staticClass:\"wi wi-weixin\"})])]),n(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"分享到QQ空间\",placement:\"bottom\"}},[n(\"div\",{staticClass:\"share-block\",on:{click:e.shareToQQ}},[n(\"i\",{staticClass:\"wi wi-qq\"})])]),n(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"复制链接\",placement:\"bottom\"}},[n(\"div\",{directives:[{name:\"clipboard\",rawName:\"v-clipboard:copy\",value:e.shareUrl,expression:\"shareUrl\",arg:\"copy\"},{name:\"clipboard\",rawName:\"v-clipboard:success\",value:e.onCopy,expression:\"onCopy\",arg:\"success\"}],staticClass:\"share-block\"},[n(\"i\",{staticClass:\"wi wi-link\"})])]),n(\"el-tooltip\",{attrs:{effect:\"dark\",content:e.articleContent.star_id?\"取消星标\":\"添加星标\",placement:\"bottom\"}},[n(\"div\",{staticClass:\"share-block\",class:{checked:e.articleContent.star_id},on:{click:function(t){return e.operStar()}}},[n(\"i\",{staticClass:\"wi wi-star\"})])]),e.mockUrl?n(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"复制Mock链接\",placement:\"bottom\"}},[n(\"div\",{directives:[{name:\"clipboard\",rawName:\"v-clipboard:copy\",value:e.mockUrl,expression:\"mockUrl\",arg:\"copy\"},{name:\"clipboard\",rawName:\"v-clipboard:success\",value:e.onCopy,expression:\"onCopy\",arg:\"success\"}],staticClass:\"share-block\"},[n(\"i\",{staticClass:\"wq-fuzhi wq\"})])]):e._e()],1)]),n(\"div\",{staticClass:\"markdown-body\"},[n(\"div\",{staticClass:\"markdown-content\",domProps:{innerHTML:e._s(e.articleContent.content)}}),n(\"el-scrollbar\",{staticClass:\"markdown-menu\"},[n(\"div\",{staticClass:\"catalog\"},[e._v(\"本页目录\")]),n(\"div\",{staticClass:\"js-toc-wrap\"},[n(\"div\",{staticClass:\"js-toc toc toc-right\"})])])],1),n(\"mavon-editor\",{directives:[{name:\"show\",rawName:\"v-show\",value:!1,expression:\"false\"}],ref:\"mavonEditor\"})],1),e.articleFlag?e._e():n(\"div\",{staticClass:\"article-list\"},[n(\"el-button\",{staticClass:\"back\",attrs:{type:\"text\"},on:{click:function(t){e.articleFlag=!e.articleFlag}}},[e._v(\"返回\")]),n(\"p\",{staticClass:\"number-result\"},[e._v(\"\\n                  \"+e._s(e.articleInfoList.length)+'条结果\"'+e._s(e.keyword)+'\"\\n                ')]),e._l(e.articleInfoList,(function(t){return n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.articleInfoList.length,expression:\"articleInfoList.length\"}],key:t.id,staticClass:\"list-content\"},[n(\"div\",{staticClass:\"header\"},[n(\"p\",{staticClass:\"title\",domProps:{innerHTML:e._s(t.name)},on:{click:function(n){return e.changeRoute(t.id,t.name,!0)}}}),n(\"p\",{staticClass:\"info\"},[n(\"span\",[e._v(\"作者：\"+e._s(t.username))]),n(\"span\",[e._v(\"更新时间：\"+e._s(t.updated_at))])])]),n(\"p\",{staticClass:\"content\",domProps:{innerHTML:e._s(t.content)},on:{click:function(n){return e.changeRoute(t.id,t.name,!0)}}})])})),e.articleInfoList.length?e._e():n(\"p\",{staticClass:\"no-result\"},[e._v('\\n                  没有找到相关内容\"'+e._s(e.keyword)+'\"\\n                ')])],2)])]],2)],1)],1),n(\"el-backtop\",{attrs:{bottom:100}},[n(\"div\",{staticClass:\"w7-top\"},[n(\"i\",{staticClass:\"el-icon-arrow-up\"}),n(\"p\",[e._v(\"TOP\")])])]),e.showShareWechat?n(\"div\",{staticClass:\"share-wechat\"},[n(\"div\",{staticClass:\"head\"},[n(\"span\",[e._v(\"分享到微信朋友圈\")]),n(\"i\",{staticClass:\"el-icon-close\",on:{click:function(t){e.showShareWechat=!1}}})]),n(\"qrcode-vue\",{staticClass:\"content\",attrs:{value:e.shareUrl,size:160,level:\"H\"}}),e._m(0)],1):e._e()],1),e.imgDialogShow?n(\"div\",{staticClass:\"img-dialog\",on:{click:function(t){return t.stopPropagation(),e.closeImgDialog(t)}}},[n(\"div\",{staticClass:\"img-wrap\"},[n(\"img\",{attrs:{src:e.imgDialogSrc,alt:\"img dialog\"},on:{click:function(t){return t.stopPropagation(),e.showImgDialog(t)}}})])]):e._e(),n(\"el-dialog\",{attrs:{visible:e.feedVisible,\"close-on-click-modal\":!1,title:e.feedTitle,width:\"680px\"},on:{\"update:visible\":function(t){e.feedVisible=t}}},[n(\"el-form\",{ref:\"feedForm\",attrs:{model:e.feedData,\"label-width\":\"100px\",rules:e.feedRules}},[n(\"el-form-item\",{attrs:{label:\"问题类型\",prop:\"feedType\"}},[n(\"el-checkbox-group\",{model:{value:e.feedData.feedType,callback:function(t){e.$set(e.feedData,\"feedType\",t)},expression:\"feedData.feedType\"}},e._l(e.feedType,(function(t,r){return n(\"el-checkbox\",{key:r,attrs:{label:r}},[e._v(e._s(t))])})),1)],1),n(\"el-form-item\",{attrs:{label:\"意见反馈\",prop:\"feedText\"}},[n(\"el-input\",{staticClass:\"feedText\",attrs:{type:\"textarea\",resize:\"none\"},model:{value:e.feedData.feedText,callback:function(t){e.$set(e.feedData,\"feedText\",t)},expression:\"feedData.feedText\"}})],1),n(\"el-form-item\",{attrs:{label:\"反馈截图\"}},[n(\"el-upload\",{class:{hide:e.hideUpload},attrs:{action:\"/common/upload/image\",accept:\"image/*\",\"on-remove\":e.handleRemoveImage,\"before-upload\":e.beforeAvatarUpload,\"on-success\":e.handleUploadSuccess,\"list-type\":\"picture-card\",limit:3,\"file-list\":e.feedFileList,\"on-change\":e.handleChangeImage}},[n(\"i\",{staticClass:\"el-icon-plus\"})])],1),n(\"el-form-item\",[n(\"el-button\",{attrs:{type:\"primary\"},on:{click:e.submitFeed}},[e._v(\"确认提交\")])],1)],1)],1)],1)},i=[function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"foot\"},[e._v(\"\\n        打开微信，点击底部的“发现”，\"),n(\"br\"),e._v(\"使用“扫一扫”即可将网页分享至朋友圈。\\n      \")])}],o=n(\"408a\"),a=o[\"a\"],s=(n(\"fb25\"),n(\"fca8\"),n(\"2877\")),c=Object(s[\"a\"])(a,r,i,!1,null,\"ca45b106\",null);t[\"default\"]=c.exports},\"7bbc\":function(e,t,n){var r=n(\"6821\"),i=n(\"9093\").f,o={}.toString,a=\"object\"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(e){try{return i(e)}catch(t){return a.slice()}};e.exports.f=function(e){return a&&\"[object Window]\"==o.call(e)?s(e):i(r(e))}},\"83fa\":function(e,t){e.exports=function(e){var t=[].forEach,n=[].some,r=document.body,i=!0,o=\" \";function a(e,t){var n=t.appendChild(c(e));if(e.children.length){var r=l(e.isCollapsed);e.children.forEach((function(e){a(e,r)})),n.appendChild(r)}}function s(e,t){var n=!1,r=l(n);t.forEach((function(e){a(e,r)}));var i=document.querySelector(e);if(null!==i)return i.firstChild&&i.removeChild(i.firstChild),0===t.length?i:i.appendChild(r)}function c(n){var r=document.createElement(\"li\"),i=document.createElement(\"a\");return e.listItemClass&&r.setAttribute(\"class\",e.listItemClass),e.onClick&&(i.onclick=e.onClick),e.includeHtml&&n.childNodes.length?t.call(n.childNodes,(function(e){i.appendChild(e.cloneNode(!0))})):i.textContent=n.textContent,i.setAttribute(\"href\",e.basePath+\"#\"+n.id),i.setAttribute(\"class\",e.linkClass+o+\"node-name--\"+n.nodeName+o+e.extraLinkClasses),r.appendChild(i),r}function l(t){var n=e.orderedList?\"ol\":\"ul\",r=document.createElement(n),i=e.listClass+o+e.extraListClasses;return t&&(i+=o+e.collapsibleClass,i+=o+e.isCollapsedClass),r.setAttribute(\"class\",i),r}function u(){var t;e.scrollContainer&&document.querySelector(e.scrollContainer)?t=document.querySelector(e.scrollContainer).scrollTop:t=document.documentElement.scrollTop||r.scrollTop;var n=document.querySelector(e.positionFixedSelector);\"auto\"===e.fixedSidebarOffset&&(e.fixedSidebarOffset=document.querySelector(e.tocSelector).offsetTop),t>e.fixedSidebarOffset?-1===n.className.indexOf(e.positionFixedClass)&&(n.className+=o+e.positionFixedClass):n.className=n.className.split(o+e.positionFixedClass).join(\"\")}function d(t){var n=0;return t!==document.querySelector(e.contentSelector&&null!=t)&&(n=t.offsetTop,e.hasInnerContainers&&(n+=d(t.offsetParent))),n}function h(a){var s;e.scrollContainer&&document.querySelector(e.scrollContainer)?s=document.querySelector(e.scrollContainer).scrollTop:s=document.documentElement.scrollTop||r.scrollTop;e.positionFixedSelector&&u();var c,l=a;if(i&&null!==document.querySelector(e.tocSelector)&&l.length>0){n.call(l,(function(t,n){if(d(t)>s+e.headingsOffset+10){var r=0===n?n:n-1;return c=l[r],!0}if(n===l.length-1)return c=l[l.length-1],!0}));var h=document.querySelector(e.tocSelector).querySelectorAll(\".\"+e.linkClass);t.call(h,(function(t){t.className=t.className.split(o+e.activeLinkClass).join(\"\")}));var p=document.querySelector(e.tocSelector).querySelectorAll(\".\"+e.listItemClass);t.call(p,(function(t){t.className=t.className.split(o+e.activeListItemClass).join(\"\")}));var m=document.querySelector(e.tocSelector).querySelector(\".\"+e.linkClass+\".node-name--\"+c.nodeName+'[href=\"'+e.basePath+\"#\"+c.id.replace(/([ #;&,.+*~':\"!^$[\\]()=>|/@])/g,\"\\\\$1\")+'\"]');-1===m.className.indexOf(e.activeLinkClass)&&(m.className+=o+e.activeLinkClass);var g=m.parentNode;g&&-1===g.className.indexOf(e.activeListItemClass)&&(g.className+=o+e.activeListItemClass);var v=document.querySelector(e.tocSelector).querySelectorAll(\".\"+e.listClass+\".\"+e.collapsibleClass);t.call(v,(function(t){-1===t.className.indexOf(e.isCollapsedClass)&&(t.className+=o+e.isCollapsedClass)})),m.nextSibling&&-1!==m.nextSibling.className.indexOf(e.isCollapsedClass)&&(m.nextSibling.className=m.nextSibling.className.split(o+e.isCollapsedClass).join(\"\")),f(m.parentNode.parentNode)}}function f(t){return-1!==t.className.indexOf(e.collapsibleClass)&&-1!==t.className.indexOf(e.isCollapsedClass)?(t.className=t.className.split(o+e.isCollapsedClass).join(\"\"),f(t.parentNode.parentNode)):t}function p(t){var n=t.target||t.srcElement;\"string\"===typeof n.className&&-1!==n.className.indexOf(e.linkClass)&&(i=!1)}function m(){i=!0}return{enableTocAnimation:m,disableTocAnimation:p,render:s,updateToc:h}}},\"8a81\":function(e,t,n){\"use strict\";var r=n(\"7726\"),i=n(\"69a8\"),o=n(\"9e1e\"),a=n(\"5ca1\"),s=n(\"2aba\"),c=n(\"67ab\").KEY,l=n(\"79e5\"),u=n(\"5537\"),d=n(\"7f20\"),h=n(\"ca5a\"),f=n(\"2b4c\"),p=n(\"37c8\"),m=n(\"3a72\"),g=n(\"d4c0\"),v=n(\"1169\"),b=n(\"cb7c\"),y=n(\"d3f4\"),C=n(\"4bf8\"),w=n(\"6821\"),S=n(\"6a99\"),k=n(\"4630\"),_=n(\"2aeb\"),x=n(\"7bbc\"),E=n(\"11e9\"),T=n(\"2621\"),L=n(\"86cc\"),N=n(\"0d58\"),A=E.f,O=L.f,P=x.f,I=r.Symbol,D=r.JSON,B=D&&D.stringify,M=\"prototype\",q=f(\"_hidden\"),R=f(\"toPrimitive\"),j={}.propertyIsEnumerable,$=u(\"symbol-registry\"),H=u(\"symbols\"),F=u(\"op-symbols\"),U=Object[M],K=\"function\"==typeof I&&!!T.f,z=r.QObject,G=!z||!z[M]||!z[M].findChild,W=o&&l((function(){return 7!=_(O({},\"a\",{get:function(){return O(this,\"a\",{value:7}).a}})).a}))?function(e,t,n){var r=A(U,t);r&&delete U[t],O(e,t,n),r&&e!==U&&O(U,t,r)}:O,Q=function(e){var t=H[e]=_(I[M]);return t._k=e,t},J=K&&\"symbol\"==typeof I.iterator?function(e){return\"symbol\"==typeof e}:function(e){return e instanceof I},V=function(e,t,n){return e===U&&V(F,t,n),b(e),t=S(t,!0),b(n),i(H,t)?(n.enumerable?(i(e,q)&&e[q][t]&&(e[q][t]=!1),n=_(n,{enumerable:k(0,!1)})):(i(e,q)||O(e,q,k(1,{})),e[q][t]=!0),W(e,t,n)):O(e,t,n)},X=function(e,t){b(e);var n,r=g(t=w(t)),i=0,o=r.length;while(o>i)V(e,n=r[i++],t[n]);return e},Y=function(e,t){return void 0===t?_(e):X(_(e),t)},Z=function(e){var t=j.call(this,e=S(e,!0));return!(this===U&&i(H,e)&&!i(F,e))&&(!(t||!i(this,e)||!i(H,e)||i(this,q)&&this[q][e])||t)},ee=function(e,t){if(e=w(e),t=S(t,!0),e!==U||!i(H,t)||i(F,t)){var n=A(e,t);return!n||!i(H,t)||i(e,q)&&e[q][t]||(n.enumerable=!0),n}},te=function(e){var t,n=P(w(e)),r=[],o=0;while(n.length>o)i(H,t=n[o++])||t==q||t==c||r.push(t);return r},ne=function(e){var t,n=e===U,r=P(n?F:w(e)),o=[],a=0;while(r.length>a)!i(H,t=r[a++])||n&&!i(U,t)||o.push(H[t]);return o};K||(I=function(){if(this instanceof I)throw TypeError(\"Symbol is not a constructor!\");var e=h(arguments.length>0?arguments[0]:void 0),t=function(n){this===U&&t.call(F,n),i(this,q)&&i(this[q],e)&&(this[q][e]=!1),W(this,e,k(1,n))};return o&&G&&W(U,e,{configurable:!0,set:t}),Q(e)},s(I[M],\"toString\",(function(){return this._k})),E.f=ee,L.f=V,n(\"9093\").f=x.f=te,n(\"52a7\").f=Z,T.f=ne,o&&!n(\"2d00\")&&s(U,\"propertyIsEnumerable\",Z,!0),p.f=function(e){return Q(f(e))}),a(a.G+a.W+a.F*!K,{Symbol:I});for(var re=\"hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables\".split(\",\"),ie=0;re.length>ie;)f(re[ie++]);for(var oe=N(f.store),ae=0;oe.length>ae;)m(oe[ae++]);a(a.S+a.F*!K,\"Symbol\",{for:function(e){return i($,e+=\"\")?$[e]:$[e]=I(e)},keyFor:function(e){if(!J(e))throw TypeError(e+\" is not a symbol!\");for(var t in $)if($[t]===e)return t},useSetter:function(){G=!0},useSimple:function(){G=!1}}),a(a.S+a.F*!K,\"Object\",{create:Y,defineProperty:V,defineProperties:X,getOwnPropertyDescriptor:ee,getOwnPropertyNames:te,getOwnPropertySymbols:ne});var se=l((function(){T.f(1)}));a(a.S+a.F*se,\"Object\",{getOwnPropertySymbols:function(e){return T.f(C(e))}}),D&&a(a.S+a.F*(!K||l((function(){var e=I();return\"[null]\"!=B([e])||\"{}\"!=B({a:e})||\"{}\"!=B(Object(e))}))),\"JSON\",{stringify:function(e){var t,n,r=[e],i=1;while(arguments.length>i)r.push(arguments[i++]);if(n=t=r[1],(y(t)||void 0!==e)&&!J(e))return v(t)||(t=function(e,t){if(\"function\"==typeof n&&(t=n.call(this,e,t)),!J(t))return t}),r[1]=t,B.apply(D,r)}}),I[M][R]||n(\"32e9\")(I[M],R,I[M].valueOf),d(I,\"Symbol\"),d(Math,\"Math\",!0),d(r.JSON,\"JSON\",!0)},\"8e6e\":function(e,t,n){var r=n(\"5ca1\"),i=n(\"990b\"),o=n(\"6821\"),a=n(\"11e9\"),s=n(\"f1ae\");r(r.S,\"Object\",{getOwnPropertyDescriptors:function(e){var t,n,r=o(e),c=a.f,l=i(r),u={},d=0;while(l.length>d)n=c(r,t=l[d++]),void 0!==n&&s(u,t,n);return u}})},9093:function(e,t,n){var r=n(\"ce10\"),i=n(\"e11e\").concat(\"length\",\"prototype\");t.f=Object.getOwnPropertyNames||function(e){return r(e,i)}},\"990b\":function(e,t,n){var r=n(\"9093\"),i=n(\"2621\"),o=n(\"cb7c\"),a=n(\"7726\").Reflect;e.exports=a&&a.ownKeys||function(e){var t=r.f(o(e)),n=i.f;return n?t.concat(n(e)):t}},a481:function(e,t,n){\"use strict\";var r=n(\"cb7c\"),i=n(\"4bf8\"),o=n(\"9def\"),a=n(\"4588\"),s=n(\"0390\"),c=n(\"5f1b\"),l=Math.max,u=Math.min,d=Math.floor,h=/\\$([$&`']|\\d\\d?|<[^>]*>)/g,f=/\\$([$&`']|\\d\\d?)/g,p=function(e){return void 0===e?e:String(e)};n(\"214f\")(\"replace\",2,(function(e,t,n,m){return[function(r,i){var o=e(this),a=void 0==r?void 0:r[t];return void 0!==a?a.call(r,o,i):n.call(String(o),r,i)},function(e,t){var i=m(n,e,this,t);if(i.done)return i.value;var d=r(e),h=String(this),f=\"function\"===typeof t;f||(t=String(t));var v=d.global;if(v){var b=d.unicode;d.lastIndex=0}var y=[];while(1){var C=c(d,h);if(null===C)break;if(y.push(C),!v)break;var w=String(C[0]);\"\"===w&&(d.lastIndex=s(h,o(d.lastIndex),b))}for(var S=\"\",k=0,_=0;_<y.length;_++){C=y[_];for(var x=String(C[0]),E=l(u(a(C.index),h.length),0),T=[],L=1;L<C.length;L++)T.push(p(C[L]));var N=C.groups;if(f){var A=[x].concat(T,E,h);void 0!==N&&A.push(N);var O=String(t.apply(void 0,A))}else O=g(x,h,E,T,N,t);E>=k&&(S+=h.slice(k,E)+O,k=E+x.length)}return S+h.slice(k)}];function g(e,t,r,o,a,s){var c=r+e.length,l=o.length,u=f;return void 0!==a&&(a=i(a),u=h),n.call(s,u,(function(n,i){var s;switch(i.charAt(0)){case\"$\":return\"$\";case\"&\":return e;case\"`\":return t.slice(0,r);case\"'\":return t.slice(c);case\"<\":s=a[i.slice(1,-1)];break;default:var u=+i;if(0===u)return n;if(u>l){var h=d(u/10);return 0===h?n:h<=l?void 0===o[h-1]?i.charAt(1):o[h-1]+i.charAt(1):n}s=o[u-1]}return void 0===s?\"\":s}))}}))},a65a:function(e,t){e.exports=function(e){var t=[].reduce;function n(e){return e[e.length-1]}function r(e){return+e.nodeName.split(\"H\").join(\"\")}function i(t){if(!(t instanceof window.HTMLElement))return t;if(e.ignoreHiddenElements&&(!t.offsetHeight||!t.offsetParent))return null;var n={id:t.id,children:[],nodeName:t.nodeName,headingLevel:r(t),textContent:e.headingLabelCallback?String(e.headingLabelCallback(t.textContent)):t.textContent.trim()};return e.includeHtml&&(n.childNodes=t.childNodes),e.headingObjectCallback?e.headingObjectCallback(n,t):n}function o(t,r){var o=i(t),a=o.headingLevel,s=r,c=n(s),l=c?c.headingLevel:0,u=a-l;while(u>0)c=n(s),c&&void 0!==c.children&&(s=c.children),u--;return a>=e.collapseDepth&&(o.isCollapsed=!0),s.push(o),s}function a(t,n){var r=n;e.ignoreSelector&&(r=n.split(\",\").map((function(t){return t.trim()+\":not(\"+e.ignoreSelector+\")\"})));try{return document.querySelector(t).querySelectorAll(r)}catch(i){return null}}function s(e){return t.call(e,(function(e,t){var n=i(t);return n&&o(n,e.nest),e}),{nest:[]})}return{nestHeadingsArray:s,selectHeadings:a}}},aae3:function(e,t,n){var r=n(\"d3f4\"),i=n(\"2d95\"),o=n(\"2b4c\")(\"match\");e.exports=function(e){var t;return r(e)&&(void 0!==(t=e[o])?!!t:\"RegExp\"==i(e))}},ac4d:function(e,t,n){n(\"3a72\")(\"asyncIterator\")},b0c5:function(e,t,n){\"use strict\";var r=n(\"520a\");n(\"5ca1\")({target:\"RegExp\",proto:!0,forced:r!==/./.exec},{exec:r})},bbe6:function(e,t){function n(e){c();var t=e.duration,n=e.offset,i=location.hash?s(location.href):location.href;function o(){function i(i){!a(i.target)||i.target.className.indexOf(\"no-smooth-scroll\")>-1||\"#\"===i.target.href.charAt(i.target.href.length-2)&&\"!\"===i.target.href.charAt(i.target.href.length-1)||-1===i.target.className.indexOf(e.linkClass)||r(i.target.hash,{duration:t,offset:n,callback:function(){l(i.target.hash)}})}document.body.addEventListener(\"click\",i,!1)}function a(e){return\"a\"===e.tagName.toLowerCase()&&(e.hash.length>0||\"#\"===e.href.charAt(e.href.length-1))&&(s(e.href)===i||s(e.href)+\"#\"===i)}function s(e){return e.slice(0,e.lastIndexOf(\"#\"))}function c(){return\"scrollBehavior\"in document.documentElement.style}function l(e){var t=document.getElementById(e.substring(1));t&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())}o()}function r(e,t){var n,r,i=window.pageYOffset,o={duration:t.duration,offset:t.offset||0,callback:t.callback,easing:t.easing||d},a=document.querySelector('[id=\"'+decodeURI(e).split(\"#\").join(\"\")+'\"]'),s=\"string\"===typeof e?o.offset+(e?a&&a.getBoundingClientRect().top||0:-(document.documentElement.scrollTop||document.body.scrollTop)):e,c=\"function\"===typeof o.duration?o.duration(s):o.duration;function l(e){r=e-n,window.scrollTo(0,o.easing(r,i,s,c)),r<c?requestAnimationFrame(l):u()}function u(){window.scrollTo(0,i+s),\"function\"===typeof o.callback&&o.callback()}function d(e,t,n,r){return e/=r/2,e<1?n/2*e*e+t:(e--,-n/2*(e*(e-2)-1)+t)}requestAnimationFrame((function(e){n=e,l(e)}))}t.initSmoothScrolling=n},d4c0:function(e,t,n){var r=n(\"0d58\"),i=n(\"2621\"),o=n(\"52a7\");e.exports=function(e){var t=r(e),n=i.f;if(n){var a,s=n(e),c=o.f,l=0;while(s.length>l)c.call(e,a=s[l++])&&t.push(a)}return t}},d7b0:function(e,t,n){\"use strict\";\n/*!\n * qrcode.vue v1.7.0\n * A Vue component to generate QRCode.\n * © 2017-2019 @scopewu(https://github.com/scopewu)\n * MIT License.\n */var r={MODE_NUMBER:1,MODE_ALPHA_NUM:2,MODE_8BIT_BYTE:4,MODE_KANJI:8};function i(e){this.mode=r.MODE_8BIT_BYTE,this.data=e}i.prototype={getLength:function(e){return this.data.length},write:function(e){for(var t=0;t<this.data.length;t++)e.put(this.data.charCodeAt(t),8)}};var o=i,a={L:1,M:0,Q:3,H:2};function s(e,t){this.totalCount=e,this.dataCount=t}s.RS_BLOCK_TABLE=[[1,26,19],[1,26,16],[1,26,13],[1,26,9],[1,44,34],[1,44,28],[1,44,22],[1,44,16],[1,70,55],[1,70,44],[2,35,17],[2,35,13],[1,100,80],[2,50,32],[2,50,24],[4,25,9],[1,134,108],[2,67,43],[2,33,15,2,34,16],[2,33,11,2,34,12],[2,86,68],[4,43,27],[4,43,19],[4,43,15],[2,98,78],[4,49,31],[2,32,14,4,33,15],[4,39,13,1,40,14],[2,121,97],[2,60,38,2,61,39],[4,40,18,2,41,19],[4,40,14,2,41,15],[2,146,116],[3,58,36,2,59,37],[4,36,16,4,37,17],[4,36,12,4,37,13],[2,86,68,2,87,69],[4,69,43,1,70,44],[6,43,19,2,44,20],[6,43,15,2,44,16],[4,101,81],[1,80,50,4,81,51],[4,50,22,4,51,23],[3,36,12,8,37,13],[2,116,92,2,117,93],[6,58,36,2,59,37],[4,46,20,6,47,21],[7,42,14,4,43,15],[4,133,107],[8,59,37,1,60,38],[8,44,20,4,45,21],[12,33,11,4,34,12],[3,145,115,1,146,116],[4,64,40,5,65,41],[11,36,16,5,37,17],[11,36,12,5,37,13],[5,109,87,1,110,88],[5,65,41,5,66,42],[5,54,24,7,55,25],[11,36,12],[5,122,98,1,123,99],[7,73,45,3,74,46],[15,43,19,2,44,20],[3,45,15,13,46,16],[1,135,107,5,136,108],[10,74,46,1,75,47],[1,50,22,15,51,23],[2,42,14,17,43,15],[5,150,120,1,151,121],[9,69,43,4,70,44],[17,50,22,1,51,23],[2,42,14,19,43,15],[3,141,113,4,142,114],[3,70,44,11,71,45],[17,47,21,4,48,22],[9,39,13,16,40,14],[3,135,107,5,136,108],[3,67,41,13,68,42],[15,54,24,5,55,25],[15,43,15,10,44,16],[4,144,116,4,145,117],[17,68,42],[17,50,22,6,51,23],[19,46,16,6,47,17],[2,139,111,7,140,112],[17,74,46],[7,54,24,16,55,25],[34,37,13],[4,151,121,5,152,122],[4,75,47,14,76,48],[11,54,24,14,55,25],[16,45,15,14,46,16],[6,147,117,4,148,118],[6,73,45,14,74,46],[11,54,24,16,55,25],[30,46,16,2,47,17],[8,132,106,4,133,107],[8,75,47,13,76,48],[7,54,24,22,55,25],[22,45,15,13,46,16],[10,142,114,2,143,115],[19,74,46,4,75,47],[28,50,22,6,51,23],[33,46,16,4,47,17],[8,152,122,4,153,123],[22,73,45,3,74,46],[8,53,23,26,54,24],[12,45,15,28,46,16],[3,147,117,10,148,118],[3,73,45,23,74,46],[4,54,24,31,55,25],[11,45,15,31,46,16],[7,146,116,7,147,117],[21,73,45,7,74,46],[1,53,23,37,54,24],[19,45,15,26,46,16],[5,145,115,10,146,116],[19,75,47,10,76,48],[15,54,24,25,55,25],[23,45,15,25,46,16],[13,145,115,3,146,116],[2,74,46,29,75,47],[42,54,24,1,55,25],[23,45,15,28,46,16],[17,145,115],[10,74,46,23,75,47],[10,54,24,35,55,25],[19,45,15,35,46,16],[17,145,115,1,146,116],[14,74,46,21,75,47],[29,54,24,19,55,25],[11,45,15,46,46,16],[13,145,115,6,146,116],[14,74,46,23,75,47],[44,54,24,7,55,25],[59,46,16,1,47,17],[12,151,121,7,152,122],[12,75,47,26,76,48],[39,54,24,14,55,25],[22,45,15,41,46,16],[6,151,121,14,152,122],[6,75,47,34,76,48],[46,54,24,10,55,25],[2,45,15,64,46,16],[17,152,122,4,153,123],[29,74,46,14,75,47],[49,54,24,10,55,25],[24,45,15,46,46,16],[4,152,122,18,153,123],[13,74,46,32,75,47],[48,54,24,14,55,25],[42,45,15,32,46,16],[20,147,117,4,148,118],[40,75,47,7,76,48],[43,54,24,22,55,25],[10,45,15,67,46,16],[19,148,118,6,149,119],[18,75,47,31,76,48],[34,54,24,34,55,25],[20,45,15,61,46,16]],s.getRSBlocks=function(e,t){var n=s.getRsBlockTable(e,t);if(void 0==n)throw new Error(\"bad rs block @ typeNumber:\"+e+\"/errorCorrectLevel:\"+t);for(var r=n.length/3,i=new Array,o=0;o<r;o++)for(var a=n[3*o+0],c=n[3*o+1],l=n[3*o+2],u=0;u<a;u++)i.push(new s(c,l));return i},s.getRsBlockTable=function(e,t){switch(t){case a.L:return s.RS_BLOCK_TABLE[4*(e-1)+0];case a.M:return s.RS_BLOCK_TABLE[4*(e-1)+1];case a.Q:return s.RS_BLOCK_TABLE[4*(e-1)+2];case a.H:return s.RS_BLOCK_TABLE[4*(e-1)+3];default:return}};var c=s;function l(){this.buffer=new Array,this.length=0}l.prototype={get:function(e){var t=Math.floor(e/8);return 1==(this.buffer[t]>>>7-e%8&1)},put:function(e,t){for(var n=0;n<t;n++)this.putBit(1==(e>>>t-n-1&1))},getLengthInBits:function(){return this.length},putBit:function(e){var t=Math.floor(this.length/8);this.buffer.length<=t&&this.buffer.push(0),e&&(this.buffer[t]|=128>>>this.length%8),this.length++}};for(var u=l,d={glog:function(e){if(e<1)throw new Error(\"glog(\"+e+\")\");return d.LOG_TABLE[e]},gexp:function(e){while(e<0)e+=255;while(e>=256)e-=255;return d.EXP_TABLE[e]},EXP_TABLE:new Array(256),LOG_TABLE:new Array(256)},h=0;h<8;h++)d.EXP_TABLE[h]=1<<h;for(h=8;h<256;h++)d.EXP_TABLE[h]=d.EXP_TABLE[h-4]^d.EXP_TABLE[h-5]^d.EXP_TABLE[h-6]^d.EXP_TABLE[h-8];for(h=0;h<255;h++)d.LOG_TABLE[d.EXP_TABLE[h]]=h;var f=d;function p(e,t){if(void 0==e.length)throw new Error(e.length+\"/\"+t);var n=0;while(n<e.length&&0==e[n])n++;this.num=new Array(e.length-n+t);for(var r=0;r<e.length-n;r++)this.num[r]=e[r+n]}p.prototype={get:function(e){return this.num[e]},getLength:function(){return this.num.length},multiply:function(e){for(var t=new Array(this.getLength()+e.getLength()-1),n=0;n<this.getLength();n++)for(var r=0;r<e.getLength();r++)t[n+r]^=f.gexp(f.glog(this.get(n))+f.glog(e.get(r)));return new p(t,0)},mod:function(e){if(this.getLength()-e.getLength()<0)return this;for(var t=f.glog(this.get(0))-f.glog(e.get(0)),n=new Array(this.getLength()),r=0;r<this.getLength();r++)n[r]=this.get(r);for(r=0;r<e.getLength();r++)n[r]^=f.gexp(f.glog(e.get(r))+t);return new p(n,0).mod(e)}};var m=p,g={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7},v={PATTERN_POSITION_TABLE:[[],[6,18],[6,22],[6,26],[6,30],[6,34],[6,22,38],[6,24,42],[6,26,46],[6,28,50],[6,30,54],[6,32,58],[6,34,62],[6,26,46,66],[6,26,48,70],[6,26,50,74],[6,30,54,78],[6,30,56,82],[6,30,58,86],[6,34,62,90],[6,28,50,72,94],[6,26,50,74,98],[6,30,54,78,102],[6,28,54,80,106],[6,32,58,84,110],[6,30,58,86,114],[6,34,62,90,118],[6,26,50,74,98,122],[6,30,54,78,102,126],[6,26,52,78,104,130],[6,30,56,82,108,134],[6,34,60,86,112,138],[6,30,58,86,114,142],[6,34,62,90,118,146],[6,30,54,78,102,126,150],[6,24,50,76,102,128,154],[6,28,54,80,106,132,158],[6,32,58,84,110,136,162],[6,26,54,82,110,138,166],[6,30,58,86,114,142,170]],G15:1335,G18:7973,G15_MASK:21522,getBCHTypeInfo:function(e){var t=e<<10;while(v.getBCHDigit(t)-v.getBCHDigit(v.G15)>=0)t^=v.G15<<v.getBCHDigit(t)-v.getBCHDigit(v.G15);return(e<<10|t)^v.G15_MASK},getBCHTypeNumber:function(e){var t=e<<12;while(v.getBCHDigit(t)-v.getBCHDigit(v.G18)>=0)t^=v.G18<<v.getBCHDigit(t)-v.getBCHDigit(v.G18);return e<<12|t},getBCHDigit:function(e){var t=0;while(0!=e)t++,e>>>=1;return t},getPatternPosition:function(e){return v.PATTERN_POSITION_TABLE[e-1]},getMask:function(e,t,n){switch(e){case g.PATTERN000:return(t+n)%2==0;case g.PATTERN001:return t%2==0;case g.PATTERN010:return n%3==0;case g.PATTERN011:return(t+n)%3==0;case g.PATTERN100:return(Math.floor(t/2)+Math.floor(n/3))%2==0;case g.PATTERN101:return t*n%2+t*n%3==0;case g.PATTERN110:return(t*n%2+t*n%3)%2==0;case g.PATTERN111:return(t*n%3+(t+n)%2)%2==0;default:throw new Error(\"bad maskPattern:\"+e)}},getErrorCorrectPolynomial:function(e){for(var t=new m([1],0),n=0;n<e;n++)t=t.multiply(new m([1,f.gexp(n)],0));return t},getLengthInBits:function(e,t){if(1<=t&&t<10)switch(e){case r.MODE_NUMBER:return 10;case r.MODE_ALPHA_NUM:return 9;case r.MODE_8BIT_BYTE:return 8;case r.MODE_KANJI:return 8;default:throw new Error(\"mode:\"+e)}else if(t<27)switch(e){case r.MODE_NUMBER:return 12;case r.MODE_ALPHA_NUM:return 11;case r.MODE_8BIT_BYTE:return 16;case r.MODE_KANJI:return 10;default:throw new Error(\"mode:\"+e)}else{if(!(t<41))throw new Error(\"type:\"+t);switch(e){case r.MODE_NUMBER:return 14;case r.MODE_ALPHA_NUM:return 13;case r.MODE_8BIT_BYTE:return 16;case r.MODE_KANJI:return 12;default:throw new Error(\"mode:\"+e)}}},getLostPoint:function(e){for(var t=e.getModuleCount(),n=0,r=0;r<t;r++)for(var i=0;i<t;i++){for(var o=0,a=e.isDark(r,i),s=-1;s<=1;s++)if(!(r+s<0||t<=r+s))for(var c=-1;c<=1;c++)i+c<0||t<=i+c||0==s&&0==c||a==e.isDark(r+s,i+c)&&o++;o>5&&(n+=3+o-5)}for(r=0;r<t-1;r++)for(i=0;i<t-1;i++){var l=0;e.isDark(r,i)&&l++,e.isDark(r+1,i)&&l++,e.isDark(r,i+1)&&l++,e.isDark(r+1,i+1)&&l++,0!=l&&4!=l||(n+=3)}for(r=0;r<t;r++)for(i=0;i<t-6;i++)e.isDark(r,i)&&!e.isDark(r,i+1)&&e.isDark(r,i+2)&&e.isDark(r,i+3)&&e.isDark(r,i+4)&&!e.isDark(r,i+5)&&e.isDark(r,i+6)&&(n+=40);for(i=0;i<t;i++)for(r=0;r<t-6;r++)e.isDark(r,i)&&!e.isDark(r+1,i)&&e.isDark(r+2,i)&&e.isDark(r+3,i)&&e.isDark(r+4,i)&&!e.isDark(r+5,i)&&e.isDark(r+6,i)&&(n+=40);var u=0;for(i=0;i<t;i++)for(r=0;r<t;r++)e.isDark(r,i)&&u++;var d=Math.abs(100*u/t/t-50)/5;return n+=10*d,n}},b=v;function y(e,t){this.typeNumber=e,this.errorCorrectLevel=t,this.modules=null,this.moduleCount=0,this.dataCache=null,this.dataList=[]}var C=y.prototype;C.addData=function(e){var t=new o(e);this.dataList.push(t),this.dataCache=null},C.isDark=function(e,t){if(e<0||this.moduleCount<=e||t<0||this.moduleCount<=t)throw new Error(e+\",\"+t);return this.modules[e][t]},C.getModuleCount=function(){return this.moduleCount},C.make=function(){if(this.typeNumber<1){var e=1;for(e=1;e<40;e++){for(var t=c.getRSBlocks(e,this.errorCorrectLevel),n=new u,r=0,i=0;i<t.length;i++)r+=t[i].dataCount;for(i=0;i<this.dataList.length;i++){var o=this.dataList[i];n.put(o.mode,4),n.put(o.getLength(),b.getLengthInBits(o.mode,e)),o.write(n)}if(n.getLengthInBits()<=8*r)break}this.typeNumber=e}this.makeImpl(!1,this.getBestMaskPattern())},C.makeImpl=function(e,t){this.moduleCount=4*this.typeNumber+17,this.modules=new Array(this.moduleCount);for(var n=0;n<this.moduleCount;n++){this.modules[n]=new Array(this.moduleCount);for(var r=0;r<this.moduleCount;r++)this.modules[n][r]=null}this.setupPositionProbePattern(0,0),this.setupPositionProbePattern(this.moduleCount-7,0),this.setupPositionProbePattern(0,this.moduleCount-7),this.setupPositionAdjustPattern(),this.setupTimingPattern(),this.setupTypeInfo(e,t),this.typeNumber>=7&&this.setupTypeNumber(e),null==this.dataCache&&(this.dataCache=y.createData(this.typeNumber,this.errorCorrectLevel,this.dataList)),this.mapData(this.dataCache,t)},C.setupPositionProbePattern=function(e,t){for(var n=-1;n<=7;n++)if(!(e+n<=-1||this.moduleCount<=e+n))for(var r=-1;r<=7;r++)t+r<=-1||this.moduleCount<=t+r||(this.modules[e+n][t+r]=0<=n&&n<=6&&(0==r||6==r)||0<=r&&r<=6&&(0==n||6==n)||2<=n&&n<=4&&2<=r&&r<=4)},C.getBestMaskPattern=function(){for(var e=0,t=0,n=0;n<8;n++){this.makeImpl(!0,n);var r=b.getLostPoint(this);(0==n||e>r)&&(e=r,t=n)}return t},C.createMovieClip=function(e,t,n){var r=e.createEmptyMovieClip(t,n),i=1;this.make();for(var o=0;o<this.modules.length;o++)for(var a=o*i,s=0;s<this.modules[o].length;s++){var c=s*i,l=this.modules[o][s];l&&(r.beginFill(0,100),r.moveTo(c,a),r.lineTo(c+i,a),r.lineTo(c+i,a+i),r.lineTo(c,a+i),r.endFill())}return r},C.setupTimingPattern=function(){for(var e=8;e<this.moduleCount-8;e++)null==this.modules[e][6]&&(this.modules[e][6]=e%2==0);for(var t=8;t<this.moduleCount-8;t++)null==this.modules[6][t]&&(this.modules[6][t]=t%2==0)},C.setupPositionAdjustPattern=function(){for(var e=b.getPatternPosition(this.typeNumber),t=0;t<e.length;t++)for(var n=0;n<e.length;n++){var r=e[t],i=e[n];if(null==this.modules[r][i])for(var o=-2;o<=2;o++)for(var a=-2;a<=2;a++)this.modules[r+o][i+a]=-2==o||2==o||-2==a||2==a||0==o&&0==a}},C.setupTypeNumber=function(e){for(var t=b.getBCHTypeNumber(this.typeNumber),n=0;n<18;n++){var r=!e&&1==(t>>n&1);this.modules[Math.floor(n/3)][n%3+this.moduleCount-8-3]=r}for(n=0;n<18;n++){r=!e&&1==(t>>n&1);this.modules[n%3+this.moduleCount-8-3][Math.floor(n/3)]=r}},C.setupTypeInfo=function(e,t){for(var n=this.errorCorrectLevel<<3|t,r=b.getBCHTypeInfo(n),i=0;i<15;i++){var o=!e&&1==(r>>i&1);i<6?this.modules[i][8]=o:i<8?this.modules[i+1][8]=o:this.modules[this.moduleCount-15+i][8]=o}for(i=0;i<15;i++){o=!e&&1==(r>>i&1);i<8?this.modules[8][this.moduleCount-i-1]=o:i<9?this.modules[8][15-i-1+1]=o:this.modules[8][15-i-1]=o}this.modules[this.moduleCount-8][8]=!e},C.mapData=function(e,t){for(var n=-1,r=this.moduleCount-1,i=7,o=0,a=this.moduleCount-1;a>0;a-=2){6==a&&a--;while(1){for(var s=0;s<2;s++)if(null==this.modules[r][a-s]){var c=!1;o<e.length&&(c=1==(e[o]>>>i&1));var l=b.getMask(t,r,a-s);l&&(c=!c),this.modules[r][a-s]=c,i--,-1==i&&(o++,i=7)}if(r+=n,r<0||this.moduleCount<=r){r-=n,n=-n;break}}}},y.PAD0=236,y.PAD1=17,y.createData=function(e,t,n){for(var r=c.getRSBlocks(e,t),i=new u,o=0;o<n.length;o++){var a=n[o];i.put(a.mode,4),i.put(a.getLength(),b.getLengthInBits(a.mode,e)),a.write(i)}var s=0;for(o=0;o<r.length;o++)s+=r[o].dataCount;if(i.getLengthInBits()>8*s)throw new Error(\"code length overflow. (\"+i.getLengthInBits()+\">\"+8*s+\")\");i.getLengthInBits()+4<=8*s&&i.put(0,4);while(i.getLengthInBits()%8!=0)i.putBit(!1);while(1){if(i.getLengthInBits()>=8*s)break;if(i.put(y.PAD0,8),i.getLengthInBits()>=8*s)break;i.put(y.PAD1,8)}return y.createBytes(i,r)},y.createBytes=function(e,t){for(var n=0,r=0,i=0,o=new Array(t.length),a=new Array(t.length),s=0;s<t.length;s++){var c=t[s].dataCount,l=t[s].totalCount-c;r=Math.max(r,c),i=Math.max(i,l),o[s]=new Array(c);for(var u=0;u<o[s].length;u++)o[s][u]=255&e.buffer[u+n];n+=c;var d=b.getErrorCorrectPolynomial(l),h=new m(o[s],d.getLength()-1),f=h.mod(d);a[s]=new Array(d.getLength()-1);for(u=0;u<a[s].length;u++){var p=u+f.getLength()-a[s].length;a[s][u]=p>=0?f.get(p):0}}var g=0;for(u=0;u<t.length;u++)g+=t[u].totalCount;var v=new Array(g),y=0;for(u=0;u<r;u++)for(s=0;s<t.length;s++)u<o[s].length&&(v[y++]=o[s][u]);for(u=0;u<i;u++)for(s=0;s<t.length;s++)u<a[s].length&&(v[y++]=a[s][u]);return v};var w=y;function S(e){for(var t=\"\",n=0;n<e.length;n++){var r=e.charCodeAt(n);r<128?t+=String.fromCharCode(r):r<2048?(t+=String.fromCharCode(192|r>>6),t+=String.fromCharCode(128|63&r)):r<55296||r>=57344?(t+=String.fromCharCode(224|r>>12),t+=String.fromCharCode(128|r>>6&63),t+=String.fromCharCode(128|63&r)):(n++,r=65536+((1023&r)<<10|1023&e.charCodeAt(n)),t+=String.fromCharCode(240|r>>18),t+=String.fromCharCode(128|r>>12&63),t+=String.fromCharCode(128|r>>6&63),t+=String.fromCharCode(128|63&r))}return t}function k(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=[];return e.forEach((function(e,r){var i=null;e.forEach((function(o,a){if(!o&&null!==i)return n.push(\"M\".concat(i+t,\" \").concat(r+t,\"h\").concat(a-i,\"v1H\").concat(i+t,\"z\")),void(i=null);if(a!==e.length-1)o&&null===i&&(i=a);else{if(!o)return;null===i?n.push(\"M\".concat(a+t,\",\").concat(r+t,\" h1v1H\").concat(a+t,\"z\")):n.push(\"M\".concat(i+t,\",\").concat(r+t,\" h\").concat(a+1-i,\"v1H\").concat(i+t,\"z\"))}}))})),n.join(\"\")}var _={props:{value:{type:String,required:!0,default:\"\"},className:{type:String,default:\"\"},size:{type:[Number,String],default:100,validator:function(e){return!0!==isNaN(Number(e))}},level:{type:String,default:\"L\",validator:function(e){return[\"L\",\"Q\",\"M\",\"H\"].indexOf(e)>-1}},background:{type:String,default:\"#fff\"},foreground:{type:String,default:\"#000\"},renderAs:{type:String,required:!1,default:\"canvas\",validator:function(e){return[\"canvas\",\"svg\"].indexOf(e)>-1}}},data:function(){return{numCells:0,fgPath:\"\"}},updated:function(){this.render()},mounted:function(){this.render()},methods:{render:function(){var e=this.value,t=this.size,n=this.level,r=this.background,i=this.foreground,o=this.renderAs,s=t>>>0,c=new w(-1,a[n]);c.addData(S(e)),c.make();var l=c.modules,u=s/l.length,d=s/l.length,h=window.devicePixelRatio||1;if(\"svg\"===o)this.numCells=l.length,this.fgPath=k(l);else{var f=this.$refs[\"qrcode-vue\"],p=f.getContext(\"2d\");f.height=f.width=s*h,p.scale(h,h),l.forEach((function(e,t){e.forEach((function(e,n){p.fillStyle=e?i:r;var o=Math.ceil((n+1)*u)-Math.floor(n*u),a=Math.ceil((t+1)*d)-Math.floor(t*d);p.fillRect(Math.round(n*u),Math.round(t*d),o,a)}))}))}}},render:function(e){var t=this.className,n=this.value,r=this.level,i=this.background,o=this.foreground,a=this.size,s=this.renderAs,c=this.numCells,l=this.fgPath;return e(\"div\",{class:this.class||t,attrs:{value:n,level:r,background:i,foreground:o}},[\"svg\"===s?e(\"svg\",{attrs:{height:a,width:a,shapeRendering:\"crispEdges\",viewBox:\"0 0 \".concat(c,\" \").concat(c)},style:{width:a+\"px\",height:a+\"px\"}},[e(\"path\",{attrs:{fill:i,d:\"M0,0 h\".concat(c,\"v\").concat(c,\"H0z\")}}),e(\"path\",{attrs:{fill:o,d:l}})]):e(\"canvas\",{attrs:{height:a,width:a},style:{width:a+\"px\",height:a+\"px\"},ref:\"qrcode-vue\"},[])])}};t[\"a\"]=_},f1ae:function(e,t,n){\"use strict\";var r=n(\"86cc\"),i=n(\"4630\");e.exports=function(e,t,n){t in e?r.f(e,t,i(0,n)):e[t]=n}},fb25:function(e,t,n){\"use strict\";n(\"47f3\")},fc11:function(e,t,n){\"use strict\";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}n.d(t,\"a\",(function(){return r}))},fca8:function(e,t,n){\"use strict\";n(\"5841\")}}]);"
  },
  {
    "path": "public/js/chunk-22e40c8e.f3e7130f.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-22e40c8e\"],{b49c:function(t,e,i){\"use strict\";i.r(e);var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i(\"div\",{staticClass:\"setting-login\"},[i(\"div\",{staticClass:\"page-head\"},[t._v(\"登录设置\")]),i(\"div\",{staticClass:\"we7-panel-form\"},[i(\"div\",{staticClass:\"we7-panel-form__header\"},[t._v(\"登录方式设置\")]),i(\"div\",{staticClass:\"we7-panel-form__body\"},[i(\"div\",{staticClass:\"we7-panel-form__item\"},[i(\"div\",{staticClass:\"we7-panel-form__label\"},[t._v(\"登录方式\")]),i(\"div\",{staticClass:\"we7-panel-form__value\"},[1==t.loginMethod?[t._v(\"\\n              依赖第三方登录：\"+t._s(t.default_login_name)+\"\\n            \")]:[t._v(\"\\n              文档系统登录：\"+t._s(\"1\"==t.is_need_bind?\"第三方登录时需绑定用户自己创建的已有账号\":\"第三方登录时系统自动创建一个账号对应\")+\"\\n            \")]],2),i(\"div\",{staticClass:\"we7-panel-form__action\"},[i(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"编辑\",placement:\"bottom\"}},[i(\"i\",{staticClass:\"wi wi-edit wi-oper\",on:{click:function(e){t.dialogVisible=!0}}})])],1)])])]),i(\"el-dialog\",{staticClass:\"w7-dialog\",attrs:{title:\"登录方式设置\",visible:t.dialogVisible,\"close-on-click-modal\":!1,center:\"\"},on:{\"update:visible\":function(e){t.dialogVisible=e}}},[i(\"el-form\",{attrs:{\"label-width\":\"120px\",\"label-position\":\"left\"}},[i(\"el-form-item\",{attrs:{label:\"登录方式\"}},[i(\"el-radio-group\",{on:{change:t.change},model:{value:t.loginMethod,callback:function(e){t.loginMethod=e},expression:\"loginMethod\"}},[i(\"el-radio\",{attrs:{label:0}},[t._v(\"文档系统登录\")]),i(\"el-radio\",{attrs:{label:1}},[t._v(\"依赖第三方登录\")])],1),i(\"div\",{staticClass:\"we7-help-block\"},[t._v(\"文档系统登录：登录时通过文档系统登录页面进行登录；依赖第三方登录：用户登录时跳转至第三方登录页面登录。\")])],1),0==t.loginMethod?i(\"el-form-item\",{attrs:{label:\"第三方登录设置\"}},[i(\"el-select\",{attrs:{placeholder:\"请选择\"},model:{value:t.is_need_bind,callback:function(e){t.is_need_bind=e},expression:\"is_need_bind\"}},[i(\"el-option\",{attrs:{label:\"第三方登录时需绑定用户自己创建的已有账号\",value:\"1\"}}),i(\"el-option\",{attrs:{label:\"第三方登录时系统自动创建一个账号对应\",value:\"0\"}})],1)],1):t._e(),1==t.loginMethod?i(\"el-form-item\",{attrs:{label:\"选择第三方\"}},[i(\"el-select\",{attrs:{placeholder:\"请选择\",\"no-data-text\":\"暂无第三方配置\"},model:{value:t.default_login_channel,callback:function(e){t.default_login_channel=e},expression:\"default_login_channel\"}},t._l(t.thirdParty,(function(t){return i(\"el-option\",{key:t.id,attrs:{label:t.name,value:t.id}})})),1),t.thirdParty.length?i(\"div\",{staticClass:\"we7-help-block\"},[t._v(\"用户使用该第三方登录时，系统将随机创建一个账号与该第三方账号绑定，用户可在账号信息中查看或修改。\")]):i(\"el-button\",{staticClass:\"textBtn\",attrs:{type:\"text\"},on:{click:t.goto}},[t._v(\"去配置第三方登录\")])],1):t._e()],1),i(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[i(\"el-button\",{attrs:{type:\"primary\"},on:{click:t.confirmBtn}},[t._v(\"确 定\")]),i(\"el-button\",{on:{click:function(e){t.dialogVisible=!1}}},[t._v(\"取 消\")])],1)],1)],1)},n=[],l=(i(\"7f7f\"),{data:function(){return{dialogVisible:!1,loginMethod:0,is_need_bind:0,default_login_channel:\"\",default_login_name:\"\",thirdParty:[],thirdPartyFisrtId:\"\"}},created:function(){this.init(),this.getThirdParty()},methods:{init:function(){var t=this;this.$post(\"/admin/third-party-login/get-default-channel\").then((function(e){e&&(e.data.default_login_channel?(t.loginMethod=1,t.default_login_channel=e.data.default_login_channel):t.is_need_bind=e.data.is_need_bind?\"1\":\"0\")}))},getThirdParty:function(){var t=this;this.$post(\"/admin/third-party-login/all\").then((function(e){for(var i in t.thirdParty=[],e.data)0==i&&(t.thirdPartyFisrtId=e.data[i].id),t.default_login_channel==e.data[i].id&&(t.default_login_name=e.data[i].name),e.data[i].enable&&(t.thirdParty.push({id:e.data[i].id+\"\",name:e.data[i].name}),t.default_login_channel||(t.default_login_channel=e.data[i].id+\"\"))}))},change:function(t){1!=t||this.thirdParty.length||this.getThirdParty()},goto:function(){var t=this.$router.resolve({path:\"/admin/setting/third-party?id=\"+this.thirdPartyFisrtId});window.open(t.href,\"_blank\")},confirmBtn:function(){var t=this,e={};e=0==this.loginMethod?{is_need_bind:this.is_need_bind}:{default_login_channel:this.default_login_channel},this.$post(\"/admin/third-party-login/set-default-channel\",e).then((function(){t.$message(\"修改成功！\"),t.dialogVisible=!1}))}}}),o=l,d=(i(\"fc08\"),i(\"2877\")),s=Object(d[\"a\"])(o,a,n,!1,null,null,null);e[\"default\"]=s.exports},dc4f:function(t,e,i){},fc08:function(t,e,i){\"use strict\";i(\"dc4f\")}}]);"
  },
  {
    "path": "public/js/chunk-25f82f1a.e3262c66.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-25f82f1a\"],{\"02f4\":function(t,e,r){var n=r(\"4588\"),o=r(\"be13\");t.exports=function(t){return function(e,r){var i,a,c=String(o(e)),u=n(r),s=c.length;return u<0||u>=s?t?\"\":void 0:(i=c.charCodeAt(u),i<55296||i>56319||u+1===s||(a=c.charCodeAt(u+1))<56320||a>57343?t?c.charAt(u):i:t?c.slice(u,u+2):a-56320+(i-55296<<10)+65536)}}},\"0bfb\":function(t,e,r){\"use strict\";var n=r(\"cb7c\");t.exports=function(){var t=n(this),e=\"\";return t.global&&(e+=\"g\"),t.ignoreCase&&(e+=\"i\"),t.multiline&&(e+=\"m\"),t.unicode&&(e+=\"u\"),t.sticky&&(e+=\"y\"),e}},1169:function(t,e,r){var n=r(\"2d95\");t.exports=Array.isArray||function(t){return\"Array\"==n(t)}},\"11e9\":function(t,e,r){var n=r(\"52a7\"),o=r(\"4630\"),i=r(\"6821\"),a=r(\"6a99\"),c=r(\"69a8\"),u=r(\"c69a\"),s=Object.getOwnPropertyDescriptor;e.f=r(\"9e1e\")?s:function(t,e){if(t=i(t),e=a(e,!0),u)try{return s(t,e)}catch(r){}if(c(t,e))return o(!n.f.call(t,e),t[e])}},\"1c4c\":function(t,e,r){\"use strict\";var n=r(\"9b43\"),o=r(\"5ca1\"),i=r(\"4bf8\"),a=r(\"1fa8\"),c=r(\"33a4\"),u=r(\"9def\"),s=r(\"f1ae\"),l=r(\"27ee\");o(o.S+o.F*!r(\"5cc5\")((function(t){Array.from(t)})),\"Array\",{from:function(t){var e,r,o,f,h=i(t),d=\"function\"==typeof this?this:Array,p=arguments.length,m=p>1?arguments[1]:void 0,b=void 0!==m,v=0,g=l(h);if(b&&(m=n(m,p>2?arguments[2]:void 0,2)),void 0==g||d==Array&&c(g))for(e=u(h.length),r=new d(e);e>v;v++)s(r,v,b?m(h[v],v):h[v]);else for(f=g.call(h),r=new d;!(o=f.next()).done;v++)s(r,v,b?a(f,m,[o.value,v],!0):o.value);return r.length=v,r}})},\"37c8\":function(t,e,r){e.f=r(\"2b4c\")},3846:function(t,e,r){r(\"9e1e\")&&\"g\"!=/./g.flags&&r(\"86cc\").f(RegExp.prototype,\"flags\",{configurable:!0,get:r(\"0bfb\")})},\"3a72\":function(t,e,r){var n=r(\"7726\"),o=r(\"8378\"),i=r(\"2d00\"),a=r(\"37c8\"),c=r(\"86cc\").f;t.exports=function(t){var e=o.Symbol||(o.Symbol=i?{}:n.Symbol||{});\"_\"==t.charAt(0)||t in e||c(e,t,{value:a.f(t)})}},\"5df3\":function(t,e,r){\"use strict\";var n=r(\"02f4\")(!0);r(\"01f9\")(String,\"String\",(function(t){this._t=String(t),this._i=0}),(function(){var t,e=this._t,r=this._i;return r>=e.length?{value:void 0,done:!0}:(t=n(e,r),this._i+=t.length,{value:t,done:!1})}))},\"67ab\":function(t,e,r){var n=r(\"ca5a\")(\"meta\"),o=r(\"d3f4\"),i=r(\"69a8\"),a=r(\"86cc\").f,c=0,u=Object.isExtensible||function(){return!0},s=!r(\"79e5\")((function(){return u(Object.preventExtensions({}))})),l=function(t){a(t,n,{value:{i:\"O\"+ ++c,w:{}}})},f=function(t,e){if(!o(t))return\"symbol\"==typeof t?t:(\"string\"==typeof t?\"S\":\"P\")+t;if(!i(t,n)){if(!u(t))return\"F\";if(!e)return\"E\";l(t)}return t[n].i},h=function(t,e){if(!i(t,n)){if(!u(t))return!0;if(!e)return!1;l(t)}return t[n].w},d=function(t){return s&&p.NEED&&u(t)&&!i(t,n)&&l(t),t},p=t.exports={KEY:n,NEED:!1,fastKey:f,getWeak:h,onFreeze:d}},\"6a44\":function(t,e,r){},\"6b54\":function(t,e,r){\"use strict\";r(\"3846\");var n=r(\"cb7c\"),o=r(\"0bfb\"),i=r(\"9e1e\"),a=\"toString\",c=/./[a],u=function(t){r(\"2aba\")(RegExp.prototype,a,t,!0)};r(\"79e5\")((function(){return\"/a/b\"!=c.call({source:\"a\",flags:\"b\"})}))?u((function(){var t=n(this);return\"/\".concat(t.source,\"/\",\"flags\"in t?t.flags:!i&&t instanceof RegExp?o.call(t):void 0)})):c.name!=a&&u((function(){return c.call(this)}))},\"7bbc\":function(t,e,r){var n=r(\"6821\"),o=r(\"9093\").f,i={}.toString,a=\"object\"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],c=function(t){try{return o(t)}catch(e){return a.slice()}};t.exports.f=function(t){return a&&\"[object Window]\"==i.call(t)?c(t):o(n(t))}},\"8a81\":function(t,e,r){\"use strict\";var n=r(\"7726\"),o=r(\"69a8\"),i=r(\"9e1e\"),a=r(\"5ca1\"),c=r(\"2aba\"),u=r(\"67ab\").KEY,s=r(\"79e5\"),l=r(\"5537\"),f=r(\"7f20\"),h=r(\"ca5a\"),d=r(\"2b4c\"),p=r(\"37c8\"),m=r(\"3a72\"),b=r(\"d4c0\"),v=r(\"1169\"),g=r(\"cb7c\"),y=r(\"d3f4\"),_=r(\"4bf8\"),w=r(\"6821\"),x=r(\"6a99\"),F=r(\"4630\"),O=r(\"2aeb\"),S=r(\"7bbc\"),E=r(\"11e9\"),k=r(\"2621\"),j=r(\"86cc\"),L=r(\"0d58\"),P=E.f,A=j.f,C=S.f,$=n.Symbol,N=n.JSON,q=N&&N.stringify,I=\"prototype\",T=d(\"_hidden\"),G=d(\"toPrimitive\"),R={}.propertyIsEnumerable,J=l(\"symbol-registry\"),D=l(\"symbols\"),Y=l(\"op-symbols\"),K=Object[I],M=\"function\"==typeof $&&!!k.f,W=n.QObject,z=!W||!W[I]||!W[I].findChild,Q=i&&s((function(){return 7!=O(A({},\"a\",{get:function(){return A(this,\"a\",{value:7}).a}})).a}))?function(t,e,r){var n=P(K,e);n&&delete K[e],A(t,e,r),n&&t!==K&&A(K,e,n)}:A,U=function(t){var e=D[t]=O($[I]);return e._k=t,e},B=M&&\"symbol\"==typeof $.iterator?function(t){return\"symbol\"==typeof t}:function(t){return t instanceof $},H=function(t,e,r){return t===K&&H(Y,e,r),g(t),e=x(e,!0),g(r),o(D,e)?(r.enumerable?(o(t,T)&&t[T][e]&&(t[T][e]=!1),r=O(r,{enumerable:F(0,!1)})):(o(t,T)||A(t,T,F(1,{})),t[T][e]=!0),Q(t,e,r)):A(t,e,r)},V=function(t,e){g(t);var r,n=b(e=w(e)),o=0,i=n.length;while(i>o)H(t,r=n[o++],e[r]);return t},X=function(t,e){return void 0===e?O(t):V(O(t),e)},Z=function(t){var e=R.call(this,t=x(t,!0));return!(this===K&&o(D,t)&&!o(Y,t))&&(!(e||!o(this,t)||!o(D,t)||o(this,T)&&this[T][t])||e)},tt=function(t,e){if(t=w(t),e=x(e,!0),t!==K||!o(D,e)||o(Y,e)){var r=P(t,e);return!r||!o(D,e)||o(t,T)&&t[T][e]||(r.enumerable=!0),r}},et=function(t){var e,r=C(w(t)),n=[],i=0;while(r.length>i)o(D,e=r[i++])||e==T||e==u||n.push(e);return n},rt=function(t){var e,r=t===K,n=C(r?Y:w(t)),i=[],a=0;while(n.length>a)!o(D,e=n[a++])||r&&!o(K,e)||i.push(D[e]);return i};M||($=function(){if(this instanceof $)throw TypeError(\"Symbol is not a constructor!\");var t=h(arguments.length>0?arguments[0]:void 0),e=function(r){this===K&&e.call(Y,r),o(this,T)&&o(this[T],t)&&(this[T][t]=!1),Q(this,t,F(1,r))};return i&&z&&Q(K,t,{configurable:!0,set:e}),U(t)},c($[I],\"toString\",(function(){return this._k})),E.f=tt,j.f=H,r(\"9093\").f=S.f=et,r(\"52a7\").f=Z,k.f=rt,i&&!r(\"2d00\")&&c(K,\"propertyIsEnumerable\",Z,!0),p.f=function(t){return U(d(t))}),a(a.G+a.W+a.F*!M,{Symbol:$});for(var nt=\"hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables\".split(\",\"),ot=0;nt.length>ot;)d(nt[ot++]);for(var it=L(d.store),at=0;it.length>at;)m(it[at++]);a(a.S+a.F*!M,\"Symbol\",{for:function(t){return o(J,t+=\"\")?J[t]:J[t]=$(t)},keyFor:function(t){if(!B(t))throw TypeError(t+\" is not a symbol!\");for(var e in J)if(J[e]===t)return e},useSetter:function(){z=!0},useSimple:function(){z=!1}}),a(a.S+a.F*!M,\"Object\",{create:X,defineProperty:H,defineProperties:V,getOwnPropertyDescriptor:tt,getOwnPropertyNames:et,getOwnPropertySymbols:rt});var ct=s((function(){k.f(1)}));a(a.S+a.F*ct,\"Object\",{getOwnPropertySymbols:function(t){return k.f(_(t))}}),N&&a(a.S+a.F*(!M||s((function(){var t=$();return\"[null]\"!=q([t])||\"{}\"!=q({a:t})||\"{}\"!=q(Object(t))}))),\"JSON\",{stringify:function(t){var e,r,n=[t],o=1;while(arguments.length>o)n.push(arguments[o++]);if(r=e=n[1],(y(e)||void 0!==t)&&!B(t))return v(e)||(e=function(t,e){if(\"function\"==typeof r&&(e=r.call(this,t,e)),!B(e))return e}),n[1]=e,q.apply(N,n)}}),$[I][G]||r(\"32e9\")($[I],G,$[I].valueOf),f($,\"Symbol\"),f(Math,\"Math\",!0),f(n.JSON,\"JSON\",!0)},9093:function(t,e,r){var n=r(\"ce10\"),o=r(\"e11e\").concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},\"96cf\":function(t,e,r){var n=function(t){\"use strict\";var e,r=Object.prototype,n=r.hasOwnProperty,o=\"function\"===typeof Symbol?Symbol:{},i=o.iterator||\"@@iterator\",a=o.asyncIterator||\"@@asyncIterator\",c=o.toStringTag||\"@@toStringTag\";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},\"\")}catch(C){u=function(t,e,r){return t[e]=r}}function s(t,e,r,n){var o=e&&e.prototype instanceof b?e:b,i=Object.create(o.prototype),a=new L(n||[]);return i._invoke=S(t,r,a),i}function l(t,e,r){try{return{type:\"normal\",arg:t.call(e,r)}}catch(C){return{type:\"throw\",arg:C}}}t.wrap=s;var f=\"suspendedStart\",h=\"suspendedYield\",d=\"executing\",p=\"completed\",m={};function b(){}function v(){}function g(){}var y={};y[i]=function(){return this};var _=Object.getPrototypeOf,w=_&&_(_(P([])));w&&w!==r&&n.call(w,i)&&(y=w);var x=g.prototype=b.prototype=Object.create(y);function F(t){[\"next\",\"throw\",\"return\"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){function r(o,i,a,c){var u=l(t[o],t,i);if(\"throw\"!==u.type){var s=u.arg,f=s.value;return f&&\"object\"===typeof f&&n.call(f,\"__await\")?e.resolve(f.__await).then((function(t){r(\"next\",t,a,c)}),(function(t){r(\"throw\",t,a,c)})):e.resolve(f).then((function(t){s.value=t,a(s)}),(function(t){return r(\"throw\",t,a,c)}))}c(u.arg)}var o;function i(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}this._invoke=i}function S(t,e,r){var n=f;return function(o,i){if(n===d)throw new Error(\"Generator is already running\");if(n===p){if(\"throw\"===o)throw i;return A()}r.method=o,r.arg=i;while(1){var a=r.delegate;if(a){var c=E(a,r);if(c){if(c===m)continue;return c}}if(\"next\"===r.method)r.sent=r._sent=r.arg;else if(\"throw\"===r.method){if(n===f)throw n=p,r.arg;r.dispatchException(r.arg)}else\"return\"===r.method&&r.abrupt(\"return\",r.arg);n=d;var u=l(t,e,r);if(\"normal\"===u.type){if(n=r.done?p:h,u.arg===m)continue;return{value:u.arg,done:r.done}}\"throw\"===u.type&&(n=p,r.method=\"throw\",r.arg=u.arg)}}}function E(t,r){var n=t.iterator[r.method];if(n===e){if(r.delegate=null,\"throw\"===r.method){if(t.iterator[\"return\"]&&(r.method=\"return\",r.arg=e,E(t,r),\"throw\"===r.method))return m;r.method=\"throw\",r.arg=new TypeError(\"The iterator does not provide a 'throw' method\")}return m}var o=l(n,t.iterator,r.arg);if(\"throw\"===o.type)return r.method=\"throw\",r.arg=o.arg,r.delegate=null,m;var i=o.arg;return i?i.done?(r[t.resultName]=i.value,r.next=t.nextLoc,\"return\"!==r.method&&(r.method=\"next\",r.arg=e),r.delegate=null,m):i:(r.method=\"throw\",r.arg=new TypeError(\"iterator result is not an object\"),r.delegate=null,m)}function k(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function j(t){var e=t.completion||{};e.type=\"normal\",delete e.arg,t.completion=e}function L(t){this.tryEntries=[{tryLoc:\"root\"}],t.forEach(k,this),this.reset(!0)}function P(t){if(t){var r=t[i];if(r)return r.call(t);if(\"function\"===typeof t.next)return t;if(!isNaN(t.length)){var o=-1,a=function r(){while(++o<t.length)if(n.call(t,o))return r.value=t[o],r.done=!1,r;return r.value=e,r.done=!0,r};return a.next=a}}return{next:A}}function A(){return{value:e,done:!0}}return v.prototype=x.constructor=g,g.constructor=v,v.displayName=u(g,c,\"GeneratorFunction\"),t.isGeneratorFunction=function(t){var e=\"function\"===typeof t&&t.constructor;return!!e&&(e===v||\"GeneratorFunction\"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,g):(t.__proto__=g,u(t,c,\"GeneratorFunction\")),t.prototype=Object.create(x),t},t.awrap=function(t){return{__await:t}},F(O.prototype),O.prototype[a]=function(){return this},t.AsyncIterator=O,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new O(s(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},F(x),u(x,c,\"Generator\"),x[i]=function(){return this},x.toString=function(){return\"[object Generator]\"},t.keys=function(t){var e=[];for(var r in t)e.push(r);return e.reverse(),function r(){while(e.length){var n=e.pop();if(n in t)return r.value=n,r.done=!1,r}return r.done=!0,r}},t.values=P,L.prototype={constructor:L,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method=\"next\",this.arg=e,this.tryEntries.forEach(j),!t)for(var r in this)\"t\"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0],e=t.completion;if(\"throw\"===e.type)throw e.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function o(n,o){return c.type=\"throw\",c.arg=t,r.next=n,o&&(r.method=\"next\",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],c=a.completion;if(\"root\"===a.tryLoc)return o(\"end\");if(a.tryLoc<=this.prev){var u=n.call(a,\"catchLoc\"),s=n.call(a,\"finallyLoc\");if(u&&s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!s)throw new Error(\"try statement without catch or finally\");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,\"finallyLoc\")&&this.prev<o.finallyLoc){var i=o;break}}i&&(\"break\"===t||\"continue\"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method=\"next\",this.next=i.finallyLoc,m):this.complete(a)},complete:function(t,e){if(\"throw\"===t.type)throw t.arg;return\"break\"===t.type||\"continue\"===t.type?this.next=t.arg:\"return\"===t.type?(this.rval=this.arg=t.arg,this.method=\"return\",this.next=\"end\"):\"normal\"===t.type&&e&&(this.next=e),m},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),j(r),m}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if(\"throw\"===n.type){var o=n.arg;j(r)}return o}}throw new Error(\"illegal catch attempt\")},delegateYield:function(t,r,n){return this.delegate={iterator:P(t),resultName:r,nextLoc:n},\"next\"===this.method&&(this.arg=e),m}},t}(t.exports);try{regeneratorRuntime=n}catch(o){Function(\"r\",\"regeneratorRuntime = r\")(n)}},ac4d:function(t,e,r){r(\"3a72\")(\"asyncIterator\")},c643:function(t,e,r){\"use strict\";r.r(e);var n=function(){var t=this,e=t.$createElement,r=t._self._c||e;return r(\"div\",{staticClass:\"install\"},[t.init?r(\"div\",{staticClass:\"i-con\"},[r(\"div\",{staticClass:\"c-top\"},[r(\"div\",{staticClass:\"t-tit\"},[t._v(\"配置数据库参数\")]),r(\"el-form\",{ref:\"ruleForm\",attrs:{model:t.ruleForm,rules:t.rules,\"label-width\":\"200px\"}},[r(\"el-form-item\",{attrs:{label:\"服务器地址\",prop:\"api_host\"}},[r(\"el-input\",{attrs:{placeholder:\"示例：200.64.35.80:8080\"},model:{value:t.ruleForm.api_host,callback:function(e){t.$set(t.ruleForm,\"api_host\",e)},expression:\"ruleForm.api_host\"}})],1),\"redis\"==t.ruleForm.cache_driver?[r(\"el-form-item\",{attrs:{label:\"redis缓存服务器地址\",prop:\"cache_host\"}},[r(\"el-input\",{attrs:{placeholder:\"示例：127.0.0.1:6739\"},model:{value:t.ruleForm.cache_host,callback:function(e){t.$set(t.ruleForm,\"cache_host\",e)},expression:\"ruleForm.cache_host\"}})],1)]:t._e(),r(\"el-form-item\",{attrs:{label:\"数据库名称\",prop:\"db_database\"}},[r(\"el-input\",{model:{value:t.ruleForm.db_database,callback:function(e){t.$set(t.ruleForm,\"db_database\",e)},expression:\"ruleForm.db_database\"}})],1),r(\"el-form-item\",{attrs:{label:\"数据库地址\",prop:\"db_host\"}},[r(\"el-input\",{attrs:{placeholder:\"示例：200.64.35.80:8080\"},model:{value:t.ruleForm.db_host,callback:function(e){t.$set(t.ruleForm,\"db_host\",e)},expression:\"ruleForm.db_host\"}})],1),r(\"el-form-item\",{attrs:{label:\"数据库用户名\",prop:\"db_username\"}},[r(\"el-input\",{model:{value:t.ruleForm.db_username,callback:function(e){t.$set(t.ruleForm,\"db_username\",e)},expression:\"ruleForm.db_username\"}})],1),r(\"el-form-item\",{attrs:{label:\"数据库密码\",prop:\"db_password\"}},[r(\"el-input\",{model:{value:t.ruleForm.db_password,callback:function(e){t.$set(t.ruleForm,\"db_password\",e)},expression:\"ruleForm.db_password\"}})],1),r(\"el-form-item\",{attrs:{label:\"数据库表前缀\",prop:\"db_prefix\"}},[r(\"el-input\",{model:{value:t.ruleForm.db_prefix,callback:function(e){t.$set(t.ruleForm,\"db_prefix\",e)},expression:\"ruleForm.db_prefix\"}})],1),r(\"el-form-item\",{attrs:{label:\"管理员账户\",prop:\"admin_username\"}},[r(\"el-input\",{attrs:{placeholder:\"\"},model:{value:t.ruleForm.admin_username,callback:function(e){t.$set(t.ruleForm,\"admin_username\",e)},expression:\"ruleForm.admin_username\"}})],1),r(\"el-form-item\",{attrs:{label:\"管理员密码\",prop:\"admin_password\"}},[r(\"el-input\",{attrs:{placeholder:\"\"},model:{value:t.ruleForm.admin_password,callback:function(e){t.$set(t.ruleForm,\"admin_password\",e)},expression:\"ruleForm.admin_password\"}})],1)],2)],1),r(\"div\",{staticClass:\"c-bottom\"},[r(\"span\",{staticClass:\"btn\",on:{click:function(e){return t.submit(\"ruleForm\")}}},[t._v(\"安装文档系统\")])])]):t._e(),t.loading?r(\"div\",{staticClass:\"i-con\"},[t._m(0)]):t._e()])},o=[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"c-top\"},[n(\"div\",{staticClass:\"t-tit\"},[t._v(\"正在安装文档系统\")]),n(\"div\",{staticClass:\"loading\"},[n(\"img\",{attrs:{src:r(\"efed\")}}),n(\"div\",{staticClass:\"text\"},[t._v(\"正在安装\"),n(\"i\",{staticClass:\"el-icon-loading\"})])])])}];r(\"ac6a\"),r(\"ac4d\"),r(\"8a81\"),r(\"5df3\"),r(\"1c4c\"),r(\"7f7f\"),r(\"6b54\"),r(\"96cf\");function i(t,e,r,n,o,i,a){try{var c=t[i](a),u=c.value}catch(s){return void r(s)}c.done?e(u):Promise.resolve(u).then(n,o)}function a(t){return function(){var e=this,r=arguments;return new Promise((function(n,o){var a=t.apply(e,r);function c(t){i(a,n,o,c,u,\"next\",t)}function u(t){i(a,n,o,c,u,\"throw\",t)}c(void 0)}))}}var c=r(\"4ec3\"),u=r(\"56d7\");function s(t,e){var r;if(\"undefined\"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(r=l(t))||e&&t&&\"number\"===typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:o}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var i,a=!0,c=!1;return{s:function(){r=t[Symbol.iterator]()},n:function(){var t=r.next();return a=t.done,t},e:function(t){c=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(c)throw i}}}}function l(t,e){if(t){if(\"string\"===typeof t)return f(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return\"Object\"===r&&t.constructor&&(r=t.constructor.name),\"Map\"===r||\"Set\"===r?Array.from(t):\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?f(t,e):void 0}}function f(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var h={name:\"installTwo\",data:function(){var t=function(t,e,r){var n=e.lastIndexOf(\":\"),o=e.lastIndexOf(\"http\");n=!(n<0)&&(4!=n&&5!=n),\"\"===e||!n||o<0?r(new Error(\"请输入正确的服务器地址与端口号\")):r()};return{restart:\"sh restart.sh\",init:!0,loading:!1,ruleForm2:{api_host:\"\",cache_driver:\"redis\",cache_host:\"127.0.0.1:6379\",db_host:\"127.0.0.1:3306\",db_username:\"\",db_password:\"\",db_database:\"document\",db_prefix:\"ims_\",admin_username:\"\",admin_password:\"\",option:\"check\"},ruleForm:{api_host:\"\",cache_driver:\"redis\",cache_host:\"127.0.0.1:6379\",db_host:\"127.0.0.1:3306\",db_username:\"\",db_password:\"\",db_database:\"document\",db_prefix:\"ims_\",admin_username:\"\",admin_password:\"\",option:\"check\"},rules:{api_host:[{validator:t,trigger:\"blur\"}],server_port:[{required:!0,message:\"服务器端口号必填\",trigger:\"blur\"}],cache_driver:[{required:!0,message:\"请选择活动区域\",trigger:\"change\"}],cache_host:[{required:!0,message:\"缓存服务器地址必填\",trigger:\"blur\"}],cache_port:[{required:!0,message:\"缓存服务器端口号必填\",trigger:\"blur\"}],db_host:[{required:!0,message:\"数据库地址必填\",trigger:\"blur\"}],db_port:[{required:!0,message:\"数据库端口必填\",trigger:\"blur\"}],db_username:[{required:!0,message:\"数据库用户名必填\",trigger:\"blur\"}],db_password:[{required:!0,message:\"数据库密码必填\",trigger:\"blur\"}],db_database:[{required:!0,message:\"数据库名称必填\",trigger:\"blur\"}],db_prefix:[{required:!0,message:\"数据库表前缀必填\",trigger:\"blur\"}],admin_username:[{required:!0,message:\"管理员账户必填\",trigger:\"blur\"}],admin_password:[{required:!0,message:\"管理员密码必填\",trigger:\"blur\"}]}}},created:function(){this.ruleForm.api_host=location.origin+\":99\"},beforeRouteEnter:function(t,e,r){Object(c[\"y\"])().then((function(t){if(200==t.code){var e,n=s(t.data);try{for(n.s();!(e=n.n()).done;){var o=e.value;1!=o.id||o.enable?1==o.id&&1==o.enable?u[\"default\"].$router.push({name:\"installOne\"}):1==o.id&&2==o.enable&&u[\"default\"].$router.push({name:\"adminLoginPage\"}):r()}}catch(i){n.e(i)}finally{n.f()}}})).catch((function(t){}))},methods:{onCopy:function(){this.$message.success(\"复制成功\")},submit:function(t){var e=this,r=this;this.$refs[t].validate(function(){var t=a(regeneratorRuntime.mark((function t(n){var o,i;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:if(!n){t.next=31;break}return t.next=3,Object(c[\"s\"])(e.ruleForm);case 3:if(o=t.sent,200!==o.code){t.next=29;break}return t.prev=5,r.init=!1,r.loading=!0,e.ruleForm.option=\"send\",t.prev=9,t.next=12,Object(c[\"s\"])(e.ruleForm);case 12:i=t.sent,200==i.code&&(r.loading=!1,r.init=!1,localStorage.db_database=\"\",localStorage.db_database=e.ruleForm.db_database,setTimeout((function(){r.$router.push({name:\"installTree\"})}),500)),t.next=22;break;case 16:t.prev=16,t.t0=t[\"catch\"](9),r.init=!0,r.loading=!1,e.ruleForm.option=\"check\";case 22:t.next=29;break;case 24:t.prev=24,t.t1=t[\"catch\"](5),r.init=!0,r.loading=!1;case 29:t.next=33;break;case 31:return t.abrupt(\"return\",!1);case 33:case\"end\":return t.stop()}}),t,null,[[5,24],[9,16]])})));return function(e){return t.apply(this,arguments)}}())},goLogin:function(){var t=this;Object(c[\"t\"])().then((function(e){if(200==e.code){var r=localStorage.db_database;r==e.data.db_database&&e.data.is_install?t.$router.push({name:\"adminLoginPage\"}):t.$message.error({message:\"请先重启服务后进入管理中心\"})}})).catch((function(t){}))}}},d=h,p=(r(\"e426\"),r(\"2877\")),m=Object(p[\"a\"])(d,n,o,!1,null,\"39e9c0e4\",null);e[\"default\"]=m.exports},d4c0:function(t,e,r){var n=r(\"0d58\"),o=r(\"2621\"),i=r(\"52a7\");t.exports=function(t){var e=n(t),r=o.f;if(r){var a,c=r(t),u=i.f,s=0;while(c.length>s)u.call(t,a=c[s++])&&e.push(a)}return e}},e426:function(t,e,r){\"use strict\";r(\"6a44\")},efed:function(t,e,r){t.exports=r.p+\"img/img-1.94406c67.png\"},f1ae:function(t,e,r){\"use strict\";var n=r(\"86cc\"),o=r(\"4630\");t.exports=function(t,e,r){e in t?n.f(t,e,o(0,r)):t[e]=r}}}]);"
  },
  {
    "path": "public/js/chunk-2d0ba2e6.ba43e34b.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-2d0ba2e6\"],{\"35b0\":function(t,e,n){\"use strict\";n.r(e);var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"admin-login\"},[n(\"div\",{staticClass:\"login-box\"},[n(\"h2\",[t._v(\"文档管理系统\")]),n(\"el-tabs\",{model:{value:t.active,callback:function(e){t.active=e},expression:\"active\"}},[n(\"el-tab-pane\",{attrs:{label:\"账号登录\",name:\"first\"}},[n(\"div\",{staticClass:\"login-form\"},[n(\"el-input\",{attrs:{\"prefix-icon\":\"el-icon-user-solid\",placeholder:\"用户名/手机号\"},model:{value:t.formData.username,callback:function(e){t.$set(t.formData,\"username\",e)},expression:\"formData.username\"}}),n(\"el-input\",{attrs:{type:\"password\",\"prefix-icon\":\"el-icon-s-goods\",placeholder:\"输入密码\"},model:{value:t.formData.userpass,callback:function(e){t.$set(t.formData,\"userpass\",e)},expression:\"formData.userpass\"}}),n(\"el-input\",{staticClass:\"code-input\",attrs:{\"prefix-icon\":\"el-icon-s-goods\",placeholder:\"输入图形验证码\"},nativeOn:{keyup:function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")?null:t.login(e)}},model:{value:t.formData.code,callback:function(e){t.$set(t.formData,\"code\",e)},expression:\"formData.code\"}},[n(\"img\",{attrs:{slot:\"append\",src:t.code,alt:\"\"},on:{click:t.getCode},slot:\"append\"})])],1),t.thirdPartyList.length?n(\"div\",{staticClass:\"login-thirdParty\"},[n(\"span\",{staticClass:\"title\"},[t._v(\"第三方账号登录\")]),n(\"div\",{staticClass:\"icon-list\"},t._l(t.thirdPartyList,(function(e){return n(\"img\",{key:e.name,staticClass:\"icon-block\",attrs:{src:e.logo,title:e.name},on:{click:function(n){return t.thirdPartyIconClick(e.redirect_url)}}})})),0)]):t._e(),n(\"el-button\",{staticClass:\"login-btn\",on:{click:t.login}},[t._v(\"登录\")])],1)],1)],1),t._m(0)])},o=[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"footer\"},[t._v(\"\\n    Powered by \"),n(\"a\",{attrs:{href:\"https://www.w7.cc\"}},[t._v(\"微擎云计算©www.w7.cc\")])])}],i=n(\"1c1e\"),s=n(\"4ec3\"),c={name:\"adminLogin\",data:function(){return{autofocus:!1,active:\"first\",code:\"\",formData:{username:\"\",userpass:\"\",code:\"\"},thirdPartyList:[]}},beforeRouteEnter:function(t,e,n){var a=t.query.code,o=t.query.redirect_url,c=t.query.app_id;a?i[\"a\"].post(\"/common/auth/third-party-login\",{code:a,app_id:c}).then((function(t){t&&t.data.is_need_bind?n(\"/bind\"):t&&t.data.has_login?n((function(e){1==t.data.has_login?e.$confirm(\"当前登录账号非微擎账户绑定账号，是否继续登录?\",\"提示\",{confirmButtonText:\"确定\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){Object(s[\"b\"])({change_token:t.data.change_token}).then((function(){e.$message({type:\"success\",message:\"切换账户成功!\"}),e.$router.push({name:\"admin\"})}))})).catch((function(){e.$message({type:\"info\",message:\"已取消\"}),e.$router.push({name:\"admin\"})})):2==t.data.has_login?e.$confirm(\"是否绑定当前微擎账户于该登录账户?\",\"提示\",{confirmButtonText:\"确定\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){Object(s[\"a\"])({bind_token:t.data.bind_token}).then((function(){e.$message({type:\"success\",message:\"绑定账户成功!\"}),e.$router.push({name:\"admin\"})}))})).catch((function(){e.$message({type:\"info\",message:\"已取消\"}),e.$router.push({name:\"admin\"})})):3==t.data.has_login&&e.$confirm(\"当前登录账号非微擎账户绑定账号，是否继续登录?\",\"提示\",{confirmButtonText:\"确定\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){Object(s[\"A\"])({source_token:t.data.source_token}).then((function(){e.$router.push({name:\"adminBind\"})}))})).catch((function(){e.$message({type:\"info\",message:\"已取消\"}),e.$router.push({name:\"admin\"})}))})):t&&\"success\"==t.data?n(\"/\"):o?window.open(o,\"_self\"):n(\"/\")})).catch((function(){})):i[\"a\"].post(\"/common/auth/default-login-url\").then((function(t){t.data?window.open(t.data,\"_self\"):n()})).catch((function(t){}))},created:function(){this.getCode(),this.getThirdParty()},methods:{showFind:function(){this.$message({message:\"请联系管理员修改或使用密码找回工具修改\"})},getCode:function(){var t=this;this.$post(\"/common/verifycode/image\").then((function(e){e.img&&(t.code=e.img)}))},login:function(){var t=this;for(var e in this.formData)if(!this.formData[e])return this.$message(\"请填写完整表单\"),!1;this.$post(\"/common/auth/login\",this.formData).then((function(){var e=t.$message(\"登录成功\");setTimeout((function(){e.close(),t.$route.query&&t.$route.query.redirect_url?window.open(t.$route.query.redirect_url,\"_self\"):t.$router.push(\"/\")}),500)})).catch((function(){t.formData.code=\"\",document.getElementsByClassName(\"el-input__inner\")[2].focus(),t.getCode()}))},getThirdParty:function(){var t=this;this.$post(\"/common/auth/method\",{redirect_url:this.$route.query.redirect_url}).then((function(e){t.thirdPartyList=e||[]}))},thirdPartyIconClick:function(t){window.open(t,\"_self\")}}},r=c,u=n(\"2877\"),l=Object(u[\"a\"])(r,a,o,!1,null,null,null);e[\"default\"]=l.exports}}]);"
  },
  {
    "path": "public/js/chunk-2d22276a.90e5dc78.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-2d22276a\"],{cf5f:function(t,e,a){\"use strict\";a.r(e);var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a(\"div\",{staticClass:\"we7-document-star\"},[a(\"div\",{staticClass:\"page-head\"},[t._v(\"\\n    我的星标\\n  \")]),a(\"div\",{staticClass:\"search-box\"},[a(\"div\",{staticClass:\"demo-input-suffix\"},[a(\"el-input\",{attrs:{placeholder:\"请输入文档名称\",clearable:\"\"},nativeOn:{keyup:function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")?null:t.getList(e)}},model:{value:t.keyword,callback:function(e){t.keyword=e},expression:\"keyword\"}},[a(\"i\",{staticClass:\"el-input__icon el-icon-search\",attrs:{slot:\"suffix\"},on:{click:t.getList},slot:\"suffix\"})])],1)]),a(\"el-table\",{ref:\"multipleTable\",staticClass:\"w7-table\",attrs:{data:t.docList,\"header-cell-style\":{background:\"#f7f9fc\",color:\"#606266\"},\"empty-text\":\"没有与搜索条件匹配的项\"}},[a(\"el-table-column\",{attrs:{label:\"文档名称\"},scopedSlots:t._u([{key:\"default\",fn:function(e){return a(\"div\",{staticClass:\"doc-icons\"},[a(\"i\",{staticClass:\"wi wi-document color-blue\"}),a(\"span\",{staticClass:\"name\",on:{click:function(a){return t.readDoc(e.row.document_id)}}},[t._v(t._s(e.row.name))]),a(\"i\",{staticClass:\"wi wi-star color-yellow\"}),e.row.is_public?t._e():a(\"div\",{staticClass:\"we7-label\"},[a(\"i\",{staticClass:\"wi wi-lock\"},[a(\"span\",{staticClass:\"font\"},[t._v(\"私有\")])])])])}}])}),a(\"el-table-column\",{attrs:{label:\"来自\",prop:\"author.name\"}}),a(\"el-table-column\",{attrs:{label:\"操作\",align:\"right\"},scopedSlots:t._u([{key:\"default\",fn:function(e){return a(\"div\",{staticClass:\"oper\"},[a(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"取消星标\",placement:\"bottom\"}},[a(\"i\",{staticClass:\"wi wi-star checked\",on:{click:function(a){return t.cancel(e.row)}}})])],1)}}])})],1),a(\"div\",{staticClass:\"btns\"},[a(\"el-pagination\",{attrs:{background:\"\",layout:\"prev, pager, next, total\",\"prev-text\":\"上一页\",\"next-text\":\"下一页\",\"page-size\":15,\"current-page\":t.currentPage,\"page-count\":t.pageCount,total:t.total,\"hide-on-single-page\":!0},on:{\"current-change\":t.getList,\"update:currentPage\":function(e){t.currentPage=e},\"update:current-page\":function(e){t.currentPage=e}}})],1)],1)},s=[],i={data:function(){return{keyword:\"\",loading:!1,docList:[],currentPage:1,pageCount:0,total:0}},created:function(){this.getList()},methods:{getList:function(){var t=this;this.loading=!0,this.$post(\"/admin/star/all\",{page:this.currentPage,name:this.keyword}).then((function(e){t.docList=e.data.data,t.pageCount=e.data.page_count,t.total=e.data.total,t.loading=!1}))},cancel:function(t){var e=this;this.$post(\"/admin/star/delete\",{document_id:t.document_id,id:t.id}).then((function(){e.getList(),e.$message(\"取消成功！\")}))},readDoc:function(t){var e=this.$router.resolve({path:\"/chapter/\"+t});window.open(e.href,\"_blank\")}}},o=i,c=a(\"2877\"),l=Object(c[\"a\"])(o,n,s,!1,null,null,null);e[\"default\"]=l.exports}}]);"
  },
  {
    "path": "public/js/chunk-3337dd8f.e12552ed.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-3337dd8f\"],{\"091d\":function(t,e,a){\"use strict\";a.r(e);var r=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a(\"div\",{staticClass:\"setting-thirdParty\"},[a(\"div\",{staticClass:\"page-head\"},[t._v(t._s(t.formData.setting.name)+\"授权设置\")]),a(\"el-form\",{ref:\"thirdPartyForm\",staticClass:\"we7-panel-form\",class:{edit:t.editStatus},attrs:{\"status-icon\":\"\",\"label-position\":\"left\",\"label-width\":\"290px\",model:t.formData,rules:t.rules}},[a(\"div\",{staticClass:\"we7-panel-form__header\"},[t._v(\"授权配置\")]),a(\"div\",{staticClass:\"we7-panel-form__body edit\"},[a(\"el-form-item\",{attrs:{label:t.formData.setting.name+\"授权登录\"}},[a(\"el-switch\",{attrs:{\"active-value\":1,\"inactive-value\":0},on:{change:t.change},model:{value:t.formData.setting.enable,callback:function(e){t.$set(t.formData.setting,\"enable\",e)},expression:\"formData.setting.enable\"}})],1)],1),a(\"div\",{staticClass:\"we7-panel-form__header\"},[t._v(\"登录配置\")]),a(\"div\",{staticClass:\"we7-panel-form__body\"},[a(\"el-form-item\",{attrs:{label:\"unionid\"}},[a(\"span\",[t._v(t._s(t.$route.query.id))])]),a(\"el-form-item\",{attrs:{label:\"第三方名称\",prop:\"setting.name\"}},[t.editStatus&&!t.formData.is_default?a(\"el-input\",{model:{value:t.formData.setting.name,callback:function(e){t.$set(t.formData.setting,\"name\",e)},expression:\"formData.setting.name\"}}):a(\"span\",[t._v(t._s(t.formData.setting.name))])],1),t.formData.is_default?t._e():a(\"el-form-item\",{attrs:{label:\"LOGO\",prop:\"setting.logo\"}},[t.editStatus?a(\"el-upload\",{staticClass:\"avatar-uploader\",attrs:{action:\"/admin/upload/image\",\"show-file-list\":!1,\"on-success\":t.handleAvatarSuccess,\"before-upload\":t.beforeAvatarUpload}},[t.formData.setting.logo?a(\"img\",{staticClass:\"avatar\",attrs:{src:t.formData.setting.logo}}):a(\"i\",{staticClass:\"el-icon-plus avatar-uploader-icon\"})]):a(\"img\",{staticClass:\"avatar\",attrs:{src:t.formData.setting.logo}})],1),a(\"el-form-item\",{attrs:{label:\"APPID\",prop:\"setting.app_id\"}},[t.editStatus?a(\"el-input\",{model:{value:t.formData.setting.app_id,callback:function(e){t.$set(t.formData.setting,\"app_id\",e)},expression:\"formData.setting.app_id\"}}):a(\"span\",[t._v(t._s(t.formData.setting.app_id))])],1),a(\"el-form-item\",{attrs:{label:\"SERCETkey\",prop:\"setting.secret_key\"}},[t.editStatus?a(\"el-input\",{model:{value:t.formData.setting.secret_key,callback:function(e){t.$set(t.formData.setting,\"secret_key\",e)},expression:\"formData.setting.secret_key\"}}):a(\"span\",[t._v(t._s(t.formData.setting.secret_key))])],1),a(\"el-form-item\",{attrs:{label:\"ACCESSTOKEN  API地址\",prop:\"setting.access_token_url\"}},[t.editStatus?a(\"el-input\",{model:{value:t.formData.setting.access_token_url,callback:function(e){t.$set(t.formData.setting,\"access_token_url\",e)},expression:\"formData.setting.access_token_url\"}}):a(\"span\",[t._v(t._s(t.formData.setting.access_token_url))])],1),a(\"el-form-item\",{attrs:{label:\"获取用户信息  API地址\",prop:\"setting.user_info_url\"}},[t.editStatus?a(\"el-input\",{model:{value:t.formData.setting.user_info_url,callback:function(e){t.$set(t.formData.setting,\"user_info_url\",e)},expression:\"formData.setting.user_info_url\"}}):a(\"span\",[t._v(t._s(t.formData.setting.user_info_url))])],1),\"QQ\"==t.formData.setting.name?a(\"el-form-item\",{attrs:{label:\"回调地址\"}},[a(\"span\",[t._v(t._s(t.callbackUrl))])]):t._e()],1),t.formData.is_default?t._e():[a(\"div\",{staticClass:\"we7-panel-form__header\"},[a(\"span\",[t._v(\"转换功能\")])]),a(\"div\",{staticClass:\"we7-panel-form__body\"},[a(\"el-form-item\",{attrs:{label:\"uid\"}},[t.editStatus?a(\"el-input\",{model:{value:t.formData.convert.uid,callback:function(e){t.$set(t.formData.convert,\"uid\",e)},expression:\"formData.convert.uid\"}}):t._e(),t.editStatus?a(\"div\",{staticClass:\"we7-help-block\"},[t._v(\"\\n            请填写第三方系统用户id的字段\\n          \")]):a(\"span\",[t._v(t._s(t.formData.convert.uid))])],1),a(\"el-form-item\",{attrs:{label:\"username\"}},[t.editStatus?a(\"el-input\",{model:{value:t.formData.convert.username,callback:function(e){t.$set(t.formData.convert,\"username\",e)},expression:\"formData.convert.username\"}}):t._e(),t.editStatus?a(\"div\",{staticClass:\"we7-help-block\"},[t._v(\"\\n            请填写第三方系统用户名的字段\\n          \")]):a(\"span\",[t._v(t._s(t.formData.convert.username))])],1)],1)]],2),t.editStatus?t._e():a(\"el-button\",{attrs:{type:\"primary\"},on:{click:function(e){t.editStatus=!0}}},[t._v(\"编辑\")]),t.editStatus?[a(\"el-button\",{attrs:{type:\"primary\"},on:{click:t.save}},[t._v(\"保存\")]),a(\"el-button\",{on:{click:function(e){t.editStatus=!1}}},[t._v(\"取消\")])]:t._e()],2)},s=[],i=(a(\"8e6e\"),a(\"ac6a\"),a(\"456d\"),a(\"fc11\"));a(\"7f7f\");function n(t,e){var a=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),a.push.apply(a,r)}return a}function o(t){for(var e=1;e<arguments.length;e++){var a=null!=arguments[e]?arguments[e]:{};e%2?n(Object(a),!0).forEach((function(e){Object(i[\"a\"])(t,e,a[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(a)):n(Object(a)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(a,e))}))}return t}var l={data:function(){return{editStatus:!1,formData:{is_default:!1,setting:{name:\"\",enable:\"\",logo:\"\",app_id:\"\",secret_key:\"\",access_token_url:\"\",user_info_url:\"\"},convert:{uid:\"\",username:\"\"}},rules:{\"setting.name\":[{required:!0,message:\"请填写第三方名称\",trigger:\"blur\"}],\"setting.logo\":[{required:!0,message:\"请上传LOGO\",trigger:\"blur\"}],\"setting.app_id\":[{required:!0,message:\"请填写APPID\",trigger:\"blur\"}],\"setting.secret_key\":[{required:!0,message:\"请填写SERCETkey\",trigger:\"blur\"}],\"setting.access_token_url\":[{required:!0,message:\"请填写ACCESSTOKEN\",trigger:\"blur\"}],\"setting.user_info_url\":[{required:!0,message:\"请填写获取用户信息\",trigger:\"blur\"}]},callbackUrl:\"\"}},watch:{$route:{handler:function(){this.init()},deep:!0}},created:function(){this.init(),this.callbackUrl=\"http://\"+window.location.host+\"/common/auth/third-party-login\"},methods:{init:function(){var t=this;this.$post(\"/admin/third-party-login/detail\",{id:this.$route.query.id}).then((function(e){t.formData.is_default=e.data.is_default,t.formData.setting={name:e.data.setting.name||\"\",enable:e.data.setting.enable||\"\",logo:e.data.setting.logo||\"\",app_id:e.data.setting.app_id||\"\",secret_key:e.data.setting.secret_key||\"\",access_token_url:e.data.setting.access_token_url||\"\",user_info_url:e.data.setting.user_info_url||\"\"},t.formData.convert=e.data.convert||{}}))},handleAvatarSuccess:function(t){this.formData.setting.logo=t.data.url},beforeAvatarUpload:function(t){var e=\"image/jpg\"===t.type||\"image/jpeg\"===t.type||\"image/png\"===t.type,a=t.size/1024/1024<2;return e||this.$message.error(\"上传LOGO只支持jpg、jpeg、png格式!\"),a||this.$message.error(\"上传LOGO大小不能超过 2MB!\"),e&&a},change:function(){var t=this,e=!1;for(var a in this.formData.setting)if(!this.formData.setting[a]&&\"enable\"!=a){e=!0;break}if(e)return this.$message(\"请填写必填项！\"),void(this.formData.setting.enable=1==this.formData.setting.enable?0:1);var r={id:this.$route.query.id,setting:o({},this.formData.setting)};this.formData.is_default||(r[\"convert\"]=o({},this.formData.convert)),this.$post(\"/admin/third-party-login/update\",r).then((function(){t.$message(\"修改成功！\")}))},save:function(){var t=this;this.$refs.thirdPartyForm.validate((function(e){if(e){var a={id:t.$route.query.id,setting:o({},t.formData.setting)};t.formData.is_default||(a[\"convert\"]=o({},t.formData.convert)),t.$post(\"/admin/third-party-login/update\",a).then((function(){t.$message(\"修改成功！\"),t.editStatus=!1,t.$emit(\"refreshMenu\",!0)}))}else t.editStatus=!0}))}}},c=l,u=(a(\"21f8\"),a(\"2877\")),f=Object(u[\"a\"])(c,r,s,!1,null,null,null);e[\"default\"]=f.exports},\"11e9\":function(t,e,a){var r=a(\"52a7\"),s=a(\"4630\"),i=a(\"6821\"),n=a(\"6a99\"),o=a(\"69a8\"),l=a(\"c69a\"),c=Object.getOwnPropertyDescriptor;e.f=a(\"9e1e\")?c:function(t,e){if(t=i(t),e=n(e,!0),l)try{return c(t,e)}catch(a){}if(o(t,e))return s(!r.f.call(t,e),t[e])}},\"21f8\":function(t,e,a){\"use strict\";a(\"e850\")},\"8e6e\":function(t,e,a){var r=a(\"5ca1\"),s=a(\"990b\"),i=a(\"6821\"),n=a(\"11e9\"),o=a(\"f1ae\");r(r.S,\"Object\",{getOwnPropertyDescriptors:function(t){var e,a,r=i(t),l=n.f,c=s(r),u={},f=0;while(c.length>f)a=l(r,e=c[f++]),void 0!==a&&o(u,e,a);return u}})},9093:function(t,e,a){var r=a(\"ce10\"),s=a(\"e11e\").concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return r(t,s)}},\"990b\":function(t,e,a){var r=a(\"9093\"),s=a(\"2621\"),i=a(\"cb7c\"),n=a(\"7726\").Reflect;t.exports=n&&n.ownKeys||function(t){var e=r.f(i(t)),a=s.f;return a?e.concat(a(t)):e}},e850:function(t,e,a){},f1ae:function(t,e,a){\"use strict\";var r=a(\"86cc\"),s=a(\"4630\");t.exports=function(t,e,a){e in t?r.f(t,e,s(0,a)):t[e]=a}},fc11:function(t,e,a){\"use strict\";function r(t,e,a){return e in t?Object.defineProperty(t,e,{value:a,enumerable:!0,configurable:!0,writable:!0}):t[e]=a,t}a.d(e,\"a\",(function(){return r}))}}]);"
  },
  {
    "path": "public/js/chunk-3bcf66f7.da2788c2.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-3bcf66f7\"],{\"1ce0\":function(a,t,e){},\"3d4e\":function(a,t,e){\"use strict\";e.r(t);var s=function(){var a=this,t=a.$createElement,e=a._self._c||t;return e(\"div\",{staticClass:\"layout-container container\"},[e(\"div\",{staticClass:\"we7-topLine\"}),a._m(0),e(\"el-form\",{ref:\"form\",staticClass:\"we7-panel-form\",class:{edit:a.editStatus},attrs:{model:a.formData,\"label-position\":\"left\",\"label-width\":\"120px\"}},[e(\"div\",{staticClass:\"we7-panel-form__header\"},[a._v(\"账号设置\")]),e(\"div\",{staticClass:\"we7-panel-form__body\"},[e(\"el-form-item\",{attrs:{label:\"头像\"}},[e(\"el-avatar\",{attrs:{size:\"large\",src:a.formData.avatar}})],1),e(\"el-form-item\",{attrs:{label:\"公司职称\"}},[e(\"span\",[a._v(a._s(a.formData.company))])]),e(\"el-form-item\",{attrs:{label:\"个人简介\"}},[e(\"span\",[a._v(a._s(a.formData.resume))])]),e(\"el-form-item\",{attrs:{label:\"技能专长\"}},[e(\"span\",[a._v(a._s(a.formData.skill))])]),e(\"el-form-item\",{attrs:{label:\"所在城市\"}},[e(\"span\",[a._v(a._s(a.formData.company))])])],1)])],1)},r=[function(){var a=this,t=a.$createElement,e=a._self._c||t;return e(\"div\",{staticClass:\"baseInfo\"},[e(\"span\",[a._v(\"基础信息\")])])}],i=e(\"4ec3\"),n={name:\"personDetail\",data:function(){return{editStatus:!1,user_id:\"\",formData:{avatar:\"https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png\",company:\"\",resume:\"\",skill:\"\",address:\"\"},firstPage:!0}},created:function(){this.$route.params.id&&(this.user_id=this.$route.params.id,this.firstPage=!1),this.init()},methods:{init:function(){var a=this,t={user_id:this.user_id};Object(i[\"p\"])(t).then((function(t){var e=t.data,s=e.avatar,r=e.company,i=e.resume,n=e.skill,o=e.address;\"\"==s||null==s||void 0==s?(a.formData.company=r,a.formData.resume=i,a.formData.skill=n,a.formData.address=o):(a.formData.company=r,a.formData.resume=i,a.formData.skill=n,a.formData.address=o,a.formData.avatar=s)})).catch((function(){}))}}},o=n,l=(e(\"53b1\"),e(\"2877\")),c=Object(l[\"a\"])(o,s,r,!1,null,\"65f326c0\",null);t[\"default\"]=c.exports},\"53b1\":function(a,t,e){\"use strict\";e(\"1ce0\")}}]);"
  },
  {
    "path": "public/js/chunk-416ef35e.e3de812c.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-416ef35e\"],{\"11e9\":function(t,e,r){var a=r(\"52a7\"),i=r(\"4630\"),s=r(\"6821\"),o=r(\"6a99\"),n=r(\"69a8\"),l=r(\"c69a\"),c=Object.getOwnPropertyDescriptor;e.f=r(\"9e1e\")?c:function(t,e){if(t=s(t),e=o(e,!0),l)try{return c(t,e)}catch(r){}if(n(t,e))return i(!a.f.call(t,e),t[e])}},\"58e0\":function(t,e,r){\"use strict\";r(\"dc9d\")},\"5dbc\":function(t,e,r){var a=r(\"d3f4\"),i=r(\"8b97\").set;t.exports=function(t,e,r){var s,o=e.constructor;return o!==r&&\"function\"==typeof o&&(s=o.prototype)!==r.prototype&&a(s)&&i&&i(t,s),t}},\"6ccf\":function(t,e,r){\"use strict\";r(\"76e5\")},\"76e5\":function(t,e,r){},\"8b97\":function(t,e,r){var a=r(\"d3f4\"),i=r(\"cb7c\"),s=function(t,e){if(i(t),!a(e)&&null!==e)throw TypeError(e+\": can't set as prototype!\")};t.exports={set:Object.setPrototypeOf||(\"__proto__\"in{}?function(t,e,a){try{a=r(\"9b43\")(Function.call,r(\"11e9\").f(Object.prototype,\"__proto__\").set,2),a(t,[]),e=!(t instanceof Array)}catch(i){e=!0}return function(t,r){return s(t,r),e?t.__proto__=r:a(t,r),t}}({},!1):void 0),check:s}},9093:function(t,e,r){var a=r(\"ce10\"),i=r(\"e11e\").concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return a(t,i)}},\"99a4\":function(t,e,r){\"use strict\";r.r(e);var a=function(){var t=this,e=t.$createElement,r=t._self._c||e;return r(\"div\",{staticClass:\"container\"},[r(\"div\",{staticClass:\"page-head\"},[r(\"router-link\",{attrs:{to:\"/admin/user\"}},[r(\"i\",{staticClass:\"el-icon-arrow-left\"}),r(\"span\",{staticStyle:{color:\"#4da4fb\"}},[t._v(\"用户管理\")])]),t._v(\"/\"),r(\"span\",[t._v(t._s(t.$route.params.id?\"编辑用户\":\"添加用户\"))])],1),t.$route.params.id?t._e():r(\"div\",{staticClass:\"title\"},[r(\"span\",{staticClass:\"active\"},[t._v(\"1.添加成员\")]),r(\"div\",{staticClass:\"title-line\"}),r(\"span\",{class:{active:!t.firstPage}},[t._v(\"2.设置权限\")])]),r(\"div\",{staticClass:\"content\"},[t.firstPage?[r(\"el-form\",{ref:\"ruleForm\",staticStyle:{width:\"420px\"},attrs:{model:t.formData,rules:t.rules,\"label-width\":\"80px\",\"label-position\":\"left\"}},[r(\"el-form-item\",{attrs:{label:\"用户账号\",prop:\"username\"}},[r(\"el-input\",{model:{value:t.formData.username,callback:function(e){t.$set(t.formData,\"username\",e)},expression:\"formData.username\"}})],1),r(\"el-form-item\",{attrs:{label:\"密码\",prop:\"userpass\"}},[r(\"el-input\",{attrs:{type:\"password\"},model:{value:t.formData.userpass,callback:function(e){t.$set(t.formData,\"userpass\",e)},expression:\"formData.userpass\"}})],1),r(\"el-form-item\",{attrs:{label:\"确认密码\",prop:\"confirm_userpass\"}},[r(\"el-input\",{attrs:{type:\"password\"},model:{value:t.formData.confirm_userpass,callback:function(e){t.$set(t.formData,\"confirm_userpass\",e)},expression:\"formData.confirm_userpass\"}})],1),r(\"el-form-item\",[r(\"el-button\",{attrs:{type:\"primary\"},on:{click:t.onSubmit}},[t._v(\"下一步\")])],1)],1)]:[r(\"permission\",{attrs:{user_id:t.user_id}})]],2)])},i=[],s=function(){var t=this,e=t.$createElement,r=t._self._c||e;return r(\"el-container\",{staticClass:\"user-permission\"},[r(\"el-aside\",{attrs:{width:\"150px\"}},[t._v(\"项目权限\")]),r(\"el-main\",[r(\"div\",{staticClass:\"select-power search-box\"},[r(\"el-select\",{attrs:{placeholder:\"请选择\"},on:{change:t.search},model:{value:t.is_public,callback:function(e){t.is_public=e},expression:\"is_public\"}},[r(\"el-option\",{attrs:{label:\"全部项目\",value:\"0\"}}),r(\"el-option\",{attrs:{label:\"公有项目\",value:\"1\"}}),r(\"el-option\",{attrs:{label:\"私有项目\",value:\"2\"}})],1),r(\"div\",{staticClass:\"demo-input-suffix\"},[r(\"el-input\",{attrs:{placeholder:\"请输入项目名称\",clearable:\"\"},nativeOn:{keyup:function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")?null:t.search(e)}},model:{value:t.keyword,callback:function(e){t.keyword=e},expression:\"keyword\"}},[r(\"i\",{staticClass:\"el-input__icon el-icon-search\",attrs:{slot:\"suffix\"},on:{click:t.search},slot:\"suffix\"})])],1),t._e()],1),r(\"el-table\",{ref:\"multipleTable\",staticClass:\"w7-table\",attrs:{data:t.docList,\"empty-text\":\"\",\"row-key\":\"id\",\"header-cell-style\":{background:\"#f7f9fc\",color:\"#606266\"}}},[t._e(),r(\"el-table-column\",{attrs:{label:\"项目名称\"},scopedSlots:t._u([{key:\"default\",fn:function(e){return[r(\"i\",{staticClass:\"wi wi-folder\"}),r(\"span\",{staticStyle:{\"margin-left\":\"10px\"}},[t._v(t._s(e.row.name))]),e.row.is_public?t._e():r(\"div\",{staticStyle:{display:\"inline-block\",padding:\"0 5px\",\"margin-left\":\"20px\",background:\"#fff1de\",color:\"#ff8600\"}},[r(\"i\",{staticClass:\"el-icon-lock\"},[r(\"span\",{staticStyle:{\"margin-left\":\"5px\"}},[t._v(\"私有\")])])])]}}])}),r(\"el-table-column\",{attrs:{label:\"权限\",align:\"right\"},scopedSlots:t._u([{key:\"default\",fn:function(e){return[r(\"el-radio-group\",{staticClass:\"ownership\",model:{value:e.row.cur_role,callback:function(r){t.$set(e.row,\"cur_role\",r)},expression:\"scope.row.cur_role\"}},[t._l(e.row.role_list,(function(e){return[1==e.id?r(\"el-tooltip\",{key:e.id,attrs:{effect:\"dark\",content:\"可管理成员、阅读和编辑文档\",placement:\"bottom\"}},[r(\"el-radio\",{attrs:{label:1}},[t._v(t._s(e.name))])],1):t._e(),2==e.id?r(\"el-tooltip\",{key:e.id,attrs:{effect:\"dark\",content:\"可阅读和编辑文档\",placement:\"bottom\"}},[r(\"el-radio\",{attrs:{label:2}},[t._v(t._s(e.name))])],1):t._e(),3==e.id?r(\"el-tooltip\",{key:e.id,attrs:{effect:\"dark\",content:\"仅可以阅读\",placement:\"bottom\"}},[r(\"el-radio\",{attrs:{label:3}},[t._v(t._s(e.name))])],1):t._e()]}))],2)]}}])}),r(\"div\",{staticClass:\"nodata\",attrs:{slot:\"empty\"},slot:\"empty\"},[r(\"p\",[t._v(\"暂无可以查看管理的文档\")])])],1),t.currentPage!=t.pageCount&&t.pageCount>1?r(\"div\",{staticClass:\"get-more\"},[r(\"el-button\",{attrs:{type:\"text\"},on:{click:t.getMore}},[t._v(\"点击加载更多\")])],1):t._e(),r(\"div\",{staticClass:\"btns\"},[r(\"el-button\",{attrs:{type:\"primary\"},on:{click:t.save}},[t._v(\"保存\")])],1)],1),r(\"el-dialog\",{staticClass:\"w7-dialog\",attrs:{title:\"批量修改\",visible:t.dialogEditInfoVisible,\"close-on-click-modal\":!1,center:\"\"},on:{\"update:visible\":function(e){t.dialogEditInfoVisible=e}}},[r(\"el-form\",{staticStyle:{\"margin-left\":\"50px\"},attrs:{\"label-width\":\"120\"}},[r(\"el-form-item\",{attrs:{label:\"公有项目\"}},[r(\"el-radio-group\",{staticClass:\"ownership\",model:{value:t.radio,callback:function(e){t.radio=e},expression:\"radio\"}},[r(\"el-radio\",{attrs:{label:2}},[t._v(\"操作员\")])],1)],1),r(\"el-form-item\",{attrs:{label:\"私有项目\"}},[r(\"el-radio-group\",{staticClass:\"ownership\",model:{value:t.radio1,callback:function(e){t.radio1=e},expression:\"radio1\"}},[r(\"el-radio\",{attrs:{label:2}},[t._v(\"操作员\")]),r(\"el-radio\",{attrs:{label:3}},[t._v(\"阅读者\")])],1)],1)],1),r(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[r(\"el-button\",{attrs:{type:\"primary\"},on:{click:t.editAll}},[t._v(\"确 定\")]),r(\"el-button\",{on:{click:function(e){t.dialogEditInfoVisible=!1}}},[t._v(\"取 消\")])],1)],1)],1)},o=[],n=(r(\"c5f6\"),r(\"d0ff\")),l={props:[\"user_id\"],data:function(){return{is_public:\"\",keyword:\"\",docList:[],currentPage:1,pageCount:1,total:0,dialogEditInfoVisible:!1,radio:2,radio1:2,selectRows:[]}},created:function(){this.getList()},methods:{search:function(){this.currentPage=1,this.getList()},getMore:function(){this.currentPage++,this.getList(\"more\")},getList:function(t){var e=this;this.$post(\"/admin/document/all-by-uid\",{user_id:this.user_id,page:this.currentPage,name:this.keyword,is_public:this.is_public}).then((function(r){e.docList=\"more\"==t?[].concat(Object(n[\"a\"])(e.docList),Object(n[\"a\"])(r.data.data)):r.data.data,e.pageCount=r.data.page_count,e.total=r.data.total}))},save:function(){var t=this,e=[];for(var r in this.docList)this.docList[r].cur_role&&e.push({document_id:this.docList[r].id,permission:this.docList[r].cur_role});e.length?this.$post(\"/admin/user/batch-update-permission\",{user_id:this.user_id,document_permission:e}).then((function(){t.$message(\"保存成功！\"),t.$router.push(\"/admin/user\")})):this.$router.push(\"/admin/user\")},editAll:function(){var t=this.$refs.multipleTable.selection;for(var e in t)t[e].is_public?t[e].cur_role=Number(this.radio):t[e].cur_role=Number(this.radio1);this.dialogEditInfoVisible=!1}}},c=l,u=(r(\"6ccf\"),r(\"2877\")),f=Object(u[\"a\"])(c,s,o,!1,null,null,null),d=f.exports,p={components:{permission:d},data:function(){var t=this,e=function(e,r,a){\"\"===r?a(new Error(\"请输入密码\")):(\"\"!==t.formData.confirm_userpass&&t.$refs.ruleForm.validateField(\"confirm_userpass\"),a())},r=function(e,r,a){\"\"===r?a(new Error(\"请再次输入密码\")):r!==t.formData.userpass?a(new Error(\"两次输入密码不一致!\")):a()};return{rules:{username:[{required:!0,message:\"请输入用户账号\",trigger:\"blur\"}],userpass:[{required:!0,validator:e,trigger:\"blur\"}],confirm_userpass:[{required:!0,validator:r,trigger:\"blur\"}]},firstPage:!0,formData:{id:this.$route.params.id,username:\"\",userpass:\"\",confirm_userpass:\"\"},user_id:\"\"}},created:function(){this.$route.params.id&&(this.user_id=this.$route.params.id,this.firstPage=!1)},methods:{onSubmit:function(){var t=this;this.$refs[\"ruleForm\"].validate((function(e){e&&t.$post(\"/admin/user/add\",t.formData).then((function(e){t.$message(\"创建成功！\"),t.user_id=e.data,t.firstPage=!1}))}))}}},m=p,b=(r(\"58e0\"),Object(u[\"a\"])(m,a,i,!1,null,\"5df92025\",null));e[\"default\"]=b.exports},aa77:function(t,e,r){var a=r(\"5ca1\"),i=r(\"be13\"),s=r(\"79e5\"),o=r(\"fdef\"),n=\"[\"+o+\"]\",l=\"​\",c=RegExp(\"^\"+n+n+\"*\"),u=RegExp(n+n+\"*$\"),f=function(t,e,r){var i={},n=s((function(){return!!o[t]()||l[t]()!=l})),c=i[t]=n?e(d):o[t];r&&(i[r]=c),a(a.P+a.F*n,\"String\",i)},d=f.trim=function(t,e){return t=String(i(t)),1&e&&(t=t.replace(c,\"\")),2&e&&(t=t.replace(u,\"\")),t};t.exports=f},c5f6:function(t,e,r){\"use strict\";var a=r(\"7726\"),i=r(\"69a8\"),s=r(\"2d95\"),o=r(\"5dbc\"),n=r(\"6a99\"),l=r(\"79e5\"),c=r(\"9093\").f,u=r(\"11e9\").f,f=r(\"86cc\").f,d=r(\"aa77\").trim,p=\"Number\",m=a[p],b=m,_=m.prototype,v=s(r(\"2aeb\")(_))==p,h=\"trim\"in String.prototype,g=function(t){var e=n(t,!1);if(\"string\"==typeof e&&e.length>2){e=h?e.trim():d(e,3);var r,a,i,s=e.charCodeAt(0);if(43===s||45===s){if(r=e.charCodeAt(2),88===r||120===r)return NaN}else if(48===s){switch(e.charCodeAt(1)){case 66:case 98:a=2,i=49;break;case 79:case 111:a=8,i=55;break;default:return+e}for(var o,l=e.slice(2),c=0,u=l.length;c<u;c++)if(o=l.charCodeAt(c),o<48||o>i)return NaN;return parseInt(l,a)}}return+e};if(!m(\" 0o1\")||!m(\"0b1\")||m(\"+0x1\")){m=function(t){var e=arguments.length<1?0:t,r=this;return r instanceof m&&(v?l((function(){_.valueOf.call(r)})):s(r)!=p)?o(new b(g(e)),r,m):g(e)};for(var y,k=r(\"9e1e\")?c(b):\"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger\".split(\",\"),w=0;k.length>w;w++)i(b,y=k[w])&&!i(m,y)&&f(m,y,u(b,y));m.prototype=_,_.constructor=m,r(\"2aba\")(a,p,m)}},d0ff:function(t,e,r){\"use strict\";function a(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,a=new Array(e);r<e;r++)a[r]=t[r];return a}function i(t){if(Array.isArray(t))return a(t)}function s(t){if(\"undefined\"!==typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}function o(t,e){if(t){if(\"string\"===typeof t)return a(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return\"Object\"===r&&t.constructor&&(r=t.constructor.name),\"Map\"===r||\"Set\"===r?Array.from(t):\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?a(t,e):void 0}}function n(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}function l(t){return i(t)||s(t)||o(t)||n()}r.d(e,\"a\",(function(){return l}))},dc9d:function(t,e,r){},fdef:function(t,e){t.exports=\"\\t\\n\\v\\f\\r   ᠎             　\\u2028\\u2029\\ufeff\"}}]);"
  },
  {
    "path": "public/js/chunk-457e440b.71326ed5.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-457e440b\"],{\"02f4\":function(e,t,r){var n=r(\"4588\"),a=r(\"be13\");e.exports=function(e){return function(t,r){var i,c,s=String(a(t)),o=n(r),_=s.length;return o<0||o>=_?e?\"\":void 0:(i=s.charCodeAt(o),i<55296||i>56319||o+1===_||(c=s.charCodeAt(o+1))<56320||c>57343?e?s.charAt(o):i:e?s.slice(o,o+2):c-56320+(i-55296<<10)+65536)}}},\"0390\":function(e,t,r){\"use strict\";var n=r(\"02f4\")(!0);e.exports=function(e,t,r){return t+(r?n(e,t).length:1)}},\"0bfb\":function(e,t,r){\"use strict\";var n=r(\"cb7c\");e.exports=function(){var e=n(this),t=\"\";return e.global&&(t+=\"g\"),e.ignoreCase&&(t+=\"i\"),e.multiline&&(t+=\"m\"),e.unicode&&(t+=\"u\"),e.sticky&&(t+=\"y\"),t}},\"0dae\":function(e,t,r){},\"214f\":function(e,t,r){\"use strict\";r(\"b0c5\");var n=r(\"2aba\"),a=r(\"32e9\"),i=r(\"79e5\"),c=r(\"be13\"),s=r(\"2b4c\"),o=r(\"520a\"),_=s(\"species\"),u=!i((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:\"7\"},e},\"7\"!==\"\".replace(e,\"$<a>\")})),l=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var r=\"ab\".split(e);return 2===r.length&&\"a\"===r[0]&&\"b\"===r[1]}();e.exports=function(e,t,r){var h=s(e),p=!i((function(){var t={};return t[h]=function(){return 7},7!=\"\"[e](t)})),d=p?!i((function(){var t=!1,r=/a/;return r.exec=function(){return t=!0,null},\"split\"===e&&(r.constructor={},r.constructor[_]=function(){return r}),r[h](\"\"),!t})):void 0;if(!p||!d||\"replace\"===e&&!u||\"split\"===e&&!l){var f=/./[h],g=r(c,h,\"\"[e],(function(e,t,r,n,a){return t.exec===o?p&&!a?{done:!0,value:f.call(t,r,n)}:{done:!0,value:e.call(r,t,n)}:{done:!1}})),v=g[0],m=g[1];n(String.prototype,e,v),a(RegExp.prototype,h,2==t?function(e,t){return m.call(e,this,t)}:function(e){return m.call(e,this)})}}},\"28a5\":function(e,t,r){\"use strict\";var n=r(\"aae3\"),a=r(\"cb7c\"),i=r(\"ebd6\"),c=r(\"0390\"),s=r(\"9def\"),o=r(\"5f1b\"),_=r(\"520a\"),u=r(\"79e5\"),l=Math.min,h=[].push,p=\"split\",d=\"length\",f=\"lastIndex\",g=4294967295,v=!u((function(){RegExp(g,\"y\")}));r(\"214f\")(\"split\",2,(function(e,t,r,u){var m;return m=\"c\"==\"abbc\"[p](/(b)*/)[1]||4!=\"test\"[p](/(?:)/,-1)[d]||2!=\"ab\"[p](/(?:ab)*/)[d]||4!=\".\"[p](/(.?)(.?)/)[d]||\".\"[p](/()()/)[d]>1||\"\"[p](/.?/)[d]?function(e,t){var a=String(this);if(void 0===e&&0===t)return[];if(!n(e))return r.call(a,e,t);var i,c,s,o=[],u=(e.ignoreCase?\"i\":\"\")+(e.multiline?\"m\":\"\")+(e.unicode?\"u\":\"\")+(e.sticky?\"y\":\"\"),l=0,p=void 0===t?g:t>>>0,v=new RegExp(e.source,u+\"g\");while(i=_.call(v,a)){if(c=v[f],c>l&&(o.push(a.slice(l,i.index)),i[d]>1&&i.index<a[d]&&h.apply(o,i.slice(1)),s=i[0][d],l=c,o[d]>=p))break;v[f]===i.index&&v[f]++}return l===a[d]?!s&&v.test(\"\")||o.push(\"\"):o.push(a.slice(l)),o[d]>p?o.slice(0,p):o}:\"0\"[p](void 0,0)[d]?function(e,t){return void 0===e&&0===t?[]:r.call(this,e,t)}:r,[function(r,n){var a=e(this),i=void 0==r?void 0:r[t];return void 0!==i?i.call(r,a,n):m.call(String(a),r,n)},function(e,t){var n=u(m,e,this,t,m!==r);if(n.done)return n.value;var _=a(e),h=String(this),p=i(_,RegExp),d=_.unicode,f=(_.ignoreCase?\"i\":\"\")+(_.multiline?\"m\":\"\")+(_.unicode?\"u\":\"\")+(v?\"y\":\"g\"),y=new p(v?_:\"^(?:\"+_.source+\")\",f),b=void 0===t?g:t>>>0;if(0===b)return[];if(0===h.length)return null===o(y,h)?[h]:[];var w=0,E=0,k=[];while(E<h.length){y.lastIndex=v?E:0;var x,S=o(y,v?h:h.slice(E));if(null===S||(x=l(s(y.lastIndex+(v?0:E)),h.length))===w)E=c(h,E,d);else{if(k.push(h.slice(w,E)),k.length===b)return k;for(var C=1;C<=S.length-1;C++)if(k.push(S[C]),k.length===b)return k;E=w=x}}return k.push(h.slice(w)),k}]}))},3191:function(e,t,r){\"use strict\";r.d(t,\"b\",(function(){return a})),r.d(t,\"d\",(function(){return i})),r.d(t,\"a\",(function(){return c})),r.d(t,\"c\",(function(){return s}));var n=r(\"1c1e\"),a=function(e){return Object(n[\"a\"])({url:\"/document/home\",params:e,method:\"get\"})},i=function(e){return Object(n[\"a\"])({url:\"/document/home/search\",data:e,method:\"post\"})},c=function(e){return Object(n[\"a\"])({url:\"/document/home/check\",data:e,method:\"get\"})},s=function(e){return Object(n[\"a\"])({url:\"/document/home/search-hot\",data:e,method:\"get\"})}},\"3eb7\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";var core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(\"28a5\"),core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_0__),core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(\"7f7f\"),core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_1__),core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(\"a481\"),core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_2__),core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(\"ac6a\"),core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_3__),_api_home__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(\"3191\");__webpack_exports__[\"a\"]={name:\"homeSearch\",data:function(){return{keywords:\"\",total:0,list:[],list2:[],querySearch:{page:1,page_size:10,keywords:\"\"},querySearch2:{page:1,page_size:10,keywords:\"\"}}},created:function(){this.init()},computed:{paginationLayouts:function(){return this.total&&this.total/this.querySearch.page_size>1?\"total, sizes, prev, pager, next, jumper\":\"total, sizes\"}},methods:{init:function(){this.keywords=this.$route.query.keywords,this.querySearch.keywords=this.keywords,this.querySearch2.keywords=this.keywords,this.keywords&&this.getSearchAll()},getSearchAll:function(){this.keywords?(this.$router.push({name:\"homeSearch\",query:{keywords:this.keywords}}),this.querySearch.page=1,this.querySearch.keywords=this.keywords,this.querySearch2.keywords=this.keywords,this.getSearch(),this.getSearch2()):(this.$message.closeAll(),this.$message.error(\"请输入关键字搜索\"))},getSearch:function getSearch(){var _this=this;Object(_api_home__WEBPACK_IMPORTED_MODULE_4__[\"d\"])(this.querySearch).then((function(res){200===res.code&&(_this.list=res.data.data,_this.total=res.data.total,_this.list.length&&_this.list.forEach((function(item){var reg=\"/\"+_this.keywords+\"/gi\";if(item.chapter_content){item.chapter_content=item.chapter_content.replace(/[\\-\\_\\,\\!\\|\\~\\`\\(\\)\\#\\$\\%\\^\\&\\*\\{\\}\\:\\;\\\"\\<\\>\\?]/g,\"\"),item.chapter_content=item.chapter_content.replace(/^[A-Za-z]+$/g,(function(e){return e.toLowerCase()})),item.chapter_content=item.chapter_content.replace(/(cdn\\.w7\\.cc)(.|\\/)+\\.(jpg|png|jpeg)/g,\"\"),item.chapter_content=item.chapter_content.replace(/(http)(.|\\/)+\\.(jpg|png|jpeg)/g,\"\"),item.chapter_content=item.chapter_content.replace(/\\.(jpg|png|jpeg)/g,\"\");var hasKeywords=item.chapter_content.indexOf(_this.keywords);item.chapter_content=-1!=hasKeywords?item.chapter_content.substr(item.chapter_content.indexOf(_this.keywords),400)+\"...\":item.chapter_content.substr(0,400)+\"...\",item.chapter_content=item.chapter_content.replace(eval(reg),'<span style=\"color: #ff3939\">'.concat(_this.keywords,\"</span>\"))}item.name&&(item.name=item.name.replace(eval(reg),'<span style=\"color: #ff3939\">'.concat(_this.keywords,\"</span>\"))),item.nav&&(item.nav=item.nav.split(\">\"))})))}))},getSearch2:function(){var e=this;Object(_api_home__WEBPACK_IMPORTED_MODULE_4__[\"d\"])(this.querySearch2).then((function(t){200===t.code&&(e.list2=t.data.data)}))},handleSizeChange:function(e){this.querySearch.page_size=e,this.getSearch()},handleCurrentChange:function(e){this.querySearch.page=e,this.getSearch()},viewDoc:function(e){var t=\"\";e.chapter_id&&(t=e.chapter_id);var r=this.$router.resolve({name:\"viewHome\",params:{id:e.id},query:{id:t}}),n=r.href;window.open(n,\"_blank\")}}}},\"520a\":function(e,t,r){\"use strict\";var n=r(\"0bfb\"),a=RegExp.prototype.exec,i=String.prototype.replace,c=a,s=\"lastIndex\",o=function(){var e=/a/,t=/b*/g;return a.call(e,\"a\"),a.call(t,\"a\"),0!==e[s]||0!==t[s]}(),_=void 0!==/()??/.exec(\"\")[1],u=o||_;u&&(c=function(e){var t,r,c,u,l=this;return _&&(r=new RegExp(\"^\"+l.source+\"$(?!\\\\s)\",n.call(l))),o&&(t=l[s]),c=a.call(l,e),o&&c&&(l[s]=l.global?c.index+c[0].length:t),_&&c&&c.length>1&&i.call(c[0],r,(function(){for(u=1;u<arguments.length-2;u++)void 0===arguments[u]&&(c[u]=void 0)})),c}),e.exports=c},\"5f1b\":function(e,t,r){\"use strict\";var n=r(\"23c6\"),a=RegExp.prototype.exec;e.exports=function(e,t){var r=e.exec;if(\"function\"===typeof r){var i=r.call(e,t);if(\"object\"!==typeof i)throw new TypeError(\"RegExp exec method returned something other than an Object or null\");return i}if(\"RegExp\"!==n(e))throw new TypeError(\"RegExp#exec called on incompatible receiver\");return a.call(e,t)}},\"5ff8\":function(e,t,r){\"use strict\";r.r(t);var n=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r(\"div\",{staticClass:\"home-search\"},[r(\"div\",{staticClass:\"search-wrap\"},[r(\"el-input\",{attrs:{placeholder:\"输入关键字搜索\"},nativeOn:{keyup:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.getSearchAll(t)}},model:{value:e.keywords,callback:function(t){e.keywords=t},expression:\"keywords\"}}),r(\"span\",{staticClass:\"search-btn\",on:{click:e.getSearchAll}},[e._v(\"搜索\")])],1),r(\"div\",{staticClass:\"search-total\"},[e._v(\"搜索“\"+e._s(e.keywords)+\"”的相关结果，共\"),r(\"span\",[e._v(e._s(e.total))]),e._v(\"条\")]),r(\"div\",{staticClass:\"w1200\"},[r(\"div\",{staticClass:\"search-list\"},[r(\"div\",{staticClass:\"left\"},[e._m(0),r(\"ul\",e._l(e.list2,(function(t,n){return r(\"li\",{key:n,on:{click:function(r){return e.viewDoc(t)}}},[t.name?[e._v(e._s(t.name))]:e._e()],2)})),0)]),r(\"div\",{staticClass:\"right\"},[e._l(e.list,(function(t,n){return r(\"div\",{key:n,staticClass:\"r-con\",on:{click:function(r){return e.viewDoc(t)}}},[r(\"div\",{staticClass:\"tit\",domProps:{innerHTML:e._s(t.name)}}),r(\"div\",{staticClass:\"p\",domProps:{innerHTML:e._s(t.chapter_content)}}),r(\"div\",{staticClass:\"nav\"},e._l(t.nav,(function(n,a){return r(\"span\",{key:a},[r(\"span\",[e._v(e._s(n))]),a<t.nav.length-1?r(\"span\",{staticStyle:{margin:\"0 3px\"}},[e._v(\">\")]):e._e()])})),0)])})),r(\"div\",{staticClass:\"pagination-wrap\"},[r(\"el-pagination\",{attrs:{background:\"\",\"hide-on-single-page\":e.total<=10,\"current-page\":e.querySearch.page,\"page-sizes\":[10,20,30],\"page-size\":e.querySearch.page_size,layout:e.paginationLayouts,total:e.total},on:{\"update:currentPage\":function(t){return e.$set(e.querySearch,\"page\",t)},\"update:current-page\":function(t){return e.$set(e.querySearch,\"page\",t)},\"size-change\":e.handleSizeChange,\"current-change\":e.handleCurrentChange}})],1)],2)])])])},a=[function(){var e=this,t=e.$createElement,r=e._self._c||t;return r(\"div\",{staticClass:\"l-tit\"},[r(\"div\",{staticClass:\"text\"},[e._v(\"相关文档\")]),r(\"div\",{staticClass:\"line\"},[r(\"span\")])])}],i=r(\"3eb7\"),c=i[\"a\"],s=(r(\"9699\"),r(\"2877\")),o=Object(s[\"a\"])(c,n,a,!1,null,\"0d4061d4\",null);t[\"default\"]=o.exports},9699:function(e,t,r){\"use strict\";r(\"0dae\")},a481:function(e,t,r){\"use strict\";var n=r(\"cb7c\"),a=r(\"4bf8\"),i=r(\"9def\"),c=r(\"4588\"),s=r(\"0390\"),o=r(\"5f1b\"),_=Math.max,u=Math.min,l=Math.floor,h=/\\$([$&`']|\\d\\d?|<[^>]*>)/g,p=/\\$([$&`']|\\d\\d?)/g,d=function(e){return void 0===e?e:String(e)};r(\"214f\")(\"replace\",2,(function(e,t,r,f){return[function(n,a){var i=e(this),c=void 0==n?void 0:n[t];return void 0!==c?c.call(n,i,a):r.call(String(i),n,a)},function(e,t){var a=f(r,e,this,t);if(a.done)return a.value;var l=n(e),h=String(this),p=\"function\"===typeof t;p||(t=String(t));var v=l.global;if(v){var m=l.unicode;l.lastIndex=0}var y=[];while(1){var b=o(l,h);if(null===b)break;if(y.push(b),!v)break;var w=String(b[0]);\"\"===w&&(l.lastIndex=s(h,i(l.lastIndex),m))}for(var E=\"\",k=0,x=0;x<y.length;x++){b=y[x];for(var S=String(b[0]),C=_(u(c(b.index),h.length),0),O=[],M=1;M<b.length;M++)O.push(d(b[M]));var D=b.groups;if(p){var P=[S].concat(O,C,h);void 0!==D&&P.push(D);var q=String(t.apply(void 0,P))}else q=g(S,h,C,O,D,t);C>=k&&(E+=h.slice(k,C)+q,k=C+S.length)}return E+h.slice(k)}];function g(e,t,n,i,c,s){var o=n+e.length,_=i.length,u=p;return void 0!==c&&(c=a(c),u=h),r.call(s,u,(function(r,a){var s;switch(a.charAt(0)){case\"$\":return\"$\";case\"&\":return e;case\"`\":return t.slice(0,n);case\"'\":return t.slice(o);case\"<\":s=c[a.slice(1,-1)];break;default:var u=+a;if(0===u)return r;if(u>_){var h=l(u/10);return 0===h?r:h<=_?void 0===i[h-1]?a.charAt(1):i[h-1]+a.charAt(1):r}s=i[u-1]}return void 0===s?\"\":s}))}}))},aae3:function(e,t,r){var n=r(\"d3f4\"),a=r(\"2d95\"),i=r(\"2b4c\")(\"match\");e.exports=function(e){var t;return n(e)&&(void 0!==(t=e[i])?!!t:\"RegExp\"==a(e))}},b0c5:function(e,t,r){\"use strict\";var n=r(\"520a\");r(\"5ca1\")({target:\"RegExp\",proto:!0,forced:n!==/./.exec},{exec:n})}}]);"
  },
  {
    "path": "public/js/chunk-564fade6.23bb5ce8.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-564fade6\"],{9095:function(t,e,a){\"use strict\";a.r(e);var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a(\"div\",{staticClass:\"we7-document-recycle\"},[a(\"div\",{staticClass:\"page-head\"},[t._v(\"\\n    回收站\\n  \")]),a(\"el-table\",{staticClass:\"w7-table\",attrs:{data:t.docList,\"header-cell-style\":{background:\"#f7f9fc\",color:\"#606266\"},\"empty-text\":\"没有与搜索条件匹配的项\"}},[a(\"el-table-column\",{attrs:{label:\"名称\"},scopedSlots:t._u([{key:\"default\",fn:function(t){}}])}),a(\"el-table-column\",{attrs:{label:\"归属\",prop:\"author.name\"}}),a(\"el-table-column\",{attrs:{label:\"删除时间\"},scopedSlots:t._u([{key:\"default\",fn:function(t){}}])}),a(\"el-table-column\",{attrs:{label:\"操作\",align:\"right\"},scopedSlots:t._u([{key:\"default\",fn:function(e){return a(\"div\",{staticClass:\"oper\"},[a(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"恢复\",placement:\"bottom\"}},[a(\"i\",{staticClass:\"wi wi-huifu\",on:{click:function(a){return t.recover(e.row.id)}}})]),a(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"删除\",placement:\"bottom\"}},[a(\"i\",{staticClass:\"wi wi-delete\",on:{click:function(a){return t.del(e.row.id)}}})])],1)}}])})],1),a(\"div\",{staticClass:\"btns\"},[a(\"el-pagination\",{attrs:{background:\"\",layout:\"prev, pager, next, total\",\"prev-text\":\"上一页\",\"next-text\":\"下一页\",\"page-size\":15,\"current-page\":t.currentPage,\"page-count\":t.pageCount,total:t.total,\"hide-on-single-page\":!0},on:{\"current-change\":t.getList,\"update:currentPage\":function(e){t.currentPage=e},\"update:current-page\":function(e){t.currentPage=e}}})],1)],1)},o=[],c={data:function(){return{loading:!1,docList:[],currentPage:1,pageCount:0,total:0}},created:function(){this.getList()},methods:{getList:function(){var t=this;this.loading=!0,this.$post(\"/admin/operate-log/all\",{page:this.currentPage,name:this.keyword,time:this.time}).then((function(e){t.docList=e.data,t.pageCount=e.page_count,t.total=e.total,t.loading=!1}))},recover:function(t){},del:function(t){}}},l=c,i=(a(\"93c8\"),a(\"2877\")),r=Object(i[\"a\"])(l,n,o,!1,null,null,null);e[\"default\"]=r.exports},\"93c8\":function(t,e,a){\"use strict\";a(\"f040\")},f040:function(t,e,a){}}]);"
  },
  {
    "path": "public/js/chunk-56652b45.b9202ad0.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-56652b45\"],{\"02f4\":function(t,e,n){var r=n(\"4588\"),o=n(\"be13\");t.exports=function(t){return function(e,n){var a,i,c=String(o(e)),s=r(n),u=c.length;return s<0||s>=u?t?\"\":void 0:(a=c.charCodeAt(s),a<55296||a>56319||s+1===u||(i=c.charCodeAt(s+1))<56320||i>57343?t?c.charAt(s):a:t?c.slice(s,s+2):i-56320+(a-55296<<10)+65536)}}},\"0a49\":function(t,e,n){var r=n(\"9b43\"),o=n(\"626a\"),a=n(\"4bf8\"),i=n(\"9def\"),c=n(\"cd1c\");t.exports=function(t,e){var n=1==t,s=2==t,u=3==t,f=4==t,l=6==t,d=5==t||l,g=e||c;return function(e,c,h){for(var p,m,A=a(e),b=o(A),v=r(c,h,3),y=i(b.length),w=0,S=n?g(e,y):s?g(e,0):void 0;y>w;w++)if((d||w in b)&&(p=b[w],m=v(p,w,A),t))if(n)S[w]=m;else if(m)switch(t){case 3:return!0;case 5:return p;case 6:return w;case 2:S.push(p)}else if(f)return!1;return l?-1:u||f?f:S}}},\"0ae3\":function(t,e,n){},\"0bfb\":function(t,e,n){\"use strict\";var r=n(\"cb7c\");t.exports=function(){var t=r(this),e=\"\";return t.global&&(e+=\"g\"),t.ignoreCase&&(e+=\"i\"),t.multiline&&(e+=\"m\"),t.unicode&&(e+=\"u\"),t.sticky&&(e+=\"y\"),e}},\"0f71\":function(t,e){t.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADDUlEQVRYR8WXT1IaURDGv2ZQyQ4qsA5WBbbBE0ROEDxBzAk0O8hG3AR2wROoJ9CcQDxBYAtWSdZSpUtE4Eu9B4NvhmHmjaZKFiyYnn6//vO6PwRv/JE3Ph+xAPL1+/Tm4/QLKHkISyTSywCEHc6kPXnnXA/qmQfbwKwACj/uS8LpEYCKjWMSZwTPb5q5dpR9KICKeGM0/SWC/ShHQc8VyFPK+R6WkbUAKmpwciqQ0ksOX75DDJhw9vo/M50gP4EA88OnVwKjxq+gIPAAccpBECsAOu2P09v/dbjLrSCe6OwMmpmBGcsKQKF21xbIZ6uAya62E/lkY0+i3W9my2sBCtXhvghOI52Rx+NUsuU2l76eo8khRNRNCf2Q+NZvZs9cI08GirWhSs+HMA9+B6atVQDEoNfMbq8AFGtDdccvQg8Hr/uN3G6YjWUJ93qN7KWunuusUBueCfD1pdEv/ViUkcB5v5HVs2UJYJP+GVmOmm4fq3e7CZGriEx2+o3cjh+AcRsoyN6qDwD0GlkdvP7KV+/zmzK9tQBYuUb+dyx7AOMtJ6NukQZYLJs/UQDq+atvweIQt5xmD0SWYAlIqY9TiRPvHJgdQFi3CULZeDKgfijWhvYAi1PUZNN1FIRezSAoTw/oMsQZwbZhrrMju71mTm/Z5zlQHbZEcBDqez77LyHSmZEe1ZMQSYNUTitRu4HESb+ZPfQCzFVPcCOS3RlwGDUDXHg9C4DWOpAxnW13K3p2QWAZyO44ldyNo/P01Z4vqLYfgr5x7gEImmImbdzSB80XirNjCpNVPWD0gp82LoC/uc3au74CJVmxetdRqSPYedpKluOm33U+V1eTK60rjc43AwkEMOunpBTJPdsGNBtRRC60tAvpo7WqeKENW+6KVkOH4HEUiOojgRy5w8lcvUEljPxjsthuasRqpaQVLnEpEC0uSTyIIE0wD0HFELN/SdRN+fUiAPdKbYymFQGV7gsXoMTvmUj7pvG+ZdO0kRnwO1GlSY4mpQSe5z8hA4KDSSrZiduwsQFsoopj8w85b5UwNkDVfAAAAABJRU5ErkJggg==\"},1169:function(t,e,n){var r=n(\"2d95\");t.exports=Array.isArray||function(t){return\"Array\"==r(t)}},\"11e9\":function(t,e,n){var r=n(\"52a7\"),o=n(\"4630\"),a=n(\"6821\"),i=n(\"6a99\"),c=n(\"69a8\"),s=n(\"c69a\"),u=Object.getOwnPropertyDescriptor;e.f=n(\"9e1e\")?u:function(t,e){if(t=a(t),e=i(e,!0),s)try{return u(t,e)}catch(n){}if(c(t,e))return o(!r.f.call(t,e),t[e])}},\"1c4c\":function(t,e,n){\"use strict\";var r=n(\"9b43\"),o=n(\"5ca1\"),a=n(\"4bf8\"),i=n(\"1fa8\"),c=n(\"33a4\"),s=n(\"9def\"),u=n(\"f1ae\"),f=n(\"27ee\");o(o.S+o.F*!n(\"5cc5\")((function(t){Array.from(t)})),\"Array\",{from:function(t){var e,n,o,l,d=a(t),g=\"function\"==typeof this?this:Array,h=arguments.length,p=h>1?arguments[1]:void 0,m=void 0!==p,A=0,b=f(d);if(m&&(p=r(p,h>2?arguments[2]:void 0,2)),void 0==b||g==Array&&c(b))for(e=s(d.length),n=new g(e);e>A;A++)u(n,A,m?p(d[A],A):d[A]);else for(l=b.call(d),n=new g;!(o=l.next()).done;A++)u(n,A,m?i(l,p,[o.value,A],!0):o.value);return n.length=A,n}})},\"2b83\":function(t,e,n){\"use strict\";n.r(e);var r=function(){var t=this,e=t.$createElement,r=t._self._c||e;return r(\"div\",{staticClass:\"admin-login\"},[r(\"div\",{staticClass:\"login-box\"},[r(\"h2\",[t._v(\"文档管理系统\")]),r(\"el-tabs\",{model:{value:t.active,callback:function(e){t.active=e},expression:\"active\"}},[r(\"el-tab-pane\",{attrs:{label:\"账号登录\",name:\"account\"}},[r(\"div\",{staticClass:\"login-form\"},[r(\"div\",{staticClass:\"users\"},[r(\"div\",{staticClass:\"background\"},[r(\"img\",{attrs:{src:n(\"0f71\"),alt:\"\"}})]),r(\"el-input\",{staticClass:\"user\",attrs:{placeholder:\"用户名/手机号\"},model:{value:t.formData.username,callback:function(e){t.$set(t.formData,\"username\",e)},expression:\"formData.username\"}})],1),r(\"div\",{staticClass:\"passwords\"},[r(\"div\",{staticClass:\"background\"},[r(\"img\",{attrs:{src:n(\"bf1f\"),alt:\"\"}})]),r(\"el-input\",{staticClass:\"pwd\",attrs:{type:\"password\",placeholder:\"输入密码\"},model:{value:t.formData.userpass,callback:function(e){t.$set(t.formData,\"userpass\",e)},expression:\"formData.userpass\"}})],1),r(\"div\",{staticClass:\"codes\"},[r(\"div\",{staticClass:\"background\"},[r(\"img\",{attrs:{src:n(\"7b00\"),alt:\"\"}})]),r(\"el-input\",{staticClass:\"code-input vrcode\",attrs:{placeholder:\"输入图形验证码\"},nativeOn:{keyup:function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")?null:t.login(e)}},model:{value:t.formData.code,callback:function(e){t.$set(t.formData,\"code\",e)},expression:\"formData.code\"}},[r(\"img\",{attrs:{slot:\"append\",src:t.code,alt:\"\"},on:{click:t.getCode},slot:\"append\"})])],1)]),t.thirdPartyList.length?r(\"div\",{staticClass:\"login-thirdParty\"},[r(\"span\",{staticClass:\"title\"},[t._v(\"第三方账号登录\")]),r(\"div\",{staticClass:\"icon-list\"},t._l(t.thirdPartyList,(function(e){return r(\"img\",{key:e.name,staticClass:\"icon-block\",attrs:{src:e.logo,title:e.name},on:{click:function(n){return t.thirdPartyIconClick(e.redirect_url)}}})})),0)]):t._e(),r(\"el-button\",{staticClass:\"login-btn\",on:{click:t.login}},[t._v(\"登录\")])],1)],1)],1),t._m(0)])},o=[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"footer\"},[t._v(\"\\n      Powered by \"),n(\"a\",{attrs:{href:\"https://www.w7.cc\"}},[t._v(\"微擎云计算©www.w7.cc\")])])}],a=(n(\"ac6a\"),n(\"ac4d\"),n(\"8a81\"),n(\"5df3\"),n(\"1c4c\"),n(\"7f7f\"),n(\"6b54\"),n(\"7514\"),n(\"1c1e\")),i=n(\"4ec3\");function c(t,e){var n;if(\"undefined\"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(n=s(t))||e&&t&&\"number\"===typeof t.length){n&&(t=n);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:o}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var a,i=!0,c=!1;return{s:function(){n=t[Symbol.iterator]()},n:function(){var t=n.next();return i=t.done,t},e:function(t){c=!0,a=t},f:function(){try{i||null==n.return||n.return()}finally{if(c)throw a}}}}function s(t,e){if(t){if(\"string\"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return\"Object\"===n&&t.constructor&&(n=t.constructor.name),\"Map\"===n||\"Set\"===n?Array.from(t):\"Arguments\"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}var f={name:\"adminLoginPage\",data:function(){return{autofocus:!1,active:\"account\",code:\"\",formData:{username:\"\",userpass:\"\",code:\"\",phone:\"\",phoneCode:\"\"},thirdPartyList:[]}},beforeRouteEnter:function(t,e,n){var r=t.query.code,o=t.query.redirect_url,c=t.query.app_id;r?a[\"a\"].post(\"/common/auth/third-party-login\",{code:r,app_id:c}).then((function(t){t&&t.data.is_need_bind?n(\"/bind\"):t&&t.data.has_login?n((function(e){1==t.data.has_login?e.$confirm(t.data.message,\"\",{confirmButtonText:\"确定\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){Object(i[\"b\"])({change_token:t.data.change_token}).then((function(){e.$message({type:\"success\",message:\"切换账户成功!\"}),e.$router.push({name:\"admin\"})}))})).catch((function(){e.$message({type:\"info\",message:\"已取消\"}),e.$router.push({name:\"admin\"})})):2==t.data.has_login?e.$confirm(t.data.message,\"\",{confirmButtonText:\"确定\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){Object(i[\"a\"])({bind_token:t.data.bind_token}).then((function(){e.$message({type:\"success\",message:\"绑定账户成功!\"}),e.$router.push({name:\"admin\"})}))})).catch((function(){e.$message({type:\"info\",message:\"已取消\"}),e.$router.push({name:\"admin\"})})):3==t.data.has_login&&e.$confirm(t.data.message,\"\",{confirmButtonText:\"确定\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){Object(i[\"A\"])({source_token:t.data.source_token}).then((function(){e.$router.push({name:\"adminBind\"})}))})).catch((function(){e.$message({type:\"info\",message:\"已取消\"}),e.$router.push({name:\"admin\"})}))})):t&&\"success\"==t.data?n(\"/\"):o?window.open(o,\"_self\"):n(\"/\")})).catch((function(){})):a[\"a\"].post(\"/common/auth/default-login-url\").then((function(t){t.data?window.open(t.data,\"_self\"):n()})).catch((function(t){}))},created:function(){this.getCode(),this.getThirdParty()},methods:{systemDetection:function(){var t=this;Object(i[\"y\"])().then((function(e){if(200==e.code){var n,r=c(e.data);try{for(r.s();!(n=r.n()).done;){var o=n.value;1!=o.id||o.enable||t.$router.push({name:\"install\"})}}catch(a){r.e(a)}finally{r.f()}}})).catch((function(t){}))},showFind:function(){this.$message({message:\"请联系管理员修改或使用密码找回工具修改\"})},getCode:function(){var t=this;this.$post(\"/common/verifycode/image\").then((function(e){200==e.code?t.code=e.data.img:t.$message.error(e.message)}))},login:function(){var t=this;this.$post(\"/common/auth/login\",this.formData).then((function(){var e=t.$message(\"登录成功\");setTimeout((function(){e.close();var n=localStorage.recordHref;n?location.href=n:t.$router.push({name:\"personalCenter\"})}),500)})).catch((function(){t.formData.code=\"\",document.getElementsByClassName(\"el-input__inner\")[2].focus(),t.getCode()}))},getThirdParty:function(){var t=this;this.$post(\"/common/auth/method\",{redirect_url:localStorage.recordHref||this.$route.query.redirect_url}).then((function(e){if(t.thirdPartyList=e.data||[],200==e.code&&e.data.length){var n=e.data.find((function(t){return 3==t.id}));document.cookie;if(n){var r=location.origin+\"/admin-login\";Object(i[\"B\"])({appDomain:\"api.w7.cc\",redirect_type:\"ajax\",redirect_method:\"POST\",redirect_url:r}).then((function(){e&&e.data&&e.data.is_online&&window.open(n.redirect_url,\"_target\")}))}}}))},thirdPartyIconClick:function(t){window.open(t,\"_self\")}}},l=f,d=(n(\"653f\"),n(\"2877\")),g=Object(d[\"a\"])(l,r,o,!1,null,\"2a74da90\",null);e[\"default\"]=g.exports},\"37c8\":function(t,e,n){e.f=n(\"2b4c\")},3846:function(t,e,n){n(\"9e1e\")&&\"g\"!=/./g.flags&&n(\"86cc\").f(RegExp.prototype,\"flags\",{configurable:!0,get:n(\"0bfb\")})},\"3a72\":function(t,e,n){var r=n(\"7726\"),o=n(\"8378\"),a=n(\"2d00\"),i=n(\"37c8\"),c=n(\"86cc\").f;t.exports=function(t){var e=o.Symbol||(o.Symbol=a?{}:r.Symbol||{});\"_\"==t.charAt(0)||t in e||c(e,t,{value:i.f(t)})}},\"5df3\":function(t,e,n){\"use strict\";var r=n(\"02f4\")(!0);n(\"01f9\")(String,\"String\",(function(t){this._t=String(t),this._i=0}),(function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=r(e,n),this._i+=t.length,{value:t,done:!1})}))},\"653f\":function(t,e,n){\"use strict\";n(\"0ae3\")},\"67ab\":function(t,e,n){var r=n(\"ca5a\")(\"meta\"),o=n(\"d3f4\"),a=n(\"69a8\"),i=n(\"86cc\").f,c=0,s=Object.isExtensible||function(){return!0},u=!n(\"79e5\")((function(){return s(Object.preventExtensions({}))})),f=function(t){i(t,r,{value:{i:\"O\"+ ++c,w:{}}})},l=function(t,e){if(!o(t))return\"symbol\"==typeof t?t:(\"string\"==typeof t?\"S\":\"P\")+t;if(!a(t,r)){if(!s(t))return\"F\";if(!e)return\"E\";f(t)}return t[r].i},d=function(t,e){if(!a(t,r)){if(!s(t))return!0;if(!e)return!1;f(t)}return t[r].w},g=function(t){return u&&h.NEED&&s(t)&&!a(t,r)&&f(t),t},h=t.exports={KEY:r,NEED:!1,fastKey:l,getWeak:d,onFreeze:g}},\"6b54\":function(t,e,n){\"use strict\";n(\"3846\");var r=n(\"cb7c\"),o=n(\"0bfb\"),a=n(\"9e1e\"),i=\"toString\",c=/./[i],s=function(t){n(\"2aba\")(RegExp.prototype,i,t,!0)};n(\"79e5\")((function(){return\"/a/b\"!=c.call({source:\"a\",flags:\"b\"})}))?s((function(){var t=r(this);return\"/\".concat(t.source,\"/\",\"flags\"in t?t.flags:!a&&t instanceof RegExp?o.call(t):void 0)})):c.name!=i&&s((function(){return c.call(this)}))},7514:function(t,e,n){\"use strict\";var r=n(\"5ca1\"),o=n(\"0a49\")(5),a=\"find\",i=!0;a in[]&&Array(1)[a]((function(){i=!1})),r(r.P+r.F*i,\"Array\",{find:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),n(\"9c6c\")(a)},\"7b00\":function(t,e){t.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADo0lEQVRYR8VXW0gUURj+/tnd2oc2U9fCeqgF3bS3iEySLpAUBlEUQUHWkz4kvdZsQdaD67xGGKEQlUI9dJEogu5FEtj1JbNdxYJKzF0trbztzh9nxG0vMzvjZjmPc/7Ld77//79zDmGWP5rl/LAMYEUtz5mYGNhAqloBYDUIS8BYKDbAQB8BX0BoB9Nt+9zcJx0nadzK5iwBKJDDuyVSTwGUbyUowL3M0qGgknvVzD4tAM+xwaX2aLSRCJvNAumtM+NOxGar7qnL/mjkbwjA6wvtYPBZAi3KJPmUD4P7mKX9XUruHb04ugAKjvRvI4laCZD+JvkfEFBV4vJuf97D5HgpADTa1egbAhbMRPJ4JibYXvpByf4QHzcRQDU7CnNCz4holZXk5SvmYP9aJ2pahjE8yuYujOeBgdwyNNLElHECAO/RgT1g9ZJRJJeTUJRvQ3G+HTtXOVGcb9NMh0YZ996O417HOD5/i6KzN2oMhqS9AX/OZR0ATF5fqBsgT7J3iceB5qr55juMs2jviaCy6buODwcC9e4igDTKYgwUHA6XSjZ+ppdlZgEATLaVQX/2mwQAXrn/BIhq/wcAFfB11buVBACFcuguEcozBSAov9A2goZ9Li2EcQkAIVBBxb0liYFQJwjLMwHgv/UT116O4cHhbMx3TlY1HQAw3gcU0QdxPVAoh74RIcsMgBg3kexAmVMbvbqbP7Xub67Kik2FGQBmfA8qbk1nYk1oFcC73qjW3WIUh0ZVbeRE8hKPPQG7SQlSAXhl6yX4NKiipmVISy7EaKru8QgyKcFDImzUK4EQoBfHcxKWhPjUNA+jodIVq3u8wfVXY5Cv/NDVDoMmNB5DEUWP5nTKVNk0hPaemOImmOqOYTohEt5CgluqsiDYMPvS7V746gqR+O31hToB8holEIp4ptKVFoSYCEG90eHEzMGg4l6eIsUiqdlhJGyWLJCg7HaldL1IePr+L1xoG01PkPFhNOlX6Ot/QqB1ZjQLNoQWFC+24/rLMZxvGzE/kpmfBpS8hNgpBV0mDy5zUPT1v7iQRCT7muT7ocGVLLRdktBqxoLVdQZUZt7UpeQ9SvYxbOkCObyZSL04K5fSKZSeoz8WOXjkHEBbre423o6BGxFyVvf45/UZ+ZsPtWhMObyLSD09nYcJQAcD9W7TMloCINCLp1lkLLwexBVglDCwmIDJNwPhKxifATxnSbrtcOQ8ntGnWSb0W/WxzIDVgNO1+w3cr6Mw+iVR1gAAAABJRU5ErkJggg==\"},\"7bbc\":function(t,e,n){var r=n(\"6821\"),o=n(\"9093\").f,a={}.toString,i=\"object\"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],c=function(t){try{return o(t)}catch(e){return i.slice()}};t.exports.f=function(t){return i&&\"[object Window]\"==a.call(t)?c(t):o(r(t))}},\"8a81\":function(t,e,n){\"use strict\";var r=n(\"7726\"),o=n(\"69a8\"),a=n(\"9e1e\"),i=n(\"5ca1\"),c=n(\"2aba\"),s=n(\"67ab\").KEY,u=n(\"79e5\"),f=n(\"5537\"),l=n(\"7f20\"),d=n(\"ca5a\"),g=n(\"2b4c\"),h=n(\"37c8\"),p=n(\"3a72\"),m=n(\"d4c0\"),A=n(\"1169\"),b=n(\"cb7c\"),v=n(\"d3f4\"),y=n(\"4bf8\"),w=n(\"6821\"),S=n(\"6a99\"),C=n(\"4630\"),E=n(\"2aeb\"),B=n(\"7bbc\"),O=n(\"11e9\"),k=n(\"2621\"),P=n(\"86cc\"),x=n(\"0d58\"),D=O.f,Q=P.f,j=B.f,U=r.Symbol,N=r.JSON,V=N&&N.stringify,Y=\"prototype\",R=g(\"_hidden\"),J=g(\"toPrimitive\"),I={}.propertyIsEnumerable,K=f(\"symbol-registry\"),L=f(\"symbols\"),W=f(\"op-symbols\"),G=Object[Y],M=\"function\"==typeof U&&!!k.f,q=r.QObject,T=!q||!q[Y]||!q[Y].findChild,Z=a&&u((function(){return 7!=E(Q({},\"a\",{get:function(){return Q(this,\"a\",{value:7}).a}})).a}))?function(t,e,n){var r=D(G,e);r&&delete G[e],Q(t,e,n),r&&t!==G&&Q(G,e,r)}:Q,_=function(t){var e=L[t]=E(U[Y]);return e._k=t,e},F=M&&\"symbol\"==typeof U.iterator?function(t){return\"symbol\"==typeof t}:function(t){return t instanceof U},z=function(t,e,n){return t===G&&z(W,e,n),b(t),e=S(e,!0),b(n),o(L,e)?(n.enumerable?(o(t,R)&&t[R][e]&&(t[R][e]=!1),n=E(n,{enumerable:C(0,!1)})):(o(t,R)||Q(t,R,C(1,{})),t[R][e]=!0),Z(t,e,n)):Q(t,e,n)},H=function(t,e){b(t);var n,r=m(e=w(e)),o=0,a=r.length;while(a>o)z(t,n=r[o++],e[n]);return t},X=function(t,e){return void 0===e?E(t):H(E(t),e)},$=function(t){var e=I.call(this,t=S(t,!0));return!(this===G&&o(L,t)&&!o(W,t))&&(!(e||!o(this,t)||!o(L,t)||o(this,R)&&this[R][t])||e)},tt=function(t,e){if(t=w(t),e=S(e,!0),t!==G||!o(L,e)||o(W,e)){var n=D(t,e);return!n||!o(L,e)||o(t,R)&&t[R][e]||(n.enumerable=!0),n}},et=function(t){var e,n=j(w(t)),r=[],a=0;while(n.length>a)o(L,e=n[a++])||e==R||e==s||r.push(e);return r},nt=function(t){var e,n=t===G,r=j(n?W:w(t)),a=[],i=0;while(r.length>i)!o(L,e=r[i++])||n&&!o(G,e)||a.push(L[e]);return a};M||(U=function(){if(this instanceof U)throw TypeError(\"Symbol is not a constructor!\");var t=d(arguments.length>0?arguments[0]:void 0),e=function(n){this===G&&e.call(W,n),o(this,R)&&o(this[R],t)&&(this[R][t]=!1),Z(this,t,C(1,n))};return a&&T&&Z(G,t,{configurable:!0,set:e}),_(t)},c(U[Y],\"toString\",(function(){return this._k})),O.f=tt,P.f=z,n(\"9093\").f=B.f=et,n(\"52a7\").f=$,k.f=nt,a&&!n(\"2d00\")&&c(G,\"propertyIsEnumerable\",$,!0),h.f=function(t){return _(g(t))}),i(i.G+i.W+i.F*!M,{Symbol:U});for(var rt=\"hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables\".split(\",\"),ot=0;rt.length>ot;)g(rt[ot++]);for(var at=x(g.store),it=0;at.length>it;)p(at[it++]);i(i.S+i.F*!M,\"Symbol\",{for:function(t){return o(K,t+=\"\")?K[t]:K[t]=U(t)},keyFor:function(t){if(!F(t))throw TypeError(t+\" is not a symbol!\");for(var e in K)if(K[e]===t)return e},useSetter:function(){T=!0},useSimple:function(){T=!1}}),i(i.S+i.F*!M,\"Object\",{create:X,defineProperty:z,defineProperties:H,getOwnPropertyDescriptor:tt,getOwnPropertyNames:et,getOwnPropertySymbols:nt});var ct=u((function(){k.f(1)}));i(i.S+i.F*ct,\"Object\",{getOwnPropertySymbols:function(t){return k.f(y(t))}}),N&&i(i.S+i.F*(!M||u((function(){var t=U();return\"[null]\"!=V([t])||\"{}\"!=V({a:t})||\"{}\"!=V(Object(t))}))),\"JSON\",{stringify:function(t){var e,n,r=[t],o=1;while(arguments.length>o)r.push(arguments[o++]);if(n=e=r[1],(v(e)||void 0!==t)&&!F(t))return A(e)||(e=function(t,e){if(\"function\"==typeof n&&(e=n.call(this,t,e)),!F(e))return e}),r[1]=e,V.apply(N,r)}}),U[Y][J]||n(\"32e9\")(U[Y],J,U[Y].valueOf),l(U,\"Symbol\"),l(Math,\"Math\",!0),l(r.JSON,\"JSON\",!0)},9093:function(t,e,n){var r=n(\"ce10\"),o=n(\"e11e\").concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},ac4d:function(t,e,n){n(\"3a72\")(\"asyncIterator\")},bf1f:function(t,e){t.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAACrElEQVRYR8VXS3LaQBDtlkRgF1MR6+Aqm23ICQw3sG/g3ADvIJuwitg5N0huYG4AnCBkC1QF1pAy2WELqVM9IKLPSDN8qtCGAqZ7Xr/+PSGc+cEz3w97Abj+/FwFz78BpFsGjgg1/iSCvgiEsAumMRh/LQ51A9MCcNWc1wzA74BQ1nJMMPWBPk06pQ2wjCcTQLn9fJFbeU9BpCpn8f+ZGbdg3k3bxWWabSoAQTd5PQS42Pfi8HkCWAKa9bS0SAHw5Ujez2MuTrCB5kcZiAQAQfuL9/vYyBMAAJZu3ryMpyMB4Lo17yPgTVb0RPAXABoumKLIcuDVEKENAO8Vdv1xx66Hz0QAiGpH7Cmon73mzSpHwucBLZo4xQEz92a17gPihyx7n6ge7o4IgEprMVVFwQ7WBWuYe1n3ELAq2h9o6OaturVaV5UBEExHHfsyALkDoFt4I8fGq9afhgH0GI7UB3yYOO++VVoLUhUvhQpyB0DmVOaIAVSa8zYgfom2G/H04/ppqAAEYPncfwY0io8N0gCoLo2BHYydkhjj+gCIfr0WrFrWVGOHOsVIQEkAqtzFqzcrYp1uYiYjDJwdgGoAyRhgGyCk+HBRMSBNwUEAmgux5cYdO7KwDgKgakMZA6IduTM6JfEZPCoA8jZUbEBpCpqL+y0DP/YBIB1E7CBrFJ+wC2Yjx94pq32W0d3Isbs6A6fSWrBmfJKdzVxGbJBWjLxwiOBBpfM4/4jwGCyqtAmYWEbBD1sdOEWEtzrR6p5hDeEWzLJSkAgWTizJhIAxzJqWJAsiEqLU9/rHMpF1eWQUy6jc6MN1VyXR0tLAE8/NW7cHyXJJX3OvZ2q+kM3MJ7pXFaySgXhknBYiv4bgb17NtuKVI+XvBEYX0eif/NVMt9IPOaf1bniIY12bf7ZOhzAhOjIGAAAAAElFTkSuQmCC\"},cd1c:function(t,e,n){var r=n(\"e853\");t.exports=function(t,e){return new(r(t))(e)}},d4c0:function(t,e,n){var r=n(\"0d58\"),o=n(\"2621\"),a=n(\"52a7\");t.exports=function(t){var e=r(t),n=o.f;if(n){var i,c=n(t),s=a.f,u=0;while(c.length>u)s.call(t,i=c[u++])&&e.push(i)}return e}},e853:function(t,e,n){var r=n(\"d3f4\"),o=n(\"1169\"),a=n(\"2b4c\")(\"species\");t.exports=function(t){var e;return o(t)&&(e=t.constructor,\"function\"!=typeof e||e!==Array&&!o(e.prototype)||(e=void 0),r(e)&&(e=e[a],null===e&&(e=void 0))),void 0===e?Array:e}},f1ae:function(t,e,n){\"use strict\";var r=n(\"86cc\"),o=n(\"4630\");t.exports=function(t,e,n){e in t?r.f(t,e,o(0,n)):t[e]=n}}}]);"
  },
  {
    "path": "public/js/chunk-57425795.4709a7c2.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-57425795\"],{\"1a95\":function(t,e,i){\"use strict\";i(\"91a3\")},\"794d\":function(t,e,i){\"use strict\";i.r(e);var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i(\"el-container\",{staticClass:\"layout-container\"},[t.showAside?i(\"el-aside\",{staticClass:\"admin-view-aside\",attrs:{width:t.isCollapse?\"65px\":\"240px\"}},[i(\"el-menu\",{staticClass:\"admin-view-menu\",attrs:{\"default-active\":t.active,router:!0,collapse:t.isCollapse}},[i(\"el-menu-item\",{attrs:{index:\"/admin/document/index\"}},[i(\"i\",{staticClass:\"wi wi-folder\"}),i(\"span\",{attrs:{slot:\"title\"},slot:\"title\"},[t._v(\"我的文档管理\")])]),i(\"div\",{staticClass:\"line\"}),i(\"el-menu-item\",{attrs:{index:\"/admin/document/star\"}},[i(\"i\",{staticClass:\"wi wi-star\"}),i(\"span\",{attrs:{slot:\"title\"},slot:\"title\"},[t._v(\"我的星标\")])]),i(\"el-menu-item\",{attrs:{index:\"/admin/document/history\"}},[i(\"i\",{staticClass:\"wi wi-waiting\"}),i(\"span\",{attrs:{slot:\"title\"},slot:\"title\"},[t._v(\"历史查看\")])]),i(\"el-menu-item\",{attrs:{index:\"/admin/document/involved\"}},[i(\"i\",{staticClass:\"wi wi-wocanyude\"}),i(\"span\",{attrs:{slot:\"title\"},slot:\"title\"},[t._v(\"我参与的\")])])],1)],1):t._e(),i(\"el-main\",[i(\"keep-alive\",{attrs:{include:\"documentIndex\"}},[i(\"router-view\")],1)],1)],1)},n=[],s=(i(\"7f7f\"),{name:\"documentLayout\",data:function(){return{active:\"/admin/document/index\",isCollapse:!1,showAside:!0}},watch:{$route:function(t){\"manageSetting\"===t.name||\"chapter\"===t.name?this.showAside=!1:this.showAside=!0}},beforeRouteEnter:function(t,e,i){i((function(e){\"/admin/document/star\"==t.path||\"/admin/document/history\"==t.path||\"/admin/document/involved\"==t.path?e.active=t.path:e.active=\"/admin/document/index\",\"manageSetting\"===t.name||\"chapter\"===t.name?e.showAside=!1:e.showAside=!0}))}}),o=s,l=(i(\"1a95\"),i(\"2877\")),d=Object(l[\"a\"])(o,a,n,!1,null,\"70c2a92a\",null);e[\"default\"]=d.exports},\"91a3\":function(t,e,i){}}]);"
  },
  {
    "path": "public/js/chunk-5b1f82de.b6b71a96.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-5b1f82de\"],{\"11e9\":function(t,e,a){var o=a(\"52a7\"),i=a(\"4630\"),n=a(\"6821\"),r=a(\"6a99\"),l=a(\"69a8\"),s=a(\"c69a\"),c=Object.getOwnPropertyDescriptor;e.f=a(\"9e1e\")?c:function(t,e){if(t=n(t),e=r(e,!0),s)try{return c(t,e)}catch(a){}if(l(t,e))return i(!o.f.call(t,e),t[e])}},\"1cb1\":function(t,e,a){},\"2f21\":function(t,e,a){\"use strict\";var o=a(\"79e5\");t.exports=function(t,e){return!!t&&o((function(){e?t.call(null,(function(){}),1):t.call(null)}))}},\"40a8\":function(t,e,a){},\"55dd\":function(t,e,a){\"use strict\";var o=a(\"5ca1\"),i=a(\"d8e8\"),n=a(\"4bf8\"),r=a(\"79e5\"),l=[].sort,s=[1,2,3];o(o.P+o.F*(r((function(){s.sort(void 0)}))||!r((function(){s.sort(null)}))||!a(\"2f21\")(l)),\"Array\",{sort:function(t){return void 0===t?l.call(n(this)):l.call(n(this),i(t))}})},\"732d\":function(t,e,a){\"use strict\";a.r(e);var o=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a(\"div\",{staticClass:\"setting\"},[a(\"el-tabs\",{model:{value:t.activeName,callback:function(e){t.activeName=e},expression:\"activeName\"}},[a(\"el-tab-pane\",{attrs:{label:\"首页设置\",name:\"index\"}},[a(\"table\",[a(\"tr\",[a(\"th\",{attrs:{width:\"200\"}},[t._v(\"基本设置\")]),a(\"th\"),a(\"th\",{attrs:{width:\"200\"}},[t._v(\"操作\")])]),a(\"tr\",[a(\"td\",[t._v(\"开启首页\")]),a(\"td\",[t.homeData&&t.homeData.open_home?[t._v(t._s(t.homeData.open_home.url))]:t._e()],2),a(\"td\",[t.homeData&&t.homeData.open_home?a(\"el-switch\",{attrs:{\"active-color\":\"#4096f9\",\"inactive-color\":\"#999\",\"active-value\":1,\"inactive-value\":0},on:{change:t.openHomeChange},model:{value:t.homeData.open_home.is_open,callback:function(e){t.$set(t.homeData.open_home,\"is_open\",e)},expression:\"homeData.open_home.is_open\"}}):t._e()],1)]),a(\"tr\",[a(\"td\",[t._v(\"首页banner图\")]),a(\"td\"),a(\"td\",[a(\"span\",{on:{click:t.showUploadBannerDialog}},[t._v(\"设置\")])])]),a(\"tr\",[a(\"td\",[t._v(\"文档首页名称\")]),a(\"td\"),a(\"td\",[a(\"span\",{on:{click:t.showTitleDialog}},[t._v(\"设置\")])])])]),a(\"el-dialog\",{attrs:{title:\"banner上传\",visible:t.uploadBannerDialogVisible,center:\"\",width:\"500px\"},on:{\"update:visible\":function(e){t.uploadBannerDialogVisible=e}}},[a(\"el-form\",{ref:\"uploadBannerForm\",attrs:{model:t.uploadBannerForm,\"label-width\":\"150px\"}},[a(\"el-form-item\",[a(\"el-upload\",{staticClass:\"avatar-uploader\",attrs:{action:\"/common/upload/image\",accept:\"image/*\",\"show-file-list\":!1,\"on-success\":t.handleUploadSuccess,\"before-upload\":t.beforeAvatarUpload}},[t.imageUrl?a(\"img\",{staticClass:\"avatar\",attrs:{src:t.imageUrl}}):a(\"i\",{staticClass:\"el-icon-plus avatar-uploader-icon\"})])],1)],1),a(\"span\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[a(\"el-button\",{on:{click:function(e){t.uploadBannerDialogVisible=!1}}},[t._v(\"取 消\")]),a(\"el-button\",{attrs:{type:\"primary\"},on:{click:t.submitBannerForm}},[t._v(\"确 定\")])],1)],1),a(\"el-dialog\",{attrs:{title:\"文档首页名称修改\",visible:t.titleDialogVisible,center:\"\",width:\"500px\"},on:{\"update:visible\":function(e){t.titleDialogVisible=e}}},[a(\"el-form\",{ref:\"uploadBannerForm\",attrs:{model:t.titleForm,\"label-width\":\"100px\"}},[a(\"el-form-item\",{attrs:{label:\"文档首页名称\"}},[a(\"el-input\",{attrs:{maxlength:\"20\"},model:{value:t.titleForm.title,callback:function(e){t.$set(t.titleForm,\"title\",e)},expression:\"titleForm.title\"}})],1)],1),a(\"span\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[a(\"el-button\",{on:{click:function(e){t.titleDialogVisible=!1}}},[t._v(\"取 消\")]),a(\"el-button\",{attrs:{type:\"primary\"},on:{click:t.submitTitleForm}},[t._v(\"确 定\")])],1)],1)],1),a(\"el-tab-pane\",{attrs:{label:\"文档设置\",name:\"document\"}},[a(\"index-doc-setting\")],1)],1)],1)},i=[],n=a(\"1c1e\"),r=function(t){return Object(n[\"a\"])({url:\"/admin/home/get-set\",params:t,method:\"get\"})},l=function(t){return Object(n[\"a\"])({url:\"/admin/home/set-open\",data:t,method:\"post\"})},s=function(t){return Object(n[\"a\"])({url:\"/admin/home/set-banner\",data:t,method:\"post\"})},c=function(t){return Object(n[\"a\"])({url:\"/admin/home/set-title\",data:t,method:\"post\"})},u=function(t){return Object(n[\"a\"])({url:\"/admin/home/list\",params:t,method:\"get\"})},m=function(t){return Object(n[\"a\"])({url:\"/admin/home/get-type\",params:t,method:\"get\"})},d=function(t){return Object(n[\"a\"])({url:\"/admin/home/search-doc\",data:t,method:\"post\"})},f=function(t){return Object(n[\"a\"])({url:\"/admin/home/add\",data:t,method:\"post\"})},h=function(t){return Object(n[\"a\"])({url:\"/admin/home/edit\",data:t,method:\"post\"})},p=function(t){return Object(n[\"a\"])({url:\"/admin/home/delete\",data:t,method:\"post\"})},g=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a(\"div\",{staticClass:\"setting\"},[a(\"div\",{staticClass:\"tab-wrap\"},[a(\"el-tabs\",{on:{\"tab-click\":t.handleClick},model:{value:t.activeName,callback:function(e){t.activeName=e},expression:\"activeName\"}},[a(\"el-tab-pane\",{attrs:{label:\"全部\",name:\"0\"}}),a(\"el-tab-pane\",{attrs:{label:\"公告\",name:\"1\"}}),a(\"el-tab-pane\",{attrs:{label:\"首页类型一\",name:\"2\"}}),a(\"el-tab-pane\",{attrs:{label:\"首页类型二\",name:\"3\"}})],1),a(\"el-button\",{staticClass:\"add\",attrs:{type:\"primary\",size:\"small\"},on:{click:function(e){return t.showDialogForm(0)}}},[t._v(\"添加首页文档\")])],1),a(\"div\",{staticClass:\"reset-element\"},[a(\"el-table\",{staticStyle:{width:\"100%\"},attrs:{data:t.docSettingData}},[a(\"el-table-column\",{attrs:{align:\"center\",prop:\"sort\",label:\"排序\",width:\"80\"}}),a(\"el-table-column\",{attrs:{align:\"center\",prop:\"document_name\",label:\"首页名称\"}}),2==t.activeName||0==t.activeName?a(\"el-table-column\",{attrs:{align:\"center\",label:\"导航图标\"},scopedSlots:t._u([{key:\"default\",fn:function(e){var o=e.row;return[o.logo?a(\"img\",{staticClass:\"nav-icon\",attrs:{src:o.logo}}):a(\"span\",[t._v(\"--\")])]}}],null,!1,537090118)}):t._e(),a(\"el-table-column\",{attrs:{align:\"center\",label:\"文档地址\"},scopedSlots:t._u([{key:\"default\",fn:function(e){var o=e.row;return[o.first_chapter_id?a(\"a\",{attrs:{target:\"_blank\",href:t.origin+\"/chapter/\"+o.document_id+\"?id=\"+o.first_chapter_id}},[t._v(t._s(t.origin+\"/chapter/\"+o.document_id+\"?id=\"+o.first_chapter_id))]):a(\"span\",[t._v(\"--\")])]}}])}),a(\"el-table-column\",{attrs:{align:\"center\",prop:\"type_name\",label:\"首页显示类型\"}}),a(\"el-table-column\",{attrs:{width:\"150\",align:\"center\",label:\"操作\"},scopedSlots:t._u([{key:\"default\",fn:function(e){var o=e.row;return[a(\"span\",{staticClass:\"edit\",on:{click:function(e){return t.showDialogForm(1,o)}}},[t._v(\"编辑\")]),a(\"span\",{staticClass:\"remove\",on:{click:function(e){return t.remove(o)}}},[t._v(\"删除\")])]}}])})],1),t.total>10?a(\"el-pagination\",{attrs:{small:\"\",background:\"\",layout:\"prev, pager, next\",total:t.total,\"current-page\":t.page,\"page-size\":t.pageSize},on:{\"current-change\":t.handleCurrentChange}}):t._e()],1),a(\"el-dialog\",{attrs:{title:\"首页设置\",visible:t.dialogFormVisible},on:{\"update:visible\":function(e){t.dialogFormVisible=e}}},[a(\"el-form\",{attrs:{model:t.form}},[a(\"el-form-item\",{attrs:{label:\"首页类型\",\"label-width\":t.formLabelWidth}},[a(\"el-select\",{attrs:{placeholder:\"请选择类型\",disabled:t.isEdit},model:{value:t.form.type,callback:function(e){t.$set(t.form,\"type\",e)},expression:\"form.type\"}},t._l(t.hometypes,(function(t){return a(\"el-option\",{key:t.val,attrs:{label:t.label,value:t.val}})})),1)],1),1!==t.form.type?a(\"el-form-item\",{attrs:{label:\"文档排序\",\"label-width\":t.formLabelWidth}},[a(\"el-input-number\",{attrs:{controls:!1,min:0,max:100,precision:0,placeholder:\"输入整数，数值越小排名越靠前\"},model:{value:t.form.sort,callback:function(e){t.$set(t.form,\"sort\",e)},expression:\"form.sort\"}})],1):t._e(),2===t.form.type?a(\"el-form-item\",{attrs:{label:\"文档图标\",\"label-width\":t.formLabelWidth}},[a(\"el-upload\",{staticClass:\"avatar-uploader\",attrs:{action:\"/common/upload/image\",accept:\"image/*\",\"show-file-list\":!1,\"on-success\":t.handleUploadSuccess,\"before-upload\":t.beforeAvatarUpload}},[t.form.logo?a(\"img\",{staticClass:\"avatar\",attrs:{src:t.form.logo,alt:\"\"}}):a(\"i\",{staticClass:\"el-icon-plus avatar-uploader-icon\"})])],1):t._e(),a(\"el-form-item\",{attrs:{label:\"添加文档\",\"label-width\":t.formLabelWidth}},[a(\"el-autocomplete\",{staticClass:\"inline-input\",attrs:{\"fetch-suggestions\":t.querySearch,placeholder:\"请输入文档名称\",\"trigger-on-focus\":!1,clearable:\"\"},on:{select:t.handleSelect},model:{value:t.searchForm.keyword,callback:function(e){t.$set(t.searchForm,\"keyword\",e)},expression:\"searchForm.keyword\"}})],1),2===t.form.type?a(\"el-form-item\",{attrs:{label:\"文档简介\",\"label-width\":t.formLabelWidth}},[a(\"el-input\",{attrs:{type:\"textarea\",rows:2,placeholder:\"不超过25个字\"},model:{value:t.form.desc,callback:function(e){t.$set(t.form,\"desc\",e)},expression:\"form.desc\"}})],1):t._e()],1),a(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[a(\"el-button\",{on:{click:function(e){t.dialogFormVisible=!1}}},[t._v(\"取 消\")]),a(\"el-button\",{attrs:{type:\"primary\"},on:{click:t.submitForm}},[t._v(\"确 定\")])],1)],1)],1)},b=[],v=(a(\"8e6e\"),a(\"456d\"),a(\"ac6a\"),a(\"55dd\"),a(\"7f7f\"),a(\"fc11\"));function y(t,e){var a=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),a.push.apply(a,o)}return a}function _(t){for(var e=1;e<arguments.length;e++){var a=null!=arguments[e]?arguments[e]:{};e%2?y(Object(a),!0).forEach((function(e){Object(v[\"a\"])(t,e,a[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(a)):y(Object(a)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(a,e))}))}return t}var w={name:\"indexDocSetting\",data:function(){return{origin:\"\",activeName:localStorage.homeDocSetActiveHome||0,docSettingData:[],queryList:{type:localStorage.homeDocSetActiveHome||0},total:0,page:1,pageSize:10,dialogFormVisible:!1,formLabelWidth:\"120px\",hometypes:[],form:{type:1,document_id:void 0,logo:void 0,desc:void 0,sort:void 0,id:void 0},form2:{type:1,document_id:\"\",logo:\"\",desc:\"\",sort:\"\",id:\"\"},imageUrl:\"\",searchForm:{keyword:void 0},restaurants:[],isEdit:!1}},created:function(){this.init()},methods:{init:function(){this.origin=location.origin,this.getHomeType(),this.getHomeList()},getHomeType:function(){var t=this;m().then((function(e){200===e.code&&(t.hometypes=e.data)})).catch((function(t){}))},getHomeList:function(){var t=this;u(_(_({},this.queryList),{},{page:this.page,page_size:this.pageSize})).then((function(e){200===e.code&&(t.docSettingData=e.data.data,t.total=e.data.total,t.page=e.data.page_current)})).catch((function(t){}))},handleClick:function(t){this.queryList.type=t.name,this.page=1,localStorage.homeDocSetActiveHome=t.name,this.getHomeList()},showDialogForm:function(t,e){if(this.dialogFormVisible=!0,this.form=JSON.parse(JSON.stringify(this.form2)),this.isEdit=t>0,this.searchForm.keyword=\"\",this.isEdit)this.form.id=e.id,this.form.type=e.type,this.form.sort=e.sort,this.form.logo=e.logo,this.form.desc=e.description;else{var a=+this.activeName;this.form.type=a||1}},remove:function(t){var e=this;this.$confirm(\"此操作将删除该设置, 是否继续?\",\"提示\",{confirmButtonText:\"确定\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){p({id:t.id}).then((function(t){200===t.code&&(e.$message.success(\"删除成功!\"),e.getHomeList())})).catch((function(t){}))})).catch((function(){e.$message.info(\"已取消删除\")}))},handleUploadSuccess:function(t){200===t.code&&(this.form.logo=t.data.url)},beforeAvatarUpload:function(t){var e=5,a=t.size/1024/1024<=e;return a||this.$message.error(\"上传图片大小不能超过\".concat(e,\"MB!\")),a},querySearch:function(t,e){var a=this;d(this.searchForm).then((function(t){a.restaurants=t.data,a.restaurants.forEach((function(t){t[\"value\"]=t.name})),e(a.restaurants)})).finally((function(){a.listLoading=!1}))},handleSelect:function(t){this.form.document_id=t.document_id},submitForm:function(){this.isEdit?this.homeEdit():this.homeAdd()},homeEdit:function(){var t=this;h(this.form).then((function(e){200===e.code&&(t.dialogFormVisible=!1,t.$message.success(\"更新成功\"),t.getHomeList())}))},homeAdd:function(){var t=this;f(this.form).then((function(e){200===e.code&&(t.dialogFormVisible=!1,t.$message.success(\"保存成功\"),t.getHomeList())}))},handleCurrentChange:function(t){this.page=t,this.getHomeList()}}},D=w,F=(a(\"e1ff\"),a(\"2877\")),O=Object(F[\"a\"])(D,g,b,!1,null,\"4599d29e\",null),k=O.exports,S={name:\"indexSetting\",components:{indexDocSetting:k},data:function(){return{homeData:[],uploadBannerDialogVisible:!1,titleDialogVisible:!1,uploadBannerForm:{images:[]},imageUrl:\"\",titleForm:{title:\"\"},activeName:\"index\"}},created:function(){this.init()},methods:{init:function(){this.getHomeData()},getHomeData:function(){var t=this;r().then((function(e){200===e.code&&(t.homeData=e.data)})).catch((function(t){}))},openHomeChange:function(t){var e=this;l({is_open:t}).then((function(t){200===t.code&&e.getHomeData()})).catch((function(t){}))},showUploadBannerDialog:function(){this.uploadBannerDialogVisible=!0,this.uploadBannerForm.images=this.homeData.banner,this.imageUrl=this.homeData.banner[0]},showTitleDialog:function(){this.titleDialogVisible=!0,this.titleForm.title=this.homeData.title},handleUploadSuccess:function(t){200===t.code&&(this.imageUrl=t.data.url,this.uploadBannerForm.images=[],this.uploadBannerForm.images.push(t.data.url))},beforeAvatarUpload:function(t){var e=5,a=t.size/1024/1024<=e;return a||this.$message.error(\"上传图片大小不能超过\".concat(e,\"MB!\")),a},submitBannerForm:function(){var t=this;if(!this.uploadBannerForm.images.length)return this.$message.closeAll(),this.$message.error(\"请上传图片\"),!1;s(this.uploadBannerForm).then((function(e){200===e.code&&(t.uploadBannerDialogVisible=!1,t.$message.success(\"图片保存成功\"),t.getHomeData())})).catch((function(t){}))},submitTitleForm:function(){var t=this;if(!this.titleForm.title.length)return this.$message.closeAll(),this.$message.error(\"文档首页名称不能为空\"),!1;c(this.titleForm).then((function(e){200===e.code&&(t.titleDialogVisible=!1,t.$message.success(\"保存成功\"),t.getHomeData())})).catch((function(t){}))}}},x=S,j=(a(\"d23f\"),Object(F[\"a\"])(x,o,i,!1,null,\"091246e5\",null));e[\"default\"]=j.exports},\"8e6e\":function(t,e,a){var o=a(\"5ca1\"),i=a(\"990b\"),n=a(\"6821\"),r=a(\"11e9\"),l=a(\"f1ae\");o(o.S,\"Object\",{getOwnPropertyDescriptors:function(t){var e,a,o=n(t),s=r.f,c=i(o),u={},m=0;while(c.length>m)a=s(o,e=c[m++]),void 0!==a&&l(u,e,a);return u}})},9093:function(t,e,a){var o=a(\"ce10\"),i=a(\"e11e\").concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return o(t,i)}},\"990b\":function(t,e,a){var o=a(\"9093\"),i=a(\"2621\"),n=a(\"cb7c\"),r=a(\"7726\").Reflect;t.exports=r&&r.ownKeys||function(t){var e=o.f(n(t)),a=i.f;return a?e.concat(a(t)):e}},d23f:function(t,e,a){\"use strict\";a(\"1cb1\")},e1ff:function(t,e,a){\"use strict\";a(\"40a8\")},f1ae:function(t,e,a){\"use strict\";var o=a(\"86cc\"),i=a(\"4630\");t.exports=function(t,e,a){e in t?o.f(t,e,i(0,a)):t[e]=a}},fc11:function(t,e,a){\"use strict\";function o(t,e,a){return e in t?Object.defineProperty(t,e,{value:a,enumerable:!0,configurable:!0,writable:!0}):t[e]=a,t}a.d(e,\"a\",(function(){return o}))}}]);"
  },
  {
    "path": "public/js/chunk-654f0b98.4b5aff3b.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-654f0b98\"],{\"063d\":function(e,t,i){\"use strict\";i(\"a844\")},2630:function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkE1N0U5NzQzRTVCMTExRUFCMjVGODlCRjEyRTUwMTEyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkE1N0U5NzQ0RTVCMTExRUFCMjVGODlCRjEyRTUwMTEyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QTU3RTk3NDFFNUIxMTFFQUIyNUY4OUJGMTJFNTAxMTIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QTU3RTk3NDJFNUIxMTFFQUIyNUY4OUJGMTJFNTAxMTIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6ZSNkHAAABF0lEQVR42mL4//8/Ax7sBcSvgHgLELNjU8NAwIAV/xHgNhBrEmOAOBDHA/F0IH7yHxX8BeJwfAYUAvG3/4TBNCBmQjeg4T9pQB/ZACsSNZ8BYn5kA+5hUQTy708s4pPRw8AETcFWIA4FYhkg3o4ml46kWR2Ik0CMEiQFiWiBagvEb4D4ARDboMkdBOJzIMYyqGY7NAWGQNwIjTY2NLk0qJ41IM4CqGnICqKRXLUJSZwFiJuR5LpAglpALI2kqAPN36+hCasbiB+iyTkh2yoFxKdIiMpHyNEISlXvSUwLFiC9TAwI8JeBeJAFxCfALCQviEADEx8ApQtjQrlxBpqmH0DsC8SKpJQHeUD8Eog/AfEOfGUGQIABAOmHtnsc9MOfAAAAAElFTkSuQmCC\"},2748:function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjNGNDk0QjYzRTVCMDExRUFCNzVFOTk3NDg1RjBDMUY5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjNGNDk0QjY0RTVCMDExRUFCNzVFOTk3NDg1RjBDMUY5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6M0Y0OTRCNjFFNUIwMTFFQUI3NUU5OTc0ODVGMEMxRjkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6M0Y0OTRCNjJFNUIwMTFFQUI3NUU5OTc0ODVGMEMxRjkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz43AAf6AAAEHUlEQVR42sSYeUgVURTGn/oyMy3NCk3cIIqyDQkro9LMNAkKSioIkgLLemBFG7SHEWTRImlBgf2VKQkG7blVBgViZZFQEJlatmhZZmnbd+EMHG7jm5n73qsDv/fu3Jm595u7nnu8Egu+21y0cBALokAICATtoAU0gCfOXq7K9nVauF1R1DyQBKaDeINyhMAqUAvOg99WKrIqcB3IBJMtvBNLOMABUASOgk/uFChaK58qku0teAbegc/UQgFgCIihrtcsGuyhD80B54wq9jIxBnPBdimvFVwCF0Al6HXy/lSwCKSBcdI90eVZGIedKgK9aOzMYnld4DDYD3oUxu4qsA+MYHlvwBSIbNJ7wdtJYQ8kcWXURbsVxQk7AyLBMZYXCp4mFfaEWxFYDSaw6y3UTe9trttPsB7MZ3n+4CFEDjAjME9qOQfludvEGE5m12INvWYkcBrYxK63ghM2z1mlJHIGWtHhTGAxS98EB20eNkyOSlp6NMuHyBg9gVk0gDVbYPtHBpF78feaZe3QE7iNpXeCrxbrCaZl6R4YraBzMUtnohUjuMA0WvVttCPkKlQwFyTS3rxBoRXv4q+ONdxSLjCVPVuu2FN+LN1PsYzTLJ3CBSawGyWKhfPtTtWHOwu6KZ2Mbh7mTf5cPGV+ADds/8nQzULcfdbNKeInjj3zyIXyW1i6w4Vymlk6ys4mh9mCB5H7FcS6tVfafUSPZLCx6AO+gVugzaB8fj/QTn6bZmaWlsvkSTuzOYRswkkNY+NMz7iGYG9yqzQz445HuNB9g03McH6GabdLrrefiUpSya+Tu3gsazVRSQUTY6dWKwWdBhOlGLN3ODkPeeLFV9IXGlkj2KyTn8gElut44VZm83G+1dWze2Nc6L4wlg5y19IjBD6nVtHGV5xiWV59pF0WKKyG5S1RLMvHDeftPgXeZnkZbhDoq1IAJkcK2AiCZIGlFK6w0cK9TKH8Gjojd0mbvllx4kB2nU6N+bLAHp4JO6Ug8AWNYbG331F4/yJLD9VzWHk4QgSATipU0mM2pCG13gr8jZeCBX8J/AhWsuvVIN3THgx1bRHLKsA6WNvXoamMjoP8aJjkQX3RFKLjcZ4co3PxQsmjEKeu2R4QN5K2xACWl4zW+2EkUDwwUfIqKlzZunRsjQh3UERBs3SIe2w29NFGkagOaeA2SOcXqzaJwiqF0mIuxF2xGjwSy8Yo8v80E6Kv0vHSIfmSzjaD5eRA1EuOrfDCE/oSZxR+45YtZpdOfhcdFVvp4N1CLlYIiReBgFjJkdDsCNgFcV+cVWx2zyykVhNjZy3z8waCmRa7uYQ+tsbMw1Y29UYKmx2iQ7Xm//U3eO8X7SzVtFvUWfkaFa+jmUQKQul8EkmhD39yGrppR3kJRMSgSXVW/RFgACb99tu0X8NAAAAAAElFTkSuQmCC\"},4917:function(e,t,i){\"use strict\";var a=i(\"cb7c\"),l=i(\"9def\"),c=i(\"0390\"),n=i(\"5f1b\");i(\"214f\")(\"match\",1,(function(e,t,i,o){return[function(i){var a=e(this),l=void 0==i?void 0:i[t];return void 0!==l?l.call(i,a):new RegExp(i)[t](String(a))},function(e){var t=o(i,e,this);if(t.done)return t.value;var s=a(e),A=String(this);if(!s.global)return n(s,A);var r=s.unicode;s.lastIndex=0;var g,m=[],I=0;while(null!==(g=n(s,A))){var u=String(g[0]);m[I]=u,\"\"===u&&(s.lastIndex=c(A,l(s.lastIndex),r)),I++}return 0===I?null:m}]}))},9434:function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAARCAYAAAAyhueAAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkFCMjQzMTBFRTVCMTExRUFBNzYzQUNFNzc0MjdFRkU1IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkFCMjQzMTBGRTVCMTExRUFBNzYzQUNFNzc0MjdFRkU1Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QUIyNDMxMENFNUIxMTFFQUE3NjNBQ0U3NzQyN0VGRTUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QUIyNDMxMERFNUIxMTFFQUE3NjNBQ0U3NzQyN0VGRTUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5lgD01AAABYUlEQVR42mL8//8/Aw6gDMQRQOwGZfMB8Vcgvg/E+4B4FRBfwqoTZCgWPOU/cWA+EHOi60c3jA+Ij2PR/BGIrwPxGyxyt4FYAZ+h19E0nAdiPyDmh8pzAbErEB9EU/cOl6EtaAqn4wgaGK5FU78U3VA5NAWHsQSLLRBLoIlvQdNngWzoJjRJUySNwUD8Fir+HYizkOQU0PRdhhmqjCd8RHHEuhqSmqtocjZMwFSVgpbK7iGxLXCkYU8k9k00uRiQoUfRBEWQ2PdxGHoNiS2KJncO5oW7aF6QQvLeYjS5fUhybED8E0nuGxAzwSS90DT2oMVyGBBXA3E8mngFmr5c9HR6BE2BN4F0agzEf5DUP8CW+IWxxHIT1IvoBhZgUasBk2dEK6WcgXgPWsA/A+LLUBoUKTpArICmJg6IF+MrpayA+BaRpdQTIPYnVErBMDM0EkA55BMWDLK0FYi5sekHCDAA6XHJVeB5ArsAAAAASUVORK5CYII=\"},a844:function(e,t,i){},a941b:function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAYAAAAmlE46AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkUwOTA5NkQzRTVCMTExRUFCMDYwRTdFN0VDMjBBNTFDIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkUwOTA5NkQ0RTVCMTExRUFCMDYwRTdFN0VDMjBBNTFDIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RTA5MDk2RDFFNUIxMTFFQUIwNjBFN0U3RUMyMEE1MUMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RTA5MDk2RDJFNUIxMTFFQUIwNjBFN0U3RUMyMEE1MUMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5PTFWmAAABD0lEQVR42mL8//8/AzJo6ptjCqQagdgJiNmB+CBIuK4oZR+yOkZkjUBNgUBqHRB/B+JtUNoViMWBOBOoeQaGRqAmDqjCrUAFPmiumAKksoFYAij3EiTGhCSfCSLQNUHFcqDMSpgYskY7IP7CgBvcBWJLbBo/AfFXPBo/AvE3uB8be2frA2k5IC4HYj0gjgKJo2kCBcR0IP4MVfeIBUjUA3EgkqLNDPjBJiDeAHLqewbSwXuQxn9YJP5CXVICxD+xyP9jwWHiWWAUNEHj0AxIhaErwKVRCahBCBrKJtgUMOHQKALSDMRsUJqBWBtBQAKH/+Aa+XHI4YsWfpDGh0D8AhqSKJJQr6BHFzNID0CAAQDZQ0rGPvmXBQAAAABJRU5ErkJggg==\"},b4e3:function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAEACAYAAACHwJcoAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkI1NUE2QTg5RTZBQjExRUFCRDNFQ0M2QTE2NEVDN0EyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkI1NUE2QThBRTZBQjExRUFCRDNFQ0M2QTE2NEVDN0EyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QjU1QTZBODdFNkFCMTFFQUJEM0VDQzZBMTY0RUM3QTIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QjU1QTZBODhFNkFCMTFFQUJEM0VDQzZBMTY0RUM3QTIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz42+i3YAAAE5UlEQVR42pxaS4sUQQxOyvHB3nwjHkREFL3owYP//yJ4EURQFMWT+ESEEV11Y7X0SG91ku/LNBTLznR15fnlS3p0u902ETkS8ppuPtnXQV/KbpiuTV/n583Uht2mq32dRhts8f+Jvm7MIsITZN48nXSnr1PZhlHh6eb7niHa/KE5Dzvb1132hJ14t/q64G2wQMfpQQ89K2lw87Qu9XUz0kEHkXafP4h0sEC8y31dG/1gICrujZ5WR6yluLen+9sgjgxGWJ56ZhJrNKt34/Lk620woTkiLXW84jkuc+LF0UqaZN70/bmWKOldB414+tIg/80aWWcVZy0woTg32zL4vIDTLEVt8IdnAK1EK3WCetZqSQyZp1MjHXbsBAsc5ZlavHzQYVkElZrIv9Ih0mN1UnRCFIAr9PZsb5FIkYU0c5yyoZGG9CjSKKchT2cnKBKJqtOaJL0wJ2gSHmG0KopWHbDJAuhf1QcLsm4FMxE2aQRkSqK3a9Zos0VQaZlfWlLfQh2gGF7wZYoaiqXI6y5qKBPeRlho5ekIsRXBvSQnuDoYQpEWKBsSlUaIUfKDRH6whA2YF61RarqehiGdwUwJKo0oLOJRuPQ0xGYgCFjygH/foyq6OqUFyR+K2MBNVA+Uco8GSq1EoSEAwd0TLFHezQclzGoNVP6VPlkVTRMoIySKCopkaIiYwJi+1sjksTH4UoiPRFo6zqKTEUlcWQs5zvWDCDfT0Cq2hgUlbQI9GqoI7i0rUaigZBglEZBJAp9lqLRWgZgo+Ch2z6CeeiBgKJlakL9pLAkZgOb1DwY8bw2QwlXdQ+1x2OIboYvLyLIQSXPaMqKroFOEfRz0gxTCAwYf1ccpKlmChh9Li1WgUiKybhXko8k6M+cTFu41mwlk9c5QLIWcrzKFS2fGgmgoappcs0IOzkIlXXbDQbkGFWfVvTeH62WbtBFZBlv8corCgZRWrcSmJ92xp9EKq1EjSJUyGxTVB6sQXRYEymbVyhBBs4JiwWeh4xRNTiL6DOcayjZ+LIiZN5uhC4oSDP8Ym7EKI0NDBMtAgGot2XxWtMF95Vad6CoqKHDITM2MM8cZavwo5GPnfMLqYJW2TDyCpcC7mnUoVCzZvmZFnI8eDArDvSG7Z7pdjRpwyPmEZPcWjYtgfWATSLOJLl3YaU9bNUXLoaEVT5vwL7Shp2WfCRZFHSTrFLMqatUqWs44mA/KFPZsGrqaF7RggAaHm0yLv6oPBpgxjd5pfaAaP4TeKZU2BgSkkqYjaiiLrQLAjEJvRZzPHaJF41NmbKd7e5oC4X16oHLZpUfAgmZk1Ewgiyc4bzWEfJIQXWP4EvSDSvGVOSpTJSYQihQpqbLHL3Nga6kskKEksij4sp9VUQUFvk5QVBTZsqtRxmVKW4tGKhFpZMbYoQ6oPVYGNRT109Q0lJ1prH5dRL/mrAyktAKVhoBMMzC2KBQYgqXohGx6NT7oqDLnm/5+bxGcBPnwZWQzyHkfG5j8jBHwbiS6HmIsH/bGI7oRKPzo621jInS+nntmzWrckwp1eD+Jw4ztdtfjDPnG60NfLzO+NMr/CGHrcuOLvj4x/cO08Wtfz8YvNoGSh309FecX/96G33296uun96TNIPufvl7PYSDZhkmPX319nv9KtsHmm74xvGkzy3zIEqy/AgwAbEf1HHi8x5sAAAAASUVORK5CYII=\"},b56e:function(e,t,i){\"use strict\";i.r(t);var a=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a(\"div\",{staticClass:\"container\"},[a(\"div\",{staticClass:\"page-head\"},[e._v(\"我的文档管理\")]),a(\"div\",{staticClass:\"container-box\"},[a(\"div\",{staticClass:\"search-box\"},[a(\"div\",{staticClass:\"search-box-input\"},[a(\"el-input\",{staticClass:\"demo-input-suffix\",attrs:{placeholder:\"请输入文档名称\",clearable:\"\"},nativeOn:{keyup:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.searchProject(t)}},model:{value:e.listQuery.keyword,callback:function(t){e.$set(e.listQuery,\"keyword\",t)},expression:\"listQuery.keyword\"}},[a(\"i\",{staticClass:\"el-input__icon el-icon-search\",attrs:{slot:\"suffix\"},on:{click:e.searchProject},slot:\"suffix\"})]),a(\"el-select\",{on:{change:e.getAllProject},model:{value:e.listQuery.is_public,callback:function(t){e.$set(e.listQuery,\"is_public\",t)},expression:\"listQuery.is_public\"}},[a(\"el-option\",{attrs:{label:\"全部\",value:\"\"}}),a(\"el-option\",{attrs:{label:\"公有\",value:\"1\"}}),a(\"el-option\",{attrs:{label:\"私有\",value:\"2\"}})],1),a(\"el-select\",{on:{change:e.getAllProject},model:{value:e.listQuery.role,callback:function(t){e.$set(e.listQuery,\"role\",t)},expression:\"listQuery.role\"}},[a(\"el-option\",{attrs:{label:\"全部\",value:\"\"}}),a(\"el-option\",{attrs:{label:\"我创建的\",value:\"1\"}}),a(\"el-option\",{attrs:{label:\"我操作的\",value:\"2\"}})],1)],1)]),a(\"div\",{directives:[{name:\"loading\",rawName:\"v-loading\",value:e.loading,expression:\"loading\"}],staticClass:\"card-box\"},[a(\"div\",{staticClass:\"card-warpper\"},[e._l(e.docList,(function(t,l){return a(\"div\",{key:l,staticClass:\"w7-card\",class:{\"has-cover\":t.cover},style:{backgroundImage:\"url(\"+t.cover+\")\"},on:{click:function(i){return e.goChapter(t)}}},[a(\"img\",{staticClass:\"mask-icon\",attrs:{src:i(\"ffc0\")}}),t.cover?a(\"div\",{staticClass:\"mask\"}):e._e(),a(\"div\",{staticClass:\"mask-content\"},[a(\"div\",{staticClass:\"w7-card-title has-cover\"},[e._v(\"\\n              \"+e._s(t.name)+\"\\n            \")]),a(\"div\",{staticClass:\"time-wrap\"},[t.is_public?e._e():a(\"img\",{attrs:{src:i(\"a941b\")}}),a(\"div\",{staticClass:\"w7-card-time\"},[e._v(\"\\n                \"+e._s(e.format(t.operator.time))+\" \"+e._s(t.operator.name)+\"\\n              \")])]),a(\"div\",{staticClass:\"icon-box\"},[t.acl.has_manage?a(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"转让项目\",placement:\"bottom\"}},[a(\"img\",{attrs:{src:i(\"2630\")},on:{click:function(i){return i.stopPropagation(),e.transferDoc(t.id)}}})]):e._e(),a(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"预览\",placement:\"bottom\"}},[a(\"img\",{attrs:{src:i(\"9434\")},on:{click:function(i){return i.stopPropagation(),e.readDoc(t)}}})]),t.acl.has_manage?a(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"进入管理\",placement:\"bottom\"}},[a(\"img\",{attrs:{src:i(\"d47d\")},on:{click:function(i){return i.stopPropagation(),e.settingDoc(t.id)}}})]):e._e()],1),a(\"div\",{staticClass:\"line\"})])])})),a(\"div\",{staticClass:\"w7-card add-project\",on:{click:e.dialogDocShow}},[a(\"img\",{staticClass:\"mask-icon\",attrs:{src:i(\"b4e3\")}}),a(\"img\",{attrs:{src:i(\"2748\")}}),a(\"div\",{staticClass:\"add-text\"},[e._v(\"新建项目\")])])],2)]),a(\"div\",{staticClass:\"pagination-wrap\"},[a(\"el-pagination\",{attrs:{background:\"\",\"hide-on-single-page\":e.total<=11,\"current-page\":e.listQuery.page,\"page-sizes\":[11,23,35],\"page-size\":e.listQuery.page_size,layout:e.paginationLayouts,total:e.total},on:{\"update:currentPage\":function(t){return e.$set(e.listQuery,\"page\",t)},\"update:current-page\":function(t){return e.$set(e.listQuery,\"page\",t)},\"size-change\":e.handleSizeChange,\"current-change\":e.handleCurrentChange}})],1),a(\"el-dialog\",{staticClass:\"w7-dialog\",attrs:{title:\"创建项目\",visible:e.dialogDocInfoVisible,\"close-on-click-modal\":!1,center:\"\"},on:{\"update:visible\":function(t){e.dialogDocInfoVisible=t}}},[a(\"el-form\",{attrs:{\"label-width\":\"105px\",\"label-position\":\"left\"}},[a(\"el-form-item\",{attrs:{label:\"项目名称\"}},[a(\"el-input\",{attrs:{autocomplete:\"off\"},model:{value:e.name,callback:function(t){e.name=t},expression:\"name\"}})],1),a(\"el-radio-group\",{staticClass:\"ownership\",model:{value:e.radio,callback:function(t){e.radio=t},expression:\"radio\"}},[a(\"el-radio\",{attrs:{label:\"1\"},model:{value:e.radio,callback:function(t){e.radio=t},expression:\"radio\"}},[e._v(\"公开项目\")]),a(\"el-radio\",{attrs:{label:\"2\"},model:{value:e.radio,callback:function(t){e.radio=t},expression:\"radio\"}},[e._v(\"私有项目\")])],1)],1),a(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[a(\"el-button\",{attrs:{type:\"primary\"},on:{click:e.createDoc}},[e._v(\"确 定\")]),a(\"el-button\",{on:{click:function(t){e.dialogDocInfoVisible=!1}}},[e._v(\"取 消\")])],1)],1),a(\"el-dialog\",{staticClass:\"w7-dialog\",attrs:{title:\"管理员转让\",visible:e.dialogTransferDoc,center:\"\"},on:{\"update:visible\":function(t){e.dialogTransferDoc=t}}},[a(\"div\",{staticClass:\"transfer-tip\"},[a(\"i\",{staticClass:\"el-icon-warning\"}),e._v(\"转让管理员权限后您将成为操作员，不再是管理员，请谨慎操作。\\n      \")]),a(\"el-form\",{attrs:{\"label-width\":\"115px\",\"label-position\":\"left\"}},[a(\"el-form-item\",{attrs:{label:\"选择新的管理员\"}},[a(\"el-input\",{attrs:{autocomplete:\"off\"},model:{value:e.transferUsername,callback:function(t){e.transferUsername=t},expression:\"transferUsername\"}})],1)],1),a(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[a(\"el-button\",{attrs:{type:\"primary\"},on:{click:e.transfer}},[e._v(\"确 定\")]),a(\"el-button\",{on:{click:function(t){e.dialogTransferDoc=!1}}},[e._v(\"取 消\")])],1)],1)],1),a(\"el-dialog\",{staticClass:\"we7-dialog dialog-setting\",attrs:{title:\"项目设置\",width:\"1000px\",visible:e.showSetting,\"before-close\":e.handleClose},on:{\"update:visible\":function(t){e.showSetting=t}}},[a(\"setting\",{attrs:{id:e.settingDocId}})],1)],1)},l=[],c=(i(\"ac6a\"),i(\"7f7f\"),i(\"fa7d\")),n=i(\"4ec3\"),o=i(\"49f7\"),s={name:\"documentIndex\",components:{setting:o[\"a\"]},data:function(){return{listQuery:{page:1,page_size:11,keyword:\"\",role:\"\",is_public:\"\"},radio:\"1\",loading:!1,docList:[],currentPage:0,page_size:19,pageCount:0,total:0,name:\"\",dialogDocInfoVisible:!1,actClass:\"actClass\",dialogTransferDoc:!1,transferUsername:\"\",selectDocId:\"\",showSetting:!1,settingDocId:\"\"}},computed:{paginationLayouts:function(){return this.total&&this.total/this.listQuery.page_size>1?\"total, sizes, prev, pager, next, jumper\":\"total, sizes\"}},watch:{$route:function(e,t){\"chapter\"==t.name&&this.getAllProject()}},created:function(){this.getAllProject()},methods:{dialogDocShow:function(){this.dialogDocInfoVisible=!0,this.name=\"\"},getAllProject:function(){var e=this;this.loading=!0,Object(n[\"i\"])(this.listQuery).then((function(t){200==t.code&&(e.docList=t.data.data,e.pageCount=t.data.page_count,e.total=t.data.total,e.loading=!1)})).catch((function(t){e.loading=!1}))},createDoc:function(){var e=this;Object(n[\"d\"])({name:this.name,is_public:this.radio}).then((function(t){e.$message(\"创建成功！\"),e.dialogDocInfoVisible=!1,e.getAllProject()}))},removeDoc:function(e){var t=this;this.$confirm(\"确定删除该文档吗?\",\"提示\",{confirmButtonText:\"确定\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){t.$post(\"/admin/document/delete\",{id:e}).then((function(){t.getAllProject(),t.$message(\"删除成功！\")}))}))},updateDoc:function(e,t){var i=this;this.$post(\"/admin/document/update\",{id:e,is_show:1==t?2:1}).then((function(){i.docList.forEach((function(i){i.id!=e||(i.is_show=1==t?2:1)}))}))},readDoc:function(e){var t=this.$router.resolve({path:\"/chapter/\"+e.id});localStorage.projectName=e.name,window.open(t.href,\"_blank\")},settingDoc:function(e){this.settingDocId=e,this.showSetting=!0},transferDoc:function(e){this.selectDocId=e,this.transferUsername=\"\",this.dialogTransferDoc=!0},transfer:function(){var e=this;this.$post(\"/admin/document/change-founder\",{document_id:this.selectDocId,username:this.transferUsername}).then((function(){e.getAllProject(),e.$message(\"转让成功！\"),e.dialogTransferDoc=!1}))},goChapter:function(e,t){var i={name:\"chapter\",params:{id:e.id}};t&&(i[\"query\"]={type:\"add\",documentType:1}),localStorage.projectName=e.name,this.$router.push(i)},format:function(e){if(e){var t=Object(c[\"a\"])(e);return t.length>8?Object(c[\"a\"])(e).slice(5):Object(c[\"a\"])(e)}},handleClose:function(){this.getAllProject(),this.showSetting=!1},handleSizeChange:function(e){this.listQuery.page_size=e,this.getAllProject()},handleCurrentChange:function(e){this.listQuery.page=e,this.getAllProject()},searchProject:function(){this.listQuery.page=1,this.getAllProject()}}},A=s,r=(i(\"063d\"),i(\"2877\")),g=Object(r[\"a\"])(A,a,l,!1,null,\"749b2369\",null);t[\"default\"]=g.exports},d47d:function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkVEMUMwNTY1RTZBNzExRUFCNzYzQURDRDA3MkUyNjJCIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkVEMUMwNTY2RTZBNzExRUFCNzYzQURDRDA3MkUyNjJCIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RUQxQzA1NjNFNkE3MTFFQUI3NjNBRENEMDcyRTI2MkIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RUQxQzA1NjRFNkE3MTFFQUI3NjNBRENEMDcyRTI2MkIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz460mJ5AAABXElEQVR42pzUzysEYRzH8RlGYqPWAflxsZxdlPuenTgpOSoOjq4O4qD8DQ5Szrg4OEhSDpSDJAeRHEQiJu2ax/ub7+jbmrGz+9SrfXafmc/M832eZ33n3L3neW1oRINXvX0hwjam4h8D9Hj1tS77RYJCtGABpxkC5jCOz8qgeDp7OM8QVNTPO3RgUUIlyJmLRjCGQ5xhviJkDR/af0D37zUUO3Q/LYdV7e9g2P1tA5jU/jIK2g8D87R+nZ4UcVefuAFfx+XNn9GXNF8b1It9HKCsv00n3JO4ynbfXGAGJaygoG9hSU0uqwVJQLv282hKmUGp2tSGsI4j3OIRo2ZVfa3bYFpQXMwXPOHYjJ8k3FNOC5KBZizhRs/cf+esmBaU0/5EjWet09ZLgjbRqnV5zxgib72F17h+gfkryOvZydpkhWe1H/ls73jgWvdOXc0u/5Xu7lpapAvw9i3AANvWh5SKpYAJAAAAAElFTkSuQmCC\"},fa7d:function(module,__webpack_exports__,__webpack_require__){\"use strict\";__webpack_require__.d(__webpack_exports__,\"a\",(function(){return timestampFormat}));var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(\"a481\"),core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0__),core_js_modules_es6_regexp_to_string__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(\"6b54\"),core_js_modules_es6_regexp_to_string__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(core_js_modules_es6_regexp_to_string__WEBPACK_IMPORTED_MODULE_1__),core_js_modules_es6_regexp_match__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(\"4917\"),core_js_modules_es6_regexp_match__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(core_js_modules_es6_regexp_match__WEBPACK_IMPORTED_MODULE_2__),core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(\"28a5\"),core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_3__),core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(\"3b2b\"),core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_4__);function getUrlParam(e,t){var i=new RegExp(\"(^|&)\"+t+\"=([^&]*)(&|$)\");if(e&&e.split(\"?\")[1]){var a=e.split(\"?\")[1].match(i);return null!=a?unescape(a[2]):null}}function replaceParamVal(url,paramName,replaceVal){var oUrl=url.toString(),re=eval(\"/(\"+paramName+\"=)([^&]*)/gi\"),nUrl=oUrl.replace(re,paramName+\"=\"+replaceVal);return nUrl}function timestampFormat(e){var t=Date.parse(e)/1e3;function i(e){return(1==String(e).length?\"0\":\"\")+e}var a=parseInt((new Date).getTime()/1e3),l=a-t,c=new Date(1e3*a),n=new Date(1e3*t),o=n.getFullYear(),s=n.getMonth()+1,A=n.getDate(),r=n.getHours(),g=n.getMinutes();if(l<60)return\"刚刚\";if(l<3600)return Math.floor(l/60)+\"分钟前\";if(c.getFullYear()==o&&c.getMonth()+1==s&&c.getDate()==A)return\"今天\"+i(r)+\":\"+i(g);var m=new Date(1e3*(a-86400));return m.getFullYear()==o&&m.getMonth()+1==s&&m.getDate()==A?\"昨天\"+i(r)+\":\"+i(g):o+\"年\"+i(s)+\"月\"+i(A)+\"日 \"+i(r)+\":\"+i(g)}},ffc0:function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAEACAYAAACHwJcoAAAACXBIWXMAAAsTAAALEwEAmpwYAAAF7mlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyMC0wOC0yNVQxMDo0MjowNiswODowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjAtMDgtMjVUMTY6MjA6NTErMDg6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjAtMDgtMjVUMTY6MjA6NTErMDg6MDAiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6YTNjNWNmOWYtMDE1Zi1mYTRiLThkMzMtMzAxMzVjY2JjNjgxIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjkwQjA2NkI2RTY3QzExRUFBRkQ1QzRCRDY0QjMyRTQxIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6OTBCMDY2QjZFNjdDMTFFQUFGRDVDNEJENjRCMzJFNDEiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiBwaG90b3Nob3A6SUNDUHJvZmlsZT0ic1JHQiBJRUM2MTk2Ni0yLjEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5MEIwNjZCM0U2N0MxMUVBQUZENUM0QkQ2NEIzMkU0MSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5MEIwNjZCNEU2N0MxMUVBQUZENUM0QkQ2NEIzMkU0MSIvPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDphM2M1Y2Y5Zi0wMTVmLWZhNGItOGQzMy0zMDEzNWNjYmM2ODEiIHN0RXZ0OndoZW49IjIwMjAtMDgtMjVUMTY6MjA6NTErMDg6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE4IChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6rCmcHAAAG30lEQVRogZ2aO48cRRDHfz23tz6fjaU7DDaywEIG8ZIQBASACPgCZAQI8RmQCEDiA5DBByCyREbkgJQAiQAJEAFyYGFjGcTLcDY6c4+925sm2Jm56uqq7lmXtLfzqqp/Pbum98Lv27EBWkZSA6wC60AYywAwAR7smEcx9EwXgBM1hijOV4BLHcSqBjrmCfAsMC0xaIOnwIvGdZruYtQ3gA3gubEaenhPAWctBktDL+hlzRAdDaH7PAw8KRmkDZIxiusveTbIhySdAy5KhpIdPb0gbZBaJCwJ92mgaUjh9N/6GsAacFG71XpQan5cGt2r15B6isAjVuBKQXxIe6nXZFEENnWka65dl5A86dIhg1s972R5pktUe0Wf0xgXrURMNGicngOCZKhl6ygNGlKUDBaMiGFTraZNDfph09ierHoI6hM1gyVJ4x/u12o60+Rp0DQI093b8r3pVg9Wlio6cF4nH8jSkKW0hqRxehoyL1kazBVoKdIVN6i2pHsadDFluWRlq2uHbDORPEMzRr0+aAjyPGkzXm/KuqG1ipa6t+lWj9msaSs1il3DcmlmQxWGhqRvSDK7Rq2Wk9ZZW+PM9C4Vj2lDqWO7BVQsS8msbbAGFbMetLHuoGJVXDFVanHQ8BKjvWkgK6BSaZqRrqa0tkHjHd0qiw1Ma7AWQFNbbZpJ4E6axYDlTTOJgBBYWV1ZjHCexOTa2oTzASZ6hNMUAKYrbEwaNnsbzIcElMnahCe641DrGpye8kwTONmfW+1+yKe1CedWGy7J69pLQwdvApNTU17r7oZgtHuZsZxZ49UQ2CBNvkTDoGl9lQvThle6iwFRBpkNTaA5PeVtFq+ZC4HBt4GNk7wRAo92uDWFRMOZEzy22vCm8FQQBqcLShNo1ld5n9C9tAbxt/sOHAeOs+u8FQLPS4+o4+MmsHmSCysN72ko4hM7gxYaphM+AU5pacY5zfnTvBPgdekJ/ZCwNYQY4xbwALAH7ETYjZHdCHsxst9GDtrIvI20R+2Cc9OSZGgZHpBQhuOQXh8+E8ONUkuiMQR7quxPhmBp6yVZbk0gaxvkRzsAzwaLkorTkPpvS0PWW+VNa4HMGBLpITc+WEZ70S7akMIMQ+WNGKVDIqSxcskromLg5DnBMVpq8QTFjCEYGoSoTEMGLSg7SsmXaOgPJuRkx6ISuKY7S+GFVINOb7Ma7YrTvhHCPA1WAAsafJhmXyqmeSkOQ9BE2zEjjXgo0z6ugI61ubOGmeYlDSaTVaIl6aaGkh3VrtGICy6Dp6EIyXpwEOQZ7Xa/WiM77nxOE9C5oxnHb7V4qWEFLrlZyqWhpkPBaEuy28gsygqsZEPnyHIuWcwDzVu2xqRGAEKMHO4ccH10eu/PudpGDqy3Xdn9Qgflt91DfpE2WM0rdKIO7834ur9ZsyHsz/lq3vIfxntcxtRGbm7P+F5e9FMjcnBvxuf6pqvhoOXK/pw/lSBbQxu5cXePL9AOcBiOdg/5OEaOuvNkryxjmLdcvjfjunjYX7Ii3Li7x6catyTJ0M7mfDhvOTBg5gxt5PLdPb4rPJvY8Ov2Ph+VHkw0HLW8uzdnx8JManRsgM9u7/ClJc3QFJrZnA+UtOLGeXNnjy2h1nuvTm1waFT3tqBIxmyEq9HwLrrUzwlLkTlEaakWg3nTELDUPl+mwSPzFw5vBzRjtrYpUOfFhX1ULmWFXoI3ZtnNGIoQNLO1meORu7PuHSf14Lk2i35pIjO1WdtFmhIhyxRQ4iVrZLMgLmVDwjA2FvefGmPSI3HrmAIaFelMQK2m3c3+Eows0n3gkv1tC46E5JXp0hVXrQdtT7FVJruh6tpwbL1a5vOfOLfcOmpR9GKRVeF9rUC1Tf5sXqp1bwnP/HnNo2xhH1WmumtU00Tb4DWzBFLxAQuS9b4wQNDftTZT/LVsFI1hSCDWWqVbQGOWXTOXqmS1yipDlpEFWOZPU6WaztpMqWskDNU6QGVrzY6B0crWpdaH0tI7qoCk15JsHWO0CcmDlTDUhtus4mrNqxhpKzWKuWSlRkLLLLvZvGRCIDU6yjh4bd+cvWX4qwt7D8NrBImmWtcoTgJWMzCnmRJly5lsMxb2TGOtkWU2LdMq3YqT0t1mbAXLbKGlenA1aPIW+QC0Y8ZQKWDXGn+8VTUAd/Q0Uwve37rirHqWQv7Qg67VMaSwm9ag6zWFfeDWmK3Hnq5huLW0xv0A40eHv4BbPUPWewz6tj+wOp+m28BPkqH2OvONvOBp6BmvAf9oBi8d/gWu6hvWz2sAB8CPGP/xbzHMgevAzJLUM/TYj4CfWaSBSfLn5kNgq/t2adJJPwS2seOQMcyhvKEp6X9Sc/wlboLoXgAAAABJRU5ErkJggg==\"}}]);"
  },
  {
    "path": "public/js/chunk-65eafec3.92b978b7.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-65eafec3\"],{\"02f4\":function(e,t,r){var n=r(\"4588\"),i=r(\"be13\");e.exports=function(e){return function(t,r){var a,s,c=String(i(t)),o=n(r),_=c.length;return o<0||o>=_?e?\"\":void 0:(a=c.charCodeAt(o),a<55296||a>56319||o+1===_||(s=c.charCodeAt(o+1))<56320||s>57343?e?c.charAt(o):a:e?c.slice(o,o+2):s-56320+(a-55296<<10)+65536)}}},\"0390\":function(e,t,r){\"use strict\";var n=r(\"02f4\")(!0);e.exports=function(e,t,r){return t+(r?n(e,t).length:1)}},\"07ed\":function(module,__webpack_exports__,__webpack_require__){\"use strict\";var core_js_modules_es7_object_get_own_property_descriptors__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(\"8e6e\"),core_js_modules_es7_object_get_own_property_descriptors__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(core_js_modules_es7_object_get_own_property_descriptors__WEBPACK_IMPORTED_MODULE_0__),core_js_modules_es6_object_keys__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(\"456d\"),core_js_modules_es6_object_keys__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(core_js_modules_es6_object_keys__WEBPACK_IMPORTED_MODULE_1__),core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(\"28a5\"),core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_2__),core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(\"a481\"),core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_3__),core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(\"ac6a\"),core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_4__),core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(\"7f7f\"),core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_5___default=__webpack_require__.n(core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_5__),C_Users_Administrator_Desktop_ued_document_node_modules_vue_babel_preset_app_node_modules_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(\"fc11\"),vuex__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(\"2f62\"),_api_api__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(\"4ec3\");function ownKeys(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function _objectSpread(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?ownKeys(Object(r),!0).forEach((function(t){Object(C_Users_Administrator_Desktop_ued_document_node_modules_vue_babel_preset_app_node_modules_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_6__[\"a\"])(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):ownKeys(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}__webpack_exports__[\"a\"]={name:\"searchResults\",data:function(){return{document_id:\"\",document_name:\"\",chapters:[],defaultProps:{children:\"children\",label:\"name\"},selectChapterId:\"\",expandIdArray:[],loading:\"\",total:0,list:[],listQuery:{page:1,page_size:10,keywords:\"\",document_id:\"\"}}},computed:_objectSpread(_objectSpread({},Object(vuex__WEBPACK_IMPORTED_MODULE_7__[\"b\"])({UserInfo:\"UserInfo\"})),{},{paginationLayouts:function(){return this.total&&this.total/this.listQuery.page_size>1?\"total, sizes, prev, pager, next, jumper\":\"total, sizes\"}}),watch:{},created:function(){this.init()},mounted:function(){},methods:{init:function(){var e=this;this.listQuery.document_id=this.$route.query.id,this.document_id=this.$route.query.id,this.listQuery.keywords=this.$route.query.keywords,Object(_api_api__WEBPACK_IMPORTED_MODULE_8__[\"j\"])({document_id:this.listQuery.document_id}).then((function(t){e.document_name=t.data.name,e.getChapters()})),this.getSearchResults()},getSearchResults:function getSearchResults(){var _this2=this,keywords=this.listQuery.keywords.toLowerCase(),id=this.listQuery.document_id;this.$router.push({query:{id:id,keywords:keywords}}),Object(_api_api__WEBPACK_IMPORTED_MODULE_8__[\"n\"])(this.listQuery).then((function(res){_this2.total=res.data.total,_this2.list=res.data.data,_this2.list.length&&_this2.list.forEach((function(item){var reg=\"/\"+keywords+\"/gi\";if(item.content){item.content=item.content.replace(/[\\-\\_\\,\\!\\|\\~\\`\\(\\)\\#\\$\\%\\^\\&\\*\\{\\}\\:\\;\\\"\\<\\>\\?]/g,\"\"),item.content=item.content.replace(/^[A-Za-z]+$/g,(function(e){return e.toLowerCase()})),item.content=item.content.replace(/(cdn\\.w7\\.cc)(.|\\/)+\\.(jpg|png|jpeg)/g,\"\"),item.content=item.content.replace(/(http)(.|\\/)+\\.(jpg|png|jpeg)/g,\"\"),item.content=item.content.replace(/\\.(jpg|png|jpeg)/g,\"\");var hasKeywords=item.content.indexOf(keywords);item.content=-1!=hasKeywords?item.content.substr(item.content.indexOf(keywords),400)+\"...\":item.content.substr(0,400)+\"...\",item.content=item.content.replace(eval(reg),'<span style=\"color: #ff3939\">'.concat(keywords,\"</span>\"))}item.name&&(item.name=item.name.replace(eval(reg),'<span style=\"color: #ff3939\">'.concat(keywords,\"</span>\"))),item.navigation&&(item.navigation=item.navigation.split(\">\"))}))})).catch((function(e){}))},getChapters:function(){var e=this;this.$post(\"/document/chapter/list\",{document_id:this.document_id}).then((function(t){t.data.length&&(t.data.forEach((function(e){e.is_dir&&0==e.children.length?e.children.push({is_dir:!1}):e.children.forEach((function(e){e.is_dir&&0==e.children.length&&e.children.push({is_dir:!1})}))})),e.chapters=t.data,e.$nextTick((function(){if(e.$route.query.id){e.selectChapterId=e.$route.query.id;var r=\"\",n=function e(t,n){t.forEach((function(t){t.children.length||e(t.children),t.id!=n||(r=t.name)}))};n(e.chapters,e.selectChapterId),e.selectNode(e.selectChapterId),document.title=r?r+\" — \"+e.document_name:e.document_name}else t.data.length&&(e.selectNode(t.data[0].id),e.handleNodeClick(t.data[0]))})))}))},goDefaultChaper:function(e,t){for(var r=0;r<e.length;r++)if(!e[r].is_dir&&(e[r].default_show_chapter_id==e[r].id||t==e[r].id))return this.selectChapterId=e[r].id,void this.changeRoute(this.selectChapterId,e[r].name,!0);for(var n=0;n<e.length;n++)e[n].is_dir&&e[n].children.length&&e[n].children[0].id&&this.goDefaultChaper(e[n].children,e[n].default_show_chapter_id)},handleNodeClick:function(e){e.is_dir?this.$refs.chaptersTree.setCurrentKey():this.changeRoute(e.id,e.name)},handleNodeExpand:function(e){e.default_show_chapter_id&&(this.selectNode(e.default_show_chapter_id),this.changeRoute(e.default_show_chapter_id,e.name))},changeRoute:function(e,t,r){e==this.$route.query.id||(this.selectChapterId=e,this.$router.push({path:\"/chapter/\"+this.document_id,query:{id:this.selectChapterId}})),r&&this.selectNode(this.selectChapterId),document.title=t+\"-\"+this.document_name},getArticle:function(){var e={document_id:this.document_id,chapter_id:this.$route.query.id};this.$route.query.share_key&&(e[\"share_key\"]=this.$route.query.share_key),this.loading=this.$loading()},selectNode:function(e){this.$refs.chaptersTree.setCurrentKey(e),this.expandIdArray=[],this.expandIdArray.push(e)},highlight:function(e){var t=this.keyword;e=e.split(\"\"),t=t.split(\"\");var r=\"\";for(var n in e)-1!==t.indexOf(e[n])?r=r+'<span class=\"highlight\">'+e[n]+\"</span>\":r+=e[n];return r},htmlToWord:function(e){var t=e.replace(/<(style|script|iframe)[^>]*?>[\\s\\S]+?<\\/\\1\\s*>/gi,\"\").replace(/<[^>]+?>/g,\"\").replace(/\\s+/g,\" \").replace(/ /g,\" \").replace(/>/g,\" \");return t},getShareKey:function(){var e=this;this.$post(\"/admin/share/url\",{chapter_id:this.$route.query.id,document_id:this.$route.params.id}).then((function(t){e.shareUrl=t.data}))},operStar:function(){var e=this,t=this.articleContent.star_id?\"/admin/star/delete\":\"/admin/star/add\",r={document_id:this.$route.params.id};this.articleContent.star_id?r[\"id\"]=this.articleContent.star_id:r[\"chapter_id\"]=this.$route.query.id,this.$post(t,r).then((function(t){e.articleContent.star_id=t.data.star_id||\"\"}))},goViewChapter:function(e){this.$router.push({path:\"/chapter/\"+this.document_id,query:{id:e.chapter_id}})},handleSizeChange:function(e){this.listQuery.page_size=e,this.getSearchResults()},handleCurrentChange:function(e){this.listQuery.page=e,this.getSearchResults()}}}},\"0bfb\":function(e,t,r){\"use strict\";var n=r(\"cb7c\");e.exports=function(){var e=n(this),t=\"\";return e.global&&(t+=\"g\"),e.ignoreCase&&(t+=\"i\"),e.multiline&&(t+=\"m\"),e.unicode&&(t+=\"u\"),e.sticky&&(t+=\"y\"),t}},\"11e9\":function(e,t,r){var n=r(\"52a7\"),i=r(\"4630\"),a=r(\"6821\"),s=r(\"6a99\"),c=r(\"69a8\"),o=r(\"c69a\"),_=Object.getOwnPropertyDescriptor;t.f=r(\"9e1e\")?_:function(e,t){if(e=a(e),t=s(t,!0),o)try{return _(e,t)}catch(r){}if(c(e,t))return i(!n.f.call(e,t),e[t])}},\"214f\":function(e,t,r){\"use strict\";r(\"b0c5\");var n=r(\"2aba\"),i=r(\"32e9\"),a=r(\"79e5\"),s=r(\"be13\"),c=r(\"2b4c\"),o=r(\"520a\"),_=c(\"species\"),u=!a((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:\"7\"},e},\"7\"!==\"\".replace(e,\"$<a>\")})),l=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var r=\"ab\".split(e);return 2===r.length&&\"a\"===r[0]&&\"b\"===r[1]}();e.exports=function(e,t,r){var d=c(e),p=!a((function(){var t={};return t[d]=function(){return 7},7!=\"\"[e](t)})),h=p?!a((function(){var t=!1,r=/a/;return r.exec=function(){return t=!0,null},\"split\"===e&&(r.constructor={},r.constructor[_]=function(){return r}),r[d](\"\"),!t})):void 0;if(!p||!h||\"replace\"===e&&!u||\"split\"===e&&!l){var f=/./[d],g=r(s,d,\"\"[e],(function(e,t,r,n,i){return t.exec===o?p&&!i?{done:!0,value:f.call(t,r,n)}:{done:!0,value:e.call(r,t,n)}:{done:!1}})),v=g[0],m=g[1];n(String.prototype,e,v),i(RegExp.prototype,d,2==t?function(e,t){return m.call(e,this,t)}:function(e){return m.call(e,this)})}}},\"28a5\":function(e,t,r){\"use strict\";var n=r(\"aae3\"),i=r(\"cb7c\"),a=r(\"ebd6\"),s=r(\"0390\"),c=r(\"9def\"),o=r(\"5f1b\"),_=r(\"520a\"),u=r(\"79e5\"),l=Math.min,d=[].push,p=\"split\",h=\"length\",f=\"lastIndex\",g=4294967295,v=!u((function(){RegExp(g,\"y\")}));r(\"214f\")(\"split\",2,(function(e,t,r,u){var m;return m=\"c\"==\"abbc\"[p](/(b)*/)[1]||4!=\"test\"[p](/(?:)/,-1)[h]||2!=\"ab\"[p](/(?:ab)*/)[h]||4!=\".\"[p](/(.?)(.?)/)[h]||\".\"[p](/()()/)[h]>1||\"\"[p](/.?/)[h]?function(e,t){var i=String(this);if(void 0===e&&0===t)return[];if(!n(e))return r.call(i,e,t);var a,s,c,o=[],u=(e.ignoreCase?\"i\":\"\")+(e.multiline?\"m\":\"\")+(e.unicode?\"u\":\"\")+(e.sticky?\"y\":\"\"),l=0,p=void 0===t?g:t>>>0,v=new RegExp(e.source,u+\"g\");while(a=_.call(v,i)){if(s=v[f],s>l&&(o.push(i.slice(l,a.index)),a[h]>1&&a.index<i[h]&&d.apply(o,a.slice(1)),c=a[0][h],l=s,o[h]>=p))break;v[f]===a.index&&v[f]++}return l===i[h]?!c&&v.test(\"\")||o.push(\"\"):o.push(i.slice(l)),o[h]>p?o.slice(0,p):o}:\"0\"[p](void 0,0)[h]?function(e,t){return void 0===e&&0===t?[]:r.call(this,e,t)}:r,[function(r,n){var i=e(this),a=void 0==r?void 0:r[t];return void 0!==a?a.call(r,i,n):m.call(String(i),r,n)},function(e,t){var n=u(m,e,this,t,m!==r);if(n.done)return n.value;var _=i(e),d=String(this),p=a(_,RegExp),h=_.unicode,f=(_.ignoreCase?\"i\":\"\")+(_.multiline?\"m\":\"\")+(_.unicode?\"u\":\"\")+(v?\"y\":\"g\"),y=new p(v?_:\"^(?:\"+_.source+\")\",f),b=void 0===t?g:t>>>0;if(0===b)return[];if(0===d.length)return null===o(y,d)?[d]:[];var E=0,w=0,C=[];while(w<d.length){y.lastIndex=v?w:0;var O,x=o(y,v?d:d.slice(w));if(null===x||(O=l(c(y.lastIndex+(v?0:w)),d.length))===E)w=s(d,w,h);else{if(C.push(d.slice(E,w)),C.length===b)return C;for(var k=1;k<=x.length-1;k++)if(C.push(x[k]),C.length===b)return C;w=E=O}}return C.push(d.slice(E)),C}]}))},\"39ca\":function(e,t,r){\"use strict\";r(\"731d\")},\"520a\":function(e,t,r){\"use strict\";var n=r(\"0bfb\"),i=RegExp.prototype.exec,a=String.prototype.replace,s=i,c=\"lastIndex\",o=function(){var e=/a/,t=/b*/g;return i.call(e,\"a\"),i.call(t,\"a\"),0!==e[c]||0!==t[c]}(),_=void 0!==/()??/.exec(\"\")[1],u=o||_;u&&(s=function(e){var t,r,s,u,l=this;return _&&(r=new RegExp(\"^\"+l.source+\"$(?!\\\\s)\",n.call(l))),o&&(t=l[c]),s=i.call(l,e),o&&s&&(l[c]=l.global?s.index+s[0].length:t),_&&s&&s.length>1&&a.call(s[0],r,(function(){for(u=1;u<arguments.length-2;u++)void 0===arguments[u]&&(s[u]=void 0)})),s}),e.exports=s},\"5f1b\":function(e,t,r){\"use strict\";var n=r(\"23c6\"),i=RegExp.prototype.exec;e.exports=function(e,t){var r=e.exec;if(\"function\"===typeof r){var a=r.call(e,t);if(\"object\"!==typeof a)throw new TypeError(\"RegExp exec method returned something other than an Object or null\");return a}if(\"RegExp\"!==n(e))throw new TypeError(\"RegExp#exec called on incompatible receiver\");return i.call(e,t)}},6103:function(e,t,r){\"use strict\";r(\"d8f8\")},\"6d70\":function(e,t,r){\"use strict\";r.r(t);var n=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r(\"div\",{staticClass:\"container\"},[r(\"div\",{staticClass:\"document-name\"},[e._v(e._s(e.document_name))]),r(\"div\",{staticClass:\"chapter-warpper\"},[r(\"el-scrollbar\",[r(\"el-container\",{staticClass:\"home-container\"},[r(\"el-aside\",{staticClass:\"w7-aside-home\"},[r(\"div\",{staticClass:\"w7-aside-home-box\"},[r(\"el-scrollbar\",{staticClass:\"w7-aside-home-content\"},[e.chapters.length?r(\"el-tree\",{ref:\"chaptersTree\",staticClass:\"w7-tree\",attrs:{data:e.chapters,props:e.defaultProps,\"empty-text\":\"\",\"node-key\":\"id\",\"highlight-current\":!0,\"default-expanded-keys\":e.expandIdArray},on:{\"node-click\":e.handleNodeClick,\"node-expand\":e.handleNodeExpand},scopedSlots:e._u([{key:\"default\",fn:function(t){var n=t.node,i=t.data;return n.label?r(\"span\",{staticClass:\"custom-tree-node\",class:{doc:!i.is_dir}},[r(\"div\",{staticClass:\"text-over\"},[r(\"span\",{class:[\"dir\",i.is_dir?\"dir\"+n.level:\"\",n.level?\"level\"+n.level:\"\"],attrs:{title:n.label}},[e._v(e._s(n.label))])])]):e._e()}}],null,!0)}):e._e()],1)],1)]),r(\"el-main\",{attrs:{id:\"home-index\"}},[r(\"div\",{staticClass:\"warpper\"},[r(\"div\",{staticClass:\"search-results\"},[r(\"mavon-editor\",{directives:[{name:\"show\",rawName:\"v-show\",value:!1,expression:\"false\"}],ref:\"mavonEditor\"}),r(\"div\",{staticClass:\"search-wrap\"},[r(\"div\",{staticClass:\"total\"},[e._v(\"搜索\"),r(\"span\",[e._v(\"“\"+e._s(e.listQuery.keywords)+\"”\")]),e._v(\"的相关结果，共\"+e._s(e.total)+\"条\")]),r(\"el-input\",{attrs:{placeholder:\"请输入关键字搜索\",maxlength:\"10\"},nativeOn:{keyup:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.getSearchResults(t)}},model:{value:e.listQuery.keywords,callback:function(t){e.$set(e.listQuery,\"keywords\",t)},expression:\"listQuery.keywords\"}},[r(\"i\",{staticClass:\"el-input__icon el-icon-search\",attrs:{slot:\"suffix\"},on:{click:e.getSearchResults},slot:\"suffix\"})])],1),r(\"div\",{staticClass:\"list\"},e._l(e.list,(function(t,n){return r(\"div\",{key:n,staticClass:\"con\",on:{click:function(r){return e.goViewChapter(t)}}},[r(\"div\",{staticClass:\"name\",domProps:{innerHTML:e._s(t.name)}}),r(\"div\",{staticClass:\"content\",domProps:{innerHTML:e._s(t.content)}}),r(\"div\",{staticClass:\"navigation\"},[e._l(t.navigation,(function(n,i){return[r(\"span\",[e._v(e._s(n))]),i<t.navigation.length-1?r(\"span\",{staticStyle:{margin:\"0 3px\"}},[e._v(\">\")]):e._e()]}))],2)])})),0)],1),r(\"div\",{staticClass:\"pagination-wrap\"},[r(\"el-pagination\",{attrs:{background:\"\",\"hide-on-single-page\":e.total<=10,\"current-page\":e.listQuery.page,\"page-sizes\":[10,20,30],\"page-size\":e.listQuery.page_size,layout:e.paginationLayouts,total:e.total},on:{\"update:currentPage\":function(t){return e.$set(e.listQuery,\"page\",t)},\"update:current-page\":function(t){return e.$set(e.listQuery,\"page\",t)},\"size-change\":e.handleSizeChange,\"current-change\":e.handleCurrentChange}})],1)])])],1)],1),r(\"el-backtop\",{attrs:{bottom:100}},[r(\"div\",{staticClass:\"w7-top\"},[r(\"i\",{staticClass:\"el-icon-arrow-up\"}),r(\"p\",[e._v(\"TOP\")])])])],1)])},i=[],a=r(\"07ed\"),s=a[\"a\"],c=(r(\"6103\"),r(\"39ca\"),r(\"2877\")),o=Object(c[\"a\"])(s,n,i,!1,null,\"731e09c6\",null);t[\"default\"]=o.exports},\"731d\":function(e,t,r){},\"8e6e\":function(e,t,r){var n=r(\"5ca1\"),i=r(\"990b\"),a=r(\"6821\"),s=r(\"11e9\"),c=r(\"f1ae\");n(n.S,\"Object\",{getOwnPropertyDescriptors:function(e){var t,r,n=a(e),o=s.f,_=i(n),u={},l=0;while(_.length>l)r=o(n,t=_[l++]),void 0!==r&&c(u,t,r);return u}})},9093:function(e,t,r){var n=r(\"ce10\"),i=r(\"e11e\").concat(\"length\",\"prototype\");t.f=Object.getOwnPropertyNames||function(e){return n(e,i)}},\"990b\":function(e,t,r){var n=r(\"9093\"),i=r(\"2621\"),a=r(\"cb7c\"),s=r(\"7726\").Reflect;e.exports=s&&s.ownKeys||function(e){var t=n.f(a(e)),r=i.f;return r?t.concat(r(e)):t}},a481:function(e,t,r){\"use strict\";var n=r(\"cb7c\"),i=r(\"4bf8\"),a=r(\"9def\"),s=r(\"4588\"),c=r(\"0390\"),o=r(\"5f1b\"),_=Math.max,u=Math.min,l=Math.floor,d=/\\$([$&`']|\\d\\d?|<[^>]*>)/g,p=/\\$([$&`']|\\d\\d?)/g,h=function(e){return void 0===e?e:String(e)};r(\"214f\")(\"replace\",2,(function(e,t,r,f){return[function(n,i){var a=e(this),s=void 0==n?void 0:n[t];return void 0!==s?s.call(n,a,i):r.call(String(a),n,i)},function(e,t){var i=f(r,e,this,t);if(i.done)return i.value;var l=n(e),d=String(this),p=\"function\"===typeof t;p||(t=String(t));var v=l.global;if(v){var m=l.unicode;l.lastIndex=0}var y=[];while(1){var b=o(l,d);if(null===b)break;if(y.push(b),!v)break;var E=String(b[0]);\"\"===E&&(l.lastIndex=c(d,a(l.lastIndex),m))}for(var w=\"\",C=0,O=0;O<y.length;O++){b=y[O];for(var x=String(b[0]),k=_(u(s(b.index),d.length),0),P=[],D=1;D<b.length;D++)P.push(h(b[D]));var j=b.groups;if(p){var M=[x].concat(P,k,d);void 0!==j&&M.push(j);var R=String(t.apply(void 0,M))}else R=g(x,d,k,P,j,t);k>=C&&(w+=d.slice(C,k)+R,C=k+x.length)}return w+d.slice(C)}];function g(e,t,n,a,s,c){var o=n+e.length,_=a.length,u=p;return void 0!==s&&(s=i(s),u=d),r.call(c,u,(function(r,i){var c;switch(i.charAt(0)){case\"$\":return\"$\";case\"&\":return e;case\"`\":return t.slice(0,n);case\"'\":return t.slice(o);case\"<\":c=s[i.slice(1,-1)];break;default:var u=+i;if(0===u)return r;if(u>_){var d=l(u/10);return 0===d?r:d<=_?void 0===a[d-1]?i.charAt(1):a[d-1]+i.charAt(1):r}c=a[u-1]}return void 0===c?\"\":c}))}}))},aae3:function(e,t,r){var n=r(\"d3f4\"),i=r(\"2d95\"),a=r(\"2b4c\")(\"match\");e.exports=function(e){var t;return n(e)&&(void 0!==(t=e[a])?!!t:\"RegExp\"==i(e))}},b0c5:function(e,t,r){\"use strict\";var n=r(\"520a\");r(\"5ca1\")({target:\"RegExp\",proto:!0,forced:n!==/./.exec},{exec:n})},d8f8:function(e,t,r){},f1ae:function(e,t,r){\"use strict\";var n=r(\"86cc\"),i=r(\"4630\");e.exports=function(e,t,r){t in e?n.f(e,t,i(0,r)):e[t]=r}},fc11:function(e,t,r){\"use strict\";function n(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}r.d(t,\"a\",(function(){return n}))}}]);"
  },
  {
    "path": "public/js/chunk-6a2c3c1a.5e3ea521.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-6a2c3c1a\"],{\"11e9\":function(t,e,n){var a=n(\"52a7\"),i=n(\"4630\"),r=n(\"6821\"),c=n(\"6a99\"),o=n(\"69a8\"),s=n(\"c69a\"),u=Object.getOwnPropertyDescriptor;e.f=n(\"9e1e\")?u:function(t,e){if(t=r(t),e=c(e,!0),s)try{return u(t,e)}catch(n){}if(o(t,e))return i(!a.f.call(t,e),t[e])}},\"12bc\":function(t,e,n){},\"2fdb\":function(t,e,n){\"use strict\";var a=n(\"5ca1\"),i=n(\"d2c8\"),r=\"includes\";a(a.P+a.F*n(\"5147\")(r),\"String\",{includes:function(t){return!!~i(this,t,r).indexOf(t,arguments.length>1?arguments[1]:void 0)}})},3191:function(t,e,n){\"use strict\";n.d(e,\"b\",(function(){return i})),n.d(e,\"d\",(function(){return r})),n.d(e,\"a\",(function(){return c})),n.d(e,\"c\",(function(){return o}));var a=n(\"1c1e\"),i=function(t){return Object(a[\"a\"])({url:\"/document/home\",params:t,method:\"get\"})},r=function(t){return Object(a[\"a\"])({url:\"/document/home/search\",data:t,method:\"post\"})},c=function(t){return Object(a[\"a\"])({url:\"/document/home/check\",data:t,method:\"get\"})},o=function(t){return Object(a[\"a\"])({url:\"/document/home/search-hot\",data:t,method:\"get\"})}},5147:function(t,e,n){var a=n(\"2b4c\")(\"match\");t.exports=function(t){var e=/./;try{\"/./\"[t](e)}catch(n){try{return e[a]=!1,!\"/./\"[t](e)}catch(i){}}return!0}},6141:function(t,e){t.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFQAAAAhCAYAAABHhIyzAAAK1ElEQVRoge2ae3AVRRaHDzEoymOxKBVh3QVREO/MJBiSO6dniFceSmRBpIzGVW53AgYChQaQpwpXQYIbKoEsYmKQRygIRlRYXgYfWV8LahDxUaiLha/Cx2Khlg+Qld/+kZ7L5O5NyF1Xo7ueqlO3pqfndJ9vuvuc7rlECYqlMNSSeMqU+M5UKE/0+V9FizUa7S2FtaYE/BqYgA6t3bdfnPTJQ0dT4m+xMC2Fv7R23372YlyPc4w89I8WRJBkSmyLgbnTlMj0quTMx3kjZmPYoEJMCY7HIkNhsSExNSUMNzsbp7SKIz8HCWSjgyXxsqWQ45UZElMbwVRYGYogORLBqYVLwfnFuO3GeVgzcjZ2DCrE3mABPjEUvjckoPWgKXG7NRrtW9O3VhFLYb2eyjlERGn5ONdU+MyUOK7Lt1MESZGV6HFHJcKTl2J2/iKUnASop++l5MFtbR9/MrEUcnxrYw4RkSWxwJQ4ZCl8bUoc6peHbiU1MOdXIfv2CozzgN4wD1VX3YYlQyZjtl2AGaZEiaGww5A4EgP1qBHG1T+kn7ZtB23bVrZtKyHE771yx3GuY+ZC27Z7xD7DzNlCiBxmbrJtIcRAXae7vj5bCJHjOM6VPjsZQogcIUROenp61yY7ydk43ZT40A80eAM6mRJ7TYX3LYl/9MvDlHsfQd/iBzHYB3RawSJkqVJ0jmf3ojC6GBLzDYmjfqg/ZKQKIV5hZjDzPx3HGcHMdUKIZUKInbp8JjPXMfNyIiLHcfrrcjDzxn/znVkw80fMfJSZIYQ4rK8/088cY+aPMjMzz2Pmtz1bQohnmXm7X6NGDYWI57Ap8V1KGL1TwrjaUthjKuyzFF6/vRJ9yzehfxToCvxhUhk6Nec8gDb19WhrjYVtSBzyQX2/Tx46JgrTcZyAD04tMw/Vzu30gAohFur7ezSwEh+E93Xd6Mhm5gxm3sfMX+t6HzLzPiHEe/r6qL4/0td2XPXcbmMqfO5ztpKIKEXiHkvhOUthdzAfi1ZvRW8PaNFapAFoczIAz7+GXq/tx3kff4z2loIdM1IXJApUCHG313nHceTJgGZnZ5/CzAfjOH+RZ9N13d7MXKRH3Co9zW3HcUbp68WO49jMfIuvnTFCiNRYJSIiUyLTv85ZCnYogmRLYoOpsMNSeG7EdIzwgJbV4OKWAnjiZfCuN3DxgU/RFcApAYk7fW19keAobcPMBzSQb4LBYKeTAXVdd7AP4rr09PSu6enpXUOhULJn1LNxMrVtuwcz/0kvMQN9L3kKM9fZtq08oHN8Tr5IRGTm4XxLodpS2Jiah9riKvRcvRW9792CvpEIklpK4JHnwc+8gow97+DCNz5Fh8AEdDAkDkdfXh7CLbUViUSSbNvuIYRQQogyvVbeqh0+ohXM/LkH1HGcbsy8iplXua57pm3bk5h5ZkZGRhfPruM4A/SU3sXMRXH0mA9ouX5prweDwXNc1w0y82HdXoMvhsTmKFCFuURE6TdBWArLrVys6z8WS6t3oNv9W9G7pAantxQAEVH1Uwg++gwGPbUbaXv342wiIlPhfl976xOxR0SkHQczHxdC5DczqvaEQqHO/vVNB5tGU16X36XvRVUIcZO+960HNC0tra0Q4iFtYz8zf6EBz4gaMyT2+6b7cCKirGm43ClAab8xeIDH4dbqHehWVdsAJBGp2Ijgym0Y+VAdQk/WoxcRkaEwyhcADyRiLzMzsyczH9dOPJuVlXVaKBTqGk8HDRrUJQGgpdrmSm6I2GDmwligREShUChZCLHDsyuEmN+ok4bEV1EHFUwiovDdyLpqFu4M3YzFl96M0dU70K2iHm0Tcb6uDsmLNyBYWoPRyzdj+Ian0U+318u3xBwPZOPUltq0bXu2bwROPMn6l8gI9YBWCiG2eEC5IaU65gcqhBjGzN/42nnPdd3efqDRgJSq0IOIaOpSDLmpGFOumYO7siMYsfoJdKEEpaoW7eevgZizAgXF1fhjxeaG3NPJQ0d/mwGFphPkGGHmV7UTx4QQZ/vWv3j6qB/o8OHDz/Ctr42AOo5TJIQ4HKMFHmgPqI78R5n5mG3bkpn/rO8fdBwn4AGNbhMDuQ0RfOE6uLMqMWZCCaaOW4Qhm+txRqJAa57BWdOW4dKbl2D6zArkz1uFy4mI0vLRtlFWcQN+2xJ7OgUaysx79QhZTkRJtm2H4ikzX0BEScz8rnZ6uf79LBAINJoVzNw9XhokhJigA1G567qDHcdZyszljuNM9uo4jlOk69ziAf0oCjSMy4iI7t+K1NIaXBNZgbFzHsBliU73SB2SK2vRM78Yw26ch7vG3oOphWUYRkSU0bB7igINTmp+cxAr3LAL8qZ0u2amfCkRkRAi4i8XQlTEsVnajJ2W6n0NQBX+6ltDpxARbXkJ56+pxZAlG3BtcTVCLUni/XLvVnStqkXPkTOhhs1AyajZmDt6Hq4kIkoJI8MH9EuixGw3A/Rh27armfk1P1Cd7nzvm7qhODav1lDj6Wo+kZo1VaeUmbOJiMhUWOiLuo8TEb38d5z12EvIWPs4rqjY0jBqWyor69CuYiPMqlr0HFiI24LjUBGahEXDpjfYCShM8KVNLyZiuzmgoVCoswY41w9UP/OELvuAiP4tjxZCbImzhh7W+/ov+USaFreO1lwiIgqE4fpGzPeBMbig/iDOeOlN9Hl8N+yaJzEwtgNNCYA2ZY8gpXITrBVbcL47AasthVUpuSgfUACLiEifQnlAy34ioDW67N0mgC7zdltxNHoY00ydnXziJAttTIU3o07m4kEASQc+Rdfdb6PvYy9gQF0dkmM7EU+K18Fa/DAyKzfBKijBpZeMwTZTocaSWJ2q0LmvwoWGxPFoQJK4/scG6jhOR/alOa7rDvbb06dR25tSvccHN6RPTdZj/2mTlQvZKPLmQgJo99YH6P7CPvQ+2RoaaTh0theswQgP6ODJmGYq1JkKWy2FUiIiU6LE184RnpzYzisRoEKIMiHEVUKI0THBY12MvRbt5VuiPiJIMhSe9zn7nSURrgOSgeb37gXLcOaM+3Bt5AEoD+jiTehjKTxpStRbCk9buZApYXQ3Jb7xtbEkUZiJAGXmr3SQ2q4Bb9Tl37que2bU9UgkKRQKtWtKXddN0c993ly9UCjUrlFHUxV6GBKf+EeqqVBjjYERz7FRs3Fu3kJcO7EEd84oxxQPaNkG9Os3BjmWxIeWxFuWwu6UMLobCiHft6lDqSr+ofR/ESiYeZueqggGgxdyQw4LZp7Ykrb0NnO9fiGHE+5sqkJqLFRDAkYYbxoK61PzsNSdhKVDp+PB7DuwSRahcmIpFnhAi9YiLWsSOpkK75gSX5oSB70/Q/iBWrkYm3DntDiOM8K27fFCiGt0sl/IzIVZWVmn6fv9bdser+uM9n6JiIQQbNv2eGa+ooVtBTz7QoiC/6jDeqQ+F+cjG1LycMSdiHezpmFXI6D3Ydy8KvQkIjIlVmhwx02JL1IkAkQngFoSmxLNPf8HBG0shRxD4oXmgKoizJ1YCo5EkKyzhaKY7/clnkVDIWQqvJqWj9+0pmetLoEwfhdogDsrNQ+RARNRMHQ6BmXPwlleHSsXl5gStTEw63soRBdqQ6KXcT3OaR0vfkFiKpTH/kXHlHir7404t7X79osUHXz8/3d67KJw4sd9v4oWU+JOU+KopbArJRfX/R8GnF/lx5R/AWyXv3t/2q43AAAAAElFTkSuQmCC\"},6762:function(t,e,n){\"use strict\";var a=n(\"5ca1\"),i=n(\"c366\")(!0);a(a.P,\"Array\",{includes:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),n(\"9c6c\")(\"includes\")},\"68d1\":function(t,e,n){\"use strict\";n(\"12bc\")},\"7fb8\":function(t,e){t.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFQAAAAhCAYAAABHhIyzAAAHCklEQVRoge3af8zXVRUHcJAHRUDDMRQkCyRQIRGT8WtoaOSPSBMWSm0qLUvQNUkyy1ooM7DmAIkVJqXUMrJa2A8r+0ENS3MWWW5lsynGcC0d5jT5kbz645yPz+Xj93m+z/cpfWRxtrvvc8+959x73p97zz3nQK9eLRLOxs+xG2tblT9ASRiAr3k5Dezpve13hMPw6wZgfren9/aaJxyFiUX/INxdA/I+nFbMOQazcBVuwiosxnT06RlLXgOEgfgd5hW8xTUwb0MbDsZUfAJfxT14CH/Hi8X87fgkBvSkbT1C2JAgzMv+MDyNvcn/YZ7YEbgY12JFE0Ar2orpPW3jq0aYVxhfAboMT+H5/D0aJ2IuLisA/Qpuzv41ybsHO2ug7sLs/3KfkzE/2xsL/oVYhBENZOamfR2ujTNyzvDsH5n9dxRzJiVvHoZ2tslDsa0EFIfniXsC/xD+8QTMLAC9GudgUAd6B+OGBLIEtdsnFb9PPf/GediEzwu/Dh9L3rqcP7FYe2MDfdPwZLHHHdl/Ovt7sn8M/lLo2ixu7EutVHpdMXE3xmA2tuBPeDjBnFgA+k4c3sT43uiLKeKEV/QEDusGmOMKHT8WMbEEswL0xvzdkjIrauveZ9+TPSltfD7nbMv+1uzvyv75mlBp9DMF/9bkfwb34rfi5R5TAHoKencBgFHiyw5IUMuTuqwbgH66kL+kGaDoIx7FOh1f6ByD5eLE3S5u5xTMyf6q7F9ZrPN+TKi3SuFptcWmiFf8W8IP3iuuVgXo2BYAmIqxGJrGXV+s808tnFLx4R9L2X8Jl9QM0JnFenfkPoairdB7tq7RCHxWuJMzCvmrkje/YnyqEHogecfi69gortbIBPQEHNQioJMwWoRkA4WPqujiFnRV0cV8rBa+8iOpZ6f2B7C6bVvEI3p7tiPwoZQbXOg9VVzp+8VJrbc9BaBr8++HRbw+ubDn4krh9woDlyRvGtaJr7omNzYGh3YVgNQzGW8TLuLI5H2xWG9DK/pS/v6U3YsP6pi2YFDVSdkns3t8TefSHCvbB3LshQLQvvhm9h8VtwyuKZU9Wmzi3OSdiZX4kjgFR1eAdAPQ8zEDo5I3p1jvsRb1jdQeE2/GIdqvcb0NbgHQlcm/TbzYsKgOaPbbhCus6Ib6Jp8rBk9M3jnC363CRQlo3xaNb0tAL8K5ODn5o4r19uLgFnReW8heoXP/18oJrQC9Fd+vABU39aUrn3NnCR9e0VaMKZWVVAm9XTjbpeJBGtyrRRIv+zQsxHtl7CkKLSV1HCC/XOcfUmaPCLwr/9eofacEFP21+9c6oMuFLyzbwgJo4srPEZHKHhFlfC7HtmNcpaxME8cmb7oIDRYnuP27AegQvBUfFb7uzOT3rQH6+i7q6yNO5EPihKwTD9WMDtqbcvzxXGdd/j6tdiswXIMwCJeLh2itiBjW5N8fLuYsT96VlbLqGsDpyZuAd+NSnK57132kuB5L88PMyrHBNUA7TQ4a6N6UclvQT8e0MudfV+Pf0kDnygbyrdIXKmW/KJhXJe9YcTIvEF+7aRBf2+BQAeh8kakskTmxCKMqerYbujelbB3Qb4tQ74/ZrwAdYd9bOKOBztkC1EZtfcrt7GTOSsytlN1YLPaT5A1Jw8+Sp7YFg/uJAspIUdq7RWRa1em/vFjvgVZ0NwF0UI4vKQFN3k+T9zcN4mjxENV9aNWeTdm9nczZgfdVyqYXm3pR+J7+OE5kTWfUN9CJsb1xEsaLU75eBNVrMT7nlCHH6lcJ0DuT93gHgFbFlUatLMZ0NOc+VSUrQfhzsbFvCGc+VGRGpypStSbGjhep7HjxIN2dxqwXL+5o7XEkvOeVBlREFWWYM7Omb6Ja1ajWNqfcnibz9qk2XWJfuiQ3O1xkSJ36ufwAU0SIVQF6dRr/g8K4svKzU4uZV4uArsa7RBxc0h01fV3N5ZtSHZBfFWO7RUW+TZPcXeTIF4gHqAL0OPwMD+KX4gMNt+9JublVMFsE9DnxSFWZz8b8fQFH1Gzv10k7KeWeaTKvX32jI8Q/X5R0J97cgWHDEsjrRRJQAXqyKIFtwyOi/DdcRAsVPaWDovT/EFDC5VSZzmgRw8IVXVyrTfs/C+3ozmYnNACV8LEbRGC7RvjZu0SqtqwA9BRRVvureB23y/8MUQP00pY3177H87BAxMl9RIq4CIfk+MQcXyCu+wJclGNTs39WF9caV+hf2N0NjxA10Ea0U7yU99cAvQwjU/7LOXevqMaMS34F6F1ajD33exIv/zz8pgmgS/Krt6XM8tr8FYXOGSIXf11P2tbjhDckuB8XadxCUeMcUsx5iyhEl/SgwlGLKtNRPWPFfkTaq9glPYJhPb23/ZK0p2YV/Ug3yn0HKEmETbvSr174f/fgHKBXlv4D1eSGw6GEvQ4AAAAASUVORK5CYII=\"},\"8e6e\":function(t,e,n){var a=n(\"5ca1\"),i=n(\"990b\"),r=n(\"6821\"),c=n(\"11e9\"),o=n(\"f1ae\");a(a.S,\"Object\",{getOwnPropertyDescriptors:function(t){var e,n,a=r(t),s=c.f,u=i(a),d={},f=0;while(u.length>f)n=s(a,e=u[f++]),void 0!==n&&o(d,e,n);return d}})},9093:function(t,e,n){var a=n(\"ce10\"),i=n(\"e11e\").concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return a(t,i)}},\"990b\":function(t,e,n){var a=n(\"9093\"),i=n(\"2621\"),r=n(\"cb7c\"),c=n(\"7726\").Reflect;t.exports=c&&c.ownKeys||function(t){var e=a.f(r(t)),n=i.f;return n?e.concat(n(t)):e}},aae3:function(t,e,n){var a=n(\"d3f4\"),i=n(\"2d95\"),r=n(\"2b4c\")(\"match\");t.exports=function(t){var e;return a(t)&&(void 0!==(e=t[r])?!!e:\"RegExp\"==i(t))}},d2c8:function(t,e,n){var a=n(\"aae3\"),i=n(\"be13\");t.exports=function(t,e,n){if(a(e))throw TypeError(\"String#\"+n+\" doesn't accept regex!\");return String(i(t))}},ed3a:function(t,e,n){\"use strict\";n.r(e);var a=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a(\"el-container\",{staticClass:\"admin-view\"},[a(\"el-header\",{class:t.NavMenu.theme},[a(\"span\",{staticClass:\"logo\",on:{click:t.goIndex}},[\"black\"==t.NavMenu.theme?a(\"img\",{attrs:{src:n(\"7fb8\")}}):t._e(),\"white\"==t.NavMenu.theme?a(\"img\",{attrs:{src:n(\"6141\")}}):t._e()]),t.docName?[a(\"div\",{staticClass:\"menu-line\"}),a(\"div\",{staticClass:\"menu-icon\",on:{click:function(e){return t.goto(\"admin\")}}},[a(\"i\",{staticClass:\"wi wi-shouye\"})]),a(\"i\",{staticClass:\"el-icon-arrow-right\"})]:t._e(),a(\"div\",{staticClass:\"menu\"},[t.isManage?[t.isAdmin?a(\"router-link\",{staticClass:\"item\",attrs:{to:\"/admin/user\"}},[t._v(\"用户管理\")]):t._e(),t.isAdmin?a(\"router-link\",{staticClass:\"item\",attrs:{to:\"/admin/setting\"}},[t._v(\"系统设置\")]):t._e()]:!t.isRead&&t.docName?[a(\"span\",{staticClass:\"doc-name\"},[t._v(t._s(t.docName))])]:t._l(t.NavMenu.list,(function(e,n){return a(\"a\",{key:n,staticClass:\"item\",attrs:{underline:!1,href:e.url,target:\"_blank\"}},[t._v(\"\\n          \"+t._s(e.name)+\"\\n        \")])}))],2),t.UserInfo.username?a(\"div\",{staticClass:\"user\"},[a(\"div\",{staticClass:\"username text-over\",attrs:{title:t.UserInfo.username}},[t._v(\"\\n        \"+t._s(t.UserInfo.username)+\"\\n      \")]),a(\"div\",{staticClass:\"menu-bar\",attrs:{id:\"w7-nav-menu\"}},[a(\"ul\",{staticClass:\"menu-ul\"},[1===t.UserInfo.group_id?a(\"li\",{staticClass:\"menu__item\",on:{click:t.goBackstage}},[t._v(\"\\n            后台管理\\n          \")]):t._e(),a(\"li\",{staticClass:\"menu__item\",on:{click:t.goPersonalCenter}},[t._v(\"个人中心\")]),a(\"li\",{staticClass:\"menu__item\",on:{click:t.exit}},[t._v(\"退出系统\")])])])]):t._e(),t.UserInfo.username?t._e():a(\"router-link\",{staticClass:\"item\",attrs:{to:\"/admin-login\"}},[t._v(\"登录\")])],2),a(\"div\",{staticClass:\"admin-content\"},[a(\"router-view\")],1),a(\"el-footer\",{staticClass:\"w7-footer\",class:t.$route.meta.footerClass,attrs:{height:\"80px\"}},[a(\"div\",{staticClass:\"footer-law\"},[a(\"p\",[t._v(\"\\n        Copyright © 2018 宿州市涛盛网络科技有限公司 www.w7.cc All Rights\\n        Reserved\\n      \")]),a(\"p\",[t._v(\"\\n        网站备案：皖ICP备17004788号-1  增值电信业务经营许可证：皖B2-20200003  \"),a(\"a\",{attrs:{href:\"http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=34130202000406\",target:\"_blank\"}},[a(\"img\",{attrs:{src:\"//cdn.w7.cc/new/img/icon/bei.png?imageView2/5/w/14/h/14\",alt:\"\"}}),t._v(\"  皖公网安备 34130202000406号\")]),t._v(\"  \"),a(\"a\",{attrs:{href:\"http://www.cyberpolice.cn\",target:\"_blank\"}},[a(\"img\",{attrs:{src:\"//cdn.w7.cc/new/img/icon/jubao.png?imageView2/5/w/14/h/14\",alt:\"\"}}),t._v(\"  网络违法犯罪举报网站\")])])])])],1)},i=[],r=(n(\"8e6e\"),n(\"ac6a\"),n(\"456d\"),n(\"6762\"),n(\"2fdb\"),n(\"7f7f\"),n(\"fc11\")),c=n(\"2f62\"),o=n(\"4ec3\"),s=n(\"3191\"),u=n(\"56d7\");function d(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function f(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?d(Object(n),!0).forEach((function(e){Object(r[\"a\"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):d(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var m={name:\"layout\",data:function(){return{uid:localStorage.getItem(\"uid\"),isRead:!1,docName:\"\",isManage:!1}},computed:f(f({},Object(c[\"b\"])([\"UserInfo\",\"NavMenu\"])),{},{isAdmin:function(){return this.UserInfo.acl&&this.UserInfo.acl.has_manage}}),watch:{$route:{handler:function(t){\"accountInfo\"!=t.name&&\"documentIndex\"!=t.name&&\"userIndex\"!=t.name&&\"settingIndex\"!=t.name&&\"chapter\"!=t.name||(this.isManage=!0),\"viewHome\"==t.name||\"searchResults\"==t.name?this.isRead=!0:(this.isRead=!1,\"manageSetting\"==t.name||\"chapter\"==t.name?this.getDocName():this.docName=\"\")},immediate:!0}},created:function(){this.$store.dispatch(\"getUserInfo\"),this.$store.dispatch(\"getNavMenu\"),this.isReadFnc()},beforeRouteEnter:function(t,e,n){t.path.includes(\"/admin/setting\")||t.path.includes(\"/admin/user\")||t.path.includes(\"/admin/document/index\")?u[\"default\"].$store.dispatch(\"getUserInfo\").then((function(t){t.group_id?n():(u[\"default\"].$message.error(\"您没有权限访问！\"),u[\"default\"].$router.push({name:\"personalCenter\"}))})).catch((function(t){})):n()},methods:{goIndex:function(){var t=this;this.isAdmin?this.isManage?this.$router.push({name:\"documentIndex\"}):this.$router.push(\"/\"):Object(s[\"a\"])().then((function(e){200===e.code&&(e.data.is_open&&!t.isManage?t.$router.push(\"/\"):t.$router.push({name:\"personalCenter\"}))})).catch((function(t){}))},isReadFnc:function(){\"viewHome\"==this.$route.name||\"searchResults\"==this.$route.name?this.isRead=!0:(this.$route.path.includes(\"/admin/user\")||this.$route.path.includes(\"/admin/setting\"))&&(this.isManage=!0),\"manageSetting\"==this.$route.name||\"chapter\"==this.$route.name?this.getDocName():this.docName=\"\"},getDocName:function(){var t=this;this.$post(\"/admin/chapter/detail\",{document_id:this.$route.params.id}).then((function(e){t.docName=e.data.name}))},goPersonalCenter:function(){this.$router.push({name:\"personalCenter\"})},goto:function(t){this.$router.push({name:t})},exit:function(){Object(o[\"u\"])().then((function(t){200==t.code&&(location.href=t.data)}))},goBackstage:function(){this.$router.push({name:\"documentIndex\"})}}},h=m,l=(n(\"68d1\"),n(\"2877\")),g=Object(l[\"a\"])(h,a,i,!1,null,\"19a9d71c\",null);e[\"default\"]=g.exports},f1ae:function(t,e,n){\"use strict\";var a=n(\"86cc\"),i=n(\"4630\");t.exports=function(t,e,n){e in t?a.f(t,e,i(0,n)):t[e]=n}},fc11:function(t,e,n){\"use strict\";function a(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}n.d(e,\"a\",(function(){return a}))}}]);"
  },
  {
    "path": "public/js/chunk-7060d2be.17de5f7a.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-7060d2be\"],{\"25d6\":function(s,t,a){\"use strict\";a.r(t);var e=function(){var s=this,t=s.$createElement,a=s._self._c||t;return a(\"div\",{staticClass:\"install\"},[a(\"div\",{staticClass:\"success\"},[a(\"div\",{staticClass:\"s-top\"},[s._m(0),a(\"div\",{staticClass:\"center\"},[s._v(\"特别提醒：安装完毕，请复制命令到服务器手动重启服务\")]),a(\"div\",{directives:[{name:\"clipboard\",rawName:\"v-clipboard:copy\",value:s.restart,expression:\"restart\",arg:\"copy\"},{name:\"clipboard\",rawName:\"v-clipboard:success\",value:s.onCopy,expression:\"onCopy\",arg:\"success\"}],staticClass:\"bottom\"},[s._v(\"重启服务：\"),a(\"span\",[s._v(\"sh restart.sh\")])])]),a(\"div\",{staticClass:\"c-bottom\"},[a(\"span\",{staticClass:\"btn\",on:{click:s.goLogin}},[s._v(\"进入管理中心\")])])])])},i=[function(){var s=this,t=s.$createElement,a=s._self._c||t;return a(\"div\",{staticClass:\"top\"},[a(\"i\",{staticClass:\"el-icon-success\"}),s._v(\"恭喜您，《文档管理系统》安装成功！\")])}],c=a(\"4ec3\"),n={name:\"installTree\",data:function(){return{restart:\"sh restart.sh\",init:!0,loading:!1,success:!1}},created:function(){this.ruleForm.api_host=location.origin+\":99\"},methods:{onCopy:function(){this.$message.success(\"复制成功\")},goLogin:function(){var s=this;Object(c[\"t\"])().then((function(t){if(200==t.code){var a=localStorage.db_database;a==t.data.db_database&&t.data.is_install?s.$router.push({name:\"adminLoginPage\"}):s.$message.error({message:\"请先重启服务后进入管理中心\"})}})).catch((function(s){}))}}},o=n,r=(a(\"6655\"),a(\"2877\")),l=Object(r[\"a\"])(o,e,i,!1,null,\"4052ffba\",null);t[\"default\"]=l.exports},6655:function(s,t,a){\"use strict\";a(\"a8b5\")},a8b5:function(s,t,a){}}]);"
  },
  {
    "path": "public/js/chunk-71aaa888.7c8286dc.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-71aaa888\"],{\"0dd8\":function(t,e,a){\"use strict\";a.r(e);var r=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a(\"div\",{staticClass:\"setting-store\"},[a(\"div\",{staticClass:\"page-head\"},[t._v(\"腾讯云存储\")]),a(\"el-form\",{ref:\"form\",staticClass:\"we7-panel-form\",class:{edit:t.editStatus},attrs:{model:t.formData,rules:t.rules,\"label-position\":\"left\",\"label-width\":\"120px\"}},[a(\"div\",{staticClass:\"we7-panel-form__header\"},[t._v(\"腾讯云存储\")]),a(\"div\",{staticClass:\"we7-panel-form__body\"},[a(\"el-form-item\",{attrs:{label:\"APPID\",prop:\"app_id\"}},[t.editStatus?a(\"el-input\",{attrs:{placeholder:\"APPID 是您项目的唯一ID\"},model:{value:t.formData.app_id,callback:function(e){t.$set(t.formData,\"app_id\",e)},expression:\"formData.app_id\"}}):a(\"span\",[t._v(t._s(t.formData.app_id))])],1),a(\"el-form-item\",{attrs:{label:\"SecretID\",prop:\"secret_id\"}},[t.editStatus?a(\"el-input\",{attrs:{placeholder:\"SecretID 是您项目的安全密钥，具有该账户完全的权限，请妥善保管\"},model:{value:t.formData.secret_id,callback:function(e){t.$set(t.formData,\"secret_id\",e)},expression:\"formData.secret_id\"}}):a(\"span\",[t._v(t._s(t.formData.secret_id))])],1),a(\"el-form-item\",{attrs:{label:\"SecretKEY\",prop:\"secret_key\"}},[t.editStatus?a(\"el-input\",{attrs:{placeholder:\"SecretKEY 是您项目的安全密钥，具有该账户完全的权限，请妥善保管\"},model:{value:t.formData.secret_key,callback:function(e){t.$set(t.formData,\"secret_key\",e)},expression:\"formData.secret_key\"}}):a(\"span\",[t._v(t._s(t.formData.secret_key))])],1),a(\"el-form-item\",{attrs:{label:\"Bucket\",prop:\"bucket\"}},[t.editStatus?a(\"el-input\",{attrs:{placeholder:\"请保证bucket为可公共读取的\"},model:{value:t.formData.bucket,callback:function(e){t.$set(t.formData,\"bucket\",e)},expression:\"formData.bucket\"}}):a(\"span\",[t._v(t._s(t.formData.bucket))])],1),a(\"el-form-item\",{attrs:{label:\"所属地域\",prop:\"region\"}},[t.editStatus?a(\"el-select\",{attrs:{placeholder:\"所属地域\"},model:{value:t.formData.region,callback:function(e){t.$set(t.formData,\"region\",e)},expression:\"formData.region\"}},t._l(t.regionList,(function(t,e){return a(\"el-option\",{key:e,attrs:{value:e,label:t}})})),1):a(\"span\",[t._v(t._s(t.regionList[t.formData.region]))])],1),a(\"el-form-item\",{attrs:{label:\"Url\",prop:\"url\"}},[t.editStatus?a(\"el-input\",{attrs:{placeholder:\"腾讯云支持用户自定义访问域名。注：url结尾不加 ‘/’例：http://abc.com\"},model:{value:t.formData.url,callback:function(e){t.$set(t.formData,\"url\",e)},expression:\"formData.url\"}}):a(\"span\",[t._v(t._s(t.formData.url))]),t.formData.url?t._e():a(\"div\",{},[t._v(\"\\n          不填写则使用默认的地址\"),t.formData.region&&t.formData.bucket?a(\"span\",[t._v(t._s(\"//\"+t.formData.bucket+\".cos.\"+t.formData.region+\".myqcloud.com\"))]):t._e()])],1),a(\"el-form-item\",{attrs:{label:\"保存目录\",prop:\"path\"}},[t.editStatus?a(\"el-input\",{attrs:{placeholder:\"指定保存目录后，上传图片后会在COS中新建相应的目录，保存图片方便管理\"},model:{value:t.formData.path,callback:function(e){t.$set(t.formData,\"path\",e)},expression:\"formData.path\"}}):a(\"span\",[t._v(t._s(t.formData.path))])],1)],1)]),t.editStatus?t._e():a(\"el-button\",{attrs:{type:\"primary\"},on:{click:function(e){t.editStatus=!0}}},[t._v(\"编辑\")]),t.editStatus?[a(\"el-button\",{attrs:{type:\"primary\"},on:{click:t.onSubmit}},[t._v(\"保存\")]),a(\"el-button\",{on:{click:t.cancelSubmit}},[t._v(\"取消\")])]:t._e()],2)},s=[],i={data:function(){return{editStatus:!1,formData:{key:\"cloud_cosv5\",app_id:\"\",secret_id:\"\",secret_key:\"\",bucket:\"\",region:\"\",url:\"\",path:\"\"},regionList:{\"ap-beijing-1\":\"北京一区\",\"ap-beijing\":\"北京\",\"ap-shanghai\":\"上海（华东）\",\"ap-guangzhou\":\"广州（华南)\",\"ap-chengdu\":\"成都（西南）\",\"ap-chongqing\":\"重庆\",\"ap-shenzhen-fsi\":\"深圳金融\",\"ap-shanghai-fsi\":\"深圳金融\",\"ap-beijing-fsi\":\"北京金融\",\"ap-hongkong\":\"中国香港\",\"ap-singapore\":\"新加坡\",\"ap-mumbai\":\"孟买\",\"ap-seoul\":\"首尔\",\"ap-bangkok\":\"曼谷\",\"ap-tokyo\":\"东京\",\"na-siliconvalley\":\"硅谷\",\"na-ashburn\":\"弗吉尼亚\",\"na-toronto\":\"多伦多\",\"eu-frankfurt\":\"法兰克福\",\"eu-moscow\":\"莫斯科\"},rules:{app_id:[{required:!0,message:\"请输入APPID\",trigger:\"blur\"}],secret_id:[{required:!0,message:\"请输入SecretID\",trigger:\"blur\"}],secret_key:[{required:!0,message:\"请输入SecretKEY\",trigger:\"blur\"}],bucket:[{required:!0,message:\"请输入Bucket\",trigger:\"blur\"}],region:[{required:!0,message:\"请输入Bucket所属地域\",trigger:\"blur\"}]}}},created:function(){this.init()},methods:{init:function(){var t=this;this.$post(\"/admin/setting/cos\",{}).then((function(e){t.formData=Object.assign(t.formData,e.data.setting),t.formData.key=e.data.key})).catch((function(){}))},onSubmit:function(){var t=this;this.$refs[\"form\"].validate((function(e){if(!e)return!1;t.$post(\"/admin/setting/save\",{key:\"cloud_cosv5\",setting:t.formData}).then((function(){t.$message(\"保存成功！\"),t.editStatus=!1}))}))},cancelSubmit:function(){this.init(),this.editStatus=!1}}},o=i,n=(a(\"8687\"),a(\"2877\")),l=Object(n[\"a\"])(o,r,s,!1,null,null,null);e[\"default\"]=l.exports},8687:function(t,e,a){\"use strict\";a(\"d53f\")},d53f:function(t,e,a){}}]);"
  },
  {
    "path": "public/js/chunk-73af5400.5503ef14.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-73af5400\"],{\"1d29\":function(t,e,a){\"use strict\";a(\"3adc\")},\"3adc\":function(t,e,a){},\"7fb8\":function(t,e){t.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFQAAAAhCAYAAABHhIyzAAAHCklEQVRoge3af8zXVRUHcJAHRUDDMRQkCyRQIRGT8WtoaOSPSBMWSm0qLUvQNUkyy1ooM7DmAIkVJqXUMrJa2A8r+0ENS3MWWW5lsynGcC0d5jT5kbz645yPz+Xj93m+z/cpfWRxtrvvc8+959x73p97zz3nQK9eLRLOxs+xG2tblT9ASRiAr3k5Dezpve13hMPw6wZgfren9/aaJxyFiUX/INxdA/I+nFbMOQazcBVuwiosxnT06RlLXgOEgfgd5hW8xTUwb0MbDsZUfAJfxT14CH/Hi8X87fgkBvSkbT1C2JAgzMv+MDyNvcn/YZ7YEbgY12JFE0Ar2orpPW3jq0aYVxhfAboMT+H5/D0aJ2IuLisA/Qpuzv41ybsHO2ug7sLs/3KfkzE/2xsL/oVYhBENZOamfR2ujTNyzvDsH5n9dxRzJiVvHoZ2tslDsa0EFIfniXsC/xD+8QTMLAC9GudgUAd6B+OGBLIEtdsnFb9PPf/GediEzwu/Dh9L3rqcP7FYe2MDfdPwZLHHHdl/Ovt7sn8M/lLo2ixu7EutVHpdMXE3xmA2tuBPeDjBnFgA+k4c3sT43uiLKeKEV/QEDusGmOMKHT8WMbEEswL0xvzdkjIrauveZ9+TPSltfD7nbMv+1uzvyv75mlBp9DMF/9bkfwb34rfi5R5TAHoKencBgFHiyw5IUMuTuqwbgH66kL+kGaDoIx7FOh1f6ByD5eLE3S5u5xTMyf6q7F9ZrPN+TKi3SuFptcWmiFf8W8IP3iuuVgXo2BYAmIqxGJrGXV+s808tnFLx4R9L2X8Jl9QM0JnFenfkPoairdB7tq7RCHxWuJMzCvmrkje/YnyqEHogecfi69gortbIBPQEHNQioJMwWoRkA4WPqujiFnRV0cV8rBa+8iOpZ6f2B7C6bVvEI3p7tiPwoZQbXOg9VVzp+8VJrbc9BaBr8++HRbw+ubDn4krh9woDlyRvGtaJr7omNzYGh3YVgNQzGW8TLuLI5H2xWG9DK/pS/v6U3YsP6pi2YFDVSdkns3t8TefSHCvbB3LshQLQvvhm9h8VtwyuKZU9Wmzi3OSdiZX4kjgFR1eAdAPQ8zEDo5I3p1jvsRb1jdQeE2/GIdqvcb0NbgHQlcm/TbzYsKgOaPbbhCus6Ib6Jp8rBk9M3jnC363CRQlo3xaNb0tAL8K5ODn5o4r19uLgFnReW8heoXP/18oJrQC9Fd+vABU39aUrn3NnCR9e0VaMKZWVVAm9XTjbpeJBGtyrRRIv+zQsxHtl7CkKLSV1HCC/XOcfUmaPCLwr/9eofacEFP21+9c6oMuFLyzbwgJo4srPEZHKHhFlfC7HtmNcpaxME8cmb7oIDRYnuP27AegQvBUfFb7uzOT3rQH6+i7q6yNO5EPihKwTD9WMDtqbcvzxXGdd/j6tdiswXIMwCJeLh2itiBjW5N8fLuYsT96VlbLqGsDpyZuAd+NSnK57132kuB5L88PMyrHBNUA7TQ4a6N6UclvQT8e0MudfV+Pf0kDnygbyrdIXKmW/KJhXJe9YcTIvEF+7aRBf2+BQAeh8kakskTmxCKMqerYbujelbB3Qb4tQ74/ZrwAdYd9bOKOBztkC1EZtfcrt7GTOSsytlN1YLPaT5A1Jw8+Sp7YFg/uJAspIUdq7RWRa1em/vFjvgVZ0NwF0UI4vKQFN3k+T9zcN4mjxENV9aNWeTdm9nczZgfdVyqYXm3pR+J7+OE5kTWfUN9CJsb1xEsaLU75eBNVrMT7nlCHH6lcJ0DuT93gHgFbFlUatLMZ0NOc+VSUrQfhzsbFvCGc+VGRGpypStSbGjhep7HjxIN2dxqwXL+5o7XEkvOeVBlREFWWYM7Omb6Ja1ajWNqfcnibz9qk2XWJfuiQ3O1xkSJ36ufwAU0SIVQF6dRr/g8K4svKzU4uZV4uArsa7RBxc0h01fV3N5ZtSHZBfFWO7RUW+TZPcXeTIF4gHqAL0OPwMD+KX4gMNt+9JublVMFsE9DnxSFWZz8b8fQFH1Gzv10k7KeWeaTKvX32jI8Q/X5R0J97cgWHDEsjrRRJQAXqyKIFtwyOi/DdcRAsVPaWDovT/EFDC5VSZzmgRw8IVXVyrTfs/C+3ozmYnNACV8LEbRGC7RvjZu0SqtqwA9BRRVvureB23y/8MUQP00pY3177H87BAxMl9RIq4CIfk+MQcXyCu+wJclGNTs39WF9caV+hf2N0NjxA10Ea0U7yU99cAvQwjU/7LOXevqMaMS34F6F1ajD33exIv/zz8pgmgS/Krt6XM8tr8FYXOGSIXf11P2tbjhDckuB8XadxCUeMcUsx5iyhEl/SgwlGLKtNRPWPFfkTaq9glPYJhPb23/ZK0p2YV/Ug3yn0HKEmETbvSr174f/fgHKBXlv4D1eSGw6GEvQ4AAAAASUVORK5CYII=\"},\"822d\":function(t,e,a){\"use strict\";a.r(e);var n=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"install-wrap\"},[n(\"div\",{staticClass:\"i-header\"},[n(\"span\",{on:{click:t.goIndex}},[n(\"img\",{attrs:{src:a(\"7fb8\")}})])]),n(\"div\",{staticClass:\"install-con\"},[n(\"router-view\")],1),t._m(0)])},s=[function(){var t=this,e=t.$createElement,a=t._self._c||e;return a(\"footer\",[a(\"div\",{staticClass:\"footer-law\"},[a(\"p\",[t._v(\"Copyright © 2018 宿州市涛盛网络科技有限公司 www.w7.cc All Rights Reserved \")]),a(\"p\",[t._v(\"网站备案：皖ICP备17004788号-1  增值电信业务经营许可证：皖B2-20200003  \"),a(\"a\",{attrs:{href:\"http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=34130202000406\",target:\"_blank\"}},[a(\"img\",{attrs:{src:\"//cdn.w7.cc/new/img/icon/bei.png?imageView2/5/w/14/h/14\",alt:\"\"}}),t._v(\"  皖公网安备 34130202000406号\")]),t._v(\"  \"),a(\"a\",{attrs:{href:\"http://www.cyberpolice.cn\",target:\"_blank\"}},[a(\"img\",{attrs:{src:\"//cdn.w7.cc/new/img/icon/jubao.png?imageView2/5/w/14/h/14\",alt:\"\"}}),t._v(\"  网络违法犯罪举报网站\")])])])])}],c={name:\"install\",data:function(){return{}},created:function(){},methods:{goIndex:function(){this.$router.push(\"/admin\")}}},r=c,i=(a(\"1d29\"),a(\"2877\")),o=Object(i[\"a\"])(r,n,s,!1,null,\"af400938\",null);e[\"default\"]=o.exports}}]);"
  },
  {
    "path": "public/js/chunk-775b8fab.3c36ea5b.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-775b8fab\"],{\"97a1\":function(t,e,n){},bdf0:function(t,e,n){\"use strict\";n.r(e);var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"setting-nav\"},[t._m(0),n(\"div\",[n(\"el-input\",{staticStyle:{width:\"50%\"},attrs:{type:\"textarea\",rows:6,placeholder:\"请输入屏蔽内容\"},model:{value:t.textarea2,callback:function(e){t.textarea2=e},expression:\"textarea2\"}})],1),n(\"div\",{staticClass:\"submit\"},[n(\"el-button\",{attrs:{type:\"primary\"},on:{click:function(e){return e.stopPropagation(),t.submit(e)}}},[t._v(\"立即保存\")])],1)])},i=[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"page-head\"},[n(\"span\",[t._v(\"屏蔽词设置\")])])}],s=n(\"4ec3\"),c={name:\"settingScreenWords\",data:function(){return{textarea2:\"\"}},mounted:function(){this.getForbin()},methods:{getForbin:function(){var t=this,e={key:\"forbid_words\"};Object(s[\"l\"])(e).then((function(e){200==e.code&&(t.textarea2=e.data.forbid_words.join(\",\"))}))},submit:function(){var t=this;\"\"==this.textarea2?this.$message({message:\"必须设置敏感词，才可以提交哦！\",type:\"warning\"}):this.$confirm(\"确认执行该操作吗?\",\"设置敏感词\",{confirmButtonText:\"确认\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){var e={key:\"forbid_words\",setting:[t.textarea2]};Object(s[\"g\"])(e).then((function(e){200==e.code&&(t.textarea2=\"\",t.getForbin(),t.$message.success(\"设置成功！\"))})).catch((function(t){}))})).catch((function(){t.$message({type:\"info\",message:\"已取消\"})}))}}},r=c,o=(n(\"c6e2\"),n(\"2877\")),u=Object(o[\"a\"])(r,a,i,!1,null,null,null);e[\"default\"]=u.exports},c6e2:function(t,e,n){\"use strict\";n(\"97a1\")}}]);"
  },
  {
    "path": "public/js/chunk-a3879d6c.c1f2b764.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-a3879d6c\"],{\"1db4\":function(s,e,t){},\"30c8\":function(s,e,t){},\"3c4a\":function(s,e){s.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAPM0lEQVR4Xu2cCZRU1ZnHf7eabppudhDELYgkKHQjDpwcDQFMMmOiRCNBUUa6uhFFJgqICwI6UcG4EEdAFILjSNPEuCYRE+OMjoMal2A0EbpZjICIKLLvTQNN3Tn/uvWoV73We71Ec/zOqQNd9e733ft/3/3W+56hmSmvwA7AcDrQEzjNGL5moROWDsbQTdOxls0YdhnYYS0fA2uNYa2N8UHZYvNuc07ZNLWw3kW2n4lxmYHBxvCtBsuzHMTwbszypo3w1Kpi836DedbBoEkA6ltgu8QMIzEUGejXlAuw8D6WxyKWp1YsNlsbW1ajApQ30nY1WdyCZSyG3MaebJ38LAdisMAcYWbZE2ZLY8luFIB6FdhTMw03YbjSQHZjTS4MHwsV0qgjlvs/WGw+CsPDP6bBAOVFbV+gxBjObOhkGnO8tSwHomUlZkVD+IYGqP9Ym3n4EFOB24DMhkyiCccewTIjK5t733vEHAkjJxRAfa+wJ8UyeMIYvh1GaHOPsZY3IkcZueJxsymo7MAA5Uftj4CFGDoEFfZ3vd6yCxhdWmKWBJlHIID6RO0lxvBLAy2DCPmiXGvhkLWMWllink13TmkDlFdob8Tyc2NIe0y6k2jO66zFApPKSsycdOSmtdj8qL0Gwy/SYfhluUaB7Mpi82R9860XoD5F9nJjedxApD5mX6rfLZXWcHHZIvNCXfOuE6AzRtl/apHBH4GcL9Xi059suY0xoGyxWV3bkFoB6nGpbZfTiuXKttOXF+zK3t3hknPh/LNh51646WFYrdy9GcnCqt3lDNj0jDlYk9haAcortM8buLAp5tq6FUwrgKHngPHNYF85DBkPlUebQmodPC2LSktMUdoA5RfZi7H8timm2bEtvPhzaFVDoHDwkAOo4nBTSK6Hp2FYabF5rupV1TSo96U2K5LDWgMnN/Y0TzoOnrsbsmpJTGb+Cn75UmNLTY+fhU9i5fRc9YxJuT3VAMqL2juM4fb02Fa/SlumWyf4bHvqb107wq9+Cse1T/0+ZuHxl+DZV+Gjzam/RQwc3wm6dICclqAtuO4zKK8IO7u6x1nLnWUl5g7/VSkAyTDn5rABqLKM9Cd0WxT++iG88HZyjEB7bCr0/0Yqn41b4OZ5qYb55C6Q1wNOPQF6dHOAalse185tS0V523bDBxvhxT+lykl/lrVcadm1L0KPDcVmt3dFCkD5BXYKEe4JK+jqC2H8cJi6IHXiBd+Hm0dWB+eq++DznSBNOfE4B8zxHaFdLrRrDR3auI8fIL9RF8ctO+HBXzuwGsW4x5hautjcWw2g7kU2u3WM9V7hPChIA06HR29xi/33/4Ilip4UQGXDkruhc3v3mxZ4pBKGTnbg5GZDn1OhUztokwPycG1z0gfIm+eyVe7GbN8TdOZVrrd8ui9Czw3FJr6Rj2lQfoEtIsLCMOxbZMDv74MTOrvRfoBuvByGDYLMFu4TicCE2fDacqctp3SF3JbQKrs6QO3bOAAFmLRI4GVngeTVRPsPQvQuWPtpmFX4xsQYXbrYFKcAlBe1rxrDkDCsZ4yBHw1KjvQD9PR06NTWea6sFk5rLp4G8mhtc52GVQWoXQ6s3gjSigMVEIs53hkRx+eigXDdcAdeVdL1w6Y5OWHJWl4rKzHnHgPo9CLbvYXbXvXmZlWFaoFLH4RWWdUBUpQc/T5kZjrtaRGBK2ZA7KjThpZZTnM8gPT3spWwdRccTYBS2yIF1LfyYNZ4B5yf5EEvuBnkIcOQMv6KDLquXWi2xQFpiGt/ZDKc3Ts5jUNHYNitsGkrPDwJ5N697fXJFpiyILFVMpMAyTvJ2K7dVD8wVRfcpT0snAbyfn5a+heY+GAYeNyYWIxJKxeb2XGA8qP2OQyqFAYiac2b81Ntwn8vg8nz3V0VeLIZAkjba+Ef4O2V0DITshMA6bePP4ed+9IXLWPfrg0crYTyQ07WE3dAzxOTPOTRrpjegNzOsqS0xFzsACq0KkcGjn2iP4CbLk+dlPb/x1vg2/kQPR8yMxxAlTG4cS5kZCQBatECNm6FAzWmibUDJpvWtjUcrHBBo+yOgslnZzhD75ES4O9dH1wrNd7CzrJFdDZ9RtkzIxkEbt/KXb85z20Xj/64HK6d5f5SwKjtJc2RvVj1MTz6OweWNEjfbd7uNCAoKVJXfKTcTeDoX0XZYy90xttPCic+CdlvjR2lnwnr3uWiX3ogdTLTHoHfv+UWP31MwvZkuG2myPr15UmAduwJB44kKqpWeCBw9ak4BFt3xw898Mrs1HRGchUfhaIYo01+1N6L4ZagDM76Oiy6NTlKHmPgv7k7KvetrecZZ9mbec/B5h3uO+mvFhSWpLX9errtdfCw06BN21wkPfoCmDQiyVnecNC1oBgpMFnuE0ChDPSYH8LES5IiV6yDUTPc353bwdiLkltJ2+yuRS4sVZC3XXc78GyTA8Rv0JkOnIoESOs/A3nQb5zsbJGfLr8DVinDDEqWJQKoFENe0LFzJsJ3zkqOUplC5QpRjxNg2GC31VplwoFD8NBvnD06chT2lweVlnp9VgYMTpwZkfYIqA83OTskD/f6Q06LPbplPry4LIRMS5nJi9oNYcqqSi1kBzyaXuxKFqK+p8HAfGd74jHOLnjyFac9e/aHmGiVITLyg/pCdktnfwTQ3z5xWb7owYlwru/mKbyY9XRwuTq8ZfIK7ecGfEtNj9GyR1Kj50lz4ZX33Nj+vSC/hwNHnw2fw/+842yPbFRDSfHXoH6glCS+zQ7Dmo0uOBVNuASu+mFSysvvwo0PBZdqYYsAqgjTKV0RT+WSdN0s56U8gBS0KY3QYmQf3ih1d7u+FCKdZbTOgcF9na3zAFr5kZMjGvk9mFqQ5PTuGrjyWAEjHQnuGnViQwP03qMJj5SQN3EOLP2r++PMnvC1ri4R1TbbsBneWdM4lUDla/KE5w1wJRRvi73/obNDouFD4PbRSSD8DiR9eBIA5Rda7dx2QQbq2pdnQVff8YVb/xN+96bjcvopzj55NkjJ45/XNE4xXpGyPODwwdC+teMpLXqrNFnmGHUeTP7X5IpUFbh6ZtAVxuXEt1goG/TYFFCRzKMFS+DhRB9E2nNyV7e9ZIN27IU/r4bDlcEn6R+hWpKqjfKEVw2FrCw4lLBBqiiqhCtSDarwB8mRf/gTTAnROI8b6bBu/voRcOUFNd8l1ZGlQXEjneWiXd3FhpZE2+dCJMOVS24Y6ZJVxT4VR+CJ/3UVAdGCm+AcX+DyiyUwL0wTS24+bKCoCWgiHmnxA3/iolpFun6AFJu8UZYsfIXRI2lP57Yu6ZX3GjcMKiudVuojDVZyKlmqMPiLaX4PG0i2AsW8qJ1tDBMDDQRO7Awv3p86ygvIFO+oPqM4xSuGvVUGR0N2TJVjiZ9q2dpesnEjvpv4W99VuiBVIURNkfSIn7owIDAp1cgrsONMhPmBBwOvzoWObZIj3y6Da+53d1HlB20x9bPk7tWmUaQbhjq0hja5zt4IoH8ZAEP6uf8LHH0vJyEqOh9uuCxVyjnjQsZfSlZ7R+1ZGYa/hJm4Uo3ZE5L9dSWs42eDyh4ypnGAst1H9sGLdIPIUszTraOzNR5A438MpxzvwDl8xNm3x192XF+YmVpdVGymGC0MxcsdYE1eIdsNdAzKRFtJ+91fj1ZWfdEUB5q0xwNI5Y3dAdMMgaytFQcnAVBuK5hxlSttCByBdFeJq/lIs/7jutRVFP7MNTJD0O7SRaZDg0quEip3KpX2N/S8wpkCOgEkA7trb7ApyhN2P97FOfp4AF040J0KkWEWOHIKP3nA/X/xbS5I9Uggnj3OXROY/CXXvKidaAyzAzNJDHjqTjijyikiqbbaykEnJ1B7neKKYl610ANo736YNcHZt7jBrnSac8ND8M8D4AGf9ggcuff51c5rpLdKa7le5xjjGpR4lGBdmLaPxqu6uOSe6kdaVIgfO9N1K+prwWi7auFq5QgQFbjiBTFVDA87A69+/T3XpHqv6Qvhvb+51rZa3B5pS38nsG92o9X2qYzQY02x2XCsD9aQxqGYqoClNk9NpFRDBTMlrFVJMdN3+8PXT4Q9B2B/hasX+QHatc9VDJ+/15VT48a5Ej7dBrIxoqoA3f4Y/Pb19LSl6lXVGoe6IGxt2s9can7/tc7N10TSBHUwVEDbvc9tIX2n/+89UDNAOhIj76eofcKlLpby4iEFh955Ij9AYZPTY3OuqfWswwttYqzF4OsuBb8Dsh9y/QokayOBsn0vaBvIeEtDqgKk1vHqDQ7E7t3cAQg5AtkWlUwE3GW3J9MXDyDxGnF7Mu0IugI97bjfHYFJPbyQ0KIGHX/xJiO3P3qoswk19c/rAmjTdli13hlfZe3yZGoOqM3jkUBSB8V/Bkm5odrcOgj6f6GiugT32o6/6OfuRbZ9mxjrG+s5DJVGlRIo6lUKoPKEyA/Qtl3u1Ni6T2H5Wtf58OibZ7gt643zvld9WWmNn9RAkFY9nyi5BNWcxPW7D5TTff0z5tghmupH8ArtVAN3hxRQ5zD10U87ySWzMsgy3jK00gg/ndQFxgx1ha+qJM3S1qraxtERmb0hU5ljmgnTyhaZlANkzXqIMx3Q77zSdURqIlUMzruhEQ5J1cA87UOcGtuUx4DrAklbUkdp/O1s73ppnM4VybA3CaV7DNgTnhe1vzaGHzfJZGphqih66ZzUnpY81tNL4YEnXbrRJGR5trTEXFoT7zofRcjNiR9q6N4kk6qF6XnfhKlXgE5+vPSOA0elkqYia1ldfpBz/IbZL6vOE2V6S4KJ8NYX+JnUhuJWjqF/abFZUxujeo/c5RXaoYCe2/iHehzKgg75XdSgx6E8VP8RH6jDMq60xNR7MKZeDfIZ7fHG0IBTfw3dDY033lomlJWYuelwTBsgMfvqod40IM0vsENshN+EKdGmwb7JLrGWHcYyvHSxeS2IkEAa5DH+6sUCaUKcF7XTjCFRskpzUDNfZi23lpWY0LllKA3yr1EvNzHwNIZezbz2OsX93V9u4p9d4kmh6RjGf0FejzO3rMRMbowb1mANStGmkbarzWRyBPQiguZ9wRLssTCPw8z5wr1gqeqd6jPGduQwURPhagO+Jzka456m8tArumyMRQcyKPY/KdhYkhpVg2qalFrbBkZ89ZK3NG9ZIgHuZW38NYE903xN4Dq9KhDLmuZ+TeD/A29h2dw6stS0AAAAAElFTkSuQmCC\"},aa37:function(s,e,t){\"use strict\";t(\"1db4\")},b863:function(s,e,t){\"use strict\";t.r(e);var a=function(){var s=this,e=s.$createElement,t=s._self._c||e;return t(\"div\",{staticClass:\"admin-login\"},[t(\"div\",{staticClass:\"login-box\"},[s._m(0),t(\"el-tabs\",{on:{\"tab-click\":s.tabClick},model:{value:s.active,callback:function(e){s.active=e},expression:\"active\"}},[t(\"el-tab-pane\",{attrs:{label:\"注册新账号\",name:\"reg\"}},[t(\"div\",{staticClass:\"login-form\"},[t(\"el-input\",{staticClass:\"user\",attrs:{placeholder:\"用户名\"},model:{value:s.formQuery.username,callback:function(e){s.$set(s.formQuery,\"username\",e)},expression:\"formQuery.username\"}}),t(\"el-input\",{staticClass:\"pwd\",attrs:{type:\"password\",placeholder:\"输入密码\"},model:{value:s.formQuery.userpass,callback:function(e){s.$set(s.formQuery,\"userpass\",e)},expression:\"formQuery.userpass\"}}),t(\"el-input\",{staticClass:\"pwd\",attrs:{type:\"password\",placeholder:\"再次输入密码\"},model:{value:s.formQuery.confimUserPass,callback:function(e){s.$set(s.formQuery,\"confimUserPass\",e)},expression:\"formQuery.confimUserPass \"}})],1),t(\"el-button\",{staticClass:\"login-btn\",on:{click:s.bind}},[s._v(\"确认\")])],1),t(\"el-tab-pane\",{attrs:{label:\"绑定已有账号\",name:\"bind\"}},[t(\"div\",{staticClass:\"login-form\"},[t(\"el-input\",{staticClass:\"user\",attrs:{placeholder:\"用户名\"},model:{value:s.formQuery.username,callback:function(e){s.$set(s.formQuery,\"username\",e)},expression:\"formQuery.username\"}}),t(\"el-input\",{staticClass:\"pwd\",attrs:{type:\"password\",placeholder:\"输入密码\"},model:{value:s.formQuery.userpass,callback:function(e){s.$set(s.formQuery,\"userpass\",e)},expression:\"formQuery.userpass\"}})],1),t(\"el-button\",{staticClass:\"login-btn\",on:{click:s.bind}},[s._v(\"确认\")])],1)],1)],1),s._m(1)])},r=[function(){var s=this,e=s.$createElement,a=s._self._c||e;return a(\"div\",{staticClass:\"bind\"},[a(\"div\",{staticClass:\"top\"},[a(\"img\",{attrs:{src:t(\"bebc\"),alt:\"\"}}),a(\"span\",{staticClass:\"text\"},[s._v(\"绑定\")]),a(\"img\",{attrs:{src:t(\"3c4a\"),alt:\"\"}})]),a(\"div\",{staticClass:\"p1\"},[s._v(\"首次使用应用商城账号登录时，您需要创建文档系统的账号与密码，以后您也可以使用此账号与密码登录。\")]),a(\"div\",{staticClass:\"p2\"},[s._v(\"如果您已有文档系统的账号与密码，可以直接进行账号绑定。\")])])},function(){var s=this,e=s.$createElement,t=s._self._c||e;return t(\"div\",{staticClass:\"footer\"},[s._v(\"\\n      Powered by \"),t(\"a\",{attrs:{href:\"https://www.w7.cc\"}},[s._v(\"微擎云计算©www.w7.cc\")])])}],n=(t(\"7f7f\"),t(\"4ec3\")),l={name:\"adminBind\",data:function(){return{active:\"reg\",formQuery:{username:\"\",userpass:\"\",confimUserPass:\"\",handle:\"reg\"}}},methods:{bind:function(){var s=this.formQuery.username,e=this.formQuery.userpass,t=this.formQuery.confimUserPass;if(!s.length)return this.$message.closeAll(),this.$message.error(\"请输入用户名\"),!1;if(s.length>10||s.length<2)return this.$message.closeAll(),this.$message.error(\"用户名长度不正确\"),!1;if(!e.length)return this.$message.closeAll(),this.$message.error(\"请输入密码\"),!1;if(e.length<6)return this.$message.closeAll(),this.$message.error(\"密码长度最小6位\"),!1;if(\"reg\"==this.formQuery.handle){if(!t.length)return this.$message.closeAll(),this.$message.error(\"请输入密码\"),!1;if(t.length<6)return this.$message.closeAll(),this.$message.error(\"密码长度最小6位\"),!1;if(t!=e)return this.$message.closeAll(),this.$message.error(\"两次输入的密码不一致\"),!1}this.submit()},submit:function(){var s=this;Object(n[\"z\"])(this.formQuery).then((function(e){s.$message(e.data),s.$router.push(\"/\")})).catch((function(s){}))},tabClick:function(s){this.formQuery.handle=s.name}}},o=l,c=(t(\"aa37\"),t(\"d08e\"),t(\"2877\")),i=Object(c[\"a\"])(o,a,r,!1,null,\"780cb3f1\",null);e[\"default\"]=i.exports},bebc:function(s,e){s.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAGtElEQVR4Xu2cvW4bRxDH/3NHfVSxBFBlIAq22EYBkspFqCeQ0qRJYRt5AaoKmRSWACOk01h5gtCNW9FA6ph+AolVENKB5cKV6JAJECQSyZtglzyKpE53e7d7J9IwS2n3bva3s7Mzs7NHSPiXKbQzKcK6xU6OyVkB05YrAgEZJu6AqXP5N6oxo8OWddJbQv10f3X0vyREp7hfktlvryye93eYkSMgB0JG550MPgFQY4dqrx6nn+s8S6VvbIDufNvaIcIuCLsErKgIE7YNAx2AK6DU0+YPqwKc8Z9xQNli6x4Y+7qaEnakzKgx+OBVea0Wtq9fe2OAbgrM9ODEEmTGnilQ2oA2v2tvwek/IULO5MwZeFb1gu290/Lqqc6ztABlC+8egnhfR4A4+0obxdhrltOVqO+JBEjsTAv/9Y9mUGs8OTCj0l2296K4CKEBySXF/Rdx7UxRZzqon7BN3aXUdlhIoQDdKZzliOho3uC48OSSI3s7jEugDGiz0LpPhJ+DZmrW/x8WkhKgbLG1C+Bo1gevKl8YSIGA5tXmBMESkLpL9kaQTfIFJALLBeofz6vNCYYUbLh9AW0Wz44Jl9F20Avn8f/CBWiW0w+uk/1aQNnC2T6IHs7joMPKzIwH1zmTnoCE3SHuH4d9EZjrAKqh+yl0YFCeCLcUmoZu4mePvAFFXVrMB43yWiyhh5w0p1cB0SehCSh0YOBps5S+P930CqA7xXd5C/xE4ZlXmwwBZYstjtTfo1OjlKaN79vr9oLT7sGyFs77hwTcM/X88ec4zNvTWYArgDaLrXbkXSsmQNIPY5S7Du+8/nHtd61J9CErckrNcnp7vMkEIG1vOU5AwBEDfwP8dbO09osMe0BV03ZpWosmAGULrddamcCYAYmZZQYD/Kj5R/ogc7vz8SJ6VZN2aVqLRoCMhBMJABqpP+PXf2jxq7elj95tFlsVk3bpgu0NN9F2CajQqoKwo2X8kgQ0EPQNHHun8Xi1rm0exgbOjJ+a5XRe/EkCGh7NtLXgDPRfbvOmd7HbxT/vWuw88pKPwP92HewJ4z1M/9a07RLjtFFOb4wAGdsVYgIUZuI2i2c1An0Rpo9XWyb7U5E3khqUNbG8AjTIAe2BncCzKws4HDe6wmgqDrYuloUpQO5qkIC0fJ9x6X00yMsJ8xp41AEy+GWztJaL2n9aFvd5FDnu8tRL8zZIUXtgGpB4r/DiyaT1j8NI3yQgofVkNK3hs8REMEjMWod4LiwmUQgxaYjj0CAAX5IxAx1kpD0CQVXtmG7nNamxAGI+IFNGTQ7CV4P4ZLzuJyqcoW+SmQ6J4gAktT4pQDpAVPrGA4hfkkmvN8BIv2GYsUEEEkVY6xMehuFtXi4IJAnIYLYxKRuUMCCcMmBkFxO1jMnYoCQ1SMWQaLSJzQYlZaSluqrHVb6okvKDpMxJAXINuIaSjLomZ4PwNDFH0QQYv2fEscTEpCYWaswlIBFqfAhWr586Gawmle5QTZhNiEvWluohZhxLTKY7ZMKs0Opo53EVg9VsofW5ynJrLzm/3TqnzyyiFyrtTQMaJczEy41F9AEZRae/+DaV6jZUBtx36C6Rs3hTgCZTrqbqDwMAXWChvkTdb1QAWX0861vI3hSgiaR9Esc+7FBeXGlSgeO2IcfZIosPVfoYXmJvGqW0vJU08weHKnDcyNtU0v7KwaG0QyYqWWM4F7sJQJ5Hz0NIItqeyLOoCijbvQeA3KU6WubjALSdxvcAkG/5i7ZPNOeAprVnwki7mqR1Tj/ngJRK8AaO49lJpKIkg2nVULZvrHHU9I1yEadcZhHLgMWVI2IrljJgVWBMnA9bY8mMv7rLdsbrWsKHQvJBWV+4QnJ3tqKqq+psz0K765aW5zY/LfDw6uWpkUh/FmhMy8Bcv1hO5fxu/Khdh3L6+mVtMwbIz+6MixoISDQWNcmqUfWMcfAUR8CBZedUrmYqARo6kO/HlcwQcDwdRT8NiKu6PSmtC6M5SkbaS3BjpbZJUXHfo2CQvURSXmLjneXudt6rmii3TYKT2Mq7S3Y+6H6qMUDug4yW78VASi4pIJ/4pynGxzK4Fd07nDltYjy/gJ2/0Y+bTIAaJP7FbcPoCTcTWsRcd4D8zHweZ3pMw6Rb4qBELocZ+6bARN7FVCdZ5LgZEDcFd+MKVYY2pgLLrqg4faqyh/akozzY7TM8UsoJWPIjb7pLkLnOIBH61BqldOyplUjbvBYw8ZlA9DIWkGPQCogvPxPIg4/BMYmPtw1+oujKIasjLsL0llMnUbZqHXn/B5sq7OVQhiqfAAAAAElFTkSuQmCC\"},d08e:function(s,e,t){\"use strict\";t(\"30c8\")}}]);"
  },
  {
    "path": "public/js/chunk-ab7deece.198a94a8.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-ab7deece\"],{\"02f4\":function(e,t,r){var n=r(\"4588\"),a=r(\"be13\");e.exports=function(e){return function(t,r){var o,i,c=String(a(t)),u=n(r),l=c.length;return u<0||u>=l?e?\"\":void 0:(o=c.charCodeAt(u),o<55296||o>56319||u+1===l||(i=c.charCodeAt(u+1))<56320||i>57343?e?c.charAt(u):o:e?c.slice(u,u+2):i-56320+(o-55296<<10)+65536)}}},\"0390\":function(e,t,r){\"use strict\";var n=r(\"02f4\")(!0);e.exports=function(e,t,r){return t+(r?n(e,t).length:1)}},\"0bfb\":function(e,t,r){\"use strict\";var n=r(\"cb7c\");e.exports=function(){var e=n(this),t=\"\";return e.global&&(t+=\"g\"),e.ignoreCase&&(t+=\"i\"),e.multiline&&(t+=\"m\"),e.unicode&&(t+=\"u\"),e.sticky&&(t+=\"y\"),t}},\"11e9\":function(e,t,r){var n=r(\"52a7\"),a=r(\"4630\"),o=r(\"6821\"),i=r(\"6a99\"),c=r(\"69a8\"),u=r(\"c69a\"),l=Object.getOwnPropertyDescriptor;t.f=r(\"9e1e\")?l:function(e,t){if(e=o(e),t=i(t,!0),u)try{return l(e,t)}catch(r){}if(c(e,t))return a(!n.f.call(e,t),e[t])}},\"214f\":function(e,t,r){\"use strict\";r(\"b0c5\");var n=r(\"2aba\"),a=r(\"32e9\"),o=r(\"79e5\"),i=r(\"be13\"),c=r(\"2b4c\"),u=r(\"520a\"),l=c(\"species\"),s=!o((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:\"7\"},e},\"7\"!==\"\".replace(e,\"$<a>\")})),_=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var r=\"ab\".split(e);return 2===r.length&&\"a\"===r[0]&&\"b\"===r[1]}();e.exports=function(e,t,r){var f=c(e),p=!o((function(){var t={};return t[f]=function(){return 7},7!=\"\"[e](t)})),d=p?!o((function(){var t=!1,r=/a/;return r.exec=function(){return t=!0,null},\"split\"===e&&(r.constructor={},r.constructor[l]=function(){return r}),r[f](\"\"),!t})):void 0;if(!p||!d||\"replace\"===e&&!s||\"split\"===e&&!_){var g=/./[f],v=r(i,f,\"\"[e],(function(e,t,r,n,a){return t.exec===u?p&&!a?{done:!0,value:g.call(t,r,n)}:{done:!0,value:e.call(r,t,n)}:{done:!1}})),h=v[0],b=v[1];n(String.prototype,e,h),a(RegExp.prototype,f,2==t?function(e,t){return b.call(e,this,t)}:function(e){return b.call(e,this)})}}},\"28a5\":function(e,t,r){\"use strict\";var n=r(\"aae3\"),a=r(\"cb7c\"),o=r(\"ebd6\"),i=r(\"0390\"),c=r(\"9def\"),u=r(\"5f1b\"),l=r(\"520a\"),s=r(\"79e5\"),_=Math.min,f=[].push,p=\"split\",d=\"length\",g=\"lastIndex\",v=4294967295,h=!s((function(){RegExp(v,\"y\")}));r(\"214f\")(\"split\",2,(function(e,t,r,s){var b;return b=\"c\"==\"abbc\"[p](/(b)*/)[1]||4!=\"test\"[p](/(?:)/,-1)[d]||2!=\"ab\"[p](/(?:ab)*/)[d]||4!=\".\"[p](/(.?)(.?)/)[d]||\".\"[p](/()()/)[d]>1||\"\"[p](/.?/)[d]?function(e,t){var a=String(this);if(void 0===e&&0===t)return[];if(!n(e))return r.call(a,e,t);var o,i,c,u=[],s=(e.ignoreCase?\"i\":\"\")+(e.multiline?\"m\":\"\")+(e.unicode?\"u\":\"\")+(e.sticky?\"y\":\"\"),_=0,p=void 0===t?v:t>>>0,h=new RegExp(e.source,s+\"g\");while(o=l.call(h,a)){if(i=h[g],i>_&&(u.push(a.slice(_,o.index)),o[d]>1&&o.index<a[d]&&f.apply(u,o.slice(1)),c=o[0][d],_=i,u[d]>=p))break;h[g]===o.index&&h[g]++}return _===a[d]?!c&&h.test(\"\")||u.push(\"\"):u.push(a.slice(_)),u[d]>p?u.slice(0,p):u}:\"0\"[p](void 0,0)[d]?function(e,t){return void 0===e&&0===t?[]:r.call(this,e,t)}:r,[function(r,n){var a=e(this),o=void 0==r?void 0:r[t];return void 0!==o?o.call(r,a,n):b.call(String(a),r,n)},function(e,t){var n=s(b,e,this,t,b!==r);if(n.done)return n.value;var l=a(e),f=String(this),p=o(l,RegExp),d=l.unicode,g=(l.ignoreCase?\"i\":\"\")+(l.multiline?\"m\":\"\")+(l.unicode?\"u\":\"\")+(h?\"y\":\"g\"),m=new p(h?l:\"^(?:\"+l.source+\")\",g),x=void 0===t?v:t>>>0;if(0===x)return[];if(0===f.length)return null===u(m,f)?[f]:[];var w=0,E=0,y=[];while(E<f.length){m.lastIndex=h?E:0;var k,O=u(m,h?f:f.slice(E));if(null===O||(k=_(c(m.lastIndex+(h?0:E)),f.length))===w)E=i(f,E,d);else{if(y.push(f.slice(w,E)),y.length===x)return y;for(var C=1;C<=O.length-1;C++)if(y.push(O[C]),y.length===x)return y;E=w=k}}return y.push(f.slice(w)),y}]}))},\"354d\":function(e,t,r){},3846:function(e,t,r){r(\"9e1e\")&&\"g\"!=/./g.flags&&r(\"86cc\").f(RegExp.prototype,\"flags\",{configurable:!0,get:r(\"0bfb\")})},\"3b2b\":function(e,t,r){var n=r(\"7726\"),a=r(\"5dbc\"),o=r(\"86cc\").f,i=r(\"9093\").f,c=r(\"aae3\"),u=r(\"0bfb\"),l=n.RegExp,s=l,_=l.prototype,f=/a/g,p=/a/g,d=new l(f)!==f;if(r(\"9e1e\")&&(!d||r(\"79e5\")((function(){return p[r(\"2b4c\")(\"match\")]=!1,l(f)!=f||l(p)==p||\"/a/i\"!=l(f,\"i\")})))){l=function(e,t){var r=this instanceof l,n=c(e),o=void 0===t;return!r&&n&&e.constructor===l&&o?e:a(d?new s(n&&!o?e.source:e,t):s((n=e instanceof l)?e.source:e,n&&o?u.call(e):t),r?this:_,l)};for(var g=function(e){e in l||o(l,e,{configurable:!0,get:function(){return s[e]},set:function(t){s[e]=t}})},v=i(s),h=0;v.length>h;)g(v[h++]);_.constructor=l,l.prototype=_,r(\"2aba\")(n,\"RegExp\",l)}r(\"7a56\")(\"RegExp\")},4917:function(e,t,r){\"use strict\";var n=r(\"cb7c\"),a=r(\"9def\"),o=r(\"0390\"),i=r(\"5f1b\");r(\"214f\")(\"match\",1,(function(e,t,r,c){return[function(r){var n=e(this),a=void 0==r?void 0:r[t];return void 0!==a?a.call(r,n):new RegExp(r)[t](String(n))},function(e){var t=c(r,e,this);if(t.done)return t.value;var u=n(e),l=String(this);if(!u.global)return i(u,l);var s=u.unicode;u.lastIndex=0;var _,f=[],p=0;while(null!==(_=i(u,l))){var d=String(_[0]);f[p]=d,\"\"===d&&(u.lastIndex=o(l,a(u.lastIndex),s)),p++}return 0===p?null:f}]}))},\"520a\":function(e,t,r){\"use strict\";var n=r(\"0bfb\"),a=RegExp.prototype.exec,o=String.prototype.replace,i=a,c=\"lastIndex\",u=function(){var e=/a/,t=/b*/g;return a.call(e,\"a\"),a.call(t,\"a\"),0!==e[c]||0!==t[c]}(),l=void 0!==/()??/.exec(\"\")[1],s=u||l;s&&(i=function(e){var t,r,i,s,_=this;return l&&(r=new RegExp(\"^\"+_.source+\"$(?!\\\\s)\",n.call(_))),u&&(t=_[c]),i=a.call(_,e),u&&i&&(_[c]=_.global?i.index+i[0].length:t),l&&i&&i.length>1&&o.call(i[0],r,(function(){for(s=1;s<arguments.length-2;s++)void 0===arguments[s]&&(i[s]=void 0)})),i}),e.exports=i},\"5dbc\":function(e,t,r){var n=r(\"d3f4\"),a=r(\"8b97\").set;e.exports=function(e,t,r){var o,i=t.constructor;return i!==r&&\"function\"==typeof i&&(o=i.prototype)!==r.prototype&&n(o)&&a&&a(e,o),e}},\"5f1b\":function(e,t,r){\"use strict\";var n=r(\"23c6\"),a=RegExp.prototype.exec;e.exports=function(e,t){var r=e.exec;if(\"function\"===typeof r){var o=r.call(e,t);if(\"object\"!==typeof o)throw new TypeError(\"RegExp exec method returned something other than an Object or null\");return o}if(\"RegExp\"!==n(e))throw new TypeError(\"RegExp#exec called on incompatible receiver\");return a.call(e,t)}},\"6b54\":function(e,t,r){\"use strict\";r(\"3846\");var n=r(\"cb7c\"),a=r(\"0bfb\"),o=r(\"9e1e\"),i=\"toString\",c=/./[i],u=function(e){r(\"2aba\")(RegExp.prototype,i,e,!0)};r(\"79e5\")((function(){return\"/a/b\"!=c.call({source:\"a\",flags:\"b\"})}))?u((function(){var e=n(this);return\"/\".concat(e.source,\"/\",\"flags\"in e?e.flags:!o&&e instanceof RegExp?a.call(e):void 0)})):c.name!=i&&u((function(){return c.call(this)}))},8787:function(e,t,r){\"use strict\";r(\"354d\")},\"8b97\":function(e,t,r){var n=r(\"d3f4\"),a=r(\"cb7c\"),o=function(e,t){if(a(e),!n(t)&&null!==t)throw TypeError(t+\": can't set as prototype!\")};e.exports={set:Object.setPrototypeOf||(\"__proto__\"in{}?function(e,t,n){try{n=r(\"9b43\")(Function.call,r(\"11e9\").f(Object.prototype,\"__proto__\").set,2),n(e,[]),t=!(e instanceof Array)}catch(a){t=!0}return function(e,r){return o(e,r),t?e.__proto__=r:n(e,r),e}}({},!1):void 0),check:o}},9093:function(e,t,r){var n=r(\"ce10\"),a=r(\"e11e\").concat(\"length\",\"prototype\");t.f=Object.getOwnPropertyNames||function(e){return n(e,a)}},a3b9:function(e,t,r){\"use strict\";r.r(t);var n=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r(\"div\",{staticClass:\"we7-document-history\"},[r(\"div\",{staticClass:\"page-head\"},[e._v(\"\\n    历史查看\\n  \")]),r(\"div\",{staticClass:\"search-box\"},[r(\"div\",{staticClass:\"demo-input-suffix\"},[r(\"el-input\",{attrs:{placeholder:\"请输入文档名称\",clearable:\"\"},nativeOn:{keyup:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.getList(t)}},model:{value:e.keyword,callback:function(t){e.keyword=t},expression:\"keyword\"}},[r(\"i\",{staticClass:\"el-input__icon el-icon-search\",attrs:{slot:\"suffix\"},on:{click:e.getList},slot:\"suffix\"})])],1),r(\"el-select\",{attrs:{placeholder:\"请选择\"},on:{change:e.getList},model:{value:e.time,callback:function(t){e.time=t},expression:\"time\"}},[r(\"el-option\",{attrs:{label:\"全部\",value:\"0\"}}),r(\"el-option\",{attrs:{label:\"一周前\",value:\"7\"}}),r(\"el-option\",{attrs:{label:\"一月前\",value:\"30\"}}),r(\"el-option\",{attrs:{label:\"三月前\",value:\"90\"}})],1)],1),r(\"el-table\",{ref:\"multipleTable\",staticClass:\"w7-table\",attrs:{data:e.docList,\"header-cell-style\":{background:\"#f7f9fc\",color:\"#606266\"},\"empty-text\":\"没有与搜索条件匹配的项\"}},[r(\"el-table-column\",{attrs:{label:\"文档名称\"},scopedSlots:e._u([{key:\"default\",fn:function(t){return r(\"div\",{staticClass:\"doc-icons\"},[r(\"i\",{staticClass:\"wi wi-document color-blue\"}),r(\"span\",{staticClass:\"name\",on:{click:function(r){return e.readDoc(t.row.document_id)}}},[e._v(e._s(t.row.name))]),t.row.star_id?r(\"i\",{staticClass:\"wi wi-star color-yellow\"}):e._e(),t.row.is_public?e._e():r(\"div\",{staticClass:\"we7-label\"},[r(\"i\",{staticClass:\"wi wi-lock\"},[r(\"span\",{staticClass:\"font\"},[e._v(\"私有\")])])])])}}])}),r(\"el-table-column\",{attrs:{label:\"来自\",prop:\"author.name\"}}),r(\"el-table-column\",{attrs:{label:\"时间\"},scopedSlots:e._u([{key:\"default\",fn:function(t){return[e._v(\"\\n        \"+e._s(e.format(t.row.time))+\"\\n      \")]}}])}),r(\"el-table-column\",{attrs:{label:\"操作\",align:\"right\"},scopedSlots:e._u([{key:\"default\",fn:function(t){return r(\"div\",{staticClass:\"oper\"},[r(\"el-tooltip\",{attrs:{effect:\"dark\",content:t.row.star_id?\"取消星标\":\"添加星标\",placement:\"bottom\"}},[r(\"i\",{staticClass:\"wi wi-star\",class:{checked:t.row.star_id},on:{click:function(r){return e.operStar(t.row)}}})]),r(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"删除记录\",placement:\"bottom\"}},[r(\"i\",{staticClass:\"wi wi-delete\",on:{click:function(r){return e.del(t.row.document_id)}}})])],1)}}])})],1),r(\"div\",{staticClass:\"btns\"},[r(\"el-pagination\",{attrs:{background:\"\",layout:\"prev, pager, next, total\",\"prev-text\":\"上一页\",\"next-text\":\"下一页\",\"page-size\":15,\"current-page\":e.currentPage,\"page-count\":e.pageCount,total:e.total,\"hide-on-single-page\":!0},on:{\"current-change\":e.getList,\"update:currentPage\":function(t){e.currentPage=t},\"update:current-page\":function(t){e.currentPage=t}}})],1)],1)},a=[],o=(r(\"ac6a\"),r(\"fa7d\")),i={data:function(){return{keyword:\"\",time:\"\",loading:!1,docList:[],currentPage:1,pageCount:0,total:0}},created:function(){this.getList()},methods:{getList:function(){var e=this;this.loading=!0,this.$post(\"/admin/operate-log/get-user-read-log\",{page:this.currentPage,name:this.keyword,time:this.time}).then((function(t){e.docList=t.data.data,e.pageCount=t.data.page_count,e.total=t.data.total,e.loading=!1}))},format:function(e){if(e)return Object(o[\"a\"])(e)},del:function(e){var t=this;this.$confirm(\"是否要删除该条记录?\",\"提示\",{confirmButtonText:\"确定\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){t.$post(\"/admin/operate-log/delete-by-id\",{document_id:e}).then((function(){t.getList(),t.$message(\"删除记录成功！\")}))}))},operStar:function(e){var t=this,r=e.star_id?\"/admin/star/delete\":\"/admin/star/add\",n=e.star_id?\"取消成功！\":\"添加成功！\",a={document_id:e.document_id};e.star_id&&(a[\"id\"]=e.star_id),this.$post(r,a).then((function(r){t.$message(n),t.docList.forEach((function(t){t.id!=e.id||(t.star_id=r.data.star_id||\"\")}))}))},readDoc:function(e){var t=this.$router.resolve({path:\"/chapter/\"+e});window.open(t.href,\"_blank\")}}},c=i,u=(r(\"8787\"),r(\"2877\")),l=Object(u[\"a\"])(c,n,a,!1,null,null,null);t[\"default\"]=l.exports},a481:function(e,t,r){\"use strict\";var n=r(\"cb7c\"),a=r(\"4bf8\"),o=r(\"9def\"),i=r(\"4588\"),c=r(\"0390\"),u=r(\"5f1b\"),l=Math.max,s=Math.min,_=Math.floor,f=/\\$([$&`']|\\d\\d?|<[^>]*>)/g,p=/\\$([$&`']|\\d\\d?)/g,d=function(e){return void 0===e?e:String(e)};r(\"214f\")(\"replace\",2,(function(e,t,r,g){return[function(n,a){var o=e(this),i=void 0==n?void 0:n[t];return void 0!==i?i.call(n,o,a):r.call(String(o),n,a)},function(e,t){var a=g(r,e,this,t);if(a.done)return a.value;var _=n(e),f=String(this),p=\"function\"===typeof t;p||(t=String(t));var h=_.global;if(h){var b=_.unicode;_.lastIndex=0}var m=[];while(1){var x=u(_,f);if(null===x)break;if(m.push(x),!h)break;var w=String(x[0]);\"\"===w&&(_.lastIndex=c(f,o(_.lastIndex),b))}for(var E=\"\",y=0,k=0;k<m.length;k++){x=m[k];for(var O=String(x[0]),C=l(s(i(x.index),f.length),0),D=[],P=1;P<x.length;P++)D.push(d(x[P]));var M=x.groups;if(p){var R=[O].concat(D,C,f);void 0!==M&&R.push(M);var I=String(t.apply(void 0,R))}else I=v(O,f,C,D,M,t);C>=y&&(E+=f.slice(y,C)+I,y=C+O.length)}return E+f.slice(y)}];function v(e,t,n,o,i,c){var u=n+e.length,l=o.length,s=p;return void 0!==i&&(i=a(i),s=f),r.call(c,s,(function(r,a){var c;switch(a.charAt(0)){case\"$\":return\"$\";case\"&\":return e;case\"`\":return t.slice(0,n);case\"'\":return t.slice(u);case\"<\":c=i[a.slice(1,-1)];break;default:var s=+a;if(0===s)return r;if(s>l){var f=_(s/10);return 0===f?r:f<=l?void 0===o[f-1]?a.charAt(1):o[f-1]+a.charAt(1):r}c=o[s-1]}return void 0===c?\"\":c}))}}))},aae3:function(e,t,r){var n=r(\"d3f4\"),a=r(\"2d95\"),o=r(\"2b4c\")(\"match\");e.exports=function(e){var t;return n(e)&&(void 0!==(t=e[o])?!!t:\"RegExp\"==a(e))}},b0c5:function(e,t,r){\"use strict\";var n=r(\"520a\");r(\"5ca1\")({target:\"RegExp\",proto:!0,forced:n!==/./.exec},{exec:n})},fa7d:function(module,__webpack_exports__,__webpack_require__){\"use strict\";__webpack_require__.d(__webpack_exports__,\"a\",(function(){return timestampFormat}));var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(\"a481\"),core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0__),core_js_modules_es6_regexp_to_string__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(\"6b54\"),core_js_modules_es6_regexp_to_string__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(core_js_modules_es6_regexp_to_string__WEBPACK_IMPORTED_MODULE_1__),core_js_modules_es6_regexp_match__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(\"4917\"),core_js_modules_es6_regexp_match__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(core_js_modules_es6_regexp_match__WEBPACK_IMPORTED_MODULE_2__),core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(\"28a5\"),core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_3__),core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(\"3b2b\"),core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_4__);function getUrlParam(e,t){var r=new RegExp(\"(^|&)\"+t+\"=([^&]*)(&|$)\");if(e&&e.split(\"?\")[1]){var n=e.split(\"?\")[1].match(r);return null!=n?unescape(n[2]):null}}function replaceParamVal(url,paramName,replaceVal){var oUrl=url.toString(),re=eval(\"/(\"+paramName+\"=)([^&]*)/gi\"),nUrl=oUrl.replace(re,paramName+\"=\"+replaceVal);return nUrl}function timestampFormat(e){var t=Date.parse(e)/1e3;function r(e){return(1==String(e).length?\"0\":\"\")+e}var n=parseInt((new Date).getTime()/1e3),a=n-t,o=new Date(1e3*n),i=new Date(1e3*t),c=i.getFullYear(),u=i.getMonth()+1,l=i.getDate(),s=i.getHours(),_=i.getMinutes();if(a<60)return\"刚刚\";if(a<3600)return Math.floor(a/60)+\"分钟前\";if(o.getFullYear()==c&&o.getMonth()+1==u&&o.getDate()==l)return\"今天\"+r(s)+\":\"+r(_);var f=new Date(1e3*(n-86400));return f.getFullYear()==c&&f.getMonth()+1==u&&f.getDate()==l?\"昨天\"+r(s)+\":\"+r(_):c+\"年\"+r(u)+\"月\"+r(l)+\"日 \"+r(s)+\":\"+r(_)}}}]);"
  },
  {
    "path": "public/js/chunk-b09d1c24.40e2b6cd.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-b09d1c24\"],{1528:function(t,e){t.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAYUlEQVQ4jWNgGAXDAMTda2KIvSNGPQNjbk9liL3zn7qGxt2ZTAtDJzDE3vnPEHlPHLuCqIdKDLF39pOIf0EMvSmCaWDEfQXqGkh1L5NmGBUjJeYulZNN7J0y6iaXUUBzAACfHWNSEh0HywAAAABJRU5ErkJggg==\"},\"1dd1\":function(t,e){t.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABlklEQVRYhe2WwSsEYRjGl1VaRYQDcXFxEJETV4f9A1wcHNy0VxclRRz2IAcnF3KRgz9ANkW52HLAhZSSclnSllqR8nPYV17TN3a+mW9aB89p+r73eZ7fNzPbTiLxr4ACksAO/noExuIqPzMUXgF54Nmw1++quM0TPPrLbC1womYPo5Y3qbCsha9Z+Y6iAHxpyLA3C1wCt8A2MGiYeRf/TJjyGzFn1Fot8GJ43lqTPoeosSmvF9OrT1gOSHr2xtX+olpPy9qFDcCBmHo861mgoYJ3AUiZwG0A7AyV89YkcsQG4M4hQLtkbtkAbLgCUJnXQQaTMrweA8CDzXAuBoBTm+EPh+XDkrlkA+DyV5CXyFTl6bIhI4Z5RwD2B3J1F4A9iZq2NU6I8T5C+UCkg1D+twM4D+Ht41t1oQAkqCghb0BjQM++Ku8NXa4Cj1XgE5A2zLQAu3gUuVwVdAMlb4GPVoA5uS44g1AwU/z8SC0Bm0CrZ64g+8vOIYJKQXZUC6DL+fsQAmI1tvfBAqJY1bsgEJ1VBfiz+gQ/cfbknw8jpwAAAABJRU5ErkJggg==\"},3191:function(t,e,a){\"use strict\";a.d(e,\"b\",(function(){return s})),a.d(e,\"d\",(function(){return i})),a.d(e,\"a\",(function(){return o})),a.d(e,\"c\",(function(){return c}));var n=a(\"1c1e\"),s=function(t){return Object(n[\"a\"])({url:\"/document/home\",params:t,method:\"get\"})},i=function(t){return Object(n[\"a\"])({url:\"/document/home/search\",data:t,method:\"post\"})},o=function(t){return Object(n[\"a\"])({url:\"/document/home/check\",data:t,method:\"get\"})},c=function(t){return Object(n[\"a\"])({url:\"/document/home/search-hot\",data:t,method:\"get\"})}},\"492b\":function(t,e,a){\"use strict\";a(\"af0d\")},\"77b8\":function(t,e,a){\"use strict\";a.r(e);var n=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"home\"},[t.homeData&&t.homeData.set?n(\"div\",{staticClass:\"banner\",style:{\"background-image\":\"url(\"+t.homeData.set.banner[0]+\")\"}},[n(\"div\",{staticClass:\"title\"},[t._v(\"\\n      \"+t._s(t.homeData.set.title)+\"\\n    \")]),n(\"div\",{staticClass:\"search-wrap\"},[n(\"el-input\",{attrs:{placeholder:\"输入关键字搜索\"},nativeOn:{keyup:function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")?null:t.goSearch(t.keywords)}},model:{value:t.keywords,callback:function(e){t.keywords=e},expression:\"keywords\"}}),n(\"span\",{staticClass:\"search-btn\"},[n(\"img\",{attrs:{src:a(\"1dd1\"),alt:\"\"},on:{click:function(e){return t.goSearch(t.keywords)}}})])],1),n(\"div\",{staticClass:\"href\"},t._l(t.hotArr,(function(e,a){return n(\"a\",{key:e,attrs:{target:\"_blank\"}},[n(\"span\",{staticClass:\"hot\",on:{click:function(a){return t.goSearch(e)}}},[t._v(t._s(e))]),a<t.hotArr.length-1?n(\"em\",[t._v(\"|\")]):t._e()])})),0)]):t._e(),n(\"div\",{staticClass:\"announcement\"},[n(\"div\",{staticClass:\"w1200\"},[t._m(0),n(\"div\",{staticClass:\"notice-wrap\"},[t.homeData&&t.homeData.notice&&t.homeData.notice.chapter&&t.homeData.notice.chapter.length?n(\"ul\",{staticClass:\"left\"},t._l(t.homeData.notice.chapter.slice(0,4),(function(e,a){return n(\"li\",{key:a},[n(\"div\",{staticClass:\"con-left\"},[n(\"span\",{staticClass:\"new\"},[t._v(\"最新\")]),n(\"div\",{staticClass:\"popover-wrap\"},[n(\"el-popover\",{attrs:{placement:\"top\",trigger:\"hover\",content:e.chapter_name}},[n(\"a\",{attrs:{slot:\"reference\"},on:{click:function(a){return t.viewDoc(e,t.homeData.notice.document_id)}},slot:\"reference\"},[t._v(t._s(e.chapter_name))])])],1)]),n(\"span\",{staticClass:\"time\"},[t._v(t._s(e.created_at))])])})),0):t._e(),t.homeData&&t.homeData.notice&&t.homeData.notice.chapter&&t.homeData.notice.chapter.length>5?n(\"ul\",{staticClass:\"right\"},t._l(t.homeData.notice.chapter.slice(4,8),(function(e,a){return n(\"li\",{key:a},[n(\"div\",{staticClass:\"con-left\"},[n(\"span\",{staticClass:\"new new2\"},[t._v(\"公告\")]),n(\"div\",{staticClass:\"popover-wrap\"},[n(\"el-popover\",{attrs:{placement:\"top\",trigger:\"hover\",content:e.chapter_name}},[n(\"a\",{attrs:{slot:\"reference\"},on:{click:function(a){return t.viewDoc(e,t.homeData.notice.document_id)}},slot:\"reference\"},[t._v(t._s(e.chapter_name))])])],1)]),n(\"span\",{staticClass:\"time\"},[t._v(t._s(e.created_at))])])})),0):t._e()])])]),n(\"div\",{staticClass:\"w1200\"},[n(\"div\",{staticClass:\"type-1\"},[t.homeData&&t.homeData.middle_list&&t.homeData.middle_list.length?n(\"el-row\",{attrs:{gutter:65}},t._l(t.homeData.middle_list,(function(e,s){return n(\"el-col\",{key:s,attrs:{xs:12,sm:12,md:6}},[n(\"div\",{staticClass:\"con\",on:{click:function(a){return t.viewDoc2(e)}}},[n(\"img\",{attrs:{src:e.logo,alt:\"\"}}),n(\"div\",{staticClass:\"document-name\"},[t._v(t._s(e.document_name))]),n(\"div\",{staticClass:\"description\"},[t._v(t._s(e.description))]),n(\"div\",{staticClass:\"view\"},[n(\"span\",{staticClass:\"text\"},[t._v(\"查看文档\")]),n(\"img\",{attrs:{src:a(\"1528\")}})])])])})),1):t._e()],1)]),n(\"div\",{staticClass:\"w1200\"},[n(\"div\",{staticClass:\"type-2\"},[t.homeData&&t.homeData.bottom_list&&t.homeData.bottom_list.length?n(\"el-row\",{attrs:{gutter:65}},t._l(t.homeData.bottom_list,(function(e,a){return n(\"el-col\",{key:a,attrs:{xs:12,sm:12,md:6}},[n(\"div\",{staticClass:\"con\"},[n(\"div\",{staticClass:\"document-name\"},[t._v(t._s(e.document_name))]),n(\"div\",{staticClass:\"line\"}),n(\"ul\",t._l(e.chapter,(function(a,s){return n(\"li\",{key:s,on:{click:function(n){return t.viewDoc(a,e.document_id)}}},[t._v(\"\\n                \"+t._s(a.chapter_name)+\"\\n              \")])})),0)])])})),1):t._e()],1)])])},s=[function(){var t=this,e=t.$createElement,a=t._self._c||e;return a(\"div\",{staticClass:\"title\"},[a(\"div\",{staticClass:\"text\"},[t._v(\"更新公告\")]),a(\"div\",{staticClass:\"line\"},[a(\"span\")])])}],i=a(\"3191\"),o={name:\"home\",data:function(){return{origin:\"\",homeData:{},keywords:void 0,hotArr:[]}},created:function(){this.init()},methods:{init:function(){this.origin=location.origin,this.getHomeData(),this.getHots()},getHots:function(){var t=this;Object(i[\"c\"])().then((function(e){200==e.code&&(t.hotArr=e.data)})).catch((function(t){}))},getHomeData:function(){var t=this;Object(i[\"b\"])().then((function(e){200===e.code&&(t.homeData=e.data)})).catch((function(t){}))},viewDoc:function(t,e){var a=this.$router.resolve({name:\"viewHome\",params:{id:e},query:{id:t.chapter_id}}),n=a.href;window.open(n,\"_blank\")},viewDoc2:function(t){var e=this.$router.resolve({name:\"viewHome\",params:{id:t.document_id},query:{id:t.first_chapter_id}}),a=e.href;window.open(a,\"_blank\")},goSearch:function(t){t?this.$router.push({name:\"homeSearch\",query:{keywords:t}}):(this.$message.closeAll(),this.$message.error(\"搜索关键字不能为空！\"))}}},c=o,r=(a(\"492b\"),a(\"2877\")),l=Object(r[\"a\"])(c,n,s,!1,null,\"688d267c\",null);e[\"default\"]=l.exports},af0d:function(t,e,a){}}]);"
  },
  {
    "path": "public/js/chunk-b9b22232.9694579b.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-b9b22232\"],{\"01d6\":function(e,t,r){\"use strict\";r(\"beaf\")},\"08d8\":function(e,t,r){\"use strict\";r.r(t);var s=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r(\"div\",{staticClass:\"setting-thirdParty\"},[r(\"div\",{staticClass:\"page-head\"},[e._v(\"自定义授权配置\")]),r(\"el-form\",{ref:\"customForm\",attrs:{model:e.formData,\"status-icon\":\"\",\"label-position\":\"left\"}},e._l(e.formData.customList,(function(t,s){return r(\"div\",{key:s,staticClass:\"we7-panel-form\"},[r(\"div\",{staticClass:\"we7-panel-form__header\"},[e._v(\"\\n        自定义第三方授权配置\\n        \"),s>0?r(\"el-button\",{attrs:{type:\"text\"},on:{click:function(t){return e.del(s)}}},[e._v(\"删除\")]):e._e()],1),r(\"div\",{staticClass:\"we7-panel-form__body edit\"},[r(\"el-form-item\",{attrs:{label:\"授权登录\",\"label-width\":\"290px\"}},[r(\"el-switch\",{attrs:{\"active-value\":1,\"inactive-value\":0},model:{value:t.setting.enable,callback:function(r){e.$set(t.setting,\"enable\",r)},expression:\"item.setting.enable\"}})],1)],1),r(\"div\",{staticClass:\"we7-panel-form__header\"},[e._v(\"\\n        自定义第三方登陆配置\\n        \")]),r(\"div\",{staticClass:\"we7-panel-form__body edit\"},[r(\"el-form-item\",{attrs:{label:\"第三方名称\",\"label-width\":\"290px\",prop:\"customList.\"+s+\".setting.name\",rules:e.rules.name}},[r(\"el-input\",{model:{value:t.setting.name,callback:function(r){e.$set(t.setting,\"name\",r)},expression:\"item.setting.name\"}})],1),r(\"el-form-item\",{attrs:{label:\"LOGO\",\"label-width\":\"290px\",prop:\"customList.\"+s+\".setting.logo\",rules:e.rules.logo}},[r(\"el-upload\",{staticClass:\"avatar-uploader\",attrs:{action:\"/admin/upload/image\",\"show-file-list\":!1,\"before-upload\":e.beforeAvatarUpload,\"on-success\":function(t,r){return e.handleAvatarSuccess(t,r,s)}}},[t.setting.logo?r(\"img\",{staticClass:\"avatar\",attrs:{src:t.setting.logo}}):r(\"i\",{staticClass:\"el-icon-plus avatar-uploader-icon\"})])],1),r(\"el-form-item\",{attrs:{label:\"APPID\",\"label-width\":\"290px\",prop:\"customList.\"+s+\".setting.app_id\",rules:e.rules.app_id}},[r(\"el-input\",{model:{value:t.setting.app_id,callback:function(r){e.$set(t.setting,\"app_id\",r)},expression:\"item.setting.app_id\"}})],1),r(\"el-form-item\",{attrs:{label:\"SERCETkey\",\"label-width\":\"290px\",prop:\"customList.\"+s+\".setting.secret_key\",rules:e.rules.secret_key}},[r(\"el-input\",{model:{value:t.setting.secret_key,callback:function(r){e.$set(t.setting,\"secret_key\",r)},expression:\"item.setting.secret_key\"}})],1),r(\"el-form-item\",{attrs:{label:\"ACCESSTOKEN  API地址\",\"label-width\":\"290px\",prop:\"customList.\"+s+\".setting.access_token_url\",rules:e.rules.access_token_url}},[r(\"el-input\",{model:{value:t.setting.access_token_url,callback:function(r){e.$set(t.setting,\"access_token_url\",r)},expression:\"item.setting.access_token_url\"}})],1),r(\"el-form-item\",{attrs:{label:\"获取用户信息  API地址\",\"label-width\":\"290px\",prop:\"customList.\"+s+\".setting.user_info_url\",rules:e.rules.user_info_url}},[r(\"el-input\",{model:{value:t.setting.user_info_url,callback:function(r){e.$set(t.setting,\"user_info_url\",r)},expression:\"item.setting.user_info_url\"}})],1)],1),r(\"div\",{staticClass:\"we7-panel-form__header\"},[r(\"span\",[e._v(\"转换功能\")])]),r(\"div\",{staticClass:\"we7-panel-form__body edit\"},[r(\"el-form-item\",{attrs:{label:\"uid\",\"label-width\":\"290px\"}},[r(\"el-input\",{model:{value:t.convert.uid,callback:function(r){e.$set(t.convert,\"uid\",r)},expression:\"item.convert.uid\"}}),r(\"div\",{staticClass:\"we7-help-block\"},[e._v(\"请填写第三方系统用户id的字段\")])],1),r(\"el-form-item\",{attrs:{label:\"username\",\"label-width\":\"290px\"}},[r(\"el-input\",{model:{value:t.convert.username,callback:function(r){e.$set(t.convert,\"username\",r)},expression:\"item.convert.username\"}}),r(\"div\",{staticClass:\"we7-help-block\"},[e._v(\"请填写第三方系统用户名的字段\")])],1)],1)])})),0),r(\"el-button\",{attrs:{type:\"text\"},on:{click:e.add}},[e._v(\"+添加自定义授权\")]),r(\"el-button\",{attrs:{type:\"primary\"},on:{click:e.save}},[e._v(\"保存\")])],1)},a=[],i=(r(\"8e6e\"),r(\"ac6a\"),r(\"456d\"),r(\"fc11\"));function n(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);t&&(s=s.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,s)}return r}function l(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?n(Object(r),!0).forEach((function(t){Object(i[\"a\"])(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):n(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var o={data:function(){return{formData:{customList:[{setting:{enable:1},convert:{}}]},rules:{name:[{required:!0,message:\"请填写第三方名称\",trigger:\"blur\"}],logo:[{required:!0,message:\"请上传LOGO\",trigger:\"blur\"}],app_id:[{required:!0,message:\"请填写APPID\",trigger:\"blur\"}],secret_key:[{required:!0,message:\"请填写SERCETkey\",trigger:\"blur\"}],access_token_url:[{required:!0,message:\"请填写ACCESSTOKEN\",trigger:\"blur\"}],user_info_url:[{required:!0,message:\"请填写获取用户信息\",trigger:\"blur\"}]}}},methods:{add:function(){this.formData.customList.push({editStatus:!0,setting:{enable:1},convert:{}})},del:function(e){this.formData.customList.splice(e,1)},handleAvatarSuccess:function(e,t,r){this.$set(this.formData.customList[r].setting,\"logo\",e.data.url)},beforeAvatarUpload:function(e){var t=\"image/jpg\"===e.type||\"image/jpeg\"===e.type||\"image/png\"===e.type,r=e.size/1024/1024<2;return t||this.$message.error(\"上传LOGO只支持jpg、jpeg、png格式!\"),r||this.$message.error(\"上传LOGO大小不能超过 2MB!\"),t&&r},save:function(){var e=this;this.$refs.customForm.validate((function(t){if(t){var r={setting:l({},e.formData.customList[0].setting),convert:l({},e.formData.customList[0].convert)};e.$post(\"/admin/third-party-login/add\",r).then((function(){e.$message(\"添加成功！\"),e.$emit(\"refreshMenu\",!0)}))}}))}}},c=o,u=(r(\"01d6\"),r(\"2877\")),p=Object(u[\"a\"])(c,s,a,!1,null,null,null);t[\"default\"]=p.exports},\"11e9\":function(e,t,r){var s=r(\"52a7\"),a=r(\"4630\"),i=r(\"6821\"),n=r(\"6a99\"),l=r(\"69a8\"),o=r(\"c69a\"),c=Object.getOwnPropertyDescriptor;t.f=r(\"9e1e\")?c:function(e,t){if(e=i(e),t=n(t,!0),o)try{return c(e,t)}catch(r){}if(l(e,t))return a(!s.f.call(e,t),e[t])}},\"8e6e\":function(e,t,r){var s=r(\"5ca1\"),a=r(\"990b\"),i=r(\"6821\"),n=r(\"11e9\"),l=r(\"f1ae\");s(s.S,\"Object\",{getOwnPropertyDescriptors:function(e){var t,r,s=i(e),o=n.f,c=a(s),u={},p=0;while(c.length>p)r=o(s,t=c[p++]),void 0!==r&&l(u,t,r);return u}})},9093:function(e,t,r){var s=r(\"ce10\"),a=r(\"e11e\").concat(\"length\",\"prototype\");t.f=Object.getOwnPropertyNames||function(e){return s(e,a)}},\"990b\":function(e,t,r){var s=r(\"9093\"),a=r(\"2621\"),i=r(\"cb7c\"),n=r(\"7726\").Reflect;e.exports=n&&n.ownKeys||function(e){var t=s.f(i(e)),r=a.f;return r?t.concat(r(e)):t}},beaf:function(e,t,r){},f1ae:function(e,t,r){\"use strict\";var s=r(\"86cc\"),a=r(\"4630\");e.exports=function(e,t,r){t in e?s.f(e,t,a(0,r)):e[t]=r}},fc11:function(e,t,r){\"use strict\";function s(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}r.d(t,\"a\",(function(){return s}))}}]);"
  },
  {
    "path": "public/js/chunk-bd264252.deae42c5.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-bd264252\"],{\"02f4\":function(e,t,a){var i=a(\"4588\"),n=a(\"be13\");e.exports=function(e){return function(t,a){var o,r,s=String(n(t)),l=i(a),c=s.length;return l<0||l>=c?e?\"\":void 0:(o=s.charCodeAt(l),o<55296||o>56319||l+1===c||(r=s.charCodeAt(l+1))<56320||r>57343?e?s.charAt(l):o:e?s.slice(l,l+2):r-56320+(o-55296<<10)+65536)}}},\"0390\":function(e,t,a){\"use strict\";var i=a(\"02f4\")(!0);e.exports=function(e,t,a){return t+(a?i(e,t).length:1)}},\"0454\":function(e,t,a){\"use strict\";a(\"fa9a\")},\"0bfb\":function(e,t,a){\"use strict\";var i=a(\"cb7c\");e.exports=function(){var e=i(this),t=\"\";return e.global&&(t+=\"g\"),e.ignoreCase&&(t+=\"i\"),e.multiline&&(t+=\"m\"),e.unicode&&(t+=\"u\"),e.sticky&&(t+=\"y\"),t}},\"11e9\":function(e,t,a){var i=a(\"52a7\"),n=a(\"4630\"),o=a(\"6821\"),r=a(\"6a99\"),s=a(\"69a8\"),l=a(\"c69a\"),c=Object.getOwnPropertyDescriptor;t.f=a(\"9e1e\")?c:function(e,t){if(e=o(e),t=r(t,!0),l)try{return c(e,t)}catch(a){}if(s(e,t))return n(!i.f.call(e,t),e[t])}},\"214f\":function(e,t,a){\"use strict\";a(\"b0c5\");var i=a(\"2aba\"),n=a(\"32e9\"),o=a(\"79e5\"),r=a(\"be13\"),s=a(\"2b4c\"),l=a(\"520a\"),c=s(\"species\"),d=!o((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:\"7\"},e},\"7\"!==\"\".replace(e,\"$<a>\")})),u=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var a=\"ab\".split(e);return 2===a.length&&\"a\"===a[0]&&\"b\"===a[1]}();e.exports=function(e,t,a){var f=s(e),p=!o((function(){var t={};return t[f]=function(){return 7},7!=\"\"[e](t)})),g=p?!o((function(){var t=!1,a=/a/;return a.exec=function(){return t=!0,null},\"split\"===e&&(a.constructor={},a.constructor[c]=function(){return a}),a[f](\"\"),!t})):void 0;if(!p||!g||\"replace\"===e&&!d||\"split\"===e&&!u){var v=/./[f],h=a(r,f,\"\"[e],(function(e,t,a,i,n){return t.exec===l?p&&!n?{done:!0,value:v.call(t,a,i)}:{done:!0,value:e.call(a,t,i)}:{done:!1}})),m=h[0],b=h[1];i(String.prototype,e,m),n(RegExp.prototype,f,2==t?function(e,t){return b.call(e,this,t)}:function(e){return b.call(e,this)})}}},\"28a5\":function(e,t,a){\"use strict\";var i=a(\"aae3\"),n=a(\"cb7c\"),o=a(\"ebd6\"),r=a(\"0390\"),s=a(\"9def\"),l=a(\"5f1b\"),c=a(\"520a\"),d=a(\"79e5\"),u=Math.min,f=[].push,p=\"split\",g=\"length\",v=\"lastIndex\",h=4294967295,m=!d((function(){RegExp(h,\"y\")}));a(\"214f\")(\"split\",2,(function(e,t,a,d){var b;return b=\"c\"==\"abbc\"[p](/(b)*/)[1]||4!=\"test\"[p](/(?:)/,-1)[g]||2!=\"ab\"[p](/(?:ab)*/)[g]||4!=\".\"[p](/(.?)(.?)/)[g]||\".\"[p](/()()/)[g]>1||\"\"[p](/.?/)[g]?function(e,t){var n=String(this);if(void 0===e&&0===t)return[];if(!i(e))return a.call(n,e,t);var o,r,s,l=[],d=(e.ignoreCase?\"i\":\"\")+(e.multiline?\"m\":\"\")+(e.unicode?\"u\":\"\")+(e.sticky?\"y\":\"\"),u=0,p=void 0===t?h:t>>>0,m=new RegExp(e.source,d+\"g\");while(o=c.call(m,n)){if(r=m[v],r>u&&(l.push(n.slice(u,o.index)),o[g]>1&&o.index<n[g]&&f.apply(l,o.slice(1)),s=o[0][g],u=r,l[g]>=p))break;m[v]===o.index&&m[v]++}return u===n[g]?!s&&m.test(\"\")||l.push(\"\"):l.push(n.slice(u)),l[g]>p?l.slice(0,p):l}:\"0\"[p](void 0,0)[g]?function(e,t){return void 0===e&&0===t?[]:a.call(this,e,t)}:a,[function(a,i){var n=e(this),o=void 0==a?void 0:a[t];return void 0!==o?o.call(a,n,i):b.call(String(n),a,i)},function(e,t){var i=d(b,e,this,t,b!==a);if(i.done)return i.value;var c=n(e),f=String(this),p=o(c,RegExp),g=c.unicode,v=(c.ignoreCase?\"i\":\"\")+(c.multiline?\"m\":\"\")+(c.unicode?\"u\":\"\")+(m?\"y\":\"g\"),_=new p(m?c:\"^(?:\"+c.source+\")\",v),y=void 0===t?h:t>>>0;if(0===y)return[];if(0===f.length)return null===l(_,f)?[f]:[];var x=0,w=0,D=[];while(w<f.length){_.lastIndex=m?w:0;var C,k=l(_,m?f:f.slice(w));if(null===k||(C=u(s(_.lastIndex+(m?0:w)),f.length))===x)w=r(f,w,g);else{if(D.push(f.slice(x,w)),D.length===y)return D;for(var M=1;M<=k.length-1;M++)if(D.push(k[M]),D.length===y)return D;w=x=C}}return D.push(f.slice(x)),D}]}))},3846:function(e,t,a){a(\"9e1e\")&&\"g\"!=/./g.flags&&a(\"86cc\").f(RegExp.prototype,\"flags\",{configurable:!0,get:a(\"0bfb\")})},\"3b2b\":function(e,t,a){var i=a(\"7726\"),n=a(\"5dbc\"),o=a(\"86cc\").f,r=a(\"9093\").f,s=a(\"aae3\"),l=a(\"0bfb\"),c=i.RegExp,d=c,u=c.prototype,f=/a/g,p=/a/g,g=new c(f)!==f;if(a(\"9e1e\")&&(!g||a(\"79e5\")((function(){return p[a(\"2b4c\")(\"match\")]=!1,c(f)!=f||c(p)==p||\"/a/i\"!=c(f,\"i\")})))){c=function(e,t){var a=this instanceof c,i=s(e),o=void 0===t;return!a&&i&&e.constructor===c&&o?e:n(g?new d(i&&!o?e.source:e,t):d((i=e instanceof c)?e.source:e,i&&o?l.call(e):t),a?this:u,c)};for(var v=function(e){e in c||o(c,e,{configurable:!0,get:function(){return d[e]},set:function(t){d[e]=t}})},h=r(d),m=0;h.length>m;)v(h[m++]);u.constructor=c,c.prototype=u,a(\"2aba\")(i,\"RegExp\",c)}a(\"7a56\")(\"RegExp\")},\"49f7\":function(e,t,a){\"use strict\";var i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a(\"div\",{staticClass:\"document-setting\"},[e.showAddManage||e.feedDetailVisible?e._e():a(\"div\",{staticClass:\"document-setting-warpper\"},[a(\"div\",{staticClass:\"nav\"},[a(\"div\",{staticClass:\"nav-item\",class:{active:0==e.active},on:{click:function(t){return e.onClickNav(0)}}},[0==e.active?a(\"p\",{staticClass:\"light-line\"}):e._e(),e._v(\"\\n          项目概览\\n        \")]),a(\"div\",{staticClass:\"nav-item\",class:{active:1==e.active},on:{click:function(t){return e.onClickNav(1)}}},[1==e.active?a(\"p\",{staticClass:\"light-line\"}):e._e(),e._v(\"\\n          权限管理\\n        \")]),a(\"div\",{staticClass:\"nav-item\",class:{active:2==e.active},on:{click:function(t){return e.onClickNav(2)}}},[2==e.active?a(\"p\",{staticClass:\"light-line\"}):e._e(),e._v(\"\\n          历史记录\\n        \")]),a(\"div\",{staticClass:\"nav-item\",class:{active:3==e.active},on:{click:function(t){return e.onClickNav(3)}}},[3==e.active?a(\"p\",{staticClass:\"light-line\"}):e._e(),e._v(\"\\n          反馈建议\\n          \"),e.newFeed?a(\"span\",{staticClass:\"redDot\"}):e._e()])]),a(\"div\",{staticClass:\"content\"},[0==e.active?a(\"div\",{staticClass:\"project\"},[a(\"el-form\",{key:\"doc\",ref:\"docForm\",staticClass:\"w7-form__no-required-icon\",attrs:{model:e.docData,rules:e.rules,\"label-width\":\"85px\",\"label-position\":\"left\"}},[a(\"el-form-item\",{staticClass:\"cover-warpper\",attrs:{label:\"项目封面\"}},[a(\"div\",{staticClass:\"upload-wrap\"},[a(\"el-upload\",{ref:\"upload\",attrs:{action:\"/admin/upload/image\",accept:\".jpg,.jpeg,.png\",\"show-file-list\":!1,\"on-success\":e.handleAvatarSuccess,\"before-upload\":e.beforeAvatarUpload}},[a(\"div\",{staticClass:\"cover-img\"},[e.docData.cover?a(\"img\",{attrs:{src:e.docData.cover}}):e._e()])]),a(\"div\",{staticClass:\"cover-btn\"},[a(\"el-upload\",{ref:\"upload\",attrs:{action:\"/admin/upload/image\",accept:\".jpg,.jpeg,.png\",\"show-file-list\":!1,\"on-success\":e.handleAvatarSuccess,\"before-upload\":e.beforeAvatarUpload}},[a(\"el-button\",{attrs:{type:\"primary\",plain:\"\"}},[e._v(\"上传封面\")])],1),a(\"el-button\",{staticClass:\"cover-default\",on:{click:function(t){e.docData.cover=\"\"}}},[e._v(\"默认封面\")])],1)],1),a(\"div\",{staticClass:\"el-upload__tip\"},[e._v(\"格式要求：支持jpg、jpeg、png格式，图片小于5M，最佳图片比例2:1。\")])]),a(\"el-form-item\",{attrs:{label:\"项目名称\",prop:\"name\"}},[a(\"el-input\",{model:{value:e.docData.name,callback:function(t){e.$set(e.docData,\"name\",t)},expression:\"docData.name\"}})],1),a(\"el-form-item\",{attrs:{label:\"公开性质\"}},[a(\"el-select\",{model:{value:e.docData.is_public,callback:function(t){e.$set(e.docData,\"is_public\",t)},expression:\"docData.is_public\"}},[a(\"el-option\",{attrs:{label:\"公开项目\",value:\"1\"}}),a(\"el-option\",{attrs:{label:\"私有项目\",value:\"2\"}})],1)],1),1!=e.docData.is_public?a(\"el-form-item\",{attrs:{label:\"查看权限\"}},[a(\"el-select\",{model:{value:e.docData.login_preview,callback:function(t){e.$set(e.docData,\"login_preview\",t)},expression:\"docData.login_preview\"}},[a(\"el-option\",{attrs:{label:\"仅限有权限者查看\",value:\"2\"}}),a(\"el-option\",{attrs:{label:\"点击链接登录后查看\",value:\"3\"}})],1)],1):e._e()],1),a(\"div\",{staticClass:\"btns\"},[a(\"el-button\",{attrs:{type:\"primary\"},on:{click:e.saveDoc}},[e._v(\"保存\")]),a(\"el-button\",{on:{click:e.delDoc}},[e._v(\"删除\")])],1)],1):e._e(),1==e.active?a(\"div\",{staticClass:\"manage\"},[a(\"div\",{staticClass:\"top\"},[a(\"el-button\",{attrs:{type:\"primary\",plain:\"\"},on:{click:e.openAddManage}},[e._v(\"添加权限\")])],1),a(\"el-table\",{key:\"manageTable\",staticClass:\"w7-table\",attrs:{\"max-height\":\"370\",data:e.details.operator,\"header-cell-style\":{background:\"#f7f9fc\",color:\"#606266\"}}},[a(\"el-table-column\",{attrs:{prop:\"username\",label:\"名称\",width:\"300px\"}}),a(\"el-table-column\",{attrs:{label:\"身份\",align:\"center\"},scopedSlots:e._u([{key:\"default\",fn:function(t){return[e.shwoEditRole&&e.selectUserId==t.row.id?a(\"el-select\",{staticClass:\"edit-role-change\",on:{change:e.editRole},model:{value:e.selectUserRole,callback:function(t){e.selectUserRole=t},expression:\"selectUserRole\"}},e._l(e.role_list,(function(e){return a(\"el-option\",{key:e.id,attrs:{label:e.name,value:e.id}})})),1):[1==t.row.acl.role?a(\"div\",{staticClass:\"identity\"},[e._v(e._s(t.row.acl.name))]):[e._v(e._s(t.row.acl.name))]]]}}],null,!1,505741635)}),a(\"el-table-column\",{attrs:{label:\"操作\",align:\"right\"},scopedSlots:e._u([{key:\"default\",fn:function(t){return a(\"div\",{staticClass:\"oper\"},[2==e.details.is_public?a(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"编辑\",placement:\"bottom\"}},[e.details.acl.has_manage&&1!=t.row.acl.role?a(\"i\",{staticClass:\"wi wi-edit\",on:{click:function(a){return a.stopPropagation(),e.editManage(t.row)}}}):e._e()]):e._e(),a(\"el-tooltip\",{attrs:{effect:\"dark\",content:\"删除\",placement:\"bottom\"}},[e.details.acl.has_manage&&1!=t.row.acl.role?a(\"i\",{staticClass:\"wi wi-delete\",on:{click:function(a){return e.removeManage(t.row.id)}}}):e._e()])],1)}}],null,!1,519701077)})],1)],1):e._e(),2==e.active?a(\"div\",{staticClass:\"history\"},[a(\"el-table\",{key:\"historyTable\",ref:\"historyTableRef\",staticClass:\"w7-table\",attrs:{data:e.historyList,\"max-height\":\"370\"}},[a(\"el-table-column\",{attrs:{prop:\"remark\",label:\"描述\"}}),a(\"el-table-column\",{attrs:{prop:\"time\",label:\"时间\",align:\"right\"}})],1),a(\"el-pagination\",{attrs:{background:\"\",layout:\"prev, pager, next, total\",\"prev-text\":\"上一页\",\"next-text\":\"下一页\",\"page-size\":5,\"current-page\":e.currentPageHistory,\"page-count\":e.pageCountHistory,\"hide-on-single-page\":!0},on:{\"current-change\":e.getHistory,\"update:currentPage\":function(t){e.currentPageHistory=t},\"update:current-page\":function(t){e.currentPageHistory=t}}})],1):e._e(),3==e.active?a(\"div\",{staticClass:\"feed\"},[a(\"el-table\",{key:\"feedTable\",ref:\"feedTableRef\",staticClass:\"w7-table\",attrs:{data:e.feedList,\"max-height\":\"370\"}},[a(\"el-table-column\",{attrs:{prop:\"type_name\",label:\"问题类型\",align:\"center\"}}),a(\"el-table-column\",{attrs:{prop:\"created_at\",label:\"时间\",align:\"center\"}}),a(\"el-table-column\",{attrs:{prop:\"status_text\",label:\"状态\",align:\"center\"},scopedSlots:e._u([{key:\"default\",fn:function(t){var i=t.row;return[i.status?a(\"span\",[e._v(e._s(i.status_text))]):a(\"span\",{staticStyle:{color:\"#3296fa\"}},[e._v(e._s(i.status_text))])]}}],null,!1,2194571870)}),a(\"el-table-column\",{attrs:{label:\"操作\",align:\"center\"},scopedSlots:e._u([{key:\"default\",fn:function(t){return[a(\"div\",[a(\"el-button\",{attrs:{type:\"primary\"},on:{click:function(a){return e.getFeedDetail(t.row)}}},[e._v(\"查看详情\")])],1)]}}],null,!1,1946360409)})],1),a(\"el-pagination\",{attrs:{background:\"\",layout:\"prev, pager, next, total\",\"prev-text\":\"上一页\",\"next-text\":\"下一页\",\"page-size\":5,\"current-page\":e.currentPageFeed,\"page-count\":e.pageCountFeed,\"hide-on-single-page\":!0},on:{\"current-change\":e.getFeed,\"update:currentPage\":function(t){e.currentPageFeed=t},\"update:current-page\":function(t){e.currentPageFeed=t}}})],1):e._e()])]),e.feedDetailVisible?a(\"div\",{staticClass:\"feedDetailHeader\"},[a(\"el-link\",{attrs:{underline:!1},on:{click:function(t){e.feedDetailVisible=!1}}},[a(\"i\",{staticClass:\"el-icon-arrow-left\"}),e._v(\"用户反馈详情\")]),a(\"el-link\",{attrs:{underline:!1},on:{click:function(t){e.feedDetailVisible=!1}}},[a(\"i\",{staticClass:\"el-icon-close\"})])],1):e._e(),e.feedDetailVisible?a(\"div\",{staticClass:\"feedDetail\"},[a(\"div\",{staticClass:\"item\"},[a(\"div\",{staticClass:\"lef\"},[e._v(\"问题类型:\")]),a(\"div\",{staticClass:\"rig\",domProps:{innerHTML:e._s(e.feedType)}})]),a(\"div\",{staticClass:\"item\"},[a(\"div\",{staticClass:\"lef\"},[e._v(\"意见反馈:\")]),a(\"div\",{staticClass:\"rig\"},[e._v(e._s(e.feedDetail.content))])]),a(\"div\",{staticClass:\"item\"},[a(\"div\",{staticClass:\"lef\"},[e._v(\"反馈截图:\")]),a(\"div\",{staticClass:\"rig\"},e._l(e.feedDetail.images,(function(t,i){return a(\"el-image\",{key:i,staticStyle:{width:\"100px\",height:\"100px\",\"margin-right\":\"20px\"},attrs:{src:t,\"preview-src-list\":e.feedDetail.images}})})),1)])]):e._e(),e.showAddManage?a(\"div\",{staticClass:\"add-manage-header\"},[a(\"el-link\",{attrs:{underline:!1},on:{click:function(t){e.showAddManage=!1}}},[a(\"i\",{staticClass:\"el-icon-arrow-left\"}),e._v(\"添加权限\")]),a(\"el-link\",{attrs:{underline:!1},on:{click:function(t){e.showAddManage=!1}}},[a(\"i\",{staticClass:\"el-icon-close\"})])],1):e._e(),e.showAddManage?a(\"div\",{staticClass:\"add-manage-body\"},[a(\"el-form\",{key:\"addManage\",ref:\"addManageForm\",staticClass:\"w7-form__no-required-icon\",attrs:{model:e.addManageData,rules:e.rules,\"label-width\":\"100px\"}},[a(\"el-form-item\",{attrs:{label:\"用户名\",prop:\"username\"}},[a(\"el-select\",{attrs:{filterable:\"\",remote:\"\",\"reserve-keyword\":\"\",placeholder:\"请输入用户名\",\"remote-method\":e.remoteMethod,loading:e.loading},model:{value:e.addManageData.username,callback:function(t){e.$set(e.addManageData,\"username\",t)},expression:\"addManageData.username\"}},e._l(e.userOptions,(function(e){return a(\"el-option\",{key:e.username,attrs:{label:e.username,value:e.username}})})),1)],1),a(\"el-form-item\",{attrs:{label:\"权限设置\"}},[a(\"el-select\",{model:{value:e.addManageData.role,callback:function(t){e.$set(e.addManageData,\"role\",t)},expression:\"addManageData.role\"}},e._l(e.role_list,(function(e){return a(\"el-option\",{key:e.id,attrs:{label:e.name,value:e.id}})})),1)],1)],1),a(\"div\",{staticClass:\"add-manage-footer\"},[a(\"el-button\",{attrs:{type:\"primary\"},on:{click:e.addManage}},[e._v(\"确 定\")]),a(\"el-button\",{on:{click:function(t){e.showAddManage=!1}}},[e._v(\"取 消\")])],1)],1):e._e(),a(\"div\",{staticClass:\"reset-element\"},[a(\"el-dialog\",{staticClass:\"delete-doc\",attrs:{title:\"删除文档\",visible:e.deleteDocVisible,width:\"570px\",center:\"\",modal:!1,\"modal-append-to-body\":!1},on:{\"update:visible\":function(t){e.deleteDocVisible=t}}},[a(\"el-form\",{staticStyle:{padding:\"0 30px 20px\"},attrs:{model:e.deleteDocForm}},[a(\"el-form-item\",{attrs:{label:\"文档名称：\",\"label-width\":e.formLabelWidth}},[a(\"el-input\",{attrs:{autocomplete:\"off\"},model:{value:e.deleteDocForm.name,callback:function(t){e.$set(e.deleteDocForm,\"name\",t)},expression:\"deleteDocForm.name\"}}),a(\"div\",{staticClass:\"el-form-item__error\",staticStyle:{\"margin-top\":\"5px\"}},[e._v(\"删除文档须谨慎操作，一旦删除将无法恢复！\")])],1)],1),a(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[a(\"el-button\",{on:{click:function(t){e.deleteDocVisible=!1}}},[e._v(\"取 消\")]),a(\"el-button\",{attrs:{type:\"primary\"},on:{click:e.defineDeleteDoc}},[e._v(\"确 定\")])],1)],1)],1)])},n=[],o=a(\"79ac\"),r=o[\"a\"],s=(a(\"7d57\"),a(\"0454\"),a(\"2877\")),l=Object(s[\"a\"])(r,i,n,!1,null,\"63bdab51\",null);t[\"a\"]=l.exports},\"520a\":function(e,t,a){\"use strict\";var i=a(\"0bfb\"),n=RegExp.prototype.exec,o=String.prototype.replace,r=n,s=\"lastIndex\",l=function(){var e=/a/,t=/b*/g;return n.call(e,\"a\"),n.call(t,\"a\"),0!==e[s]||0!==t[s]}(),c=void 0!==/()??/.exec(\"\")[1],d=l||c;d&&(r=function(e){var t,a,r,d,u=this;return c&&(a=new RegExp(\"^\"+u.source+\"$(?!\\\\s)\",i.call(u))),l&&(t=u[s]),r=n.call(u,e),l&&r&&(u[s]=u.global?r.index+r[0].length:t),c&&r&&r.length>1&&o.call(r[0],a,(function(){for(d=1;d<arguments.length-2;d++)void 0===arguments[d]&&(r[d]=void 0)})),r}),e.exports=r},\"5dbc\":function(e,t,a){var i=a(\"d3f4\"),n=a(\"8b97\").set;e.exports=function(e,t,a){var o,r=t.constructor;return r!==a&&\"function\"==typeof r&&(o=r.prototype)!==a.prototype&&i(o)&&n&&n(e,o),e}},\"5f1b\":function(e,t,a){\"use strict\";var i=a(\"23c6\"),n=RegExp.prototype.exec;e.exports=function(e,t){var a=e.exec;if(\"function\"===typeof a){var o=a.call(e,t);if(\"object\"!==typeof o)throw new TypeError(\"RegExp exec method returned something other than an Object or null\");return o}if(\"RegExp\"!==i(e))throw new TypeError(\"RegExp#exec called on incompatible receiver\");return n.call(e,t)}},6297:function(e,t,a){\"use strict\";a.d(t,\"b\",(function(){return n})),a.d(t,\"a\",(function(){return o})),a.d(t,\"c\",(function(){return r}));var i=a(\"1c1e\"),n=function(e){return Object(i[\"a\"])({url:\"/admin/document/feedback-list\",data:e,method:\"post\"})},o=function(e){return Object(i[\"a\"])({url:\"/admin/document/feedback-detail\",data:e,method:\"post\"})},r=function(e){return Object(i[\"a\"])({url:\"/document/feedback/add\",data:e,method:\"post\"})}},\"6b54\":function(e,t,a){\"use strict\";a(\"3846\");var i=a(\"cb7c\"),n=a(\"0bfb\"),o=a(\"9e1e\"),r=\"toString\",s=/./[r],l=function(e){a(\"2aba\")(RegExp.prototype,r,e,!0)};a(\"79e5\")((function(){return\"/a/b\"!=s.call({source:\"a\",flags:\"b\"})}))?l((function(){var e=i(this);return\"/\".concat(e.source,\"/\",\"flags\"in e?e.flags:!o&&e instanceof RegExp?n.call(e):void 0)})):s.name!=r&&l((function(){return s.call(this)}))},\"79ac\":function(e,t,a){\"use strict\";(function(e){a(\"28a5\"),a(\"6b54\"),a(\"7f7f\");var i=a(\"4ec3\"),n=a(\"6297\");t[\"a\"]={name:\"setting\",props:[\"id\"],data:function(){return{active:0,details:\"\",docData:{cover:\"\",name:\"\",is_public:\"1\",login_preview:\"2\",is_public_Copy:\"\"},rules:{name:[{required:!0,message:\"请输入项目名称\",trigger:\"change\"}],username:[{required:!0,message:\"请输入用户名\",trigger:\"change\"}]},addManageData:{},role_list:[],showAddManage:!1,shwoEditRole:!1,selectUserId:\"\",selectUserRole:\"\",historyList:[],currentPageHistory:1,pageCountHistory:0,feedList:[],feedDetail:{},feedType:\"\",totalHistory:0,currentPageFeed:1,newFeed:!1,pageCountFeed:0,feedDetailVisible:!1,userOptions:[],loading:!1,deleteDocVisible:!1,formLabelWidth:\"120px\",deleteDocForm:{name:\"\",document_id:\"\"}}},watch:{id:function(e,t){this.active=0,this.getdetails()}},created:function(){this.getdetails(),this.getFeedFlag()},mounted:function(){var t=this;e(document).on(\"click\",(function(){t.shwoEditRole=!1}))},methods:{onClickNav:function(e){2==e?this.getHistory():3==e&&this.getFeed(),this.active=e},getdetails:function(){var e=this;this.$post(\"/admin/document/detail\",{document_id:this.id}).then((function(t){e.details=t.data;var a=\"\",i=\"\";1==t.data.is_public?(i=2,a=1):(t.data.is_public,i=t.data.is_public,a=2),e.docData={cover:t.data.cover||\"\",name:t.data.name,is_public:a,login_preview:i,is_public_Copy:t.data.is_public},e.docData.is_public=e.docData.is_public.toString(),e.docData.login_preview=e.docData.login_preview.toString(),e.role_list=t.data.role_list,e.addManageData.role=t.data.role_list[0].id,e.deleteDocForm.document_id=e.details.id}))},getHistory:function(){var e=this;this.$post(\"/admin/operate-log/get-by-document \",{document_id:this.id,page:this.currentPageHistory}).then((function(t){e.historyList=t.data.data||[],e.pageCountHistory=t.data.page_count,e.totalHistory=t.data.total,e.$refs.historyTableRef.bodyWrapper.scrollTop=0}))},getFeed:function(){var e=this;Object(n[\"b\"])({document_id:this.id,page:this.currentPageFeed,page_size:this.pageCountFeed}).then((function(t){e.feedList=t.data.data||[],e.pageCountFeed=t.data.pegt_count,e.$refs.feedTableRef.bodyWrapper.scrollTop=0}))},getFeedDetail:function(e){var t=this;Object(n[\"a\"])({feed_id:e.id,document_id:e.document_id}).then((function(e){t.feedDetail=e.data;var a=t.feedDetail.type_name.split(\",\");t.feedType=\"\";for(var i=0;i<a.length;i++)t.feedType+=\"\".concat(i+1,\" : \").concat(a[i],\"<br/>\");t.feedDetailVisible=!0,t.getFeedFlag()}))},getFeedFlag:function(){var e=this;Object(i[\"k\"])({document_id:this.id}).then((function(t){200==t.code&&(e.newFeed=t.data.new_feed)}))},handleAvatarSuccess:function(e){200===e.code?this.docData.cover=e.data.url:this.$message.error(e.message)},beforeAvatarUpload:function(e){var t=\"image/jpg\"===e.type||\"image/jpeg\"===e.type||\"image/png\"===e.type,a=e.size/1024/1024<5;return t||this.$message.error(\"上传图片只支持jpg、jpeg、png格式!\"),a||this.$message.error(\"上传图片大小不能超过 5MB!\"),t&&a},saveDoc:function(){var e=this,t=this.docData.cover,a=this.docData.name,i=this.docData.login_preview,n=this.docData.is_public;n=1==n?1:2==i?2:3,this.$refs[\"docForm\"].validate((function(i){i&&e.$post(\"/admin/document/update\",{document_id:e.details.id,cover:t,name:a,is_public:n}).then((function(){e.getdetails(),e.$message({type:\"success\",message:\"保存成功!\"})}))}))},delDoc:function(){this.deleteDocVisible=!0},editManage:function(e){this.selectUserId=e.id,this.selectUserRole=e.acl.role,this.shwoEditRole=!0},editRole:function(){var e=this;this.$post(\"/admin/document/operator\",{user_id:this.selectUserId,document_id:this.id,permission:this.selectUserRole}).then((function(){e.getdetails(),e.shwoEditRole=!1}))},removeManage:function(e){var t=this;this.$confirm(\"确定删除该操作员吗?\",\"提示\",{confirmButtonText:\"确定\",cancelButtonText:\"取消\",type:\"warning\"}).then((function(){t.$post(\"/admin/document/operator\",{user_id:e,document_id:t.id}).then((function(){t.getdetails(),t.$message(\"删除成功！\")}))}))},openAddManage:function(){this.addManageData={username:\"\",role:this.role_list[0].id||\"\"},this.showAddManage=!0},addManage:function(){var e=this,t=!0;for(var a in this.details.operator)if(this.details.operator[a].username==this.addManageData.username)return this.$message(\"用户已存在\"),void(t=!1);t&&this.$refs[\"addManageForm\"].validate((function(t){t&&e.$post(\"/admin/document/operator\",{user_name:e.addManageData.username,document_id:e.id,permission:e.addManageData.role}).then((function(){e.getdetails(),e.$message(\"添加成功！\"),e.showAddManage=!1}))}))},uploadCover:function(){this.$refs.upload.uploadFiles()},remoteMethod:function(e){var t=this;\"\"!==e?(this.loading=!0,Object(i[\"o\"])({no_self:1,name:e}).then((function(e){t.loading=!1,t.userOptions=e.data})).catch((function(e){t.loading=!1}))):this.userOptions=[]},defineDeleteDoc:function(){var e=this;Object(i[\"e\"])(this.deleteDocForm).then((function(){e.$parent.handleClose(),e.deleteDocVisible=!1,e.deleteDocForm.name=\"\",e.$message({type:\"success\",message:\"删除成功!\"});var t=e.$route.name;e.$router.push({name:t})}))}}}}).call(this,a(\"1157\"))},\"7d57\":function(e,t,a){\"use strict\";a(\"e30f\")},\"8b97\":function(e,t,a){var i=a(\"d3f4\"),n=a(\"cb7c\"),o=function(e,t){if(n(e),!i(t)&&null!==t)throw TypeError(t+\": can't set as prototype!\")};e.exports={set:Object.setPrototypeOf||(\"__proto__\"in{}?function(e,t,i){try{i=a(\"9b43\")(Function.call,a(\"11e9\").f(Object.prototype,\"__proto__\").set,2),i(e,[]),t=!(e instanceof Array)}catch(n){t=!0}return function(e,a){return o(e,a),t?e.__proto__=a:i(e,a),e}}({},!1):void 0),check:o}},9093:function(e,t,a){var i=a(\"ce10\"),n=a(\"e11e\").concat(\"length\",\"prototype\");t.f=Object.getOwnPropertyNames||function(e){return i(e,n)}},a481:function(e,t,a){\"use strict\";var i=a(\"cb7c\"),n=a(\"4bf8\"),o=a(\"9def\"),r=a(\"4588\"),s=a(\"0390\"),l=a(\"5f1b\"),c=Math.max,d=Math.min,u=Math.floor,f=/\\$([$&`']|\\d\\d?|<[^>]*>)/g,p=/\\$([$&`']|\\d\\d?)/g,g=function(e){return void 0===e?e:String(e)};a(\"214f\")(\"replace\",2,(function(e,t,a,v){return[function(i,n){var o=e(this),r=void 0==i?void 0:i[t];return void 0!==r?r.call(i,o,n):a.call(String(o),i,n)},function(e,t){var n=v(a,e,this,t);if(n.done)return n.value;var u=i(e),f=String(this),p=\"function\"===typeof t;p||(t=String(t));var m=u.global;if(m){var b=u.unicode;u.lastIndex=0}var _=[];while(1){var y=l(u,f);if(null===y)break;if(_.push(y),!m)break;var x=String(y[0]);\"\"===x&&(u.lastIndex=s(f,o(u.lastIndex),b))}for(var w=\"\",D=0,C=0;C<_.length;C++){y=_[C];for(var k=String(y[0]),M=c(d(r(y.index),f.length),0),$=[],F=1;F<y.length;F++)$.push(g(y[F]));var R=y.groups;if(p){var E=[k].concat($,M,f);void 0!==R&&E.push(R);var S=String(t.apply(void 0,E))}else S=h(k,f,M,$,R,t);M>=D&&(w+=f.slice(D,M)+S,D=M+k.length)}return w+f.slice(D)}];function h(e,t,i,o,r,s){var l=i+e.length,c=o.length,d=p;return void 0!==r&&(r=n(r),d=f),a.call(s,d,(function(a,n){var s;switch(n.charAt(0)){case\"$\":return\"$\";case\"&\":return e;case\"`\":return t.slice(0,i);case\"'\":return t.slice(l);case\"<\":s=r[n.slice(1,-1)];break;default:var d=+n;if(0===d)return a;if(d>c){var f=u(d/10);return 0===f?a:f<=c?void 0===o[f-1]?n.charAt(1):o[f-1]+n.charAt(1):a}s=o[d-1]}return void 0===s?\"\":s}))}}))},aae3:function(e,t,a){var i=a(\"d3f4\"),n=a(\"2d95\"),o=a(\"2b4c\")(\"match\");e.exports=function(e){var t;return i(e)&&(void 0!==(t=e[o])?!!t:\"RegExp\"==n(e))}},b0c5:function(e,t,a){\"use strict\";var i=a(\"520a\");a(\"5ca1\")({target:\"RegExp\",proto:!0,forced:i!==/./.exec},{exec:i})},e30f:function(e,t,a){},fa9a:function(e,t,a){}}]);"
  },
  {
    "path": "public/js/chunk-d779deb8.cbfbc744.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-d779deb8\"],{\"2ccb\":function(t,i,e){\"use strict\";e.r(i);var s=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e(\"el-container\",{staticClass:\"layout-container admin-setting\"},[e(\"el-aside\",{staticClass:\"admin-view-aside\",attrs:{width:t.isCollapse?\"64px\":\"240px\"}},[e(\"el-menu\",{staticClass:\"admin-view-menu\",attrs:{\"default-active\":t.active,router:!0,collapse:t.isCollapse}},[e(\"el-menu-item\",{attrs:{index:\"/admin/setting\"}},[e(\"i\",{staticClass:\"wi wi-cunchushebei\"}),e(\"span\",{attrs:{slot:\"title\"},slot:\"title\"},[t._v(\"存储设置\")])]),e(\"el-submenu\",{attrs:{index:\"1\"}},[e(\"template\",{slot:\"title\"},[e(\"i\",{staticClass:\"wi wi-system-login-settings\"}),e(\"span\",[t._v(\"第三方登录设置\")])]),t._l(t.thirdPartyLoginMenu,(function(i,s){return[e(\"el-menu-item\",{key:s,attrs:{index:\"/admin/setting/third-party?id=\"+i.id}},[e(\"span\",{staticClass:\"menu-name\"},[t._v(t._s(i.name)+\"授权配置\")])])]})),e(\"el-menu-item\",{attrs:{index:\"/admin/setting/third-party-custom\"}},[t._v(\"自定义授权配置\")])],2),e(\"el-menu-item\",{attrs:{index:\"/admin/setting/login\"}},[e(\"i\",{staticClass:\"wi wi-system-login-settings\"}),e(\"span\",{attrs:{slot:\"title\"},slot:\"title\"},[t._v(\"登录设置\")])]),e(\"el-menu-item\",{attrs:{index:\"/admin/setting/nav\"}},[e(\"i\",{staticClass:\"wi wi-wi-system-nav-settings\"}),e(\"span\",{attrs:{slot:\"title\"},slot:\"title\"},[t._v(\"导航设置\")])]),e(\"el-menu-item\",{attrs:{index:\"/admin/setting/index/setting\"}},[e(\"i\",{staticClass:\"wq wq-shouye1\"}),e(\"span\",{attrs:{slot:\"title\"},slot:\"title\"},[t._v(\"首页设置\")])]),e(\"el-menu-item\",{attrs:{index:\"/admin/setting/screenWords\"}},[e(\"i\",{staticClass:\"wi wi-wi-system-nav-settings\"}),e(\"span\",{attrs:{slot:\"title\"},slot:\"title\"},[t._v(\"屏蔽词设置\")])])],1)],1),e(\"el-main\",[e(\"router-view\",{on:{refreshMenu:t.refreshMenu}})],1)],1)},n=[],a={data:function(){return{active:\"/admin/setting\",isCollapse:!1,thirdPartyLoginMenu:[]}},beforeRouteEnter:function(t,i,e){e((function(i){i.active=t.path}))},created:function(){this.init()},methods:{init:function(){var t=this;this.$post(\"/admin/third-party-login/all\").then((function(i){t.thirdPartyLoginMenu=i.data}))},refreshMenu:function(t){t&&this.init()}}},l=a,r=(e(\"37a6\"),e(\"2877\")),o=Object(r[\"a\"])(l,s,n,!1,null,null,null);i[\"default\"]=o.exports},\"37a6\":function(t,i,e){\"use strict\";e(\"bcad\")},bcad:function(t,i,e){}}]);"
  },
  {
    "path": "public/js/chunk-f66a53c0.e61a0c3e.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-f66a53c0\"],{\"14b8\":function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABuklEQVQ4T9WUv6tBYRjHv4eBEMogAxKRH5tJCslmUCZWgz/A/2JQVgODjSxMLCgDGYSNUga/BhTn9rx1Tk7ce8/VHe59prfO+3zO832e7/NyPM/z+MXg/hfwcrmg2+1iv9/LaoLRaEQ4HIZKpRLvSyS3220cj0f4fD5ZwOl0Cr1ej3g8/hpYr9cRCATgdrtlAWezGSaTCdLp9NdAl8uF5XKJRwPodDpYLBbJj2QD7XY7Wq0WbrebCDCbzaxfj0Ht2W63cDgc70s+HA4YDoc4n8/wer0SGFElQxF6aLVaUa1WRclqtRrZbBbX6xXlcpmBaMK9Xg/JZFJehSRFkEy2IMBiscBgMEAmk2ESR6MR1us1gwrxssLPprxardBsNpHL5aBUKtHpdKBQKBCLxd4DUlatVmPG12q12Gw2yOfz7PxWhfP5HI1GA8FgEAaDAePxGBqNBqlUChzHMeaPJJdKJSQSCTidTpZ8v99RqVQQCoVA3n0CCqvn9/tFCTabje0q7XmxWEShUJB4sd/v43Q6iesnqZCSyAq73U5MikajMJlMbOL0LRKJSIA0ZTK4x+N5rlDWAn9z6e8/sB+8RhLU3r6FXgAAAABJRU5ErkJggg==\"},\"36d3\":function(e,t,a){},4917:function(e,t,a){\"use strict\";var r=a(\"cb7c\"),s=a(\"9def\"),i=a(\"0390\"),n=a(\"5f1b\");a(\"214f\")(\"match\",1,(function(e,t,a,o){return[function(a){var r=e(this),s=void 0==a?void 0:a[t];return void 0!==s?s.call(a,r):new RegExp(a)[t](String(r))},function(e){var t=o(a,e,this);if(t.done)return t.value;var c=r(e),l=String(this);if(!c.global)return n(c,l);var u=c.unicode;c.lastIndex=0;var d,p=[],g=0;while(null!==(d=n(c,l))){var f=String(d[0]);p[g]=f,\"\"===f&&(c.lastIndex=i(l,s(c.lastIndex),u)),g++}return 0===g?null:p}]}))},\"499a\":function(e,t,a){e.exports=a.p+\"img/userAvg.db34f8a2.png\"},\"4ae1\":function(e,t,a){},\"4cbb\":function(e,t,a){\"use strict\";a.r(t);var r=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a(\"div\",{staticClass:\"container\"},[a(\"div\",{staticClass:\"header_bg\"},[a(\"SignHeader\")],1),a(\"div\",{staticClass:\"content\"},[a(\"SignYourSelfLeft\"),a(\"SignYourSelfRight\")],1)])},s=[],i=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r(\"div\",{staticClass:\"container-left\"},[r(\"el-card\",{staticClass:\"box-card\"},[r(\"el-tabs\",{on:{\"tab-click\":e.handleClick},model:{value:e.activeName,callback:function(t){e.activeName=t},expression:\"activeName\"}},[r(\"el-tab-pane\",{attrs:{label:\"动态\",name:\"first\"}},[e._l(e.list,(function(t,s){return r(\"div\",{key:s},[1==t.document.is_public?r(\"div\",{staticClass:\"dt_box\"},[r(\"div\",{staticClass:\"f_div\"},[9==t.operate?r(\"img\",{attrs:{src:a(\"50dd\"),alt:\"\"}}):e._e(),1==t.operate?r(\"img\",{attrs:{src:a(\"7728\"),alt:\"\"}}):e._e(),9==t.operate?r(\"span\",{staticClass:\"Collection\"},[e._v(\"收藏了文档\")]):e._e(),1==t.operate?r(\"span\",{staticClass:\"Collection\"},[e._v(\"创建了文档\")]):e._e(),r(\"span\",{staticClass:\"time\"},[e._v(e._s(t.time_str))])]),r(\"div\",{staticClass:\"xx\"},[r(\"div\",{staticClass:\"left_avg\"},[1===t.operate?r(\"el-avatar\",{attrs:{src:t.user.avatar?t.user.avatar:e.avatarImg}}):e._e(),9===t.operate?r(\"el-avatar\",{attrs:{src:t.document.user.avatar}}):e._e()],1),r(\"div\",{staticClass:\"dynamic\",on:{click:function(a){return e.goView(t)}}},[r(\"p\",{staticClass:\"user\"},[e._v(\"\\n                    \"+e._s(t.document.name)+\"\\n                  \")])])])]):e._e()])})),r(\"div\",{staticClass:\"pagination-wrap\"},[r(\"el-pagination\",{attrs:{background:\"\",\"hide-on-single-page\":e.total<=15,\"current-page\":e.listQuery.page,\"page-sizes\":[15,25,35],\"page-size\":e.listQuery.size,layout:e.paginationLayouts,total:e.total},on:{\"update:currentPage\":function(t){return e.$set(e.listQuery,\"page\",t)},\"update:current-page\":function(t){return e.$set(e.listQuery,\"page\",t)},\"size-change\":e.handleSizeChange,\"current-change\":e.handleCurrentChange}})],1)],2),r(\"el-tab-pane\",{attrs:{label:\"文档\",name:\"second\"}},[r(\"YourSelfDoc\")],1)],1)],1)],1)},n=[],o=(a(\"8e6e\"),a(\"ac6a\"),a(\"456d\"),a(\"7f7f\"),a(\"fc11\")),c=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r(\"div\",{staticClass:\"container\"},[e._l(e.docList,(function(t,s){return r(\"div\",{key:s,staticClass:\"doc_box\"},[r(\"div\",{staticClass:\"doc_title\"},[r(\"div\",{staticClass:\"f_div\"},[t.is_public?e._e():[r(\"img\",{attrs:{src:a(\"ce77\"),alt:\"\"}}),r(\"span\",{staticClass:\"collection\"},[e._v(\"私有文档仅自己或操作员、阅读员可见\")])],r(\"span\",{staticClass:\"time\"},[t.acl.has_edit?r(\"el-button\",{attrs:{type:\"text\"},on:{click:function(a){return e.goChapter(t)}}},[e._v(\"编辑\")]):e._e(),t.acl.has_manage?r(\"el-button\",{attrs:{type:\"text\"},on:{click:function(a){return a.stopPropagation(),e.settingDoc(t.id)}}},[e._v(\"管理\")]):e._e()],1)],2),r(\"div\",{staticClass:\"doc_title\"},[r(\"span\",{staticClass:\"detail\",on:{click:function(a){return e.goDetail(t.id)}}},[e._v(e._s(t.name))])]),r(\"div\",{staticClass:\"doc_t3\"},[r(\"p\",[e._v(\"\\n          \"+e._s(t.description)+\"\\n        \")])])])])})),r(\"div\",{staticClass:\"pagination-wrap\"},[r(\"el-pagination\",{attrs:{\"hide-on-single-page\":e.total<=15,\"current-page\":e.listQuery.page,\"page-sizes\":[15,25,35],\"page-size\":e.listQuery.page_size,layout:e.paginationLayouts,total:e.total},on:{\"update:currentPage\":function(t){return e.$set(e.listQuery,\"page\",t)},\"update:current-page\":function(t){return e.$set(e.listQuery,\"page\",t)},\"size-change\":e.handleSizeChange,\"current-change\":e.handleCurrentChange}})],1),r(\"el-dialog\",{staticClass:\"we7-dialog dialog-setting\",attrs:{title:\"项目设置\",width:\"1000px\",visible:e.showSetting,\"before-close\":e.handleClose},on:{\"update:visible\":function(t){e.showSetting=t}}},[r(\"setting\",{attrs:{id:e.settingDocId}})],1)],2)},l=[],u=a(\"4ec3\"),d=a(\"fa7d\"),p=a(\"49f7\"),g={name:\"yourSelfDoc\",components:{setting:p[\"a\"]},data:function(){return{settingDocId:\"\",loading:!1,pageCount:\"\",showSetting:!1}},computed:{paginationLayouts:function(){return this.total&&this.total/this.listQuery.page_size>1?\"total, sizes, prev, pager, next, jumper\":\"total, sizes\"},docList:function(){return this.$store.state.allProjectData.data},total:function(){return this.$store.state.allProjectData.total},listQuery:function(){return this.$store.state.allProjectListQuery}},created:function(){this.$store.dispatch(\"getAllProject\")},methods:{goDetail:function(e){this.$router.push({path:\"/chapter/\".concat(e)})},handleClose:function(){this.$store.dispatch(\"getAllProject\"),this.showSetting=!1},settingDoc:function(e){this.settingDocId=e,this.showSetting=!0},goChapter:function(e,t){var a={name:\"chapter\",params:{id:e.id}};t&&(a[\"query\"]={type:\"add\",documentType:1}),localStorage.projectName=e.name,this.$router.push(a)},format:function(e){if(e){var t=Object(d[\"a\"])(e);return t.length>8?Object(d[\"a\"])(e).slice(5):Object(d[\"a\"])(e)}},handleSizeChange:function(e){this.listQuery.page_size=e,this.$store.dispatch(\"getAllProject\")},handleCurrentChange:function(e){this.listQuery.page=e,this.$store.dispatch(\"getAllProject\")}}},f=g,_=(a(\"a739\"),a(\"2877\")),m=Object(_[\"a\"])(f,c,l,!1,null,\"5afe36eb\",null),A=m.exports,h=a(\"2f62\");function v(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,r)}return a}function b(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?v(Object(a),!0).forEach((function(t){Object(o[\"a\"])(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):v(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}var C={name:\"signYourSelfLeft\",components:{YourSelfDoc:A},computed:b(b({},Object(h[\"b\"])({UserInfo:\"UserInfo\"})),{},{paginationLayouts:function(){return this.total&&this.total/this.listQuery.page_size>1?\"total, sizes, prev, pager, next, jumper\":\"total, sizes\"},list:function(){return this.$store.state.userOperateData.data},total:function(){return this.$store.state.userOperateData.total},listQuery:function(){return this.$store.state.userOperateListQuery}}),data:function(){return{activeName:localStorage.userCenterActiveName||\"first\",avatarImg:\"//img.w7.cc/12/33/89/a8/7f/2f/d4/0d/d9/c0/3a/dc/73/a9/9c/c0.png\"}},mounted:function(){},methods:{format:function(e){if(e){var t=Object(d[\"a\"])(e);return t.length>8?Object(d[\"a\"])(e).slice(5):Object(d[\"a\"])(e)}},formatDate:function(e){var t=new Date(e),a=t.getFullYear(),r=t.getMonth()+1;r=r<10?\"0\"+r:r;var s=t.getDate();return s=s<10?\"0\"+s:s,a+\"-\"+r+\"-\"+s},handleClick:function(e,t){localStorage.userCenterActiveName=e.name},handleSizeChange:function(e){this.$store.commit(\"setUserOperateListQuery\",{page_size:e}),this.$store.dispatch(\"getUserOperate\")},handleCurrentChange:function(e){this.$store.commit(\"setUserOperateListQuery\",{page:e}),this.$store.dispatch(\"getUserOperate\")},goView:function(e){var t={name:\"viewHome\",params:{id:e.document_id}};e.chapter_id&&(t.query={id:e.chapter_id});var a=this.$router.resolve(t),r=a.href;window.open(r,\"_blank\")}}},O=C,E=(a(\"9054\"),Object(_[\"a\"])(O,i,n,!1,null,\"a46f0322\",null)),y=E.exports,j=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r(\"div\",{staticClass:\"container-right\"},[e.UserInfo.id?r(\"div\",{staticClass:\"right_t1_d\",on:{click:e.sendDoc}},[r(\"span\",[e._v(\"发文档\")])]):r(\"div\",{staticClass:\"right_t1_d\",on:{click:function(t){return t.stopPropagation(),e.follow(t)}}},[r(\"span\",[r(\"i\",{staticClass:\"el-icon-plus\"}),e._v(\" \"+e._s(e.followVal))])]),r(\"div\",{staticClass:\"right_t3_d\"},[r(\"el-card\",{staticClass:\"box-card\"},[r(\"div\",{staticClass:\"clearfix\",attrs:{slot:\"header\"},slot:\"header\"},[r(\"span\",{staticClass:\"profile\"},[e._v(\"个人简介\")]),e.UserInfo.id&&e.edit?r(\"el-button\",{staticStyle:{float:\"right\",padding:\"3px 0\",\"margin-left\":\"13px\"},attrs:{type:\"text\"},on:{click:e.save}},[e._v(\"保存\")]):e._e(),\"\"===e.UserInfo.id||e.edit?e._e():r(\"el-button\",{staticStyle:{float:\"right\",padding:\"3px 0\"},attrs:{type:\"text\"},on:{click:e.editInfo}},[e._v(\"编辑\")])],1),e.form?r(\"el-form\",{ref:\"form\",attrs:{model:e.form,rules:e.rules}},[r(\"div\",{staticClass:\"text item\"},[r(\"img\",{attrs:{src:a(\"e19b\"),alt:\"\"}}),r(\"el-form-item\",{attrs:{label:\"\",prop:\"company\"}},[r(\"el-input\",{class:{edit:e.edit},attrs:{readonly:!e.edit,size:\"small\",placeholder:\"请填写公司和职称\",clearable:\"\"},model:{value:e.form.company,callback:function(t){e.$set(e.form,\"company\",t)},expression:\"form.company\"}})],1)],1),r(\"div\",{staticClass:\"text item\"},[r(\"img\",{attrs:{src:a(\"c743\"),alt:\"\"}}),r(\"el-form-item\",{attrs:{label:\"\",prop:\"skill\"}},[r(\"el-input\",{class:{edit:e.edit},attrs:{readonly:!e.edit,size:\"small\",clearable:\"\",placeholder:\"请填写技能专长\"},model:{value:e.form.skill,callback:function(t){e.$set(e.form,\"skill\",t)},expression:\"form.skill\"}})],1)],1),r(\"div\",{staticClass:\"text item\"},[r(\"img\",{attrs:{src:a(\"14b8\"),alt:\"\"}}),r(\"el-form-item\",{attrs:{label:\"\",prop:\"resume\"}},[r(\"el-input\",{class:{edit:e.edit},attrs:{readonly:!e.edit,size:\"small\",clearable:\"\",placeholder:\"请填写个人简历\"},model:{value:e.form.resume,callback:function(t){e.$set(e.form,\"resume\",t)},expression:\"form.resume\"}})],1)],1),r(\"div\",{staticClass:\"text item\"},[r(\"img\",{attrs:{src:a(\"c4dc\"),alt:\"\"}}),r(\"el-form-item\",{attrs:{label:\"\",prop:\"address\"}},[r(\"el-input\",{class:{edit:e.edit},attrs:{readonly:!e.edit,size:\"small\",clearable:\"\",placeholder:\"请填写所在城市\"},model:{value:e.form.address,callback:function(t){e.$set(e.form,\"address\",t)},expression:\"form.address\"}})],1)],1)]):e._e()],1)],1),r(\"el-dialog\",{staticClass:\"w7-dialog\",attrs:{title:\"创建项目\",visible:e.dialogDocInfoVisible,\"close-on-click-modal\":!1,center:\"\"},on:{\"update:visible\":function(t){e.dialogDocInfoVisible=t}}},[r(\"el-form\",{attrs:{\"label-width\":\"105px\",\"label-position\":\"left\"}},[r(\"el-form-item\",{attrs:{label:\"项目名称\"}},[r(\"el-input\",{attrs:{autocomplete:\"off\"},model:{value:e.name,callback:function(t){e.name=t},expression:\"name\"}})],1),r(\"el-radio-group\",{staticClass:\"ownership\",model:{value:e.radio,callback:function(t){e.radio=t},expression:\"radio\"}},[r(\"el-radio\",{attrs:{label:\"1\"},model:{value:e.radio,callback:function(t){e.radio=t},expression:\"radio\"}},[e._v(\"公开项目\")]),r(\"el-radio\",{attrs:{label:\"2\"},model:{value:e.radio,callback:function(t){e.radio=t},expression:\"radio\"}},[e._v(\"私有项目\")])],1)],1),r(\"div\",{staticClass:\"dialog-footer\",attrs:{slot:\"footer\"},slot:\"footer\"},[r(\"el-button\",{attrs:{type:\"primary\"},on:{click:e.createDoc}},[e._v(\"确 定\")]),r(\"el-button\",{on:{click:function(t){e.dialogDocInfoVisible=!1}}},[e._v(\"取 消\")])],1)],1)],1)},D=[];function U(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,r)}return a}function x(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?U(Object(a),!0).forEach((function(t){Object(o[\"a\"])(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):U(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}var w={name:\"signYourSelfRight\",data:function(){return{followVal:\"关注\",uid:localStorage.getItem(\"uid\"),role:\"admin\",input:\"\",resumeInput:\"\",skillInput:\"\",cityInput:\"\",edit:!1,editResume:!1,editSkill:!1,editCity:!1,resume:\"暂未填写个人简历\",content:\"暂未填写公司和职称\",skill:\"暂未填写技能专长\",city:\"暂未填写所在城市\",resetForm:{id:0,company:\"\",resume:\"\",skill:\"\",address:\"\"},name:\"\",radio:\"1\",dialogDocInfoVisible:!1,listQuery:{page:1,page_size:11},rules:{company:[{required:!0,message:\"请输入公司名称\",trigger:\"change\"},{min:3,max:20,message:\"长度在 3 到 20 个字符\",trigger:\"change\"}],skill:[{required:!0,message:\"请输入技能专长\",trigger:\"change\"},{min:3,max:20,message:\"长度在 3 到 20 个字符\",trigger:\"change\"}],resume:[{required:!0,message:\"请输入个人简历\",trigger:\"change\"},{min:3,max:20,message:\"长度在 3 到 20 个字符\",trigger:\"change\"}],address:[{required:!0,message:\"请输入所在城市\",trigger:\"change\"},{min:2,max:20,message:\"长度在 2 到 20 个字符\",trigger:\"change\"}]}}},computed:x(x({},Object(h[\"b\"])({UserInfo:\"UserInfo\"})),{},{form:function(){if(this.$store.state.personInfo)return this.$store.state.personInfo},docList:function(){return this.$store.state.allProjectData.data}}),methods:{sendDoc:function(){this.dialogDocInfoVisible=!0,this.name=\"\"},createDoc:function(){var e=this;Object(u[\"d\"])({name:this.name,is_public:this.radio}).then((function(t){e.$message(\"创建成功！\"),e.dialogDocInfoVisible=!1,e.$store.dispatch(\"getAllProject\"),setTimeout((function(){var t={name:\"chapter\",params:{id:e.docList[0].id}};e.$router.push(t)}),500)}))},follow:function(){},editInfo:function(){this.edit=!0},save:function(){var e=this;this.$refs[\"form\"]&&this.$refs[\"form\"].validate((function(t){if(t){var a={id:e.UserInfo.id,company:e.form.company,resume:e.form.resume,skill:e.form.skill,address:e.form.address};Object(u[\"f\"])(a).then((function(t){200===t.code&&(e.edit=!1,e.$message.closeAll(),e.$message.success(\"保存成功\"),e.$store.dispatch(\"getPersonInfo\"))}))}}))}}},P=w,B=(a(\"df95\"),Object(_[\"a\"])(P,j,D,!1,null,\"55790ccc\",null)),I=B.exports,k=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a(\"div\",[\"\"!==e.UserInfo.id?a(\"div\",{staticClass:\"header_bg_box\"},[a(\"div\",{staticClass:\"avg\"},[a(\"el-upload\",{staticClass:\"avatar-uploader\",attrs:{action:\"/admin/upload/image\",accept:\".jpg,.jpeg,.png\",\"show-file-list\":!1,\"on-success\":e.handleAvatarSuccess,\"before-upload\":e.beforeAvatarUpload}},[e.avatar?a(\"img\",{staticClass:\"avatar\",attrs:{src:e.avatar}}):e._e(),a(\"span\",{staticClass:\"upload-shadow\"},[e.personInfo.avatar?[e._v(\"修改头像\")]:[e._v(\"上传头像\")]],2)])],1),a(\"div\",{staticClass:\"user_info\"},[a(\"div\",{staticClass:\"user_info_name\"},[a(\"span\",[e._v(e._s(e.UserInfo.username))])])])]):a(\"div\",{staticClass:\"header_bg_box\"},[e._m(0),e._m(1)])])},R=[function(){var e=this,t=e.$createElement,r=e._self._c||t;return r(\"div\",{staticClass:\"avg\"},[r(\"img\",{attrs:{src:a(\"499a\"),alt:\"\"}})])},function(){var e=this,t=e.$createElement,a=e._self._c||t;return a(\"div\",{staticClass:\"user_info\"},[a(\"div\",{staticClass:\"user_info_name\"},[a(\"span\",[e._v(\"暂未登录\")])]),a(\"div\",{staticClass:\"user_info_w7\"},[a(\"span\",[e._v(\"请登录获取更多内容\")])])])}];function S(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,r)}return a}function Q(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?S(Object(a),!0).forEach((function(t){Object(o[\"a\"])(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):S(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}var L={name:\"signHeader\",data:function(){return{}},computed:Q(Q({},Object(h[\"b\"])([\"UserInfo\"])),{},{personInfo:function(){return this.$store.state.personInfo},avatar:function(){return this.$store.state.personInfo.avatar||\"//img.w7.cc/12/33/89/a8/7f/2f/d4/0d/d9/c0/3a/dc/73/a9/9c/c0.png\"}}),created:function(){},methods:{handleAvatarSuccess:function(e){var t=this;if(200===e.code){var a={avatar:e.data.url,id:this.UserInfo.id};Object(u[\"f\"])(a).then((function(e){200===e.code&&(t.$message.closeAll(),t.$message.success(\"上传成功\"),t.$store.dispatch(\"getUserInfo\"))}))}},beforeAvatarUpload:function(e){var t=\"image/jpg\"===e.type||\"image/jpeg\"===e.type||\"image/png\"===e.type,a=e.size/1024/1024<5;return t||this.$message.error(\"上传图片只支持jpg、jpeg、png格式!\"),a||this.$message.error(\"上传图片大小不能超过 5MB!\"),t&&a}}},M=L,Y=(a(\"6df2\"),Object(_[\"a\"])(M,k,R,!1,null,\"1cccdd02\",null)),z=Y.exports,V={name:\"userCenter\",components:{SignYourSelfLeft:y,SignYourSelfRight:I,SignHeader:z},data:function(){return{islogin:!0,imgUrl:\"@/assets/img/userAvg.png\"}}},T=V,N=(a(\"75c7\"),Object(_[\"a\"])(T,r,s,!1,null,\"44dd2dcb\",null));t[\"default\"]=N.exports},\"50dd\":function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABhUlEQVQ4T6XSzytEURQH8O/3jmhI8iZFNoqtUlYWY6ZEsUHeiI0skJ29LMTCzsJSygab+SU7sZg3hY3/QCkbC/FGkdB798ibmddgaCZ3996930/3nnOIfy6W5p9Hoq1OvYRFw3Ec57Tl6Ozpc9+O9TZRGgaolXqV92xr+vyumPOBBzM8R6gtgEFvU/CotTurEAhCyTbIxkLoGa5eNNLZ/c9vD3gYjwxS4RjklxsR8g6hEqLm20tdcSUcSlsXXsA2I8cAh6orh8SNhDWZByai9yBCVQGCGyOZ6SgAkVuQbdUBcm0krc4icAByuhqAWnaaU9a8B+TGoj1Sg0sAgUoQCt4UdHdTMnvlVz1n9q8L1EolALQsGylrw29jvu1QthlJEBz/ExHZM5LWTD5SmINiQGJ9wZyuPQTLt1QgCYPWFONwf0yijwx31dkN7XsEzdKbiJZdw+YCMxmn9P+XyfMRQD1ORDeFWIJ4ay2Uyq6We1pZoHjw3gyP0lUvobR18ltd/gQq6cgHC72PEYmOfwgAAAAASUVORK5CYII=\"},\"66db\":function(e,t,a){},\"6df2\":function(e,t,a){\"use strict\";a(\"36d3\")},\"75c7\":function(e,t,a){\"use strict\";a(\"fbfb\")},7728:function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABTUlEQVQ4T6WTMUvCURTFz3mZZW1hEdFW0hZkTX0LG9oCp9pCN91yUoK2hnCplhpq8AvUNwjaBDFJrElLBBPD/u+Ewj8sVNTecId3z/vdcy/vEv88bL9fjpZ8vqmZBKFNAaZ9R+mpOu2PlBOJxkpsf4PWTLq1WrC14vFStqNrh9V4JWaA5F8zErIW2gMRNLITbt6BaoXU4vUPIBCrnJMI9+5GdYCnEJtu3sK+5t+Ll0hvtToOBgP6DElK5FLzR+MDgEwu6Q8NBEi4IFQFGe3hYwgAGZGjZ2OQGQngACFHrUfPR/298Tn75Z3jgofeHQOddIH6OxBwB6EEwytZUyGcQ1DrBINDAVyRyAgsXkjdjtRCl7gIqQlybVzAoE3pmkG8fEDwbJS9skA8n/SnOv+gvROB+FuYstsCPYNApBxr+ZAv3Kdxs+u4gFGK/9J+A6l3oBGrdx/nAAAAAElFTkSuQmCC\"},\"8e6e\":function(e,t,a){var r=a(\"5ca1\"),s=a(\"990b\"),i=a(\"6821\"),n=a(\"11e9\"),o=a(\"f1ae\");r(r.S,\"Object\",{getOwnPropertyDescriptors:function(e){var t,a,r=i(e),c=n.f,l=s(r),u={},d=0;while(l.length>d)a=c(r,t=l[d++]),void 0!==a&&o(u,t,a);return u}})},9054:function(e,t,a){\"use strict\";a(\"66db\")},\"990b\":function(e,t,a){var r=a(\"9093\"),s=a(\"2621\"),i=a(\"cb7c\"),n=a(\"7726\").Reflect;e.exports=n&&n.ownKeys||function(e){var t=r.f(i(e)),a=s.f;return a?t.concat(a(e)):t}},a739:function(e,t,a){\"use strict\";a(\"efb2\")},c4dc:function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAACcklEQVQ4T62Uv09UQRDHZ/ZB7l2D0QTFAhNj4h8AGhMaxR+JhZVCxMbEwkaNWniy84jeSu7eLmAhxtCaWCgCVhYWRIkNjcI/oIkJMdFAwBiKe0Dejhk95DjluILt3tv5fmbnO7OLsMMLd5gHNYEDAwNd3vtbAHCknPijUmq4t7d3YquDbAVEa+0IIl4EAMfMkwJAxDMAoJn5BRHdAACuBv8X6Jy7CgD9QRB05HK5L5WioaGhg2maTnvvoyiKntYFtNZ+YuZYBMVisVMp9UiE3vvbfX19U3EcX1FKkdb68LbAfD7fks1mv3nv966uri5mMpnviPhYhMx8c2VlpQUA9oRhuJAkyT5jzHwl9J+SC4VCa0NDw1ySJFlm9mEYLjPzaREppSZLpVITIqowDEtJkrQaY77WBBpjJHgxTdPzUp619h4i5ssio7UuiA1BEEwkSdJsjPE1gbJprX0IAMdmZ2dPjI+Pp865A/Jfaz3X3d0dtLW1vQeAaSK6u62HEmCMacpkMh8A4DUR3akUSTJEPLe0tHR0cHBwuSbQOTcCAGdl5Jh5FyLuZuYeInpZPvklRHzOzD8Q8eefPvEbIrq+Dv7blDiOm5VS8wJAxKQccIiZHyBiR7nL01IAIn4uf4eIOCoTEUXRwu/hXyfHcXxcKTWqtd5fWYZzrihJyjdlTGtNVfsyYj1RFImvG0Br7TUAuEBEpyoF0oT29vYxmZqZmZkuaVKVp28B4BURiV0bQOfcE2ZOiUgeg7qXtXYYEQOttdztTcB3zDzV2Nj4rG4aAKytrV1GxE6t9cnqksXs+5VJ6gRLp/uJyGwC1ineNmzHX+xfYMQWJNiuJSEAAAAASUVORK5CYII=\"},c743:function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAB6UlEQVQ4T83UP2gUURAG8O/bBblWDFhoo4IQkICNYCtGESuLQCoVrAWxyL7ZQ+5OuZ3d49IoWEjUQtMIgopRUIw2IgQLIYWgxkJEsBTEveJ2R1Yukjsu90dSuNWyb/nxzcx7j9jih1vsYWRQVfeSPG5mEyTX0jR9VKvVfvYGGgpWKpVtpVLpGoDTJN+Y2RcApwDcFJGLY4NxHN83sz2+78/Mzc2tqWpAUkgeDYLg7VhgHMcnACxmWTZZLpe/R1F0zvO8eZLHgiBYUdWDJGfTNL2yXv7AkuM4vm1mP0TkQpFEVVdJJs65u0mSHDKzZ8X3PM/Ph2F4p3gfBr40s0URWeiAL0h+zLJs2ff9G2amACZJfnbOXR4FLPq3KiLV4udGo7Evy7JbJHea2VURua6qT0k+cc4VgxuasEixS0RO9tuvSZLsNrNPeZ5PhWH4YSC4YZp/BtALNpvNiXa7vWRm70Xk7Pp63x72YvV6/YDv+5GZvQPwDcB+kmcAvG61WrPVavXXpmA/zPO8ZQAPAWwnuQPAVwD3nHOPAdjG9F0JB2DzIpKMcu7/gqp6hOSDzglYKcrsJBsZ6xqKql4iOeWcm/lXrAvs7PxXAJYATBebdtQyN+1hFEWHPc+bLm6VIAiej9KzsS6H/wL8DQwx7hXPVocqAAAAAElFTkSuQmCC\"},ce77:function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAA8klEQVQoU5WRMUrEQBSG/z8vIIIHWBRBvYA3EFu3DUnAWrs9gN5Ae6vdXpgJKVdrwQt4AUUhnmCLLTL8y8AGxmzlFDPw5nvfDP8jtqtt27O+7+8BTEkeSuoAvOR5/lAUxWfEGLemaa4keQAHQ3NyrkhWZVm+MhpDCB8JGI2Xkt7iC9umlZmd0zm3IHmTmL6rqjpxzv2QPB7qkhYR7hIDJK3rut733q8B7CWSjt57jf8ZQjg1s69xfcccAUkzkk8juIvwnORtctFLeiZ5DSBP6vOdNCT9SrrIsuwdwORPGv/KeTTBO5JTAEcAYt5LM3scJrgBzApzS4jh+3MAAAAASUVORK5CYII=\"},df95:function(e,t,a){\"use strict\";a(\"4ae1\")},e19b:function(e,t){e.exports=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAACHElEQVQ4T82UPYgTQRTH3zyJGURQBEEthICVYHEGBDEqYqkgiLFRbLX0RNiZZSGzhOzMkqBYKILYiJU5K4tDRA7hBAVTCVbiF2gjEUQkG9nMk4G9I2c2a4Qr3GbYN+/95v/emzcM1vlj68yDWYBMa33UHSylfAYAVCSiENhoNDZyzh8AQCWDvE+S5GwYhr+mQacC6/X6hmq1eo+INidJUncAzvkCY+xHr9e70O12R3nQaUCX5m0A2DMcDk8opRIXrJTaVC6XHwHAWynlpbz0c4Fa6w4A1Pr9/vFOp/NzXIkxZgsRPQaAZSnl1T9VTgC11g0AOM0YOyKE+J6XVhRF2xHxKRE9lFKG4z5rgFrrecbYRWvtYd/3vxZ1M47jXdZa1/VbUsrrK76rwGazWSmVSi/SNN0fBMHnWe5nu92upGnaG41Gc0EQfHQxq0BjzG4iesUYW2SM3fc870kR1BhzypUGAE4OBoO5MAw/rQG6nyiK9iLiNQBYFELccDZjjCv8uayjd4UQN509juMGER201l7xff/NRMorBmOMq8eHMeCSU+z2iei8EOLYGHCrEGJ+alMyRRNARFRuz1qr/gugIKIdUsrLmeKlPIVa6zsA8E5KqQtTbrVaOxHxJQC8Zoy5R6CGiGeylBfchBARB4B9iHjA87wvhcBsZrdxzg8BAGagZbciYi0LtkmSPFdKffvr6M1yoYt8Znlg/+mM38eT/xUrmvW1AAAAAElFTkSuQmCC\"},efb2:function(e,t,a){},f1ae:function(e,t,a){\"use strict\";var r=a(\"86cc\"),s=a(\"4630\");e.exports=function(e,t,a){t in e?r.f(e,t,s(0,a)):e[t]=a}},fa7d:function(module,__webpack_exports__,__webpack_require__){\"use strict\";__webpack_require__.d(__webpack_exports__,\"a\",(function(){return timestampFormat}));var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(\"a481\"),core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0__),core_js_modules_es6_regexp_to_string__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(\"6b54\"),core_js_modules_es6_regexp_to_string__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(core_js_modules_es6_regexp_to_string__WEBPACK_IMPORTED_MODULE_1__),core_js_modules_es6_regexp_match__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(\"4917\"),core_js_modules_es6_regexp_match__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(core_js_modules_es6_regexp_match__WEBPACK_IMPORTED_MODULE_2__),core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(\"28a5\"),core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(core_js_modules_es6_regexp_split__WEBPACK_IMPORTED_MODULE_3__),core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(\"3b2b\"),core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(core_js_modules_es6_regexp_constructor__WEBPACK_IMPORTED_MODULE_4__);function getUrlParam(e,t){var a=new RegExp(\"(^|&)\"+t+\"=([^&]*)(&|$)\");if(e&&e.split(\"?\")[1]){var r=e.split(\"?\")[1].match(a);return null!=r?unescape(r[2]):null}}function replaceParamVal(url,paramName,replaceVal){var oUrl=url.toString(),re=eval(\"/(\"+paramName+\"=)([^&]*)/gi\"),nUrl=oUrl.replace(re,paramName+\"=\"+replaceVal);return nUrl}function timestampFormat(e){var t=Date.parse(e)/1e3;function a(e){return(1==String(e).length?\"0\":\"\")+e}var r=parseInt((new Date).getTime()/1e3),s=r-t,i=new Date(1e3*r),n=new Date(1e3*t),o=n.getFullYear(),c=n.getMonth()+1,l=n.getDate(),u=n.getHours(),d=n.getMinutes();if(s<60)return\"刚刚\";if(s<3600)return Math.floor(s/60)+\"分钟前\";if(i.getFullYear()==o&&i.getMonth()+1==c&&i.getDate()==l)return\"今天\"+a(u)+\":\"+a(d);var p=new Date(1e3*(r-86400));return p.getFullYear()==o&&p.getMonth()+1==c&&p.getDate()==l?\"昨天\"+a(u)+\":\"+a(d):o+\"年\"+a(c)+\"月\"+a(l)+\"日 \"+a(u)+\":\"+a(d)}},fbfb:function(e,t,a){},fc11:function(e,t,a){\"use strict\";function r(e,t,a){return t in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}a.d(t,\"a\",(function(){return r}))}}]);"
  },
  {
    "path": "public/js/chunk-vendors.26b96680.js",
    "content": "(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-vendors\"],{\"0081\":function(e,t){function n(e){const t=\"[A-Z_][A-Z0-9_.]*\",n={$pattern:t,keyword:\"HEADER ENDSEC DATA\"},i={className:\"meta\",begin:\"ISO-10303-21;\",relevance:10},r={className:\"meta\",begin:\"END-ISO-10303-21;\",relevance:10};return{name:\"STEP Part 21\",aliases:[\"p21\",\"step\",\"stp\"],case_insensitive:!0,keywords:n,contains:[i,r,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.COMMENT(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.C_NUMBER_MODE,e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),{className:\"string\",begin:\"'\",end:\"'\"},{className:\"symbol\",variants:[{begin:\"#\",end:\"\\\\d+\",illegal:\"\\\\W\"}]}]}}e.exports=n},\"0118\":function(e,t){function n(e){return{name:\"Node REPL\",contains:[{className:\"meta\",starts:{end:/ |$/,starts:{end:\"$\",subLanguage:\"javascript\"}},variants:[{begin:/^>(?=[ ]|$)/},{begin:/^\\.\\.\\.(?=[ ]|$)/}]}]}}e.exports=n},\"0122\":function(e,t,n){\"use strict\";function i(e){return i=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},i(e)}n.d(t,\"a\",(function(){return i}))},\"014b\":function(e,t,n){\"use strict\";var i=n(\"e53d\"),r=n(\"07e3\"),a=n(\"8e60\"),o=n(\"63b6\"),s=n(\"9138\"),l=n(\"ebfd\").KEY,c=n(\"294c\"),u=n(\"dbdb\"),d=n(\"45f2\"),p=n(\"62a0\"),h=n(\"5168\"),f=n(\"ccb9\"),_=n(\"6718\"),m=n(\"47ee\"),g=n(\"9003\"),b=n(\"e4ae\"),v=n(\"f772\"),E=n(\"241e\"),y=n(\"36c3\"),S=n(\"1bc3\"),C=n(\"aebd\"),T=n(\"a159\"),x=n(\"0395\"),w=n(\"bf0b\"),O=n(\"9aa9\"),N=n(\"d9f6\"),R=n(\"c3a1\"),k=w.f,A=N.f,D=x.f,I=i.Symbol,M=i.JSON,L=M&&M.stringify,P=\"prototype\",F=h(\"_hidden\"),B=h(\"toPrimitive\"),U={}.propertyIsEnumerable,$=u(\"symbol-registry\"),j=u(\"symbols\"),G=u(\"op-symbols\"),q=Object[P],H=\"function\"==typeof I&&!!O.f,V=i.QObject,z=!V||!V[P]||!V[P].findChild,Y=a&&c((function(){return 7!=T(A({},\"a\",{get:function(){return A(this,\"a\",{value:7}).a}})).a}))?function(e,t,n){var i=k(q,t);i&&delete q[t],A(e,t,n),i&&e!==q&&A(q,t,i)}:A,W=function(e){var t=j[e]=T(I[P]);return t._k=e,t},K=H&&\"symbol\"==typeof I.iterator?function(e){return\"symbol\"==typeof e}:function(e){return e instanceof I},Q=function(e,t,n){return e===q&&Q(G,t,n),b(e),t=S(t,!0),b(n),r(j,t)?(n.enumerable?(r(e,F)&&e[F][t]&&(e[F][t]=!1),n=T(n,{enumerable:C(0,!1)})):(r(e,F)||A(e,F,C(1,{})),e[F][t]=!0),Y(e,t,n)):A(e,t,n)},X=function(e,t){b(e);var n,i=m(t=y(t)),r=0,a=i.length;while(a>r)Q(e,n=i[r++],t[n]);return e},Z=function(e,t){return void 0===t?T(e):X(T(e),t)},J=function(e){var t=U.call(this,e=S(e,!0));return!(this===q&&r(j,e)&&!r(G,e))&&(!(t||!r(this,e)||!r(j,e)||r(this,F)&&this[F][e])||t)},ee=function(e,t){if(e=y(e),t=S(t,!0),e!==q||!r(j,t)||r(G,t)){var n=k(e,t);return!n||!r(j,t)||r(e,F)&&e[F][t]||(n.enumerable=!0),n}},te=function(e){var t,n=D(y(e)),i=[],a=0;while(n.length>a)r(j,t=n[a++])||t==F||t==l||i.push(t);return i},ne=function(e){var t,n=e===q,i=D(n?G:y(e)),a=[],o=0;while(i.length>o)!r(j,t=i[o++])||n&&!r(q,t)||a.push(j[t]);return a};H||(I=function(){if(this instanceof I)throw TypeError(\"Symbol is not a constructor!\");var e=p(arguments.length>0?arguments[0]:void 0),t=function(n){this===q&&t.call(G,n),r(this,F)&&r(this[F],e)&&(this[F][e]=!1),Y(this,e,C(1,n))};return a&&z&&Y(q,e,{configurable:!0,set:t}),W(e)},s(I[P],\"toString\",(function(){return this._k})),w.f=ee,N.f=Q,n(\"6abf\").f=x.f=te,n(\"355d\").f=J,O.f=ne,a&&!n(\"b8e3\")&&s(q,\"propertyIsEnumerable\",J,!0),f.f=function(e){return W(h(e))}),o(o.G+o.W+o.F*!H,{Symbol:I});for(var ie=\"hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables\".split(\",\"),re=0;ie.length>re;)h(ie[re++]);for(var ae=R(h.store),oe=0;ae.length>oe;)_(ae[oe++]);o(o.S+o.F*!H,\"Symbol\",{for:function(e){return r($,e+=\"\")?$[e]:$[e]=I(e)},keyFor:function(e){if(!K(e))throw TypeError(e+\" is not a symbol!\");for(var t in $)if($[t]===e)return t},useSetter:function(){z=!0},useSimple:function(){z=!1}}),o(o.S+o.F*!H,\"Object\",{create:Z,defineProperty:Q,defineProperties:X,getOwnPropertyDescriptor:ee,getOwnPropertyNames:te,getOwnPropertySymbols:ne});var se=c((function(){O.f(1)}));o(o.S+o.F*se,\"Object\",{getOwnPropertySymbols:function(e){return O.f(E(e))}}),M&&o(o.S+o.F*(!H||c((function(){var e=I();return\"[null]\"!=L([e])||\"{}\"!=L({a:e})||\"{}\"!=L(Object(e))}))),\"JSON\",{stringify:function(e){var t,n,i=[e],r=1;while(arguments.length>r)i.push(arguments[r++]);if(n=t=i[1],(v(t)||void 0!==e)&&!K(e))return g(t)||(t=function(e,t){if(\"function\"==typeof n&&(t=n.call(this,e,t)),!K(t))return t}),i[1]=t,L.apply(M,i)}}),I[P][B]||n(\"35e8\")(I[P],B,I[P].valueOf),d(I,\"Symbol\"),d(Math,\"Math\",!0),d(i.JSON,\"JSON\",!0)},\"01ac\":function(e,t){function n(e){const t=\"\\\\d(_|\\\\d)*\",n=\"[eE][-+]?\"+t,i=t+\"(\\\\.\"+t+\")?(\"+n+\")?\",r=\"\\\\w+\",a=t+\"#\"+r+\"(\\\\.\"+r+\")?#(\"+n+\")?\",o=\"\\\\b(\"+a+\"|\"+i+\")\",s=\"[A-Za-z](_?[A-Za-z0-9.])*\",l=\"[]\\\\{\\\\}%#'\\\"\",c=e.COMMENT(\"--\",\"$\"),u={begin:\"\\\\s+:\\\\s+\",end:\"\\\\s*(:=|;|\\\\)|=>|$)\",illegal:l,contains:[{beginKeywords:\"loop for declare others\",endsParent:!0},{className:\"keyword\",beginKeywords:\"not null constant access function procedure in out aliased exception\"},{className:\"type\",begin:s,endsParent:!0,relevance:0}]};return{name:\"Ada\",case_insensitive:!0,keywords:{keyword:\"abort else new return abs elsif not reverse abstract end accept entry select access exception of separate aliased exit or some all others subtype and for out synchronized array function overriding at tagged generic package task begin goto pragma terminate body private then if procedure type case in protected constant interface is raise use declare range delay limited record when delta loop rem while digits renames with do mod requeue xor\",literal:\"True False\"},contains:[c,{className:\"string\",begin:/\"/,end:/\"/,contains:[{begin:/\"\"/,relevance:0}]},{className:\"string\",begin:/'.'/},{className:\"number\",begin:o,relevance:0},{className:\"symbol\",begin:\"'\"+s},{className:\"title\",begin:\"(\\\\bwith\\\\s+)?(\\\\bprivate\\\\s+)?\\\\bpackage\\\\s+(\\\\bbody\\\\s+)?\",end:\"(is|$)\",keywords:\"package body\",excludeBegin:!0,excludeEnd:!0,illegal:l},{begin:\"(\\\\b(with|overriding)\\\\s+)?\\\\b(function|procedure)\\\\s+\",end:\"(\\\\bis|\\\\bwith|\\\\brenames|\\\\)\\\\s*;)\",keywords:\"overriding function procedure with is renames return\",returnBegin:!0,contains:[c,{className:\"title\",begin:\"(\\\\bwith\\\\s+)?\\\\b(function|procedure)\\\\s+\",end:\"(\\\\(|\\\\s+|$)\",excludeBegin:!0,excludeEnd:!0,illegal:l},u,{className:\"type\",begin:\"\\\\breturn\\\\s+\",end:\"(\\\\s+|;|$)\",keywords:\"return\",excludeBegin:!0,excludeEnd:!0,endsParent:!0,illegal:l}]},{className:\"type\",begin:\"\\\\b(sub)?type\\\\s+\",end:\"\\\\s+\",keywords:\"type\",excludeBegin:!0,illegal:l},u]}}e.exports=n},\"01f9\":function(e,t,n){\"use strict\";var i=n(\"2d00\"),r=n(\"5ca1\"),a=n(\"2aba\"),o=n(\"32e9\"),s=n(\"84f2\"),l=n(\"41a0\"),c=n(\"7f20\"),u=n(\"38fd\"),d=n(\"2b4c\")(\"iterator\"),p=!([].keys&&\"next\"in[].keys()),h=\"@@iterator\",f=\"keys\",_=\"values\",m=function(){return this};e.exports=function(e,t,n,g,b,v,E){l(n,t,g);var y,S,C,T=function(e){if(!p&&e in N)return N[e];switch(e){case f:return function(){return new n(this,e)};case _:return function(){return new n(this,e)}}return function(){return new n(this,e)}},x=t+\" Iterator\",w=b==_,O=!1,N=e.prototype,R=N[d]||N[h]||b&&N[b],k=R||T(b),A=b?w?T(\"entries\"):k:void 0,D=\"Array\"==t&&N.entries||R;if(D&&(C=u(D.call(new e)),C!==Object.prototype&&C.next&&(c(C,x,!0),i||\"function\"==typeof C[d]||o(C,d,m))),w&&R&&R.name!==_&&(O=!0,k=function(){return R.call(this)}),i&&!E||!p&&!O&&N[d]||o(N,d,k),s[t]=k,s[x]=m,b)if(y={values:w?k:T(_),keys:v?k:T(f),entries:A},E)for(S in y)S in N||a(N,S,y[S]);else r(r.P+r.F*(p||O),t,y);return y}},\"0209\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(e){return r(\"(\",e,\")?\")}function r(...e){const t=e.map(e=>n(e)).join(\"\");return t}function a(e){const t=e.COMMENT(\"//\",\"$\",{contains:[{begin:/\\\\\\n/}]}),n=\"decltype\\\\(auto\\\\)\",r=\"[a-zA-Z_]\\\\w*::\",a=\"<[^<>]+>\",o=\"(\"+n+\"|\"+i(r)+\"[a-zA-Z_]\\\\w*\"+i(a)+\")\",s={className:\"keyword\",begin:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},l=\"\\\\\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\\\S)\",c={className:\"string\",variants:[{begin:'(u8?|U|L)?\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},{begin:\"(u8?|U|L)?'(\"+l+\"|.)\",end:\"'\",illegal:\".\"},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R\"([^()\\\\ ]{0,16})\\(/,end:/\\)([^()\\\\ ]{0,16})\"/})]},u={className:\"number\",variants:[{begin:\"\\\\b(0b[01']+)\"},{begin:\"(-?)\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)\"},{begin:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],relevance:0},d={className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{\"meta-keyword\":\"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(c,{className:\"meta-string\"}),{className:\"meta-string\",begin:/<.*?>/,end:/$/,illegal:\"\\\\n\"},t,e.C_BLOCK_COMMENT_MODE]},p={className:\"title\",begin:i(r)+e.IDENT_RE,relevance:0},h=i(r)+e.IDENT_RE+\"\\\\s*\\\\(\",f={keyword:\"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const 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 asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override 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 and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq\",built_in:\"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future 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 _Bool complex _Complex imaginary _Imaginary\",literal:\"true false nullptr NULL\"},_=[d,s,t,e.C_BLOCK_COMMENT_MODE,u,c],m={variants:[{begin:/=/,end:/;/},{begin:/\\(/,end:/\\)/},{beginKeywords:\"new throw return else\",end:/;/}],keywords:f,contains:_.concat([{begin:/\\(/,end:/\\)/,keywords:f,contains:_.concat([\"self\"]),relevance:0}]),relevance:0},g={className:\"function\",begin:\"(\"+o+\"[\\\\*&\\\\s]+)+\"+h,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:f,illegal:/[^\\w\\s\\*&:<>.]/,contains:[{begin:n,keywords:f,relevance:0},{begin:h,returnBegin:!0,contains:[p],relevance:0},{className:\"params\",begin:/\\(/,end:/\\)/,keywords:f,relevance:0,contains:[t,e.C_BLOCK_COMMENT_MODE,c,u,s,{begin:/\\(/,end:/\\)/,keywords:f,relevance:0,contains:[\"self\",t,e.C_BLOCK_COMMENT_MODE,c,u,s]}]},s,t,e.C_BLOCK_COMMENT_MODE,d]};return{name:\"C++\",aliases:[\"cc\",\"c++\",\"h++\",\"hpp\",\"hh\",\"hxx\",\"cxx\"],keywords:f,illegal:\"</\",contains:[].concat(m,g,_,[d,{begin:\"\\\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",end:\">\",keywords:f,contains:[\"self\",s]},{begin:e.IDENT_RE+\"::\",keywords:f},{className:\"class\",beginKeywords:\"enum class struct union\",end:/[{;:<>=]/,contains:[{beginKeywords:\"final class struct\"},e.TITLE_MODE]}]),exports:{preprocessor:d,strings:c,keywords:f}}}e.exports=a},\"0215\":function(e,t){function n(e){const t={begin:\"<\",end:\">\",contains:[e.inherit(e.TITLE_MODE,{begin:/'[a-zA-Z0-9_]+/})]};return{name:\"F#\",aliases:[\"fs\"],keywords:\"abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield\",illegal:/\\/\\*/,contains:[{className:\"keyword\",begin:/\\b(yield|return|let|do)!/},{className:\"string\",begin:'@\"',end:'\"',contains:[{begin:'\"\"'}]},{className:\"string\",begin:'\"\"\"',end:'\"\"\"'},e.COMMENT(\"\\\\(\\\\*(\\\\s)\",\"\\\\*\\\\)\",{contains:[\"self\"]}),{className:\"class\",beginKeywords:\"type\",end:\"\\\\(|=|$\",excludeEnd:!0,contains:[e.UNDERSCORE_TITLE_MODE,t]},{className:\"meta\",begin:\"\\\\[<\",end:\">\\\\]\",relevance:10},{className:\"symbol\",begin:\"\\\\B('[A-Za-z])\\\\b\",contains:[e.BACKSLASH_ESCAPE]},e.C_LINE_COMMENT_MODE,e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),e.C_NUMBER_MODE]}}e.exports=n},\"0290\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(e){const t={begin:\"^'{3,}[ \\\\t]*$\",relevance:10},n=[{begin:/\\\\[*_`]/},{begin:/\\\\\\\\\\*{2}[^\\n]*?\\*{2}/},{begin:/\\\\\\\\_{2}[^\\n]*_{2}/},{begin:/\\\\\\\\`{2}[^\\n]*`{2}/},{begin:/[:;}][*_`](?![*_`])/}],r=[{className:\"strong\",begin:/\\*{2}([^\\n]+?)\\*{2}/},{className:\"strong\",begin:i(/\\*\\*/,/((\\*(?!\\*)|\\\\[^\\n]|[^*\\n\\\\])+\\n)+/,/(\\*(?!\\*)|\\\\[^\\n]|[^*\\n\\\\])*/,/\\*\\*/),relevance:0},{className:\"strong\",begin:/\\B\\*(\\S|\\S[^\\n]*?\\S)\\*(?!\\w)/},{className:\"strong\",begin:/\\*[^\\s]([^\\n]+\\n)+([^\\n]+)\\*/}],a=[{className:\"emphasis\",begin:/_{2}([^\\n]+?)_{2}/},{className:\"emphasis\",begin:i(/__/,/((_(?!_)|\\\\[^\\n]|[^_\\n\\\\])+\\n)+/,/(_(?!_)|\\\\[^\\n]|[^_\\n\\\\])*/,/__/),relevance:0},{className:\"emphasis\",begin:/\\b_(\\S|\\S[^\\n]*?\\S)_(?!\\w)/},{className:\"emphasis\",begin:/_[^\\s]([^\\n]+\\n)+([^\\n]+)_/},{className:\"emphasis\",begin:\"\\\\B'(?!['\\\\s])\",end:\"(\\\\n{2}|')\",contains:[{begin:\"\\\\\\\\'\\\\w\",relevance:0}],relevance:0}],o={className:\"symbol\",begin:\"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\\\s+\",relevance:10},s={className:\"bullet\",begin:\"^(\\\\*+|-+|\\\\.+|[^\\\\n]+?::)\\\\s+\"};return{name:\"AsciiDoc\",aliases:[\"adoc\"],contains:[e.COMMENT(\"^/{4,}\\\\n\",\"\\\\n/{4,}$\",{relevance:10}),e.COMMENT(\"^//\",\"$\",{relevance:0}),{className:\"title\",begin:\"^\\\\.\\\\w.*$\"},{begin:\"^[=\\\\*]{4,}\\\\n\",end:\"\\\\n^[=\\\\*]{4,}$\",relevance:10},{className:\"section\",relevance:10,variants:[{begin:\"^(={1,6})[ \\t].+?([ \\t]\\\\1)?$\"},{begin:\"^[^\\\\[\\\\]\\\\n]+?\\\\n[=\\\\-~\\\\^\\\\+]{2,}$\"}]},{className:\"meta\",begin:\"^:.+?:\",end:\"\\\\s\",excludeEnd:!0,relevance:10},{className:\"meta\",begin:\"^\\\\[.+?\\\\]$\",relevance:0},{className:\"quote\",begin:\"^_{4,}\\\\n\",end:\"\\\\n_{4,}$\",relevance:10},{className:\"code\",begin:\"^[\\\\-\\\\.]{4,}\\\\n\",end:\"\\\\n[\\\\-\\\\.]{4,}$\",relevance:10},{begin:\"^\\\\+{4,}\\\\n\",end:\"\\\\n\\\\+{4,}$\",contains:[{begin:\"<\",end:\">\",subLanguage:\"xml\",relevance:0}],relevance:10},s,o,...n,...r,...a,{className:\"string\",variants:[{begin:\"``.+?''\"},{begin:\"`.+?'\"}]},{className:\"code\",begin:/`{2}/,end:/(\\n{2}|`{2})/},{className:\"code\",begin:\"(`.+?`|\\\\+.+?\\\\+)\",relevance:0},{className:\"code\",begin:\"^[ \\\\t]\",end:\"$\",relevance:0},t,{begin:\"(link:)?(http|https|ftp|file|irc|image:?):\\\\S+?\\\\[[^[]*?\\\\]\",returnBegin:!0,contains:[{begin:\"(link|image:?):\",relevance:0},{className:\"link\",begin:\"\\\\w\",end:\"[^\\\\[]+\",relevance:0},{className:\"string\",begin:\"\\\\[\",end:\"\\\\]\",excludeBegin:!0,excludeEnd:!0,relevance:0}],relevance:10}]}}e.exports=r},\"02ac\":function(e,t){function n(e){const t={className:\"string\",begin:\"\\\\[\\n(multipart)?\",end:\"\\\\]\\n\"},n={className:\"string\",begin:\"\\\\d{4}-\\\\d{2}-\\\\d{2}(\\\\s+)\\\\d{2}:\\\\d{2}:\\\\d{2}.\\\\d+Z\"},i={className:\"string\",begin:\"(\\\\+|-)\\\\d+\"},r={className:\"keyword\",relevance:10,variants:[{begin:\"^(test|testing|success|successful|failure|error|skip|xfail|uxsuccess)(:?)\\\\s+(test)?\"},{begin:\"^progress(:?)(\\\\s+)?(pop|push)?\"},{begin:\"^tags:\"},{begin:\"^time:\"}]};return{name:\"SubUnit\",case_insensitive:!0,contains:[t,n,i,r]}}e.exports=n},\"02c4\":function(e,t){function n(e){const t={className:\"keyword\",begin:\"\\\\$(f[asn]|t|vp[rtd]|children)\"},n={className:\"literal\",begin:\"false|true|PI|undef\"},i={className:\"number\",begin:\"\\\\b\\\\d+(\\\\.\\\\d+)?(e-?\\\\d+)?\",relevance:0},r=e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),a={className:\"meta\",keywords:{\"meta-keyword\":\"include use\"},begin:\"include|use <\",end:\">\"},o={className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",contains:[\"self\",i,r,t,n]},s={begin:\"[*!#%]\",relevance:0},l={className:\"function\",beginKeywords:\"module function\",end:/=|\\{/,contains:[o,e.UNDERSCORE_TITLE_MODE]};return{name:\"OpenSCAD\",aliases:[\"scad\"],keywords:{keyword:\"function module include use for intersection_for if else \\\\%\",literal:\"false true PI undef\",built_in:\"circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,i,a,r,t,s,l]}}e.exports=n},\"0395\":function(e,t,n){var i=n(\"36c3\"),r=n(\"6abf\").f,a={}.toString,o=\"object\"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(e){try{return r(e)}catch(t){return o.slice()}};e.exports.f=function(e){return o&&\"[object Window]\"==a.call(e)?s(e):r(i(e))}},\"0481\":function(e,t){function n(e){const t={begin:\"`[\\\\s\\\\S]\"};return{name:\"AutoHotkey\",case_insensitive:!0,aliases:[\"ahk\"],keywords:{keyword:\"Break Continue Critical Exit ExitApp Gosub Goto New OnExit Pause return SetBatchLines SetTimer Suspend Thread Throw Until ahk_id ahk_class ahk_pid ahk_exe ahk_group\",literal:\"true false NOT AND OR\",built_in:\"ComSpec Clipboard ClipboardAll ErrorLevel\"},contains:[t,e.inherit(e.QUOTE_STRING_MODE,{contains:[t]}),e.COMMENT(\";\",\"$\",{relevance:0}),e.C_BLOCK_COMMENT_MODE,{className:\"number\",begin:e.NUMBER_RE,relevance:0},{className:\"variable\",begin:\"%[a-zA-Z0-9#_$@]+%\"},{className:\"built_in\",begin:\"^\\\\s*\\\\w+\\\\s*(,|%)\"},{className:\"title\",variants:[{begin:'^[^\\\\n\";]+::(?!=)'},{begin:'^[^\\\\n\";]+:(?!=)',relevance:0}]},{className:\"meta\",begin:\"^\\\\s*#\\\\w+\",end:\"$\",relevance:0},{className:\"built_in\",begin:\"A_[a-zA-Z0-9]+\"},{begin:\",\\\\s*,\"}]}}e.exports=n},\"04a8\":function(e,t){function n(e){const t={begin:/[\\w-]+ *=/,returnBegin:!0,relevance:0,contains:[{className:\"attr\",begin:/[\\w-]+/}]},n={className:\"params\",begin:/\\(/,end:/\\)/,contains:[t],relevance:0},i={className:\"function\",begin:/:[\\w\\-.]+/,relevance:0},r={className:\"string\",begin:/\\B([\\/.])[\\w\\-.\\/=]+/},a={className:\"params\",begin:/--[\\w\\-=\\/]+/};return{name:\"JBoss CLI\",aliases:[\"wildfly-cli\"],keywords:{$pattern:\"[a-z-]+\",keyword:\"alias batch cd clear command connect connection-factory connection-info data-source deploy deployment-info deployment-overlay echo echo-dmr help history if jdbc-driver-info jms-queue|20 jms-topic|20 ls patch pwd quit read-attribute read-operation reload rollout-plan run-batch set shutdown try unalias undeploy unset version xa-data-source\",literal:\"true false\"},contains:[e.HASH_COMMENT_MODE,e.QUOTE_STRING_MODE,a,i,r,n]}}e.exports=n},\"04b0\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(e){const t={begin:/<\\/?[A-Za-z_]/,end:\">\",subLanguage:\"xml\",relevance:0},n={begin:\"^[-\\\\*]{3,}\",end:\"$\"},r={className:\"code\",variants:[{begin:\"(`{3,})[^`](.|\\\\n)*?\\\\1`*[ ]*\"},{begin:\"(~{3,})[^~](.|\\\\n)*?\\\\1~*[ ]*\"},{begin:\"```\",end:\"```+[ ]*$\"},{begin:\"~~~\",end:\"~~~+[ ]*$\"},{begin:\"`.+?`\"},{begin:\"(?=^( {4}|\\\\t))\",contains:[{begin:\"^( {4}|\\\\t)\",end:\"(\\\\n)$\"}],relevance:0}]},a={className:\"bullet\",begin:\"^[ \\t]*([*+-]|(\\\\d+\\\\.))(?=\\\\s+)\",end:\"\\\\s+\",excludeEnd:!0},o={begin:/^\\[[^\\n]+\\]:/,returnBegin:!0,contains:[{className:\"symbol\",begin:/\\[/,end:/\\]/,excludeBegin:!0,excludeEnd:!0},{className:\"link\",begin:/:\\s*/,end:/$/,excludeBegin:!0}]},s=/[A-Za-z][A-Za-z0-9+.-]*/,l={variants:[{begin:/\\[.+?\\]\\[.*?\\]/,relevance:0},{begin:/\\[.+?\\]\\(((data|javascript|mailto):|(?:http|ftp)s?:\\/\\/).*?\\)/,relevance:2},{begin:i(/\\[.+?\\]\\(/,s,/:\\/\\/.*?\\)/),relevance:2},{begin:/\\[.+?\\]\\([./?&#].*?\\)/,relevance:1},{begin:/\\[.+?\\]\\(.*?\\)/,relevance:0}],returnBegin:!0,contains:[{className:\"string\",relevance:0,begin:\"\\\\[\",end:\"\\\\]\",excludeBegin:!0,returnEnd:!0},{className:\"link\",relevance:0,begin:\"\\\\]\\\\(\",end:\"\\\\)\",excludeBegin:!0,excludeEnd:!0},{className:\"symbol\",relevance:0,begin:\"\\\\]\\\\[\",end:\"\\\\]\",excludeBegin:!0,excludeEnd:!0}]},c={className:\"strong\",contains:[],variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\\*{2}/,end:/\\*{2}/}]},u={className:\"emphasis\",contains:[],variants:[{begin:/\\*(?!\\*)/,end:/\\*/},{begin:/_(?!_)/,end:/_/,relevance:0}]};c.contains.push(u),u.contains.push(c);let d=[t,l];c.contains=c.contains.concat(d),u.contains=u.contains.concat(d),d=d.concat(c,u);const p={className:\"section\",variants:[{begin:\"^#{1,6}\",end:\"$\",contains:d},{begin:\"(?=^.+?\\\\n[=-]{2,}$)\",contains:[{begin:\"^[=-]*$\"},{begin:\"^\",end:\"\\\\n\",contains:d}]}]},h={className:\"quote\",begin:\"^>\\\\s+\",contains:d,end:\"$\"};return{name:\"Markdown\",aliases:[\"md\",\"mkdown\",\"mkd\"],contains:[p,t,a,c,u,h,r,n,l,o]}}e.exports=r},\"06b4\":function(e,t){function n(e){return{name:\"Test Anything Protocol\",case_insensitive:!0,contains:[e.HASH_COMMENT_MODE,{className:\"meta\",variants:[{begin:\"^TAP version (\\\\d+)$\"},{begin:\"^1\\\\.\\\\.(\\\\d+)$\"}]},{begin:/---$/,end:\"\\\\.\\\\.\\\\.$\",subLanguage:\"yaml\",relevance:0},{className:\"number\",begin:\" (\\\\d+) \"},{className:\"symbol\",variants:[{begin:\"^ok\"},{begin:\"^not ok\"}]}]}}e.exports=n},\"074e\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(e){const t={className:\"params\",begin:\"\\\\(\",end:\"\\\\)\"},n=/(_[a-z_\\d]+)?/,r=/([de][+-]?\\d+)?/,a={className:\"number\",variants:[{begin:i(/\\b\\d+/,/\\.(\\d*)/,r,n)},{begin:i(/\\b\\d+/,r,n)},{begin:i(/\\.\\d+/,r,n)}],relevance:0},o={literal:\".False. .True.\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_of acosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here\"};return{name:\"IRPF90\",case_insensitive:!0,keywords:o,illegal:/\\/\\*/,contains:[e.inherit(e.APOS_STRING_MODE,{className:\"string\",relevance:0}),e.inherit(e.QUOTE_STRING_MODE,{className:\"string\",relevance:0}),{className:\"function\",beginKeywords:\"subroutine function program\",illegal:\"[${=\\\\n]\",contains:[e.UNDERSCORE_TITLE_MODE,t]},e.COMMENT(\"!\",\"$\",{relevance:0}),e.COMMENT(\"begin_doc\",\"end_doc\",{relevance:10}),a]}}e.exports=r},\"07e3\":function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},\"097d\":function(e,t,n){\"use strict\";var i=n(\"5ca1\"),r=n(\"8378\"),a=n(\"7726\"),o=n(\"ebd6\"),s=n(\"bcaa\");i(i.P+i.R,\"Promise\",{finally:function(e){var t=o(this,r.Promise||a.Promise),n=\"function\"==typeof e;return this.then(n?function(n){return s(t,e()).then((function(){return n}))}:e,n?function(n){return s(t,e()).then((function(){throw n}))}:e)}})},\"0a06\":function(e,t,n){\"use strict\";var i=n(\"c532\"),r=n(\"30b5\"),a=n(\"f6b4\"),o=n(\"5270\"),s=n(\"4a7b\");function l(e){this.defaults=e,this.interceptors={request:new a,response:new a}}l.prototype.request=function(e){\"string\"===typeof e?(e=arguments[1]||{},e.url=arguments[0]):e=e||{},e=s(this.defaults,e),e.method?e.method=e.method.toLowerCase():this.defaults.method?e.method=this.defaults.method.toLowerCase():e.method=\"get\";var t=[o,void 0],n=Promise.resolve(e);this.interceptors.request.forEach((function(e){t.unshift(e.fulfilled,e.rejected)})),this.interceptors.response.forEach((function(e){t.push(e.fulfilled,e.rejected)}));while(t.length)n=n.then(t.shift(),t.shift());return n},l.prototype.getUri=function(e){return e=s(this.defaults,e),r(e.url,e.params,e.paramsSerializer).replace(/^\\?/,\"\")},i.forEach([\"delete\",\"get\",\"head\",\"options\"],(function(e){l.prototype[e]=function(t,n){return this.request(i.merge(n||{},{method:e,url:t}))}})),i.forEach([\"post\",\"put\",\"patch\"],(function(e){l.prototype[e]=function(t,n,r){return this.request(i.merge(r||{},{method:e,url:t,data:n}))}})),e.exports=l},\"0b22\":function(e,t){function n(e){const t={keyword:\"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune\",literal:\"true false iota nil\",built_in:\"append cap close complex copy imag len make new panic print println real recover delete\"};return{name:\"Go\",aliases:[\"golang\"],keywords:t,illegal:\"</\",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"string\",variants:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{begin:\"`\",end:\"`\"}]},{className:\"number\",variants:[{begin:e.C_NUMBER_RE+\"[i]\",relevance:1},e.C_NUMBER_MODE]},{begin:/:=/},{className:\"function\",beginKeywords:\"func\",end:\"\\\\s*(\\\\{|$)\",excludeEnd:!0,contains:[e.TITLE_MODE,{className:\"params\",begin:/\\(/,end:/\\)/,keywords:t,illegal:/[\"']/}]}]}}e.exports=n},\"0d58\":function(e,t,n){var i=n(\"ce10\"),r=n(\"e11e\");e.exports=Object.keys||function(e){return i(e,r)}},\"0df6\":function(e,t,n){\"use strict\";e.exports=function(e){return function(t){return e.apply(null,t)}}},\"0e15\":function(e,t,n){var i=n(\"597f\");e.exports=function(e,t,n){return void 0===n?i(e,t,!1):i(e,n,!1!==t)}},\"0f16\":function(e,t){function n(e){return{name:\"Mizar\",keywords:\"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity\",contains:[e.COMMENT(\"::\",\"$\")]}}e.exports=n},\"0fae\":function(e,t,n){},\"0faf\":function(e,t){function n(e){return{name:\"RenderMan RIB\",keywords:\"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd\",illegal:\"</\",contains:[e.HASH_COMMENT_MODE,e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}}e.exports=n},\"0fc9\":function(e,t,n){var i=n(\"3a38\"),r=Math.max,a=Math.min;e.exports=function(e,t){return e=i(e),e<0?r(e+t,0):a(e,t)}},1020:function(e,t){function n(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error(\"map is read-only\")}:e instanceof Set&&(e.add=e.clear=e.delete=function(){throw new Error(\"set is read-only\")}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach((function(t){var i=e[t];\"object\"!=typeof i||Object.isFrozen(i)||n(i)})),e}var i=n,r=n;i.default=r;class a{constructor(e){void 0===e.data&&(e.data={}),this.data=e.data}ignoreMatch(){this.ignore=!0}}function o(e){return e.replace(/&/g,\"&amp;\").replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\").replace(/\"/g,\"&quot;\").replace(/'/g,\"&#x27;\")}function s(e,...t){const n=Object.create(null);for(const i in e)n[i]=e[i];return t.forEach((function(e){for(const t in e)n[t]=e[t]})),n}const l=\"</span>\",c=e=>!!e.kind;class u{constructor(e,t){this.buffer=\"\",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){this.buffer+=o(e)}openNode(e){if(!c(e))return;let t=e.kind;e.sublanguage||(t=`${this.classPrefix}${t}`),this.span(t)}closeNode(e){c(e)&&(this.buffer+=l)}value(){return this.buffer}span(e){this.buffer+=`<span class=\"${e}\">`}}class d{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const t={kind:e,children:[]};this.add(t),this.stack.push(t)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){while(this.closeNode());}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){return\"string\"===typeof t?e.addText(t):t.children&&(e.openNode(t),t.children.forEach(t=>this._walk(e,t)),e.closeNode(t)),e}static _collapse(e){\"string\"!==typeof e&&e.children&&(e.children.every(e=>\"string\"===typeof e)?e.children=[e.children.join(\"\")]:e.children.forEach(e=>{d._collapse(e)}))}}class p extends d{constructor(e){super(),this.options=e}addKeyword(e,t){\"\"!==e&&(this.openNode(t),this.addText(e),this.closeNode())}addText(e){\"\"!==e&&this.add(e)}addSublanguage(e,t){const n=e.root;n.kind=t,n.sublanguage=!0,this.add(n)}toHTML(){const e=new u(this,this.options);return e.value()}finalize(){return!0}}function h(e){return new RegExp(e.replace(/[-/\\\\^$*+?.()|[\\]{}]/g,\"\\\\$&\"),\"m\")}function f(e){return e?\"string\"===typeof e?e:e.source:null}function _(...e){const t=e.map(e=>f(e)).join(\"\");return t}function m(...e){const t=\"(\"+e.map(e=>f(e)).join(\"|\")+\")\";return t}function g(e){return new RegExp(e.toString()+\"|\").exec(\"\").length-1}function b(e,t){const n=e&&e.exec(t);return n&&0===n.index}function v(e,t=\"|\"){const n=/\\[(?:[^\\\\\\]]|\\\\.)*\\]|\\(\\??|\\\\([1-9][0-9]*)|\\\\./;let i=0,r=\"\";for(let a=0;a<e.length;a++){i+=1;const o=i;let s=f(e[a]);a>0&&(r+=t),r+=\"(\";while(s.length>0){const e=n.exec(s);if(null==e){r+=s;break}r+=s.substring(0,e.index),s=s.substring(e.index+e[0].length),\"\\\\\"===e[0][0]&&e[1]?r+=\"\\\\\"+String(Number(e[1])+o):(r+=e[0],\"(\"===e[0]&&i++)}r+=\")\"}return r}const E=/\\b\\B/,y=\"[a-zA-Z]\\\\w*\",S=\"[a-zA-Z_]\\\\w*\",C=\"\\\\b\\\\d+(\\\\.\\\\d+)?\",T=\"(-?)(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",x=\"\\\\b(0b[01]+)\",w=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",O=(e={})=>{const t=/^#![ ]*\\//;return e.binary&&(e.begin=_(t,/.*\\b/,e.binary,/\\b.*/)),s({className:\"meta\",begin:t,end:/$/,relevance:0,\"on:begin\":(e,t)=>{0!==e.index&&t.ignoreMatch()}},e)},N={begin:\"\\\\\\\\[\\\\s\\\\S]\",relevance:0},R={className:\"string\",begin:\"'\",end:\"'\",illegal:\"\\\\n\",contains:[N]},k={className:\"string\",begin:'\"',end:'\"',illegal:\"\\\\n\",contains:[N]},A={begin:/\\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|they|like|more)\\b/},D=function(e,t,n={}){const i=s({className:\"comment\",begin:e,end:t,contains:[]},n);return i.contains.push(A),i.contains.push({className:\"doctag\",begin:\"(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):\",relevance:0}),i},I=D(\"//\",\"$\"),M=D(\"/\\\\*\",\"\\\\*/\"),L=D(\"#\",\"$\"),P={className:\"number\",begin:C,relevance:0},F={className:\"number\",begin:T,relevance:0},B={className:\"number\",begin:x,relevance:0},U={className:\"number\",begin:C+\"(%|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)?\",relevance:0},$={begin:/(?=\\/[^/\\n]*\\/)/,contains:[{className:\"regexp\",begin:/\\//,end:/\\/[gimuy]*/,illegal:/\\n/,contains:[N,{begin:/\\[/,end:/\\]/,relevance:0,contains:[N]}]}]},j={className:\"title\",begin:y,relevance:0},G={className:\"title\",begin:S,relevance:0},q={begin:\"\\\\.\\\\s*\"+S,relevance:0},H=function(e){return Object.assign(e,{\"on:begin\":(e,t)=>{t.data._beginMatch=e[1]},\"on:end\":(e,t)=>{t.data._beginMatch!==e[1]&&t.ignoreMatch()}})};var V=Object.freeze({__proto__:null,MATCH_NOTHING_RE:E,IDENT_RE:y,UNDERSCORE_IDENT_RE:S,NUMBER_RE:C,C_NUMBER_RE:T,BINARY_NUMBER_RE:x,RE_STARTERS_RE:w,SHEBANG:O,BACKSLASH_ESCAPE:N,APOS_STRING_MODE:R,QUOTE_STRING_MODE:k,PHRASAL_WORDS_MODE:A,COMMENT:D,C_LINE_COMMENT_MODE:I,C_BLOCK_COMMENT_MODE:M,HASH_COMMENT_MODE:L,NUMBER_MODE:P,C_NUMBER_MODE:F,BINARY_NUMBER_MODE:B,CSS_NUMBER_MODE:U,REGEXP_MODE:$,TITLE_MODE:j,UNDERSCORE_TITLE_MODE:G,METHOD_GUARD:q,END_SAME_AS_BEGIN:H});function z(e,t){const n=e.input[e.index-1];\".\"===n&&t.ignoreMatch()}function Y(e,t){t&&e.beginKeywords&&(e.begin=\"\\\\b(\"+e.beginKeywords.split(\" \").join(\"|\")+\")(?!\\\\.)(?=\\\\b|\\\\s)\",e.__beforeBegin=z,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,void 0===e.relevance&&(e.relevance=0))}function W(e,t){Array.isArray(e.illegal)&&(e.illegal=m(...e.illegal))}function K(e,t){if(e.match){if(e.begin||e.end)throw new Error(\"begin & end are not supported with match\");e.begin=e.match,delete e.match}}function Q(e,t){void 0===e.relevance&&(e.relevance=1)}const X=[\"of\",\"and\",\"for\",\"in\",\"not\",\"or\",\"if\",\"then\",\"parent\",\"list\",\"value\"],Z=\"keyword\";function J(e,t,n=Z){const i={};return\"string\"===typeof e?r(n,e.split(\" \")):Array.isArray(e)?r(n,e):Object.keys(e).forEach((function(n){Object.assign(i,J(e[n],t,n))})),i;function r(e,n){t&&(n=n.map(e=>e.toLowerCase())),n.forEach((function(t){const n=t.split(\"|\");i[n[0]]=[e,ee(n[0],n[1])]}))}}function ee(e,t){return t?Number(t):te(e)?0:1}function te(e){return X.includes(e.toLowerCase())}function ne(e,{plugins:t}){function n(t,n){return new RegExp(f(t),\"m\"+(e.case_insensitive?\"i\":\"\")+(n?\"g\":\"\"))}class i{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,t){t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),this.matchAt+=g(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const e=this.regexes.map(e=>e[1]);this.matcherRe=n(v(e),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const t=this.matcherRe.exec(e);if(!t)return null;const n=t.findIndex((e,t)=>t>0&&void 0!==e),i=this.matchIndexes[n];return t.splice(0,n),Object.assign(t,i)}}class r{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];const t=new i;return this.rules.slice(e).forEach(([e,n])=>t.addRule(e,n)),t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){this.rules.push([e,t]),\"begin\"===t.type&&this.count++}exec(e){const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex;let n=t.exec(e);if(this.resumingScanAtSamePosition())if(n&&n.index===this.lastIndex);else{const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)}return n&&(this.regexIndex+=n.position+1,this.regexIndex===this.count&&this.considerAll()),n}}function a(e){const t=new r;return e.contains.forEach(e=>t.addRule(e.begin,{rule:e,type:\"begin\"})),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:\"end\"}),e.illegal&&t.addRule(e.illegal,{type:\"illegal\"}),t}function o(t,i){const r=t;if(t.compiled)return r;[K].forEach(e=>e(t,i)),e.compilerExtensions.forEach(e=>e(t,i)),t.__beforeBegin=null,[Y,W,Q].forEach(e=>e(t,i)),t.compiled=!0;let s=null;if(\"object\"===typeof t.keywords&&(s=t.keywords.$pattern,delete t.keywords.$pattern),t.keywords&&(t.keywords=J(t.keywords,e.case_insensitive)),t.lexemes&&s)throw new Error(\"ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) \");return s=s||t.lexemes||/\\w+/,r.keywordPatternRe=n(s,!0),i&&(t.begin||(t.begin=/\\B|\\b/),r.beginRe=n(t.begin),t.endSameAsBegin&&(t.end=t.begin),t.end||t.endsWithParent||(t.end=/\\B|\\b/),t.end&&(r.endRe=n(t.end)),r.terminatorEnd=f(t.end)||\"\",t.endsWithParent&&i.terminatorEnd&&(r.terminatorEnd+=(t.end?\"|\":\"\")+i.terminatorEnd)),t.illegal&&(r.illegalRe=n(t.illegal)),t.contains||(t.contains=[]),t.contains=[].concat(...t.contains.map((function(e){return re(\"self\"===e?t:e)}))),t.contains.forEach((function(e){o(e,r)})),t.starts&&o(t.starts,i),r.matcher=a(r),r}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes(\"self\"))throw new Error(\"ERR: contains `self` is not supported at the top-level of a language.  See documentation.\");return e.classNameAliases=s(e.classNameAliases||{}),o(e)}function ie(e){return!!e&&(e.endsWithParent||ie(e.starts))}function re(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((function(t){return s(e,{variants:null},t)}))),e.cachedVariants?e.cachedVariants:ie(e)?s(e,{starts:e.starts?s(e.starts):null}):Object.isFrozen(e)?s(e):e}var ae=\"10.6.0\";function oe(e){return Boolean(e||\"\"===e)}function se(e){const t={props:[\"language\",\"code\",\"autodetect\"],data:function(){return{detectedLanguage:\"\",unknownLanguage:!1}},computed:{className(){return this.unknownLanguage?\"\":\"hljs \"+this.detectedLanguage},highlighted(){if(!this.autoDetect&&!e.getLanguage(this.language))return this.unknownLanguage=!0,o(this.code);let t={};return this.autoDetect?(t=e.highlightAuto(this.code),this.detectedLanguage=t.language):(t=e.highlight(this.language,this.code,this.ignoreIllegals),this.detectedLanguage=this.language),t.value},autoDetect(){return!this.language||oe(this.autodetect)},ignoreIllegals(){return!0}},render(e){return e(\"pre\",{},[e(\"code\",{class:this.className,domProps:{innerHTML:this.highlighted}})])}},n={install(e){e.component(\"highlightjs\",t)}};return{Component:t,VuePlugin:n}}const le={\"after:highlightBlock\":({block:e,result:t,text:n})=>{const i=ue(e);if(!i.length)return;const r=document.createElement(\"div\");r.innerHTML=t.value,t.value=de(i,ue(r),n)}};function ce(e){return e.nodeName.toLowerCase()}function ue(e){const t=[];return function e(n,i){for(let r=n.firstChild;r;r=r.nextSibling)3===r.nodeType?i+=r.nodeValue.length:1===r.nodeType&&(t.push({event:\"start\",offset:i,node:r}),i=e(r,i),ce(r).match(/br|hr|img|input/)||t.push({event:\"stop\",offset:i,node:r}));return i}(e,0),t}function de(e,t,n){let i=0,r=\"\";const a=[];function s(){return e.length&&t.length?e[0].offset!==t[0].offset?e[0].offset<t[0].offset?e:t:\"start\"===t[0].event?e:t:e.length?e:t}function l(e){function t(e){return\" \"+e.nodeName+'=\"'+o(e.value)+'\"'}r+=\"<\"+ce(e)+[].map.call(e.attributes,t).join(\"\")+\">\"}function c(e){r+=\"</\"+ce(e)+\">\"}function u(e){(\"start\"===e.event?l:c)(e.node)}while(e.length||t.length){let t=s();if(r+=o(n.substring(i,t[0].offset)),i=t[0].offset,t===e){a.reverse().forEach(c);do{u(t.splice(0,1)[0]),t=s()}while(t===e&&t.length&&t[0].offset===i);a.reverse().forEach(l)}else\"start\"===t[0].event?a.push(t[0].node):a.pop(),u(t.splice(0,1)[0])}return r+o(n.substr(i))}const pe=e=>{},he=(e,...t)=>{},fe=(e,t)=>{},_e=o,me=s,ge=Symbol(\"nomatch\"),be=function(e){const t=Object.create(null),n=Object.create(null),r=[];let o=!0;const s=/(^(<[^>]+>|\\t|)+|\\n)/gm,l=\"Could not find the language '{}', did you forget to load/include a language module?\",c={disableAutodetect:!0,name:\"Plain text\",contains:[]};let u={noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\\blang(?:uage)?-([\\w-]+)\\b/i,classPrefix:\"hljs-\",tabReplace:null,useBR:!1,languages:null,__emitter:p};function d(e){return u.noHighlightRe.test(e)}function f(e){let t=e.className+\" \";t+=e.parentNode?e.parentNode.className:\"\";const n=u.languageDetectRe.exec(t);if(n){const t=P(n[1]);return t||(he(l.replace(\"{}\",n[1])),he(\"Falling back to no-highlight mode for this block.\",e)),t?n[1]:\"no-highlight\"}return t.split(/\\s+/).find(e=>d(e)||P(e))}function _(e,t,n,i){const r={code:t,language:e};$(\"before:highlight\",r);const a=r.result?r.result:m(r.language,r.code,n,i);return a.code=r.code,$(\"after:highlight\",a),a}function m(e,n,i,s){const c=n;function d(e,t){const n=O.case_insensitive?t[0].toLowerCase():t[0];return Object.prototype.hasOwnProperty.call(e.keywords,n)&&e.keywords[n]}function p(){if(!k.keywords)return void D.addText(I);let e=0;k.keywordPatternRe.lastIndex=0;let t=k.keywordPatternRe.exec(I),n=\"\";while(t){n+=I.substring(e,t.index);const i=d(k,t);if(i){const[e,r]=i;D.addText(n),n=\"\",M+=r;const a=O.classNameAliases[e]||e;D.addKeyword(t[0],a)}else n+=t[0];e=k.keywordPatternRe.lastIndex,t=k.keywordPatternRe.exec(I)}n+=I.substr(e),D.addText(n)}function f(){if(\"\"===I)return;let e=null;if(\"string\"===typeof k.subLanguage){if(!t[k.subLanguage])return void D.addText(I);e=m(k.subLanguage,I,!0,A[k.subLanguage]),A[k.subLanguage]=e.top}else e=v(I,k.subLanguage.length?k.subLanguage:null);k.relevance>0&&(M+=e.relevance),D.addSublanguage(e.emitter,e.language)}function _(){null!=k.subLanguage?f():p(),I=\"\"}function g(e){return e.className&&D.openNode(O.classNameAliases[e.className]||e.className),k=Object.create(e,{parent:{value:k}}),k}function E(e,t,n){let i=b(e.endRe,n);if(i){if(e[\"on:end\"]){const n=new a(e);e[\"on:end\"](t,n),n.ignore&&(i=!1)}if(i){while(e.endsParent&&e.parent)e=e.parent;return e}}if(e.endsWithParent)return E(e.parent,t,n)}function y(e){return 0===k.matcher.regexIndex?(I+=e[0],1):(B=!0,0)}function S(e){const t=e[0],n=e.rule,i=new a(n),r=[n.__beforeBegin,n[\"on:begin\"]];for(const a of r)if(a&&(a(e,i),i.ignore))return y(t);return n&&n.endSameAsBegin&&(n.endRe=h(t)),n.skip?I+=t:(n.excludeBegin&&(I+=t),_(),n.returnBegin||n.excludeBegin||(I=t)),g(n),n.returnBegin?0:t.length}function C(e){const t=e[0],n=c.substr(e.index),i=E(k,e,n);if(!i)return ge;const r=k;r.skip?I+=t:(r.returnEnd||r.excludeEnd||(I+=t),_(),r.excludeEnd&&(I=t));do{k.className&&D.closeNode(),k.skip||k.subLanguage||(M+=k.relevance),k=k.parent}while(k!==i.parent);return i.starts&&(i.endSameAsBegin&&(i.starts.endRe=i.endRe),g(i.starts)),r.returnEnd?0:t.length}function T(){const e=[];for(let t=k;t!==O;t=t.parent)t.className&&e.unshift(t.className);e.forEach(e=>D.openNode(e))}let x={};function w(t,n){const r=n&&n[0];if(I+=t,null==r)return _(),0;if(\"begin\"===x.type&&\"end\"===n.type&&x.index===n.index&&\"\"===r){if(I+=c.slice(n.index,n.index+1),!o){const t=new Error(\"0 width match regex\");throw t.languageName=e,t.badRule=x.rule,t}return 1}if(x=n,\"begin\"===n.type)return S(n);if(\"illegal\"===n.type&&!i){const e=new Error('Illegal lexeme \"'+r+'\" for mode \"'+(k.className||\"<unnamed>\")+'\"');throw e.mode=k,e}if(\"end\"===n.type){const e=C(n);if(e!==ge)return e}if(\"illegal\"===n.type&&\"\"===r)return 1;if(F>1e5&&F>3*n.index){const e=new Error(\"potential infinite loop, way more iterations than matches\");throw e}return I+=r,r.length}const O=P(e);if(!O)throw pe(l.replace(\"{}\",e)),new Error('Unknown language: \"'+e+'\"');const N=ne(O,{plugins:r});let R=\"\",k=s||N;const A={},D=new u.__emitter(u);T();let I=\"\",M=0,L=0,F=0,B=!1;try{for(k.matcher.considerAll();;){F++,B?B=!1:k.matcher.considerAll(),k.matcher.lastIndex=L;const e=k.matcher.exec(c);if(!e)break;const t=c.substring(L,e.index),n=w(t,e);L=e.index+n}return w(c.substr(L)),D.closeAllNodes(),D.finalize(),R=D.toHTML(),{relevance:Math.floor(M),value:R,language:e,illegal:!1,emitter:D,top:k}}catch(U){if(U.message&&U.message.includes(\"Illegal\"))return{illegal:!0,illegalBy:{msg:U.message,context:c.slice(L-100,L+100),mode:U.mode},sofar:R,relevance:0,value:_e(c),emitter:D};if(o)return{illegal:!1,relevance:0,value:_e(c),emitter:D,language:e,top:k,errorRaised:U};throw U}}function g(e){const t={relevance:0,emitter:new u.__emitter(u),value:_e(e),illegal:!1,top:c};return t.emitter.addText(e),t}function v(e,n){n=n||u.languages||Object.keys(t);const i=g(e),r=n.filter(P).filter(B).map(t=>m(t,e,!1));r.unshift(i);const a=r.sort((e,t)=>{if(e.relevance!==t.relevance)return t.relevance-e.relevance;if(e.language&&t.language){if(P(e.language).supersetOf===t.language)return 1;if(P(t.language).supersetOf===e.language)return-1}return 0}),[o,s]=a,l=o;return l.second_best=s,l}function E(e){return u.tabReplace||u.useBR?e.replace(s,e=>\"\\n\"===e?u.useBR?\"<br>\":e:u.tabReplace?e.replace(/\\t/g,u.tabReplace):e):e}function y(e,t,i){const r=t?n[t]:i;e.classList.add(\"hljs\"),r&&e.classList.add(r)}const S={\"before:highlightBlock\":({block:e})=>{u.useBR&&(e.innerHTML=e.innerHTML.replace(/\\n/g,\"\").replace(/<br[ /]*>/g,\"\\n\"))},\"after:highlightBlock\":({result:e})=>{u.useBR&&(e.value=e.value.replace(/\\n/g,\"<br>\"))}},C=/^(<[^>]+>|\\t)+/gm,T={\"after:highlightBlock\":({result:e})=>{u.tabReplace&&(e.value=e.value.replace(C,e=>e.replace(/\\t/g,u.tabReplace)))}};function x(e){let t=null;const n=f(e);if(d(n))return;$(\"before:highlightBlock\",{block:e,language:n}),t=e;const i=t.textContent,r=n?_(n,i,!0):v(i);$(\"after:highlightBlock\",{block:e,result:r,text:i}),e.innerHTML=r.value,y(e,n,r.language),e.result={language:r.language,re:r.relevance,relavance:r.relevance},r.second_best&&(e.second_best={language:r.second_best.language,re:r.second_best.relevance,relavance:r.second_best.relevance})}function w(e){e.useBR&&(fe(\"10.3.0\",\"'useBR' will be removed entirely in v11.0\"),fe(\"10.3.0\",\"Please see https://github.com/highlightjs/highlight.js/issues/2559\")),u=me(u,e)}const O=()=>{if(O.called)return;O.called=!0,fe(\"10.6.0\",\"initHighlighting() is deprecated.  Use highlightAll() instead.\");const e=document.querySelectorAll(\"pre code\");e.forEach(x)};function N(){fe(\"10.6.0\",\"initHighlightingOnLoad() is deprecated.  Use highlightAll() instead.\"),R=!0}let R=!1,k=!1;function A(){if(!k)return void(R=!0);const e=document.querySelectorAll(\"pre code\");e.forEach(x)}function D(){k=!0,R&&A()}function I(n,i){let r=null;try{r=i(e)}catch(a){if(pe(\"Language definition for '{}' could not be registered.\".replace(\"{}\",n)),!o)throw a;pe(a),r=c}r.name||(r.name=n),t[n]=r,r.rawDefinition=i.bind(null,e),r.aliases&&F(r.aliases,{languageName:n})}function M(){return Object.keys(t)}function L(e){fe(\"10.4.0\",\"requireLanguage will be removed entirely in v11.\"),fe(\"10.4.0\",\"Please see https://github.com/highlightjs/highlight.js/pull/2844\");const t=P(e);if(t)return t;const n=new Error(\"The '{}' language is required, but not loaded.\".replace(\"{}\",e));throw n}function P(e){return e=(e||\"\").toLowerCase(),t[e]||t[n[e]]}function F(e,{languageName:t}){\"string\"===typeof e&&(e=[e]),e.forEach(e=>{n[e]=t})}function B(e){const t=P(e);return t&&!t.disableAutodetect}function U(e){r.push(e)}function $(e,t){const n=e;r.forEach((function(e){e[n]&&e[n](t)}))}function j(e){return fe(\"10.2.0\",\"fixMarkup will be removed entirely in v11.0\"),fe(\"10.2.0\",\"Please see https://github.com/highlightjs/highlight.js/issues/2534\"),E(e)}\"undefined\"!==typeof window&&window.addEventListener&&window.addEventListener(\"DOMContentLoaded\",D,!1),Object.assign(e,{highlight:_,highlightAuto:v,highlightAll:A,fixMarkup:j,highlightBlock:x,configure:w,initHighlighting:O,initHighlightingOnLoad:N,registerLanguage:I,listLanguages:M,getLanguage:P,registerAliases:F,requireLanguage:L,autoDetection:B,inherit:me,addPlugin:U,vuePlugin:se(e).VuePlugin}),e.debugMode=function(){o=!1},e.safeMode=function(){o=!0},e.versionString=ae;for(const a in V)\"object\"===typeof V[a]&&i(V[a]);return Object.assign(e,V),e.addPlugin(S),e.addPlugin(le),e.addPlugin(T),e};var ve=be({});e.exports=ve},1069:function(e,t){function n(e){const t={className:\"variable\",variants:[{begin:/\\$[\\w\\d#@][\\w\\d_]*/},{begin:/\\$\\{(.*?)\\}/}]},n=\"BEGIN END if else while do for in break continue delete next nextfile function func exit|10\",i={className:\"string\",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/(u|b)?r?'''/,end:/'''/,relevance:10},{begin:/(u|b)?r?\"\"\"/,end:/\"\"\"/,relevance:10},{begin:/(u|r|ur)'/,end:/'/,relevance:10},{begin:/(u|r|ur)\"/,end:/\"/,relevance:10},{begin:/(b|br)'/,end:/'/},{begin:/(b|br)\"/,end:/\"/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]};return{name:\"Awk\",keywords:{keyword:n},contains:[t,i,e.REGEXP_MODE,e.HASH_COMMENT_MODE,e.NUMBER_MODE]}}e.exports=n},1098:function(e,t,n){\"use strict\";t.__esModule=!0;var i=n(\"17ed\"),r=l(i),a=n(\"f893\"),o=l(a),s=\"function\"===typeof o.default&&\"symbol\"===typeof r.default?function(e){return typeof e}:function(e){return e&&\"function\"===typeof o.default&&e.constructor===o.default&&e!==o.default.prototype?\"symbol\":typeof e};function l(e){return e&&e.__esModule?e:{default:e}}t.default=\"function\"===typeof o.default&&\"symbol\"===s(r.default)?function(e){return\"undefined\"===typeof e?\"undefined\":s(e)}:function(e){return e&&\"function\"===typeof o.default&&e.constructor===o.default&&e!==o.default.prototype?\"symbol\":\"undefined\"===typeof e?\"undefined\":s(e)}},1157:function(e,t,n){var i,r;\n/*!\n * jQuery JavaScript Library v3.5.1\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2020-05-04T22:49Z\n */(function(t,n){\"use strict\";\"object\"===typeof e.exports?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error(\"jQuery requires a window with a document\");return n(e)}:n(t)})(\"undefined\"!==typeof window?window:this,(function(n,a){\"use strict\";var o=[],s=Object.getPrototypeOf,l=o.slice,c=o.flat?function(e){return o.flat.call(e)}:function(e){return o.concat.apply([],e)},u=o.push,d=o.indexOf,p={},h=p.toString,f=p.hasOwnProperty,_=f.toString,m=_.call(Object),g={},b=function(e){return\"function\"===typeof e&&\"number\"!==typeof e.nodeType},v=function(e){return null!=e&&e===e.window},E=n.document,y={type:!0,src:!0,nonce:!0,noModule:!0};function S(e,t,n){n=n||E;var i,r,a=n.createElement(\"script\");if(a.text=e,t)for(i in y)r=t[i]||t.getAttribute&&t.getAttribute(i),r&&a.setAttribute(i,r);n.head.appendChild(a).parentNode.removeChild(a)}function C(e){return null==e?e+\"\":\"object\"===typeof e||\"function\"===typeof e?p[h.call(e)]||\"object\":typeof e}var T=\"3.5.1\",x=function(e,t){return new x.fn.init(e,t)};function w(e){var t=!!e&&\"length\"in e&&e.length,n=C(e);return!b(e)&&!v(e)&&(\"array\"===n||0===t||\"number\"===typeof t&&t>0&&t-1 in e)}x.fn=x.prototype={jquery:T,constructor:x,length:0,toArray:function(){return l.call(this)},get:function(e){return null==e?l.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return x.each(this,e)},map:function(e){return this.pushStack(x.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(l.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(x.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(x.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:o.sort,splice:o.splice},x.extend=x.fn.extend=function(){var e,t,n,i,r,a,o=arguments[0]||{},s=1,l=arguments.length,c=!1;for(\"boolean\"===typeof o&&(c=o,o=arguments[s]||{},s++),\"object\"===typeof o||b(o)||(o={}),s===l&&(o=this,s--);s<l;s++)if(null!=(e=arguments[s]))for(t in e)i=e[t],\"__proto__\"!==t&&o!==i&&(c&&i&&(x.isPlainObject(i)||(r=Array.isArray(i)))?(n=o[t],a=r&&!Array.isArray(n)?[]:r||x.isPlainObject(n)?n:{},r=!1,o[t]=x.extend(c,a,i)):void 0!==i&&(o[t]=i));return o},x.extend({expando:\"jQuery\"+(T+Math.random()).replace(/\\D/g,\"\"),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||\"[object Object]\"!==h.call(e))&&(t=s(e),!t||(n=f.call(t,\"constructor\")&&t.constructor,\"function\"===typeof n&&_.call(n)===m))},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){S(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,i=0;if(w(e)){for(n=e.length;i<n;i++)if(!1===t.call(e[i],i,e[i]))break}else for(i in e)if(!1===t.call(e[i],i,e[i]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(w(Object(e))?x.merge(n,\"string\"===typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:d.call(t,e,n)},merge:function(e,t){for(var n=+t.length,i=0,r=e.length;i<n;i++)e[r++]=t[i];return e.length=r,e},grep:function(e,t,n){for(var i,r=[],a=0,o=e.length,s=!n;a<o;a++)i=!t(e[a],a),i!==s&&r.push(e[a]);return r},map:function(e,t,n){var i,r,a=0,o=[];if(w(e))for(i=e.length;a<i;a++)r=t(e[a],a,n),null!=r&&o.push(r);else for(a in e)r=t(e[a],a,n),null!=r&&o.push(r);return c(o)},guid:1,support:g}),\"function\"===typeof Symbol&&(x.fn[Symbol.iterator]=o[Symbol.iterator]),x.each(\"Boolean Number String Function Array Date RegExp Object Error Symbol\".split(\" \"),(function(e,t){p[\"[object \"+t+\"]\"]=t.toLowerCase()}));var O=\n/*!\n * Sizzle CSS Selector Engine v2.3.5\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://js.foundation/\n *\n * Date: 2020-03-14\n */\nfunction(e){var t,n,i,r,a,o,s,l,c,u,d,p,h,f,_,m,g,b,v,E=\"sizzle\"+1*new Date,y=e.document,S=0,C=0,T=le(),x=le(),w=le(),O=le(),N=function(e,t){return e===t&&(d=!0),0},R={}.hasOwnProperty,k=[],A=k.pop,D=k.push,I=k.push,M=k.slice,L=function(e,t){for(var n=0,i=e.length;n<i;n++)if(e[n]===t)return n;return-1},P=\"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",F=\"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",B=\"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\"+F+\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",U=\"\\\\[\"+F+\"*(\"+B+\")(?:\"+F+\"*([*^$|!~]?=)\"+F+\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\"+B+\"))|)\"+F+\"*\\\\]\",$=\":(\"+B+\")(?:\\\\((('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\"+U+\")*)|.*)\\\\)|)\",j=new RegExp(F+\"+\",\"g\"),G=new RegExp(\"^\"+F+\"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\"+F+\"+$\",\"g\"),q=new RegExp(\"^\"+F+\"*,\"+F+\"*\"),H=new RegExp(\"^\"+F+\"*([>+~]|\"+F+\")\"+F+\"*\"),V=new RegExp(F+\"|>\"),z=new RegExp($),Y=new RegExp(\"^\"+B+\"$\"),W={ID:new RegExp(\"^#(\"+B+\")\"),CLASS:new RegExp(\"^\\\\.(\"+B+\")\"),TAG:new RegExp(\"^(\"+B+\"|[*])\"),ATTR:new RegExp(\"^\"+U),PSEUDO:new RegExp(\"^\"+$),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\"+F+\"*(even|odd|(([+-]|)(\\\\d*)n|)\"+F+\"*(?:([+-]|)\"+F+\"*(\\\\d+)|))\"+F+\"*\\\\)|)\",\"i\"),bool:new RegExp(\"^(?:\"+P+\")$\",\"i\"),needsContext:new RegExp(\"^\"+F+\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\"+F+\"*((?:-\\\\d)?\\\\d*)\"+F+\"*\\\\)|)(?=[^-]|$)\",\"i\")},K=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,X=/^h\\d$/i,Z=/^[^{]+\\{\\s*\\[native \\w/,J=/^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,ee=/[+~]/,te=new RegExp(\"\\\\\\\\[\\\\da-fA-F]{1,6}\"+F+\"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\",\"g\"),ne=function(e,t){var n=\"0x\"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},ie=/([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,re=function(e,t){return t?\"\\0\"===e?\"�\":e.slice(0,-1)+\"\\\\\"+e.charCodeAt(e.length-1).toString(16)+\" \":\"\\\\\"+e},ae=function(){p()},oe=Ee((function(e){return!0===e.disabled&&\"fieldset\"===e.nodeName.toLowerCase()}),{dir:\"parentNode\",next:\"legend\"});try{I.apply(k=M.call(y.childNodes),y.childNodes),k[y.childNodes.length].nodeType}catch(Oe){I={apply:k.length?function(e,t){D.apply(e,M.call(t))}:function(e,t){var n=e.length,i=0;while(e[n++]=t[i++]);e.length=n-1}}}function se(e,t,i,r){var a,s,c,u,d,f,g,b=t&&t.ownerDocument,y=t?t.nodeType:9;if(i=i||[],\"string\"!==typeof e||!e||1!==y&&9!==y&&11!==y)return i;if(!r&&(p(t),t=t||h,_)){if(11!==y&&(d=J.exec(e)))if(a=d[1]){if(9===y){if(!(c=t.getElementById(a)))return i;if(c.id===a)return i.push(c),i}else if(b&&(c=b.getElementById(a))&&v(t,c)&&c.id===a)return i.push(c),i}else{if(d[2])return I.apply(i,t.getElementsByTagName(e)),i;if((a=d[3])&&n.getElementsByClassName&&t.getElementsByClassName)return I.apply(i,t.getElementsByClassName(a)),i}if(n.qsa&&!O[e+\" \"]&&(!m||!m.test(e))&&(1!==y||\"object\"!==t.nodeName.toLowerCase())){if(g=e,b=t,1===y&&(V.test(e)||H.test(e))){b=ee.test(e)&&ge(t.parentNode)||t,b===t&&n.scope||((u=t.getAttribute(\"id\"))?u=u.replace(ie,re):t.setAttribute(\"id\",u=E)),f=o(e),s=f.length;while(s--)f[s]=(u?\"#\"+u:\":scope\")+\" \"+ve(f[s]);g=f.join(\",\")}try{return I.apply(i,b.querySelectorAll(g)),i}catch(S){O(e,!0)}finally{u===E&&t.removeAttribute(\"id\")}}}return l(e.replace(G,\"$1\"),t,i,r)}function le(){var e=[];function t(n,r){return e.push(n+\" \")>i.cacheLength&&delete t[e.shift()],t[n+\" \"]=r}return t}function ce(e){return e[E]=!0,e}function ue(e){var t=h.createElement(\"fieldset\");try{return!!e(t)}catch(Oe){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function de(e,t){var n=e.split(\"|\"),r=n.length;while(r--)i.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,i=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(i)return i;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function he(e){return function(t){var n=t.nodeName.toLowerCase();return\"input\"===n&&t.type===e}}function fe(e){return function(t){var n=t.nodeName.toLowerCase();return(\"input\"===n||\"button\"===n)&&t.type===e}}function _e(e){return function(t){return\"form\"in t?t.parentNode&&!1===t.disabled?\"label\"in t?\"label\"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&oe(t)===e:t.disabled===e:\"label\"in t&&t.disabled===e}}function me(e){return ce((function(t){return t=+t,ce((function(n,i){var r,a=e([],n.length,t),o=a.length;while(o--)n[r=a[o]]&&(n[r]=!(i[r]=n[r]))}))}))}function ge(e){return e&&\"undefined\"!==typeof e.getElementsByTagName&&e}for(t in n=se.support={},a=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!K.test(t||n&&n.nodeName||\"HTML\")},p=se.setDocument=function(e){var t,r,o=e?e.ownerDocument||e:y;return o!=h&&9===o.nodeType&&o.documentElement?(h=o,f=h.documentElement,_=!a(h),y!=h&&(r=h.defaultView)&&r.top!==r&&(r.addEventListener?r.addEventListener(\"unload\",ae,!1):r.attachEvent&&r.attachEvent(\"onunload\",ae)),n.scope=ue((function(e){return f.appendChild(e).appendChild(h.createElement(\"div\")),\"undefined\"!==typeof e.querySelectorAll&&!e.querySelectorAll(\":scope fieldset div\").length})),n.attributes=ue((function(e){return e.className=\"i\",!e.getAttribute(\"className\")})),n.getElementsByTagName=ue((function(e){return e.appendChild(h.createComment(\"\")),!e.getElementsByTagName(\"*\").length})),n.getElementsByClassName=Z.test(h.getElementsByClassName),n.getById=ue((function(e){return f.appendChild(e).id=E,!h.getElementsByName||!h.getElementsByName(E).length})),n.getById?(i.filter[\"ID\"]=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute(\"id\")===t}},i.find[\"ID\"]=function(e,t){if(\"undefined\"!==typeof t.getElementById&&_){var n=t.getElementById(e);return n?[n]:[]}}):(i.filter[\"ID\"]=function(e){var t=e.replace(te,ne);return function(e){var n=\"undefined\"!==typeof e.getAttributeNode&&e.getAttributeNode(\"id\");return n&&n.value===t}},i.find[\"ID\"]=function(e,t){if(\"undefined\"!==typeof t.getElementById&&_){var n,i,r,a=t.getElementById(e);if(a){if(n=a.getAttributeNode(\"id\"),n&&n.value===e)return[a];r=t.getElementsByName(e),i=0;while(a=r[i++])if(n=a.getAttributeNode(\"id\"),n&&n.value===e)return[a]}return[]}}),i.find[\"TAG\"]=n.getElementsByTagName?function(e,t){return\"undefined\"!==typeof t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,i=[],r=0,a=t.getElementsByTagName(e);if(\"*\"===e){while(n=a[r++])1===n.nodeType&&i.push(n);return i}return a},i.find[\"CLASS\"]=n.getElementsByClassName&&function(e,t){if(\"undefined\"!==typeof t.getElementsByClassName&&_)return t.getElementsByClassName(e)},g=[],m=[],(n.qsa=Z.test(h.querySelectorAll))&&(ue((function(e){var t;f.appendChild(e).innerHTML=\"<a id='\"+E+\"'></a><select id='\"+E+\"-\\r\\\\' msallowcapture=''><option selected=''></option></select>\",e.querySelectorAll(\"[msallowcapture^='']\").length&&m.push(\"[*^$]=\"+F+\"*(?:''|\\\"\\\")\"),e.querySelectorAll(\"[selected]\").length||m.push(\"\\\\[\"+F+\"*(?:value|\"+P+\")\"),e.querySelectorAll(\"[id~=\"+E+\"-]\").length||m.push(\"~=\"),t=h.createElement(\"input\"),t.setAttribute(\"name\",\"\"),e.appendChild(t),e.querySelectorAll(\"[name='']\").length||m.push(\"\\\\[\"+F+\"*name\"+F+\"*=\"+F+\"*(?:''|\\\"\\\")\"),e.querySelectorAll(\":checked\").length||m.push(\":checked\"),e.querySelectorAll(\"a#\"+E+\"+*\").length||m.push(\".#.+[+~]\"),e.querySelectorAll(\"\\\\\\f\"),m.push(\"[\\\\r\\\\n\\\\f]\")})),ue((function(e){e.innerHTML=\"<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>\";var t=h.createElement(\"input\");t.setAttribute(\"type\",\"hidden\"),e.appendChild(t).setAttribute(\"name\",\"D\"),e.querySelectorAll(\"[name=d]\").length&&m.push(\"name\"+F+\"*[*^$|!~]?=\"),2!==e.querySelectorAll(\":enabled\").length&&m.push(\":enabled\",\":disabled\"),f.appendChild(e).disabled=!0,2!==e.querySelectorAll(\":disabled\").length&&m.push(\":enabled\",\":disabled\"),e.querySelectorAll(\"*,:x\"),m.push(\",.*:\")}))),(n.matchesSelector=Z.test(b=f.matches||f.webkitMatchesSelector||f.mozMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&ue((function(e){n.disconnectedMatch=b.call(e,\"*\"),b.call(e,\"[s!='']:x\"),g.push(\"!=\",$)})),m=m.length&&new RegExp(m.join(\"|\")),g=g.length&&new RegExp(g.join(\"|\")),t=Z.test(f.compareDocumentPosition),v=t||Z.test(f.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,i=t&&t.parentNode;return e===i||!(!i||1!==i.nodeType||!(n.contains?n.contains(i):e.compareDocumentPosition&&16&e.compareDocumentPosition(i)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return d=!0,0;var i=!e.compareDocumentPosition-!t.compareDocumentPosition;return i||(i=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1,1&i||!n.sortDetached&&t.compareDocumentPosition(e)===i?e==h||e.ownerDocument==y&&v(y,e)?-1:t==h||t.ownerDocument==y&&v(y,t)?1:u?L(u,e)-L(u,t):0:4&i?-1:1)}:function(e,t){if(e===t)return d=!0,0;var n,i=0,r=e.parentNode,a=t.parentNode,o=[e],s=[t];if(!r||!a)return e==h?-1:t==h?1:r?-1:a?1:u?L(u,e)-L(u,t):0;if(r===a)return pe(e,t);n=e;while(n=n.parentNode)o.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(o[i]===s[i])i++;return i?pe(o[i],s[i]):o[i]==y?-1:s[i]==y?1:0},h):h},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(p(e),n.matchesSelector&&_&&!O[t+\" \"]&&(!g||!g.test(t))&&(!m||!m.test(t)))try{var i=b.call(e,t);if(i||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return i}catch(Oe){O(t,!0)}return se(t,h,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!=h&&p(e),v(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=h&&p(e);var r=i.attrHandle[t.toLowerCase()],a=r&&R.call(i.attrHandle,t.toLowerCase())?r(e,t,!_):void 0;return void 0!==a?a:n.attributes||!_?e.getAttribute(t):(a=e.getAttributeNode(t))&&a.specified?a.value:null},se.escape=function(e){return(e+\"\").replace(ie,re)},se.error=function(e){throw new Error(\"Syntax error, unrecognized expression: \"+e)},se.uniqueSort=function(e){var t,i=[],r=0,a=0;if(d=!n.detectDuplicates,u=!n.sortStable&&e.slice(0),e.sort(N),d){while(t=e[a++])t===e[a]&&(r=i.push(a));while(r--)e.splice(i[r],1)}return u=null,e},r=se.getText=function(e){var t,n=\"\",i=0,a=e.nodeType;if(a){if(1===a||9===a||11===a){if(\"string\"===typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=r(e)}else if(3===a||4===a)return e.nodeValue}else while(t=e[i++])n+=r(t);return n},i=se.selectors={cacheLength:50,createPseudo:ce,match:W,attrHandle:{},find:{},relative:{\">\":{dir:\"parentNode\",first:!0},\" \":{dir:\"parentNode\"},\"+\":{dir:\"previousSibling\",first:!0},\"~\":{dir:\"previousSibling\"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||\"\").replace(te,ne),\"~=\"===e[2]&&(e[3]=\" \"+e[3]+\" \"),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),\"nth\"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*(\"even\"===e[3]||\"odd\"===e[3])),e[5]=+(e[7]+e[8]||\"odd\"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return W[\"CHILD\"].test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||\"\":n&&z.test(n)&&(t=o(n,!0))&&(t=n.indexOf(\")\",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return\"*\"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=T[e+\" \"];return t||(t=new RegExp(\"(^|\"+F+\")\"+e+\"(\"+F+\"|$)\"))&&T(e,(function(e){return t.test(\"string\"===typeof e.className&&e.className||\"undefined\"!==typeof e.getAttribute&&e.getAttribute(\"class\")||\"\")}))},ATTR:function(e,t,n){return function(i){var r=se.attr(i,e);return null==r?\"!=\"===t:!t||(r+=\"\",\"=\"===t?r===n:\"!=\"===t?r!==n:\"^=\"===t?n&&0===r.indexOf(n):\"*=\"===t?n&&r.indexOf(n)>-1:\"$=\"===t?n&&r.slice(-n.length)===n:\"~=\"===t?(\" \"+r.replace(j,\" \")+\" \").indexOf(n)>-1:\"|=\"===t&&(r===n||r.slice(0,n.length+1)===n+\"-\"))}},CHILD:function(e,t,n,i,r){var a=\"nth\"!==e.slice(0,3),o=\"last\"!==e.slice(-4),s=\"of-type\"===t;return 1===i&&0===r?function(e){return!!e.parentNode}:function(t,n,l){var c,u,d,p,h,f,_=a!==o?\"nextSibling\":\"previousSibling\",m=t.parentNode,g=s&&t.nodeName.toLowerCase(),b=!l&&!s,v=!1;if(m){if(a){while(_){p=t;while(p=p[_])if(s?p.nodeName.toLowerCase()===g:1===p.nodeType)return!1;f=_=\"only\"===e&&!f&&\"nextSibling\"}return!0}if(f=[o?m.firstChild:m.lastChild],o&&b){p=m,d=p[E]||(p[E]={}),u=d[p.uniqueID]||(d[p.uniqueID]={}),c=u[e]||[],h=c[0]===S&&c[1],v=h&&c[2],p=h&&m.childNodes[h];while(p=++h&&p&&p[_]||(v=h=0)||f.pop())if(1===p.nodeType&&++v&&p===t){u[e]=[S,h,v];break}}else if(b&&(p=t,d=p[E]||(p[E]={}),u=d[p.uniqueID]||(d[p.uniqueID]={}),c=u[e]||[],h=c[0]===S&&c[1],v=h),!1===v)while(p=++h&&p&&p[_]||(v=h=0)||f.pop())if((s?p.nodeName.toLowerCase()===g:1===p.nodeType)&&++v&&(b&&(d=p[E]||(p[E]={}),u=d[p.uniqueID]||(d[p.uniqueID]={}),u[e]=[S,v]),p===t))break;return v-=r,v===i||v%i===0&&v/i>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||se.error(\"unsupported pseudo: \"+e);return r[E]?r(t):r.length>1?(n=[e,e,\"\",t],i.setFilters.hasOwnProperty(e.toLowerCase())?ce((function(e,n){var i,a=r(e,t),o=a.length;while(o--)i=L(e,a[o]),e[i]=!(n[i]=a[o])})):function(e){return r(e,0,n)}):r}},pseudos:{not:ce((function(e){var t=[],n=[],i=s(e.replace(G,\"$1\"));return i[E]?ce((function(e,t,n,r){var a,o=i(e,null,r,[]),s=e.length;while(s--)(a=o[s])&&(e[s]=!(t[s]=a))})):function(e,r,a){return t[0]=e,i(t,null,a,n),t[0]=null,!n.pop()}})),has:ce((function(e){return function(t){return se(e,t).length>0}})),contains:ce((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||r(t)).indexOf(e)>-1}})),lang:ce((function(e){return Y.test(e||\"\")||se.error(\"unsupported lang: \"+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=_?t.lang:t.getAttribute(\"xml:lang\")||t.getAttribute(\"lang\"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+\"-\")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===h.activeElement&&(!h.hasFocus||h.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:_e(!1),disabled:_e(!0),checked:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&!!e.checked||\"option\"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!i.pseudos[\"empty\"](e)},header:function(e){return X.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&\"button\"===e.type||\"button\"===t},text:function(e){var t;return\"input\"===e.nodeName.toLowerCase()&&\"text\"===e.type&&(null==(t=e.getAttribute(\"type\"))||\"text\"===t.toLowerCase())},first:me((function(){return[0]})),last:me((function(e,t){return[t-1]})),eq:me((function(e,t,n){return[n<0?n+t:n]})),even:me((function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e})),odd:me((function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e})),lt:me((function(e,t,n){for(var i=n<0?n+t:n>t?t:n;--i>=0;)e.push(i);return e})),gt:me((function(e,t,n){for(var i=n<0?n+t:n;++i<t;)e.push(i);return e}))}},i.pseudos[\"nth\"]=i.pseudos[\"eq\"],{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[t]=he(t);for(t in{submit:!0,reset:!0})i.pseudos[t]=fe(t);function be(){}function ve(e){for(var t=0,n=e.length,i=\"\";t<n;t++)i+=e[t].value;return i}function Ee(e,t,n){var i=t.dir,r=t.next,a=r||i,o=n&&\"parentNode\"===a,s=C++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r);return!1}:function(t,n,l){var c,u,d,p=[S,s];if(l){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,l))return!0}else while(t=t[i])if(1===t.nodeType||o)if(d=t[E]||(t[E]={}),u=d[t.uniqueID]||(d[t.uniqueID]={}),r&&r===t.nodeName.toLowerCase())t=t[i]||t;else{if((c=u[a])&&c[0]===S&&c[1]===s)return p[2]=c[2];if(u[a]=p,p[2]=e(t,n,l))return!0}return!1}}function ye(e){return e.length>1?function(t,n,i){var r=e.length;while(r--)if(!e[r](t,n,i))return!1;return!0}:e[0]}function Se(e,t,n){for(var i=0,r=t.length;i<r;i++)se(e,t[i],n);return n}function Ce(e,t,n,i,r){for(var a,o=[],s=0,l=e.length,c=null!=t;s<l;s++)(a=e[s])&&(n&&!n(a,i,r)||(o.push(a),c&&t.push(s)));return o}function Te(e,t,n,i,r,a){return i&&!i[E]&&(i=Te(i)),r&&!r[E]&&(r=Te(r,a)),ce((function(a,o,s,l){var c,u,d,p=[],h=[],f=o.length,_=a||Se(t||\"*\",s.nodeType?[s]:s,[]),m=!e||!a&&t?_:Ce(_,p,e,s,l),g=n?r||(a?e:f||i)?[]:o:m;if(n&&n(m,g,s,l),i){c=Ce(g,h),i(c,[],s,l),u=c.length;while(u--)(d=c[u])&&(g[h[u]]=!(m[h[u]]=d))}if(a){if(r||e){if(r){c=[],u=g.length;while(u--)(d=g[u])&&c.push(m[u]=d);r(null,g=[],c,l)}u=g.length;while(u--)(d=g[u])&&(c=r?L(a,d):p[u])>-1&&(a[c]=!(o[c]=d))}}else g=Ce(g===o?g.splice(f,g.length):g),r?r(null,o,g,l):I.apply(o,g)}))}function xe(e){for(var t,n,r,a=e.length,o=i.relative[e[0].type],s=o||i.relative[\" \"],l=o?1:0,u=Ee((function(e){return e===t}),s,!0),d=Ee((function(e){return L(t,e)>-1}),s,!0),p=[function(e,n,i){var r=!o&&(i||n!==c)||((t=n).nodeType?u(e,n,i):d(e,n,i));return t=null,r}];l<a;l++)if(n=i.relative[e[l].type])p=[Ee(ye(p),n)];else{if(n=i.filter[e[l].type].apply(null,e[l].matches),n[E]){for(r=++l;r<a;r++)if(i.relative[e[r].type])break;return Te(l>1&&ye(p),l>1&&ve(e.slice(0,l-1).concat({value:\" \"===e[l-2].type?\"*\":\"\"})).replace(G,\"$1\"),n,l<r&&xe(e.slice(l,r)),r<a&&xe(e=e.slice(r)),r<a&&ve(e))}p.push(n)}return ye(p)}function we(e,t){var n=t.length>0,r=e.length>0,a=function(a,o,s,l,u){var d,f,m,g=0,b=\"0\",v=a&&[],E=[],y=c,C=a||r&&i.find[\"TAG\"](\"*\",u),T=S+=null==y?1:Math.random()||.1,x=C.length;for(u&&(c=o==h||o||u);b!==x&&null!=(d=C[b]);b++){if(r&&d){f=0,o||d.ownerDocument==h||(p(d),s=!_);while(m=e[f++])if(m(d,o||h,s)){l.push(d);break}u&&(S=T)}n&&((d=!m&&d)&&g--,a&&v.push(d))}if(g+=b,n&&b!==g){f=0;while(m=t[f++])m(v,E,o,s);if(a){if(g>0)while(b--)v[b]||E[b]||(E[b]=A.call(l));E=Ce(E)}I.apply(l,E),u&&!a&&E.length>0&&g+t.length>1&&se.uniqueSort(l)}return u&&(S=T,c=y),v};return n?ce(a):a}return be.prototype=i.filters=i.pseudos,i.setFilters=new be,o=se.tokenize=function(e,t){var n,r,a,o,s,l,c,u=x[e+\" \"];if(u)return t?0:u.slice(0);s=e,l=[],c=i.preFilter;while(s){for(o in n&&!(r=q.exec(s))||(r&&(s=s.slice(r[0].length)||s),l.push(a=[])),n=!1,(r=H.exec(s))&&(n=r.shift(),a.push({value:n,type:r[0].replace(G,\" \")}),s=s.slice(n.length)),i.filter)!(r=W[o].exec(s))||c[o]&&!(r=c[o](r))||(n=r.shift(),a.push({value:n,type:o,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?se.error(e):x(e,l).slice(0)},s=se.compile=function(e,t){var n,i=[],r=[],a=w[e+\" \"];if(!a){t||(t=o(e)),n=t.length;while(n--)a=xe(t[n]),a[E]?i.push(a):r.push(a);a=w(e,we(r,i)),a.selector=e}return a},l=se.select=function(e,t,n,r){var a,l,c,u,d,p=\"function\"===typeof e&&e,h=!r&&o(e=p.selector||e);if(n=n||[],1===h.length){if(l=h[0]=h[0].slice(0),l.length>2&&\"ID\"===(c=l[0]).type&&9===t.nodeType&&_&&i.relative[l[1].type]){if(t=(i.find[\"ID\"](c.matches[0].replace(te,ne),t)||[])[0],!t)return n;p&&(t=t.parentNode),e=e.slice(l.shift().value.length)}a=W[\"needsContext\"].test(e)?0:l.length;while(a--){if(c=l[a],i.relative[u=c.type])break;if((d=i.find[u])&&(r=d(c.matches[0].replace(te,ne),ee.test(l[0].type)&&ge(t.parentNode)||t))){if(l.splice(a,1),e=r.length&&ve(l),!e)return I.apply(n,r),n;break}}}return(p||s(e,h))(r,t,!_,n,!t||ee.test(e)&&ge(t.parentNode)||t),n},n.sortStable=E.split(\"\").sort(N).join(\"\")===E,n.detectDuplicates=!!d,p(),n.sortDetached=ue((function(e){return 1&e.compareDocumentPosition(h.createElement(\"fieldset\"))})),ue((function(e){return e.innerHTML=\"<a href='#'></a>\",\"#\"===e.firstChild.getAttribute(\"href\")}))||de(\"type|href|height|width\",(function(e,t,n){if(!n)return e.getAttribute(t,\"type\"===t.toLowerCase()?1:2)})),n.attributes&&ue((function(e){return e.innerHTML=\"<input/>\",e.firstChild.setAttribute(\"value\",\"\"),\"\"===e.firstChild.getAttribute(\"value\")}))||de(\"value\",(function(e,t,n){if(!n&&\"input\"===e.nodeName.toLowerCase())return e.defaultValue})),ue((function(e){return null==e.getAttribute(\"disabled\")}))||de(P,(function(e,t,n){var i;if(!n)return!0===e[t]?t.toLowerCase():(i=e.getAttributeNode(t))&&i.specified?i.value:null})),se}(n);x.find=O,x.expr=O.selectors,x.expr[\":\"]=x.expr.pseudos,x.uniqueSort=x.unique=O.uniqueSort,x.text=O.getText,x.isXMLDoc=O.isXML,x.contains=O.contains,x.escapeSelector=O.escape;var N=function(e,t,n){var i=[],r=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(r&&x(e).is(n))break;i.push(e)}return i},R=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=x.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var D=/^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i;function I(e,t,n){return b(t)?x.grep(e,(function(e,i){return!!t.call(e,i,e)!==n})):t.nodeType?x.grep(e,(function(e){return e===t!==n})):\"string\"!==typeof t?x.grep(e,(function(e){return d.call(t,e)>-1!==n})):x.filter(t,e,n)}x.filter=function(e,t,n){var i=t[0];return n&&(e=\":not(\"+e+\")\"),1===t.length&&1===i.nodeType?x.find.matchesSelector(i,e)?[i]:[]:x.find.matches(e,x.grep(t,(function(e){return 1===e.nodeType})))},x.fn.extend({find:function(e){var t,n,i=this.length,r=this;if(\"string\"!==typeof e)return this.pushStack(x(e).filter((function(){for(t=0;t<i;t++)if(x.contains(r[t],this))return!0})));for(n=this.pushStack([]),t=0;t<i;t++)x.find(e,r[t],n);return i>1?x.uniqueSort(n):n},filter:function(e){return this.pushStack(I(this,e||[],!1))},not:function(e){return this.pushStack(I(this,e||[],!0))},is:function(e){return!!I(this,\"string\"===typeof e&&k.test(e)?x(e):e||[],!1).length}});var M,L=/^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,P=x.fn.init=function(e,t,n){var i,r;if(!e)return this;if(n=n||M,\"string\"===typeof e){if(i=\"<\"===e[0]&&\">\"===e[e.length-1]&&e.length>=3?[null,e,null]:L.exec(e),!i||!i[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(i[1]){if(t=t instanceof x?t[0]:t,x.merge(this,x.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(i[1])&&x.isPlainObject(t))for(i in t)b(this[i])?this[i](t[i]):this.attr(i,t[i]);return this}return r=E.getElementById(i[2]),r&&(this[0]=r,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):b(e)?void 0!==n.ready?n.ready(e):e(x):x.makeArray(e,this)};P.prototype=x.fn,M=x(E);var F=/^(?:parents|prev(?:Until|All))/,B={children:!0,contents:!0,next:!0,prev:!0};function U(e,t){while((e=e[t])&&1!==e.nodeType);return e}x.fn.extend({has:function(e){var t=x(e,this),n=t.length;return this.filter((function(){for(var e=0;e<n;e++)if(x.contains(this,t[e]))return!0}))},closest:function(e,t){var n,i=0,r=this.length,a=[],o=\"string\"!==typeof e&&x(e);if(!k.test(e))for(;i<r;i++)for(n=this[i];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(o?o.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){a.push(n);break}return this.pushStack(a.length>1?x.uniqueSort(a):a)},index:function(e){return e?\"string\"===typeof e?d.call(x(e),this[0]):d.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(x.uniqueSort(x.merge(this.get(),x(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return N(e,\"parentNode\")},parentsUntil:function(e,t,n){return N(e,\"parentNode\",n)},next:function(e){return U(e,\"nextSibling\")},prev:function(e){return U(e,\"previousSibling\")},nextAll:function(e){return N(e,\"nextSibling\")},prevAll:function(e){return N(e,\"previousSibling\")},nextUntil:function(e,t,n){return N(e,\"nextSibling\",n)},prevUntil:function(e,t,n){return N(e,\"previousSibling\",n)},siblings:function(e){return R((e.parentNode||{}).firstChild,e)},children:function(e){return R(e.firstChild)},contents:function(e){return null!=e.contentDocument&&s(e.contentDocument)?e.contentDocument:(A(e,\"template\")&&(e=e.content||e),x.merge([],e.childNodes))}},(function(e,t){x.fn[e]=function(n,i){var r=x.map(this,t,n);return\"Until\"!==e.slice(-5)&&(i=n),i&&\"string\"===typeof i&&(r=x.filter(i,r)),this.length>1&&(B[e]||x.uniqueSort(r),F.test(e)&&r.reverse()),this.pushStack(r)}}));var $=/[^\\x20\\t\\r\\n\\f]+/g;function j(e){var t={};return x.each(e.match($)||[],(function(e,n){t[n]=!0})),t}function G(e){return e}function q(e){throw e}function H(e,t,n,i){var r;try{e&&b(r=e.promise)?r.call(e).done(t).fail(n):e&&b(r=e.then)?r.call(e,t,n):t.apply(void 0,[e].slice(i))}catch(e){n.apply(void 0,[e])}}x.Callbacks=function(e){e=\"string\"===typeof e?j(e):x.extend({},e);var t,n,i,r,a=[],o=[],s=-1,l=function(){for(r=r||e.once,i=t=!0;o.length;s=-1){n=o.shift();while(++s<a.length)!1===a[s].apply(n[0],n[1])&&e.stopOnFalse&&(s=a.length,n=!1)}e.memory||(n=!1),t=!1,r&&(a=n?[]:\"\")},c={add:function(){return a&&(n&&!t&&(s=a.length-1,o.push(n)),function t(n){x.each(n,(function(n,i){b(i)?e.unique&&c.has(i)||a.push(i):i&&i.length&&\"string\"!==C(i)&&t(i)}))}(arguments),n&&!t&&l()),this},remove:function(){return x.each(arguments,(function(e,t){var n;while((n=x.inArray(t,a,n))>-1)a.splice(n,1),n<=s&&s--})),this},has:function(e){return e?x.inArray(e,a)>-1:a.length>0},empty:function(){return a&&(a=[]),this},disable:function(){return r=o=[],a=n=\"\",this},disabled:function(){return!a},lock:function(){return r=o=[],n||t||(a=n=\"\"),this},locked:function(){return!!r},fireWith:function(e,n){return r||(n=n||[],n=[e,n.slice?n.slice():n],o.push(n),t||l()),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!i}};return c},x.extend({Deferred:function(e){var t=[[\"notify\",\"progress\",x.Callbacks(\"memory\"),x.Callbacks(\"memory\"),2],[\"resolve\",\"done\",x.Callbacks(\"once memory\"),x.Callbacks(\"once memory\"),0,\"resolved\"],[\"reject\",\"fail\",x.Callbacks(\"once memory\"),x.Callbacks(\"once memory\"),1,\"rejected\"]],i=\"pending\",r={state:function(){return i},always:function(){return a.done(arguments).fail(arguments),this},catch:function(e){return r.then(null,e)},pipe:function(){var e=arguments;return x.Deferred((function(n){x.each(t,(function(t,i){var r=b(e[i[4]])&&e[i[4]];a[i[1]]((function(){var e=r&&r.apply(this,arguments);e&&b(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[i[0]+\"With\"](this,r?[e]:arguments)}))})),e=null})).promise()},then:function(e,i,r){var a=0;function o(e,t,i,r){return function(){var s=this,l=arguments,c=function(){var n,c;if(!(e<a)){if(n=i.apply(s,l),n===t.promise())throw new TypeError(\"Thenable self-resolution\");c=n&&(\"object\"===typeof n||\"function\"===typeof n)&&n.then,b(c)?r?c.call(n,o(a,t,G,r),o(a,t,q,r)):(a++,c.call(n,o(a,t,G,r),o(a,t,q,r),o(a,t,G,t.notifyWith))):(i!==G&&(s=void 0,l=[n]),(r||t.resolveWith)(s,l))}},u=r?c:function(){try{c()}catch(n){x.Deferred.exceptionHook&&x.Deferred.exceptionHook(n,u.stackTrace),e+1>=a&&(i!==q&&(s=void 0,l=[n]),t.rejectWith(s,l))}};e?u():(x.Deferred.getStackHook&&(u.stackTrace=x.Deferred.getStackHook()),n.setTimeout(u))}}return x.Deferred((function(n){t[0][3].add(o(0,n,b(r)?r:G,n.notifyWith)),t[1][3].add(o(0,n,b(e)?e:G)),t[2][3].add(o(0,n,b(i)?i:q))})).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},a={};return x.each(t,(function(e,n){var o=n[2],s=n[5];r[n[1]]=o.add,s&&o.add((function(){i=s}),t[3-e][2].disable,t[3-e][3].disable,t[0][2].lock,t[0][3].lock),o.add(n[3].fire),a[n[0]]=function(){return a[n[0]+\"With\"](this===a?void 0:this,arguments),this},a[n[0]+\"With\"]=o.fireWith})),r.promise(a),e&&e.call(a,a),a},when:function(e){var t=arguments.length,n=t,i=Array(n),r=l.call(arguments),a=x.Deferred(),o=function(e){return function(n){i[e]=this,r[e]=arguments.length>1?l.call(arguments):n,--t||a.resolveWith(i,r)}};if(t<=1&&(H(e,a.done(o(n)).resolve,a.reject,!t),\"pending\"===a.state()||b(r[n]&&r[n].then)))return a.then();while(n--)H(r[n],o(n),a.reject);return a.promise()}});var V=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;x.Deferred.exceptionHook=function(e,t){n.console&&n.console.warn&&e&&V.test(e.name)&&n.console.warn(\"jQuery.Deferred exception: \"+e.message,e.stack,t)},x.readyException=function(e){n.setTimeout((function(){throw e}))};var z=x.Deferred();function Y(){E.removeEventListener(\"DOMContentLoaded\",Y),n.removeEventListener(\"load\",Y),x.ready()}x.fn.ready=function(e){return z.then(e).catch((function(e){x.readyException(e)})),this},x.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--x.readyWait:x.isReady)||(x.isReady=!0,!0!==e&&--x.readyWait>0||z.resolveWith(E,[x]))}}),x.ready.then=z.then,\"complete\"===E.readyState||\"loading\"!==E.readyState&&!E.documentElement.doScroll?n.setTimeout(x.ready):(E.addEventListener(\"DOMContentLoaded\",Y),n.addEventListener(\"load\",Y));var W=function(e,t,n,i,r,a,o){var s=0,l=e.length,c=null==n;if(\"object\"===C(n))for(s in r=!0,n)W(e,t,s,n[s],!0,a,o);else if(void 0!==i&&(r=!0,b(i)||(o=!0),c&&(o?(t.call(e,i),t=null):(c=t,t=function(e,t,n){return c.call(x(e),n)})),t))for(;s<l;s++)t(e[s],n,o?i:i.call(e[s],s,t(e[s],n)));return r?e:c?t.call(e):l?t(e[0],n):a},K=/^-ms-/,Q=/-([a-z])/g;function X(e,t){return t.toUpperCase()}function Z(e){return e.replace(K,\"ms-\").replace(Q,X)}var J=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function ee(){this.expando=x.expando+ee.uid++}ee.uid=1,ee.prototype={cache:function(e){var t=e[this.expando];return t||(t={},J(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var i,r=this.cache(e);if(\"string\"===typeof t)r[Z(t)]=n;else for(i in t)r[Z(i)]=t[i];return r},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][Z(t)]},access:function(e,t,n){return void 0===t||t&&\"string\"===typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,i=e[this.expando];if(void 0!==i){if(void 0!==t){Array.isArray(t)?t=t.map(Z):(t=Z(t),t=t in i?[t]:t.match($)||[]),n=t.length;while(n--)delete i[t[n]]}(void 0===t||x.isEmptyObject(i))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!x.isEmptyObject(t)}};var te=new ee,ne=new ee,ie=/^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,re=/[A-Z]/g;function ae(e){return\"true\"===e||\"false\"!==e&&(\"null\"===e?null:e===+e+\"\"?+e:ie.test(e)?JSON.parse(e):e)}function oe(e,t,n){var i;if(void 0===n&&1===e.nodeType)if(i=\"data-\"+t.replace(re,\"-$&\").toLowerCase(),n=e.getAttribute(i),\"string\"===typeof n){try{n=ae(n)}catch(r){}ne.set(e,t,n)}else n=void 0;return n}x.extend({hasData:function(e){return ne.hasData(e)||te.hasData(e)},data:function(e,t,n){return ne.access(e,t,n)},removeData:function(e,t){ne.remove(e,t)},_data:function(e,t,n){return te.access(e,t,n)},_removeData:function(e,t){te.remove(e,t)}}),x.fn.extend({data:function(e,t){var n,i,r,a=this[0],o=a&&a.attributes;if(void 0===e){if(this.length&&(r=ne.get(a),1===a.nodeType&&!te.get(a,\"hasDataAttrs\"))){n=o.length;while(n--)o[n]&&(i=o[n].name,0===i.indexOf(\"data-\")&&(i=Z(i.slice(5)),oe(a,i,r[i])));te.set(a,\"hasDataAttrs\",!0)}return r}return\"object\"===typeof e?this.each((function(){ne.set(this,e)})):W(this,(function(t){var n;if(a&&void 0===t)return n=ne.get(a,e),void 0!==n?n:(n=oe(a,e),void 0!==n?n:void 0);this.each((function(){ne.set(this,e,t)}))}),null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each((function(){ne.remove(this,e)}))}}),x.extend({queue:function(e,t,n){var i;if(e)return t=(t||\"fx\")+\"queue\",i=te.get(e,t),n&&(!i||Array.isArray(n)?i=te.access(e,t,x.makeArray(n)):i.push(n)),i||[]},dequeue:function(e,t){t=t||\"fx\";var n=x.queue(e,t),i=n.length,r=n.shift(),a=x._queueHooks(e,t),o=function(){x.dequeue(e,t)};\"inprogress\"===r&&(r=n.shift(),i--),r&&(\"fx\"===t&&n.unshift(\"inprogress\"),delete a.stop,r.call(e,o,a)),!i&&a&&a.empty.fire()},_queueHooks:function(e,t){var n=t+\"queueHooks\";return te.get(e,n)||te.access(e,n,{empty:x.Callbacks(\"once memory\").add((function(){te.remove(e,[t+\"queue\",n])}))})}}),x.fn.extend({queue:function(e,t){var n=2;return\"string\"!==typeof e&&(t=e,e=\"fx\",n--),arguments.length<n?x.queue(this[0],e):void 0===t?this:this.each((function(){var n=x.queue(this,e,t);x._queueHooks(this,e),\"fx\"===e&&\"inprogress\"!==n[0]&&x.dequeue(this,e)}))},dequeue:function(e){return this.each((function(){x.dequeue(this,e)}))},clearQueue:function(e){return this.queue(e||\"fx\",[])},promise:function(e,t){var n,i=1,r=x.Deferred(),a=this,o=this.length,s=function(){--i||r.resolveWith(a,[a])};\"string\"!==typeof e&&(t=e,e=void 0),e=e||\"fx\";while(o--)n=te.get(a[o],e+\"queueHooks\"),n&&n.empty&&(i++,n.empty.add(s));return s(),r.promise(t)}});var se=/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/.source,le=new RegExp(\"^(?:([+-])=|)(\"+se+\")([a-z%]*)$\",\"i\"),ce=[\"Top\",\"Right\",\"Bottom\",\"Left\"],ue=E.documentElement,de=function(e){return x.contains(e.ownerDocument,e)},pe={composed:!0};ue.getRootNode&&(de=function(e){return x.contains(e.ownerDocument,e)||e.getRootNode(pe)===e.ownerDocument});var he=function(e,t){return e=t||e,\"none\"===e.style.display||\"\"===e.style.display&&de(e)&&\"none\"===x.css(e,\"display\")};function fe(e,t,n,i){var r,a,o=20,s=i?function(){return i.cur()}:function(){return x.css(e,t,\"\")},l=s(),c=n&&n[3]||(x.cssNumber[t]?\"\":\"px\"),u=e.nodeType&&(x.cssNumber[t]||\"px\"!==c&&+l)&&le.exec(x.css(e,t));if(u&&u[3]!==c){l/=2,c=c||u[3],u=+l||1;while(o--)x.style(e,t,u+c),(1-a)*(1-(a=s()/l||.5))<=0&&(o=0),u/=a;u*=2,x.style(e,t,u+c),n=n||[]}return n&&(u=+u||+l||0,r=n[1]?u+(n[1]+1)*n[2]:+n[2],i&&(i.unit=c,i.start=u,i.end=r)),r}var _e={};function me(e){var t,n=e.ownerDocument,i=e.nodeName,r=_e[i];return r||(t=n.body.appendChild(n.createElement(i)),r=x.css(t,\"display\"),t.parentNode.removeChild(t),\"none\"===r&&(r=\"block\"),_e[i]=r,r)}function ge(e,t){for(var n,i,r=[],a=0,o=e.length;a<o;a++)i=e[a],i.style&&(n=i.style.display,t?(\"none\"===n&&(r[a]=te.get(i,\"display\")||null,r[a]||(i.style.display=\"\")),\"\"===i.style.display&&he(i)&&(r[a]=me(i))):\"none\"!==n&&(r[a]=\"none\",te.set(i,\"display\",n)));for(a=0;a<o;a++)null!=r[a]&&(e[a].style.display=r[a]);return e}x.fn.extend({show:function(){return ge(this,!0)},hide:function(){return ge(this)},toggle:function(e){return\"boolean\"===typeof e?e?this.show():this.hide():this.each((function(){he(this)?x(this).show():x(this).hide()}))}});var be=/^(?:checkbox|radio)$/i,ve=/<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i,Ee=/^$|^module$|\\/(?:java|ecma)script/i;(function(){var e=E.createDocumentFragment(),t=e.appendChild(E.createElement(\"div\")),n=E.createElement(\"input\");n.setAttribute(\"type\",\"radio\"),n.setAttribute(\"checked\",\"checked\"),n.setAttribute(\"name\",\"t\"),t.appendChild(n),g.checkClone=t.cloneNode(!0).cloneNode(!0).lastChild.checked,t.innerHTML=\"<textarea>x</textarea>\",g.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue,t.innerHTML=\"<option></option>\",g.option=!!t.lastChild})();var ye={thead:[1,\"<table>\",\"</table>\"],col:[2,\"<table><colgroup>\",\"</colgroup></table>\"],tr:[2,\"<table><tbody>\",\"</tbody></table>\"],td:[3,\"<table><tbody><tr>\",\"</tr></tbody></table>\"],_default:[0,\"\",\"\"]};function Se(e,t){var n;return n=\"undefined\"!==typeof e.getElementsByTagName?e.getElementsByTagName(t||\"*\"):\"undefined\"!==typeof e.querySelectorAll?e.querySelectorAll(t||\"*\"):[],void 0===t||t&&A(e,t)?x.merge([e],n):n}function Ce(e,t){for(var n=0,i=e.length;n<i;n++)te.set(e[n],\"globalEval\",!t||te.get(t[n],\"globalEval\"))}ye.tbody=ye.tfoot=ye.colgroup=ye.caption=ye.thead,ye.th=ye.td,g.option||(ye.optgroup=ye.option=[1,\"<select multiple='multiple'>\",\"</select>\"]);var Te=/<|&#?\\w+;/;function xe(e,t,n,i,r){for(var a,o,s,l,c,u,d=t.createDocumentFragment(),p=[],h=0,f=e.length;h<f;h++)if(a=e[h],a||0===a)if(\"object\"===C(a))x.merge(p,a.nodeType?[a]:a);else if(Te.test(a)){o=o||d.appendChild(t.createElement(\"div\")),s=(ve.exec(a)||[\"\",\"\"])[1].toLowerCase(),l=ye[s]||ye._default,o.innerHTML=l[1]+x.htmlPrefilter(a)+l[2],u=l[0];while(u--)o=o.lastChild;x.merge(p,o.childNodes),o=d.firstChild,o.textContent=\"\"}else p.push(t.createTextNode(a));d.textContent=\"\",h=0;while(a=p[h++])if(i&&x.inArray(a,i)>-1)r&&r.push(a);else if(c=de(a),o=Se(d.appendChild(a),\"script\"),c&&Ce(o),n){u=0;while(a=o[u++])Ee.test(a.type||\"\")&&n.push(a)}return d}var we=/^key/,Oe=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ne=/^([^.]*)(?:\\.(.+)|)/;function Re(){return!0}function ke(){return!1}function Ae(e,t){return e===De()===(\"focus\"===t)}function De(){try{return E.activeElement}catch(e){}}function Ie(e,t,n,i,r,a){var o,s;if(\"object\"===typeof t){for(s in\"string\"!==typeof n&&(i=i||n,n=void 0),t)Ie(e,s,n,i,t[s],a);return e}if(null==i&&null==r?(r=n,i=n=void 0):null==r&&(\"string\"===typeof n?(r=i,i=void 0):(r=i,i=n,n=void 0)),!1===r)r=ke;else if(!r)return e;return 1===a&&(o=r,r=function(e){return x().off(e),o.apply(this,arguments)},r.guid=o.guid||(o.guid=x.guid++)),e.each((function(){x.event.add(this,t,r,i,n)}))}function Me(e,t,n){n?(te.set(e,t,!1),x.event.add(e,t,{namespace:!1,handler:function(e){var i,r,a=te.get(this,t);if(1&e.isTrigger&&this[t]){if(a.length)(x.event.special[t]||{}).delegateType&&e.stopPropagation();else if(a=l.call(arguments),te.set(this,t,a),i=n(this,t),this[t](),r=te.get(this,t),a!==r||i?te.set(this,t,!1):r={},a!==r)return e.stopImmediatePropagation(),e.preventDefault(),r.value}else a.length&&(te.set(this,t,{value:x.event.trigger(x.extend(a[0],x.Event.prototype),a.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===te.get(e,t)&&x.event.add(e,t,Re)}x.event={global:{},add:function(e,t,n,i,r){var a,o,s,l,c,u,d,p,h,f,_,m=te.get(e);if(J(e)){n.handler&&(a=n,n=a.handler,r=a.selector),r&&x.find.matchesSelector(ue,r),n.guid||(n.guid=x.guid++),(l=m.events)||(l=m.events=Object.create(null)),(o=m.handle)||(o=m.handle=function(t){return\"undefined\"!==typeof x&&x.event.triggered!==t.type?x.event.dispatch.apply(e,arguments):void 0}),t=(t||\"\").match($)||[\"\"],c=t.length;while(c--)s=Ne.exec(t[c])||[],h=_=s[1],f=(s[2]||\"\").split(\".\").sort(),h&&(d=x.event.special[h]||{},h=(r?d.delegateType:d.bindType)||h,d=x.event.special[h]||{},u=x.extend({type:h,origType:_,data:i,handler:n,guid:n.guid,selector:r,needsContext:r&&x.expr.match.needsContext.test(r),namespace:f.join(\".\")},a),(p=l[h])||(p=l[h]=[],p.delegateCount=0,d.setup&&!1!==d.setup.call(e,i,f,o)||e.addEventListener&&e.addEventListener(h,o)),d.add&&(d.add.call(e,u),u.handler.guid||(u.handler.guid=n.guid)),r?p.splice(p.delegateCount++,0,u):p.push(u),x.event.global[h]=!0)}},remove:function(e,t,n,i,r){var a,o,s,l,c,u,d,p,h,f,_,m=te.hasData(e)&&te.get(e);if(m&&(l=m.events)){t=(t||\"\").match($)||[\"\"],c=t.length;while(c--)if(s=Ne.exec(t[c])||[],h=_=s[1],f=(s[2]||\"\").split(\".\").sort(),h){d=x.event.special[h]||{},h=(i?d.delegateType:d.bindType)||h,p=l[h]||[],s=s[2]&&new RegExp(\"(^|\\\\.)\"+f.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"),o=a=p.length;while(a--)u=p[a],!r&&_!==u.origType||n&&n.guid!==u.guid||s&&!s.test(u.namespace)||i&&i!==u.selector&&(\"**\"!==i||!u.selector)||(p.splice(a,1),u.selector&&p.delegateCount--,d.remove&&d.remove.call(e,u));o&&!p.length&&(d.teardown&&!1!==d.teardown.call(e,f,m.handle)||x.removeEvent(e,h,m.handle),delete l[h])}else for(h in l)x.event.remove(e,h+t[c],n,i,!0);x.isEmptyObject(l)&&te.remove(e,\"handle events\")}},dispatch:function(e){var t,n,i,r,a,o,s=new Array(arguments.length),l=x.event.fix(e),c=(te.get(this,\"events\")||Object.create(null))[l.type]||[],u=x.event.special[l.type]||{};for(s[0]=l,t=1;t<arguments.length;t++)s[t]=arguments[t];if(l.delegateTarget=this,!u.preDispatch||!1!==u.preDispatch.call(this,l)){o=x.event.handlers.call(this,l,c),t=0;while((r=o[t++])&&!l.isPropagationStopped()){l.currentTarget=r.elem,n=0;while((a=r.handlers[n++])&&!l.isImmediatePropagationStopped())l.rnamespace&&!1!==a.namespace&&!l.rnamespace.test(a.namespace)||(l.handleObj=a,l.data=a.data,i=((x.event.special[a.origType]||{}).handle||a.handler).apply(r.elem,s),void 0!==i&&!1===(l.result=i)&&(l.preventDefault(),l.stopPropagation()))}return u.postDispatch&&u.postDispatch.call(this,l),l.result}},handlers:function(e,t){var n,i,r,a,o,s=[],l=t.delegateCount,c=e.target;if(l&&c.nodeType&&!(\"click\"===e.type&&e.button>=1))for(;c!==this;c=c.parentNode||this)if(1===c.nodeType&&(\"click\"!==e.type||!0!==c.disabled)){for(a=[],o={},n=0;n<l;n++)i=t[n],r=i.selector+\" \",void 0===o[r]&&(o[r]=i.needsContext?x(r,this).index(c)>-1:x.find(r,this,null,[c]).length),o[r]&&a.push(i);a.length&&s.push({elem:c,handlers:a})}return c=this,l<t.length&&s.push({elem:c,handlers:t.slice(l)}),s},addProp:function(e,t){Object.defineProperty(x.Event.prototype,e,{enumerable:!0,configurable:!0,get:b(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[x.expando]?e:new x.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return be.test(t.type)&&t.click&&A(t,\"input\")&&Me(t,\"click\",Re),!1},trigger:function(e){var t=this||e;return be.test(t.type)&&t.click&&A(t,\"input\")&&Me(t,\"click\"),!0},_default:function(e){var t=e.target;return be.test(t.type)&&t.click&&A(t,\"input\")&&te.get(t,\"click\")||A(t,\"a\")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},x.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},x.Event=function(e,t){if(!(this instanceof x.Event))return new x.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?Re:ke,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&x.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[x.expando]=!0},x.Event.prototype={constructor:x.Event,isDefaultPrevented:ke,isPropagationStopped:ke,isImmediatePropagationStopped:ke,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=Re,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=Re,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=Re,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},x.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&we.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&Oe.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},x.event.addProp),x.each({focus:\"focusin\",blur:\"focusout\"},(function(e,t){x.event.special[e]={setup:function(){return Me(this,e,Ae),!1},trigger:function(){return Me(this,e),!0},delegateType:t}})),x.each({mouseenter:\"mouseover\",mouseleave:\"mouseout\",pointerenter:\"pointerover\",pointerleave:\"pointerout\"},(function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,i=this,r=e.relatedTarget,a=e.handleObj;return r&&(r===i||x.contains(i,r))||(e.type=a.origType,n=a.handler.apply(this,arguments),e.type=t),n}}})),x.fn.extend({on:function(e,t,n,i){return Ie(this,e,t,n,i)},one:function(e,t,n,i){return Ie(this,e,t,n,i,1)},off:function(e,t,n){var i,r;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,x(e.delegateTarget).off(i.namespace?i.origType+\".\"+i.namespace:i.origType,i.selector,i.handler),this;if(\"object\"===typeof e){for(r in e)this.off(r,t,e[r]);return this}return!1!==t&&\"function\"!==typeof t||(n=t,t=void 0),!1===n&&(n=ke),this.each((function(){x.event.remove(this,e,n,t)}))}});var Le=/<script|<style|<link/i,Pe=/checked\\s*(?:[^=]|=\\s*.checked.)/i,Fe=/^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;function Be(e,t){return A(e,\"table\")&&A(11!==t.nodeType?t:t.firstChild,\"tr\")&&x(e).children(\"tbody\")[0]||e}function Ue(e){return e.type=(null!==e.getAttribute(\"type\"))+\"/\"+e.type,e}function $e(e){return\"true/\"===(e.type||\"\").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute(\"type\"),e}function je(e,t){var n,i,r,a,o,s,l;if(1===t.nodeType){if(te.hasData(e)&&(a=te.get(e),l=a.events,l))for(r in te.remove(t,\"handle events\"),l)for(n=0,i=l[r].length;n<i;n++)x.event.add(t,r,l[r][n]);ne.hasData(e)&&(o=ne.access(e),s=x.extend({},o),ne.set(t,s))}}function Ge(e,t){var n=t.nodeName.toLowerCase();\"input\"===n&&be.test(e.type)?t.checked=e.checked:\"input\"!==n&&\"textarea\"!==n||(t.defaultValue=e.defaultValue)}function qe(e,t,n,i){t=c(t);var r,a,o,s,l,u,d=0,p=e.length,h=p-1,f=t[0],_=b(f);if(_||p>1&&\"string\"===typeof f&&!g.checkClone&&Pe.test(f))return e.each((function(r){var a=e.eq(r);_&&(t[0]=f.call(this,r,a.html())),qe(a,t,n,i)}));if(p&&(r=xe(t,e[0].ownerDocument,!1,e,i),a=r.firstChild,1===r.childNodes.length&&(r=a),a||i)){for(o=x.map(Se(r,\"script\"),Ue),s=o.length;d<p;d++)l=r,d!==h&&(l=x.clone(l,!0,!0),s&&x.merge(o,Se(l,\"script\"))),n.call(e[d],l,d);if(s)for(u=o[o.length-1].ownerDocument,x.map(o,$e),d=0;d<s;d++)l=o[d],Ee.test(l.type||\"\")&&!te.access(l,\"globalEval\")&&x.contains(u,l)&&(l.src&&\"module\"!==(l.type||\"\").toLowerCase()?x._evalUrl&&!l.noModule&&x._evalUrl(l.src,{nonce:l.nonce||l.getAttribute(\"nonce\")},u):S(l.textContent.replace(Fe,\"\"),l,u))}return e}function He(e,t,n){for(var i,r=t?x.filter(t,e):e,a=0;null!=(i=r[a]);a++)n||1!==i.nodeType||x.cleanData(Se(i)),i.parentNode&&(n&&de(i)&&Ce(Se(i,\"script\")),i.parentNode.removeChild(i));return e}x.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var i,r,a,o,s=e.cloneNode(!0),l=de(e);if(!g.noCloneChecked&&(1===e.nodeType||11===e.nodeType)&&!x.isXMLDoc(e))for(o=Se(s),a=Se(e),i=0,r=a.length;i<r;i++)Ge(a[i],o[i]);if(t)if(n)for(a=a||Se(e),o=o||Se(s),i=0,r=a.length;i<r;i++)je(a[i],o[i]);else je(e,s);return o=Se(s,\"script\"),o.length>0&&Ce(o,!l&&Se(e,\"script\")),s},cleanData:function(e){for(var t,n,i,r=x.event.special,a=0;void 0!==(n=e[a]);a++)if(J(n)){if(t=n[te.expando]){if(t.events)for(i in t.events)r[i]?x.event.remove(n,i):x.removeEvent(n,i,t.handle);n[te.expando]=void 0}n[ne.expando]&&(n[ne.expando]=void 0)}}}),x.fn.extend({detach:function(e){return He(this,e,!0)},remove:function(e){return He(this,e)},text:function(e){return W(this,(function(e){return void 0===e?x.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return qe(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Be(this,e);t.appendChild(e)}}))},prepend:function(){return qe(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Be(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return qe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return qe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(x.cleanData(Se(e,!1)),e.textContent=\"\");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return x.clone(this,e,t)}))},html:function(e){return W(this,(function(e){var t=this[0]||{},n=0,i=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if(\"string\"===typeof e&&!Le.test(e)&&!ye[(ve.exec(e)||[\"\",\"\"])[1].toLowerCase()]){e=x.htmlPrefilter(e);try{for(;n<i;n++)t=this[n]||{},1===t.nodeType&&(x.cleanData(Se(t,!1)),t.innerHTML=e);t=0}catch(r){}}t&&this.empty().append(e)}),null,e,arguments.length)},replaceWith:function(){var e=[];return qe(this,arguments,(function(t){var n=this.parentNode;x.inArray(this,e)<0&&(x.cleanData(Se(this)),n&&n.replaceChild(t,this))}),e)}}),x.each({appendTo:\"append\",prependTo:\"prepend\",insertBefore:\"before\",insertAfter:\"after\",replaceAll:\"replaceWith\"},(function(e,t){x.fn[e]=function(e){for(var n,i=[],r=x(e),a=r.length-1,o=0;o<=a;o++)n=o===a?this:this.clone(!0),x(r[o])[t](n),u.apply(i,n.get());return this.pushStack(i)}}));var Ve=new RegExp(\"^(\"+se+\")(?!px)[a-z%]+$\",\"i\"),ze=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=n),t.getComputedStyle(e)},Ye=function(e,t,n){var i,r,a={};for(r in t)a[r]=e.style[r],e.style[r]=t[r];for(r in i=n.call(e),t)e.style[r]=a[r];return i},We=new RegExp(ce.join(\"|\"),\"i\");function Ke(e,t,n){var i,r,a,o,s=e.style;return n=n||ze(e),n&&(o=n.getPropertyValue(t)||n[t],\"\"!==o||de(e)||(o=x.style(e,t)),!g.pixelBoxStyles()&&Ve.test(o)&&We.test(t)&&(i=s.width,r=s.minWidth,a=s.maxWidth,s.minWidth=s.maxWidth=s.width=o,o=n.width,s.width=i,s.minWidth=r,s.maxWidth=a)),void 0!==o?o+\"\":o}function Qe(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}(function(){function e(){if(u){c.style.cssText=\"position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0\",u.style.cssText=\"position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%\",ue.appendChild(c).appendChild(u);var e=n.getComputedStyle(u);i=\"1%\"!==e.top,l=12===t(e.marginLeft),u.style.right=\"60%\",o=36===t(e.right),r=36===t(e.width),u.style.position=\"absolute\",a=12===t(u.offsetWidth/3),ue.removeChild(c),u=null}}function t(e){return Math.round(parseFloat(e))}var i,r,a,o,s,l,c=E.createElement(\"div\"),u=E.createElement(\"div\");u.style&&(u.style.backgroundClip=\"content-box\",u.cloneNode(!0).style.backgroundClip=\"\",g.clearCloneStyle=\"content-box\"===u.style.backgroundClip,x.extend(g,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),i},reliableMarginLeft:function(){return e(),l},scrollboxSize:function(){return e(),a},reliableTrDimensions:function(){var e,t,i,r;return null==s&&(e=E.createElement(\"table\"),t=E.createElement(\"tr\"),i=E.createElement(\"div\"),e.style.cssText=\"position:absolute;left:-11111px\",t.style.height=\"1px\",i.style.height=\"9px\",ue.appendChild(e).appendChild(t).appendChild(i),r=n.getComputedStyle(t),s=parseInt(r.height)>3,ue.removeChild(e)),s}}))})();var Xe=[\"Webkit\",\"Moz\",\"ms\"],Ze=E.createElement(\"div\").style,Je={};function et(e){var t=e[0].toUpperCase()+e.slice(1),n=Xe.length;while(n--)if(e=Xe[n]+t,e in Ze)return e}function tt(e){var t=x.cssProps[e]||Je[e];return t||(e in Ze?e:Je[e]=et(e)||e)}var nt=/^(none|table(?!-c[ea]).+)/,it=/^--/,rt={position:\"absolute\",visibility:\"hidden\",display:\"block\"},at={letterSpacing:\"0\",fontWeight:\"400\"};function ot(e,t,n){var i=le.exec(t);return i?Math.max(0,i[2]-(n||0))+(i[3]||\"px\"):t}function st(e,t,n,i,r,a){var o=\"width\"===t?1:0,s=0,l=0;if(n===(i?\"border\":\"content\"))return 0;for(;o<4;o+=2)\"margin\"===n&&(l+=x.css(e,n+ce[o],!0,r)),i?(\"content\"===n&&(l-=x.css(e,\"padding\"+ce[o],!0,r)),\"margin\"!==n&&(l-=x.css(e,\"border\"+ce[o]+\"Width\",!0,r))):(l+=x.css(e,\"padding\"+ce[o],!0,r),\"padding\"!==n?l+=x.css(e,\"border\"+ce[o]+\"Width\",!0,r):s+=x.css(e,\"border\"+ce[o]+\"Width\",!0,r));return!i&&a>=0&&(l+=Math.max(0,Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-a-l-s-.5))||0),l}function lt(e,t,n){var i=ze(e),r=!g.boxSizingReliable()||n,a=r&&\"border-box\"===x.css(e,\"boxSizing\",!1,i),o=a,s=Ke(e,t,i),l=\"offset\"+t[0].toUpperCase()+t.slice(1);if(Ve.test(s)){if(!n)return s;s=\"auto\"}return(!g.boxSizingReliable()&&a||!g.reliableTrDimensions()&&A(e,\"tr\")||\"auto\"===s||!parseFloat(s)&&\"inline\"===x.css(e,\"display\",!1,i))&&e.getClientRects().length&&(a=\"border-box\"===x.css(e,\"boxSizing\",!1,i),o=l in e,o&&(s=e[l])),s=parseFloat(s)||0,s+st(e,t,n||(a?\"border\":\"content\"),o,i,s)+\"px\"}function ct(e,t,n,i,r){return new ct.prototype.init(e,t,n,i,r)}x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Ke(e,\"opacity\");return\"\"===n?\"1\":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var r,a,o,s=Z(t),l=it.test(t),c=e.style;if(l||(t=tt(s)),o=x.cssHooks[t]||x.cssHooks[s],void 0===n)return o&&\"get\"in o&&void 0!==(r=o.get(e,!1,i))?r:c[t];a=typeof n,\"string\"===a&&(r=le.exec(n))&&r[1]&&(n=fe(e,t,r),a=\"number\"),null!=n&&n===n&&(\"number\"!==a||l||(n+=r&&r[3]||(x.cssNumber[s]?\"\":\"px\")),g.clearCloneStyle||\"\"!==n||0!==t.indexOf(\"background\")||(c[t]=\"inherit\"),o&&\"set\"in o&&void 0===(n=o.set(e,n,i))||(l?c.setProperty(t,n):c[t]=n))}},css:function(e,t,n,i){var r,a,o,s=Z(t),l=it.test(t);return l||(t=tt(s)),o=x.cssHooks[t]||x.cssHooks[s],o&&\"get\"in o&&(r=o.get(e,!0,n)),void 0===r&&(r=Ke(e,t,i)),\"normal\"===r&&t in at&&(r=at[t]),\"\"===n||n?(a=parseFloat(r),!0===n||isFinite(a)?a||0:r):r}}),x.each([\"height\",\"width\"],(function(e,t){x.cssHooks[t]={get:function(e,n,i){if(n)return!nt.test(x.css(e,\"display\"))||e.getClientRects().length&&e.getBoundingClientRect().width?lt(e,t,i):Ye(e,rt,(function(){return lt(e,t,i)}))},set:function(e,n,i){var r,a=ze(e),o=!g.scrollboxSize()&&\"absolute\"===a.position,s=o||i,l=s&&\"border-box\"===x.css(e,\"boxSizing\",!1,a),c=i?st(e,t,i,l,a):0;return l&&o&&(c-=Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-parseFloat(a[t])-st(e,t,\"border\",!1,a)-.5)),c&&(r=le.exec(n))&&\"px\"!==(r[3]||\"px\")&&(e.style[t]=n,n=x.css(e,t)),ot(e,n,c)}}})),x.cssHooks.marginLeft=Qe(g.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(Ke(e,\"marginLeft\"))||e.getBoundingClientRect().left-Ye(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+\"px\"})),x.each({margin:\"\",padding:\"\",border:\"Width\"},(function(e,t){x.cssHooks[e+t]={expand:function(n){for(var i=0,r={},a=\"string\"===typeof n?n.split(\" \"):[n];i<4;i++)r[e+ce[i]+t]=a[i]||a[i-2]||a[0];return r}},\"margin\"!==e&&(x.cssHooks[e+t].set=ot)})),x.fn.extend({css:function(e,t){return W(this,(function(e,t,n){var i,r,a={},o=0;if(Array.isArray(t)){for(i=ze(e),r=t.length;o<r;o++)a[t[o]]=x.css(e,t[o],!1,i);return a}return void 0!==n?x.style(e,t,n):x.css(e,t)}),e,t,arguments.length>1)}}),x.Tween=ct,ct.prototype={constructor:ct,init:function(e,t,n,i,r,a){this.elem=e,this.prop=n,this.easing=r||x.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=i,this.unit=a||(x.cssNumber[n]?\"\":\"px\")},cur:function(){var e=ct.propHooks[this.prop];return e&&e.get?e.get(this):ct.propHooks._default.get(this)},run:function(e){var t,n=ct.propHooks[this.prop];return this.options.duration?this.pos=t=x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):ct.propHooks._default.set(this),this}},ct.prototype.init.prototype=ct.prototype,ct.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=x.css(e.elem,e.prop,\"\"),t&&\"auto\"!==t?t:0)},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):1!==e.elem.nodeType||!x.cssHooks[e.prop]&&null==e.elem.style[tt(e.prop)]?e.elem[e.prop]=e.now:x.style(e.elem,e.prop,e.now+e.unit)}}},ct.propHooks.scrollTop=ct.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:\"swing\"},x.fx=ct.prototype.init,x.fx.step={};var ut,dt,pt=/^(?:toggle|show|hide)$/,ht=/queueHooks$/;function ft(){dt&&(!1===E.hidden&&n.requestAnimationFrame?n.requestAnimationFrame(ft):n.setTimeout(ft,x.fx.interval),x.fx.tick())}function _t(){return n.setTimeout((function(){ut=void 0})),ut=Date.now()}function mt(e,t){var n,i=0,r={height:e};for(t=t?1:0;i<4;i+=2-t)n=ce[i],r[\"margin\"+n]=r[\"padding\"+n]=e;return t&&(r.opacity=r.width=e),r}function gt(e,t,n){for(var i,r=(Et.tweeners[t]||[]).concat(Et.tweeners[\"*\"]),a=0,o=r.length;a<o;a++)if(i=r[a].call(n,t,e))return i}function bt(e,t,n){var i,r,a,o,s,l,c,u,d=\"width\"in t||\"height\"in t,p=this,h={},f=e.style,_=e.nodeType&&he(e),m=te.get(e,\"fxshow\");for(i in n.queue||(o=x._queueHooks(e,\"fx\"),null==o.unqueued&&(o.unqueued=0,s=o.empty.fire,o.empty.fire=function(){o.unqueued||s()}),o.unqueued++,p.always((function(){p.always((function(){o.unqueued--,x.queue(e,\"fx\").length||o.empty.fire()}))}))),t)if(r=t[i],pt.test(r)){if(delete t[i],a=a||\"toggle\"===r,r===(_?\"hide\":\"show\")){if(\"show\"!==r||!m||void 0===m[i])continue;_=!0}h[i]=m&&m[i]||x.style(e,i)}if(l=!x.isEmptyObject(t),l||!x.isEmptyObject(h))for(i in d&&1===e.nodeType&&(n.overflow=[f.overflow,f.overflowX,f.overflowY],c=m&&m.display,null==c&&(c=te.get(e,\"display\")),u=x.css(e,\"display\"),\"none\"===u&&(c?u=c:(ge([e],!0),c=e.style.display||c,u=x.css(e,\"display\"),ge([e]))),(\"inline\"===u||\"inline-block\"===u&&null!=c)&&\"none\"===x.css(e,\"float\")&&(l||(p.done((function(){f.display=c})),null==c&&(u=f.display,c=\"none\"===u?\"\":u)),f.display=\"inline-block\")),n.overflow&&(f.overflow=\"hidden\",p.always((function(){f.overflow=n.overflow[0],f.overflowX=n.overflow[1],f.overflowY=n.overflow[2]}))),l=!1,h)l||(m?\"hidden\"in m&&(_=m.hidden):m=te.access(e,\"fxshow\",{display:c}),a&&(m.hidden=!_),_&&ge([e],!0),p.done((function(){for(i in _||ge([e]),te.remove(e,\"fxshow\"),h)x.style(e,i,h[i])}))),l=gt(_?m[i]:0,i,p),i in m||(m[i]=l.start,_&&(l.end=l.start,l.start=0))}function vt(e,t){var n,i,r,a,o;for(n in e)if(i=Z(n),r=t[i],a=e[n],Array.isArray(a)&&(r=a[1],a=e[n]=a[0]),n!==i&&(e[i]=a,delete e[n]),o=x.cssHooks[i],o&&\"expand\"in o)for(n in a=o.expand(a),delete e[i],a)n in e||(e[n]=a[n],t[n]=r);else t[i]=r}function Et(e,t,n){var i,r,a=0,o=Et.prefilters.length,s=x.Deferred().always((function(){delete l.elem})),l=function(){if(r)return!1;for(var t=ut||_t(),n=Math.max(0,c.startTime+c.duration-t),i=n/c.duration||0,a=1-i,o=0,l=c.tweens.length;o<l;o++)c.tweens[o].run(a);return s.notifyWith(e,[c,a,n]),a<1&&l?n:(l||s.notifyWith(e,[c,1,0]),s.resolveWith(e,[c]),!1)},c=s.promise({elem:e,props:x.extend({},t),opts:x.extend(!0,{specialEasing:{},easing:x.easing._default},n),originalProperties:t,originalOptions:n,startTime:ut||_t(),duration:n.duration,tweens:[],createTween:function(t,n){var i=x.Tween(e,c.opts,t,n,c.opts.specialEasing[t]||c.opts.easing);return c.tweens.push(i),i},stop:function(t){var n=0,i=t?c.tweens.length:0;if(r)return this;for(r=!0;n<i;n++)c.tweens[n].run(1);return t?(s.notifyWith(e,[c,1,0]),s.resolveWith(e,[c,t])):s.rejectWith(e,[c,t]),this}}),u=c.props;for(vt(u,c.opts.specialEasing);a<o;a++)if(i=Et.prefilters[a].call(c,e,u,c.opts),i)return b(i.stop)&&(x._queueHooks(c.elem,c.opts.queue).stop=i.stop.bind(i)),i;return x.map(u,gt,c),b(c.opts.start)&&c.opts.start.call(e,c),c.progress(c.opts.progress).done(c.opts.done,c.opts.complete).fail(c.opts.fail).always(c.opts.always),x.fx.timer(x.extend(l,{elem:e,anim:c,queue:c.opts.queue})),c}x.Animation=x.extend(Et,{tweeners:{\"*\":[function(e,t){var n=this.createTween(e,t);return fe(n.elem,e,le.exec(t),n),n}]},tweener:function(e,t){b(e)?(t=e,e=[\"*\"]):e=e.match($);for(var n,i=0,r=e.length;i<r;i++)n=e[i],Et.tweeners[n]=Et.tweeners[n]||[],Et.tweeners[n].unshift(t)},prefilters:[bt],prefilter:function(e,t){t?Et.prefilters.unshift(e):Et.prefilters.push(e)}}),x.speed=function(e,t,n){var i=e&&\"object\"===typeof e?x.extend({},e):{complete:n||!n&&t||b(e)&&e,duration:e,easing:n&&t||t&&!b(t)&&t};return x.fx.off?i.duration=0:\"number\"!==typeof i.duration&&(i.duration in x.fx.speeds?i.duration=x.fx.speeds[i.duration]:i.duration=x.fx.speeds._default),null!=i.queue&&!0!==i.queue||(i.queue=\"fx\"),i.old=i.complete,i.complete=function(){b(i.old)&&i.old.call(this),i.queue&&x.dequeue(this,i.queue)},i},x.fn.extend({fadeTo:function(e,t,n,i){return this.filter(he).css(\"opacity\",0).show().end().animate({opacity:t},e,n,i)},animate:function(e,t,n,i){var r=x.isEmptyObject(e),a=x.speed(t,n,i),o=function(){var t=Et(this,x.extend({},e),a);(r||te.get(this,\"finish\"))&&t.stop(!0)};return o.finish=o,r||!1===a.queue?this.each(o):this.queue(a.queue,o)},stop:function(e,t,n){var i=function(e){var t=e.stop;delete e.stop,t(n)};return\"string\"!==typeof e&&(n=t,t=e,e=void 0),t&&this.queue(e||\"fx\",[]),this.each((function(){var t=!0,r=null!=e&&e+\"queueHooks\",a=x.timers,o=te.get(this);if(r)o[r]&&o[r].stop&&i(o[r]);else for(r in o)o[r]&&o[r].stop&&ht.test(r)&&i(o[r]);for(r=a.length;r--;)a[r].elem!==this||null!=e&&a[r].queue!==e||(a[r].anim.stop(n),t=!1,a.splice(r,1));!t&&n||x.dequeue(this,e)}))},finish:function(e){return!1!==e&&(e=e||\"fx\"),this.each((function(){var t,n=te.get(this),i=n[e+\"queue\"],r=n[e+\"queueHooks\"],a=x.timers,o=i?i.length:0;for(n.finish=!0,x.queue(this,e,[]),r&&r.stop&&r.stop.call(this,!0),t=a.length;t--;)a[t].elem===this&&a[t].queue===e&&(a[t].anim.stop(!0),a.splice(t,1));for(t=0;t<o;t++)i[t]&&i[t].finish&&i[t].finish.call(this);delete n.finish}))}}),x.each([\"toggle\",\"show\",\"hide\"],(function(e,t){var n=x.fn[t];x.fn[t]=function(e,i,r){return null==e||\"boolean\"===typeof e?n.apply(this,arguments):this.animate(mt(t,!0),e,i,r)}})),x.each({slideDown:mt(\"show\"),slideUp:mt(\"hide\"),slideToggle:mt(\"toggle\"),fadeIn:{opacity:\"show\"},fadeOut:{opacity:\"hide\"},fadeToggle:{opacity:\"toggle\"}},(function(e,t){x.fn[e]=function(e,n,i){return this.animate(t,e,n,i)}})),x.timers=[],x.fx.tick=function(){var e,t=0,n=x.timers;for(ut=Date.now();t<n.length;t++)e=n[t],e()||n[t]!==e||n.splice(t--,1);n.length||x.fx.stop(),ut=void 0},x.fx.timer=function(e){x.timers.push(e),x.fx.start()},x.fx.interval=13,x.fx.start=function(){dt||(dt=!0,ft())},x.fx.stop=function(){dt=null},x.fx.speeds={slow:600,fast:200,_default:400},x.fn.delay=function(e,t){return e=x.fx&&x.fx.speeds[e]||e,t=t||\"fx\",this.queue(t,(function(t,i){var r=n.setTimeout(t,e);i.stop=function(){n.clearTimeout(r)}}))},function(){var e=E.createElement(\"input\"),t=E.createElement(\"select\"),n=t.appendChild(E.createElement(\"option\"));e.type=\"checkbox\",g.checkOn=\"\"!==e.value,g.optSelected=n.selected,e=E.createElement(\"input\"),e.value=\"t\",e.type=\"radio\",g.radioValue=\"t\"===e.value}();var yt,St=x.expr.attrHandle;x.fn.extend({attr:function(e,t){return W(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each((function(){x.removeAttr(this,e)}))}}),x.extend({attr:function(e,t,n){var i,r,a=e.nodeType;if(3!==a&&8!==a&&2!==a)return\"undefined\"===typeof e.getAttribute?x.prop(e,t,n):(1===a&&x.isXMLDoc(e)||(r=x.attrHooks[t.toLowerCase()]||(x.expr.match.bool.test(t)?yt:void 0)),void 0!==n?null===n?void x.removeAttr(e,t):r&&\"set\"in r&&void 0!==(i=r.set(e,n,t))?i:(e.setAttribute(t,n+\"\"),n):r&&\"get\"in r&&null!==(i=r.get(e,t))?i:(i=x.find.attr(e,t),null==i?void 0:i))},attrHooks:{type:{set:function(e,t){if(!g.radioValue&&\"radio\"===t&&A(e,\"input\")){var n=e.value;return e.setAttribute(\"type\",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,i=0,r=t&&t.match($);if(r&&1===e.nodeType)while(n=r[i++])e.removeAttribute(n)}}),yt={set:function(e,t,n){return!1===t?x.removeAttr(e,n):e.setAttribute(n,n),n}},x.each(x.expr.match.bool.source.match(/\\w+/g),(function(e,t){var n=St[t]||x.find.attr;St[t]=function(e,t,i){var r,a,o=t.toLowerCase();return i||(a=St[o],St[o]=r,r=null!=n(e,t,i)?o:null,St[o]=a),r}}));var Ct=/^(?:input|select|textarea|button)$/i,Tt=/^(?:a|area)$/i;function xt(e){var t=e.match($)||[];return t.join(\" \")}function wt(e){return e.getAttribute&&e.getAttribute(\"class\")||\"\"}function Ot(e){return Array.isArray(e)?e:\"string\"===typeof e&&e.match($)||[]}x.fn.extend({prop:function(e,t){return W(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[x.propFix[e]||e]}))}}),x.extend({prop:function(e,t,n){var i,r,a=e.nodeType;if(3!==a&&8!==a&&2!==a)return 1===a&&x.isXMLDoc(e)||(t=x.propFix[t]||t,r=x.propHooks[t]),void 0!==n?r&&\"set\"in r&&void 0!==(i=r.set(e,n,t))?i:e[t]=n:r&&\"get\"in r&&null!==(i=r.get(e,t))?i:e[t]},propHooks:{tabIndex:{get:function(e){var t=x.find.attr(e,\"tabindex\");return t?parseInt(t,10):Ct.test(e.nodeName)||Tt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:\"htmlFor\",class:\"className\"}}),g.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),x.each([\"tabIndex\",\"readOnly\",\"maxLength\",\"cellSpacing\",\"cellPadding\",\"rowSpan\",\"colSpan\",\"useMap\",\"frameBorder\",\"contentEditable\"],(function(){x.propFix[this.toLowerCase()]=this})),x.fn.extend({addClass:function(e){var t,n,i,r,a,o,s,l=0;if(b(e))return this.each((function(t){x(this).addClass(e.call(this,t,wt(this)))}));if(t=Ot(e),t.length)while(n=this[l++])if(r=wt(n),i=1===n.nodeType&&\" \"+xt(r)+\" \",i){o=0;while(a=t[o++])i.indexOf(\" \"+a+\" \")<0&&(i+=a+\" \");s=xt(i),r!==s&&n.setAttribute(\"class\",s)}return this},removeClass:function(e){var t,n,i,r,a,o,s,l=0;if(b(e))return this.each((function(t){x(this).removeClass(e.call(this,t,wt(this)))}));if(!arguments.length)return this.attr(\"class\",\"\");if(t=Ot(e),t.length)while(n=this[l++])if(r=wt(n),i=1===n.nodeType&&\" \"+xt(r)+\" \",i){o=0;while(a=t[o++])while(i.indexOf(\" \"+a+\" \")>-1)i=i.replace(\" \"+a+\" \",\" \");s=xt(i),r!==s&&n.setAttribute(\"class\",s)}return this},toggleClass:function(e,t){var n=typeof e,i=\"string\"===n||Array.isArray(e);return\"boolean\"===typeof t&&i?t?this.addClass(e):this.removeClass(e):b(e)?this.each((function(n){x(this).toggleClass(e.call(this,n,wt(this),t),t)})):this.each((function(){var t,r,a,o;if(i){r=0,a=x(this),o=Ot(e);while(t=o[r++])a.hasClass(t)?a.removeClass(t):a.addClass(t)}else void 0!==e&&\"boolean\"!==n||(t=wt(this),t&&te.set(this,\"__className__\",t),this.setAttribute&&this.setAttribute(\"class\",t||!1===e?\"\":te.get(this,\"__className__\")||\"\"))}))},hasClass:function(e){var t,n,i=0;t=\" \"+e+\" \";while(n=this[i++])if(1===n.nodeType&&(\" \"+xt(wt(n))+\" \").indexOf(t)>-1)return!0;return!1}});var Nt=/\\r/g;x.fn.extend({val:function(e){var t,n,i,r=this[0];return arguments.length?(i=b(e),this.each((function(n){var r;1===this.nodeType&&(r=i?e.call(this,n,x(this).val()):e,null==r?r=\"\":\"number\"===typeof r?r+=\"\":Array.isArray(r)&&(r=x.map(r,(function(e){return null==e?\"\":e+\"\"}))),t=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],t&&\"set\"in t&&void 0!==t.set(this,r,\"value\")||(this.value=r))}))):r?(t=x.valHooks[r.type]||x.valHooks[r.nodeName.toLowerCase()],t&&\"get\"in t&&void 0!==(n=t.get(r,\"value\"))?n:(n=r.value,\"string\"===typeof n?n.replace(Nt,\"\"):null==n?\"\":n)):void 0}}),x.extend({valHooks:{option:{get:function(e){var t=x.find.attr(e,\"value\");return null!=t?t:xt(x.text(e))}},select:{get:function(e){var t,n,i,r=e.options,a=e.selectedIndex,o=\"select-one\"===e.type,s=o?null:[],l=o?a+1:r.length;for(i=a<0?l:o?a:0;i<l;i++)if(n=r[i],(n.selected||i===a)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,\"optgroup\"))){if(t=x(n).val(),o)return t;s.push(t)}return s},set:function(e,t){var n,i,r=e.options,a=x.makeArray(t),o=r.length;while(o--)i=r[o],(i.selected=x.inArray(x.valHooks.option.get(i),a)>-1)&&(n=!0);return n||(e.selectedIndex=-1),a}}}}),x.each([\"radio\",\"checkbox\"],(function(){x.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=x.inArray(x(e).val(),t)>-1}},g.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute(\"value\")?\"on\":e.value})})),g.focusin=\"onfocusin\"in n;var Rt=/^(?:focusinfocus|focusoutblur)$/,kt=function(e){e.stopPropagation()};x.extend(x.event,{trigger:function(e,t,i,r){var a,o,s,l,c,u,d,p,h=[i||E],_=f.call(e,\"type\")?e.type:e,m=f.call(e,\"namespace\")?e.namespace.split(\".\"):[];if(o=p=s=i=i||E,3!==i.nodeType&&8!==i.nodeType&&!Rt.test(_+x.event.triggered)&&(_.indexOf(\".\")>-1&&(m=_.split(\".\"),_=m.shift(),m.sort()),c=_.indexOf(\":\")<0&&\"on\"+_,e=e[x.expando]?e:new x.Event(_,\"object\"===typeof e&&e),e.isTrigger=r?2:3,e.namespace=m.join(\".\"),e.rnamespace=e.namespace?new RegExp(\"(^|\\\\.)\"+m.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"):null,e.result=void 0,e.target||(e.target=i),t=null==t?[e]:x.makeArray(t,[e]),d=x.event.special[_]||{},r||!d.trigger||!1!==d.trigger.apply(i,t))){if(!r&&!d.noBubble&&!v(i)){for(l=d.delegateType||_,Rt.test(l+_)||(o=o.parentNode);o;o=o.parentNode)h.push(o),s=o;s===(i.ownerDocument||E)&&h.push(s.defaultView||s.parentWindow||n)}a=0;while((o=h[a++])&&!e.isPropagationStopped())p=o,e.type=a>1?l:d.bindType||_,u=(te.get(o,\"events\")||Object.create(null))[e.type]&&te.get(o,\"handle\"),u&&u.apply(o,t),u=c&&o[c],u&&u.apply&&J(o)&&(e.result=u.apply(o,t),!1===e.result&&e.preventDefault());return e.type=_,r||e.isDefaultPrevented()||d._default&&!1!==d._default.apply(h.pop(),t)||!J(i)||c&&b(i[_])&&!v(i)&&(s=i[c],s&&(i[c]=null),x.event.triggered=_,e.isPropagationStopped()&&p.addEventListener(_,kt),i[_](),e.isPropagationStopped()&&p.removeEventListener(_,kt),x.event.triggered=void 0,s&&(i[c]=s)),e.result}},simulate:function(e,t,n){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0});x.event.trigger(i,null,t)}}),x.fn.extend({trigger:function(e,t){return this.each((function(){x.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return x.event.trigger(e,t,n,!0)}}),g.focusin||x.each({focus:\"focusin\",blur:\"focusout\"},(function(e,t){var n=function(e){x.event.simulate(t,e.target,x.event.fix(e))};x.event.special[t]={setup:function(){var i=this.ownerDocument||this.document||this,r=te.access(i,t);r||i.addEventListener(e,n,!0),te.access(i,t,(r||0)+1)},teardown:function(){var i=this.ownerDocument||this.document||this,r=te.access(i,t)-1;r?te.access(i,t,r):(i.removeEventListener(e,n,!0),te.remove(i,t))}}}));var At=n.location,Dt={guid:Date.now()},It=/\\?/;x.parseXML=function(e){var t;if(!e||\"string\"!==typeof e)return null;try{t=(new n.DOMParser).parseFromString(e,\"text/xml\")}catch(i){t=void 0}return t&&!t.getElementsByTagName(\"parsererror\").length||x.error(\"Invalid XML: \"+e),t};var Mt=/\\[\\]$/,Lt=/\\r?\\n/g,Pt=/^(?:submit|button|image|reset|file)$/i,Ft=/^(?:input|select|textarea|keygen)/i;function Bt(e,t,n,i){var r;if(Array.isArray(t))x.each(t,(function(t,r){n||Mt.test(e)?i(e,r):Bt(e+\"[\"+(\"object\"===typeof r&&null!=r?t:\"\")+\"]\",r,n,i)}));else if(n||\"object\"!==C(t))i(e,t);else for(r in t)Bt(e+\"[\"+r+\"]\",t[r],n,i)}x.param=function(e,t){var n,i=[],r=function(e,t){var n=b(t)?t():t;i[i.length]=encodeURIComponent(e)+\"=\"+encodeURIComponent(null==n?\"\":n)};if(null==e)return\"\";if(Array.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,(function(){r(this.name,this.value)}));else for(n in e)Bt(n,e[n],t,r);return i.join(\"&\")},x.fn.extend({serialize:function(){return x.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=x.prop(this,\"elements\");return e?x.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!x(this).is(\":disabled\")&&Ft.test(this.nodeName)&&!Pt.test(e)&&(this.checked||!be.test(e))})).map((function(e,t){var n=x(this).val();return null==n?null:Array.isArray(n)?x.map(n,(function(e){return{name:t.name,value:e.replace(Lt,\"\\r\\n\")}})):{name:t.name,value:n.replace(Lt,\"\\r\\n\")}})).get()}});var Ut=/%20/g,$t=/#.*$/,jt=/([?&])_=[^&]*/,Gt=/^(.*?):[ \\t]*([^\\r\\n]*)$/gm,qt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Ht=/^(?:GET|HEAD)$/,Vt=/^\\/\\//,zt={},Yt={},Wt=\"*/\".concat(\"*\"),Kt=E.createElement(\"a\");function Qt(e){return function(t,n){\"string\"!==typeof t&&(n=t,t=\"*\");var i,r=0,a=t.toLowerCase().match($)||[];if(b(n))while(i=a[r++])\"+\"===i[0]?(i=i.slice(1)||\"*\",(e[i]=e[i]||[]).unshift(n)):(e[i]=e[i]||[]).push(n)}}function Xt(e,t,n,i){var r={},a=e===Yt;function o(s){var l;return r[s]=!0,x.each(e[s]||[],(function(e,s){var c=s(t,n,i);return\"string\"!==typeof c||a||r[c]?a?!(l=c):void 0:(t.dataTypes.unshift(c),o(c),!1)})),l}return o(t.dataTypes[0])||!r[\"*\"]&&o(\"*\")}function Zt(e,t){var n,i,r=x.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((r[n]?e:i||(i={}))[n]=t[n]);return i&&x.extend(!0,e,i),e}function Jt(e,t,n){var i,r,a,o,s=e.contents,l=e.dataTypes;while(\"*\"===l[0])l.shift(),void 0===i&&(i=e.mimeType||t.getResponseHeader(\"Content-Type\"));if(i)for(r in s)if(s[r]&&s[r].test(i)){l.unshift(r);break}if(l[0]in n)a=l[0];else{for(r in n){if(!l[0]||e.converters[r+\" \"+l[0]]){a=r;break}o||(o=r)}a=a||o}if(a)return a!==l[0]&&l.unshift(a),n[a]}function en(e,t,n,i){var r,a,o,s,l,c={},u=e.dataTypes.slice();if(u[1])for(o in e.converters)c[o.toLowerCase()]=e.converters[o];a=u.shift();while(a)if(e.responseFields[a]&&(n[e.responseFields[a]]=t),!l&&i&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=a,a=u.shift(),a)if(\"*\"===a)a=l;else if(\"*\"!==l&&l!==a){if(o=c[l+\" \"+a]||c[\"* \"+a],!o)for(r in c)if(s=r.split(\" \"),s[1]===a&&(o=c[l+\" \"+s[0]]||c[\"* \"+s[0]],o)){!0===o?o=c[r]:!0!==c[r]&&(a=s[0],u.unshift(s[1]));break}if(!0!==o)if(o&&e.throws)t=o(t);else try{t=o(t)}catch(d){return{state:\"parsererror\",error:o?d:\"No conversion from \"+l+\" to \"+a}}}return{state:\"success\",data:t}}Kt.href=At.href,x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:At.href,type:\"GET\",isLocal:qt.test(At.protocol),global:!0,processData:!0,async:!0,contentType:\"application/x-www-form-urlencoded; charset=UTF-8\",accepts:{\"*\":Wt,text:\"text/plain\",html:\"text/html\",xml:\"application/xml, text/xml\",json:\"application/json, text/javascript\"},contents:{xml:/\\bxml\\b/,html:/\\bhtml/,json:/\\bjson\\b/},responseFields:{xml:\"responseXML\",text:\"responseText\",json:\"responseJSON\"},converters:{\"* text\":String,\"text html\":!0,\"text json\":JSON.parse,\"text xml\":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Zt(Zt(e,x.ajaxSettings),t):Zt(x.ajaxSettings,e)},ajaxPrefilter:Qt(zt),ajaxTransport:Qt(Yt),ajax:function(e,t){\"object\"===typeof e&&(t=e,e=void 0),t=t||{};var i,r,a,o,s,l,c,u,d,p,h=x.ajaxSetup({},t),f=h.context||h,_=h.context&&(f.nodeType||f.jquery)?x(f):x.event,m=x.Deferred(),g=x.Callbacks(\"once memory\"),b=h.statusCode||{},v={},y={},S=\"canceled\",C={readyState:0,getResponseHeader:function(e){var t;if(c){if(!o){o={};while(t=Gt.exec(a))o[t[1].toLowerCase()+\" \"]=(o[t[1].toLowerCase()+\" \"]||[]).concat(t[2])}t=o[e.toLowerCase()+\" \"]}return null==t?null:t.join(\", \")},getAllResponseHeaders:function(){return c?a:null},setRequestHeader:function(e,t){return null==c&&(e=y[e.toLowerCase()]=y[e.toLowerCase()]||e,v[e]=t),this},overrideMimeType:function(e){return null==c&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)C.always(e[C.status]);else for(t in e)b[t]=[b[t],e[t]];return this},abort:function(e){var t=e||S;return i&&i.abort(t),T(0,t),this}};if(m.promise(C),h.url=((e||h.url||At.href)+\"\").replace(Vt,At.protocol+\"//\"),h.type=t.method||t.type||h.method||h.type,h.dataTypes=(h.dataType||\"*\").toLowerCase().match($)||[\"\"],null==h.crossDomain){l=E.createElement(\"a\");try{l.href=h.url,l.href=l.href,h.crossDomain=Kt.protocol+\"//\"+Kt.host!==l.protocol+\"//\"+l.host}catch(w){h.crossDomain=!0}}if(h.data&&h.processData&&\"string\"!==typeof h.data&&(h.data=x.param(h.data,h.traditional)),Xt(zt,h,t,C),c)return C;for(d in u=x.event&&h.global,u&&0===x.active++&&x.event.trigger(\"ajaxStart\"),h.type=h.type.toUpperCase(),h.hasContent=!Ht.test(h.type),r=h.url.replace($t,\"\"),h.hasContent?h.data&&h.processData&&0===(h.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&&(h.data=h.data.replace(Ut,\"+\")):(p=h.url.slice(r.length),h.data&&(h.processData||\"string\"===typeof h.data)&&(r+=(It.test(r)?\"&\":\"?\")+h.data,delete h.data),!1===h.cache&&(r=r.replace(jt,\"$1\"),p=(It.test(r)?\"&\":\"?\")+\"_=\"+Dt.guid+++p),h.url=r+p),h.ifModified&&(x.lastModified[r]&&C.setRequestHeader(\"If-Modified-Since\",x.lastModified[r]),x.etag[r]&&C.setRequestHeader(\"If-None-Match\",x.etag[r])),(h.data&&h.hasContent&&!1!==h.contentType||t.contentType)&&C.setRequestHeader(\"Content-Type\",h.contentType),C.setRequestHeader(\"Accept\",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+(\"*\"!==h.dataTypes[0]?\", \"+Wt+\"; q=0.01\":\"\"):h.accepts[\"*\"]),h.headers)C.setRequestHeader(d,h.headers[d]);if(h.beforeSend&&(!1===h.beforeSend.call(f,C,h)||c))return C.abort();if(S=\"abort\",g.add(h.complete),C.done(h.success),C.fail(h.error),i=Xt(Yt,h,t,C),i){if(C.readyState=1,u&&_.trigger(\"ajaxSend\",[C,h]),c)return C;h.async&&h.timeout>0&&(s=n.setTimeout((function(){C.abort(\"timeout\")}),h.timeout));try{c=!1,i.send(v,T)}catch(w){if(c)throw w;T(-1,w)}}else T(-1,\"No Transport\");function T(e,t,o,l){var d,p,v,E,y,S=t;c||(c=!0,s&&n.clearTimeout(s),i=void 0,a=l||\"\",C.readyState=e>0?4:0,d=e>=200&&e<300||304===e,o&&(E=Jt(h,C,o)),!d&&x.inArray(\"script\",h.dataTypes)>-1&&(h.converters[\"text script\"]=function(){}),E=en(h,E,C,d),d?(h.ifModified&&(y=C.getResponseHeader(\"Last-Modified\"),y&&(x.lastModified[r]=y),y=C.getResponseHeader(\"etag\"),y&&(x.etag[r]=y)),204===e||\"HEAD\"===h.type?S=\"nocontent\":304===e?S=\"notmodified\":(S=E.state,p=E.data,v=E.error,d=!v)):(v=S,!e&&S||(S=\"error\",e<0&&(e=0))),C.status=e,C.statusText=(t||S)+\"\",d?m.resolveWith(f,[p,S,C]):m.rejectWith(f,[C,S,v]),C.statusCode(b),b=void 0,u&&_.trigger(d?\"ajaxSuccess\":\"ajaxError\",[C,h,d?p:v]),g.fireWith(f,[C,S]),u&&(_.trigger(\"ajaxComplete\",[C,h]),--x.active||x.event.trigger(\"ajaxStop\")))}return C},getJSON:function(e,t,n){return x.get(e,t,n,\"json\")},getScript:function(e,t){return x.get(e,void 0,t,\"script\")}}),x.each([\"get\",\"post\"],(function(e,t){x[t]=function(e,n,i,r){return b(n)&&(r=r||i,i=n,n=void 0),x.ajax(x.extend({url:e,type:t,dataType:r,data:n,success:i},x.isPlainObject(e)&&e))}})),x.ajaxPrefilter((function(e){var t;for(t in e.headers)\"content-type\"===t.toLowerCase()&&(e.contentType=e.headers[t]||\"\")})),x._evalUrl=function(e,t,n){return x.ajax({url:e,type:\"GET\",dataType:\"script\",cache:!0,async:!1,global:!1,converters:{\"text script\":function(){}},dataFilter:function(e){x.globalEval(e,t,n)}})},x.fn.extend({wrapAll:function(e){var t;return this[0]&&(b(e)&&(e=e.call(this[0])),t=x(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return b(e)?this.each((function(t){x(this).wrapInner(e.call(this,t))})):this.each((function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=b(e);return this.each((function(n){x(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not(\"body\").each((function(){x(this).replaceWith(this.childNodes)})),this}}),x.expr.pseudos.hidden=function(e){return!x.expr.pseudos.visible(e)},x.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},x.ajaxSettings.xhr=function(){try{return new n.XMLHttpRequest}catch(e){}};var tn={0:200,1223:204},nn=x.ajaxSettings.xhr();g.cors=!!nn&&\"withCredentials\"in nn,g.ajax=nn=!!nn,x.ajaxTransport((function(e){var t,i;if(g.cors||nn&&!e.crossDomain)return{send:function(r,a){var o,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(o in e.xhrFields)s[o]=e.xhrFields[o];for(o in e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||r[\"X-Requested-With\"]||(r[\"X-Requested-With\"]=\"XMLHttpRequest\"),r)s.setRequestHeader(o,r[o]);t=function(e){return function(){t&&(t=i=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,\"abort\"===e?s.abort():\"error\"===e?\"number\"!==typeof s.status?a(0,\"error\"):a(s.status,s.statusText):a(tn[s.status]||s.status,s.statusText,\"text\"!==(s.responseType||\"text\")||\"string\"!==typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=t(),i=s.onerror=s.ontimeout=t(\"error\"),void 0!==s.onabort?s.onabort=i:s.onreadystatechange=function(){4===s.readyState&&n.setTimeout((function(){t&&i()}))},t=t(\"abort\");try{s.send(e.hasContent&&e.data||null)}catch(l){if(t)throw l}},abort:function(){t&&t()}}})),x.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),x.ajaxSetup({accepts:{script:\"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"},contents:{script:/\\b(?:java|ecma)script\\b/},converters:{\"text script\":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter(\"script\",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type=\"GET\")})),x.ajaxTransport(\"script\",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(i,r){t=x(\"<script>\").attr(e.scriptAttrs||{}).prop({charset:e.scriptCharset,src:e.url}).on(\"load error\",n=function(e){t.remove(),n=null,e&&r(\"error\"===e.type?404:200,e.type)}),E.head.appendChild(t[0])},abort:function(){n&&n()}}}));var rn=[],an=/(=)\\?(?=&|$)|\\?\\?/;x.ajaxSetup({jsonp:\"callback\",jsonpCallback:function(){var e=rn.pop()||x.expando+\"_\"+Dt.guid++;return this[e]=!0,e}}),x.ajaxPrefilter(\"json jsonp\",(function(e,t,i){var r,a,o,s=!1!==e.jsonp&&(an.test(e.url)?\"url\":\"string\"===typeof e.data&&0===(e.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&&an.test(e.data)&&\"data\");if(s||\"jsonp\"===e.dataTypes[0])return r=e.jsonpCallback=b(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,s?e[s]=e[s].replace(an,\"$1\"+r):!1!==e.jsonp&&(e.url+=(It.test(e.url)?\"&\":\"?\")+e.jsonp+\"=\"+r),e.converters[\"script json\"]=function(){return o||x.error(r+\" was not called\"),o[0]},e.dataTypes[0]=\"json\",a=n[r],n[r]=function(){o=arguments},i.always((function(){void 0===a?x(n).removeProp(r):n[r]=a,e[r]&&(e.jsonpCallback=t.jsonpCallback,rn.push(r)),o&&b(a)&&a(o[0]),o=a=void 0})),\"script\"})),g.createHTMLDocument=function(){var e=E.implementation.createHTMLDocument(\"\").body;return e.innerHTML=\"<form></form><form></form>\",2===e.childNodes.length}(),x.parseHTML=function(e,t,n){return\"string\"!==typeof e?[]:(\"boolean\"===typeof t&&(n=t,t=!1),t||(g.createHTMLDocument?(t=E.implementation.createHTMLDocument(\"\"),i=t.createElement(\"base\"),i.href=E.location.href,t.head.appendChild(i)):t=E),r=D.exec(e),a=!n&&[],r?[t.createElement(r[1])]:(r=xe([e],t,a),a&&a.length&&x(a).remove(),x.merge([],r.childNodes)));var i,r,a},x.fn.load=function(e,t,n){var i,r,a,o=this,s=e.indexOf(\" \");return s>-1&&(i=xt(e.slice(s)),e=e.slice(0,s)),b(t)?(n=t,t=void 0):t&&\"object\"===typeof t&&(r=\"POST\"),o.length>0&&x.ajax({url:e,type:r||\"GET\",dataType:\"html\",data:t}).done((function(e){a=arguments,o.html(i?x(\"<div>\").append(x.parseHTML(e)).find(i):e)})).always(n&&function(e,t){o.each((function(){n.apply(this,a||[e.responseText,t,e])}))}),this},x.expr.pseudos.animated=function(e){return x.grep(x.timers,(function(t){return e===t.elem})).length},x.offset={setOffset:function(e,t,n){var i,r,a,o,s,l,c,u=x.css(e,\"position\"),d=x(e),p={};\"static\"===u&&(e.style.position=\"relative\"),s=d.offset(),a=x.css(e,\"top\"),l=x.css(e,\"left\"),c=(\"absolute\"===u||\"fixed\"===u)&&(a+l).indexOf(\"auto\")>-1,c?(i=d.position(),o=i.top,r=i.left):(o=parseFloat(a)||0,r=parseFloat(l)||0),b(t)&&(t=t.call(e,n,x.extend({},s))),null!=t.top&&(p.top=t.top-s.top+o),null!=t.left&&(p.left=t.left-s.left+r),\"using\"in t?t.using.call(e,p):(\"number\"===typeof p.top&&(p.top+=\"px\"),\"number\"===typeof p.left&&(p.left+=\"px\"),d.css(p))}},x.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each((function(t){x.offset.setOffset(this,e,t)}));var t,n,i=this[0];return i?i.getClientRects().length?(t=i.getBoundingClientRect(),n=i.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,i=this[0],r={top:0,left:0};if(\"fixed\"===x.css(i,\"position\"))t=i.getBoundingClientRect();else{t=this.offset(),n=i.ownerDocument,e=i.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&\"static\"===x.css(e,\"position\"))e=e.parentNode;e&&e!==i&&1===e.nodeType&&(r=x(e).offset(),r.top+=x.css(e,\"borderTopWidth\",!0),r.left+=x.css(e,\"borderLeftWidth\",!0))}return{top:t.top-r.top-x.css(i,\"marginTop\",!0),left:t.left-r.left-x.css(i,\"marginLeft\",!0)}}},offsetParent:function(){return this.map((function(){var e=this.offsetParent;while(e&&\"static\"===x.css(e,\"position\"))e=e.offsetParent;return e||ue}))}}),x.each({scrollLeft:\"pageXOffset\",scrollTop:\"pageYOffset\"},(function(e,t){var n=\"pageYOffset\"===t;x.fn[e]=function(i){return W(this,(function(e,i,r){var a;if(v(e)?a=e:9===e.nodeType&&(a=e.defaultView),void 0===r)return a?a[t]:e[i];a?a.scrollTo(n?a.pageXOffset:r,n?r:a.pageYOffset):e[i]=r}),e,i,arguments.length)}})),x.each([\"top\",\"left\"],(function(e,t){x.cssHooks[t]=Qe(g.pixelPosition,(function(e,n){if(n)return n=Ke(e,t),Ve.test(n)?x(e).position()[t]+\"px\":n}))})),x.each({Height:\"height\",Width:\"width\"},(function(e,t){x.each({padding:\"inner\"+e,content:t,\"\":\"outer\"+e},(function(n,i){x.fn[i]=function(r,a){var o=arguments.length&&(n||\"boolean\"!==typeof r),s=n||(!0===r||!0===a?\"margin\":\"border\");return W(this,(function(t,n,r){var a;return v(t)?0===i.indexOf(\"outer\")?t[\"inner\"+e]:t.document.documentElement[\"client\"+e]:9===t.nodeType?(a=t.documentElement,Math.max(t.body[\"scroll\"+e],a[\"scroll\"+e],t.body[\"offset\"+e],a[\"offset\"+e],a[\"client\"+e])):void 0===r?x.css(t,n,s):x.style(t,n,r,s)}),t,o?r:void 0,o)}}))})),x.each([\"ajaxStart\",\"ajaxStop\",\"ajaxComplete\",\"ajaxError\",\"ajaxSuccess\",\"ajaxSend\"],(function(e,t){x.fn[t]=function(e){return this.on(t,e)}})),x.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,i){return this.on(t,e,n,i)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,\"**\"):this.off(t,e||\"**\",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),x.each(\"blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu\".split(\" \"),(function(e,t){x.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}));var on=/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;x.proxy=function(e,t){var n,i,r;if(\"string\"===typeof t&&(n=e[t],t=e,e=n),b(e))return i=l.call(arguments,2),r=function(){return e.apply(t||this,i.concat(l.call(arguments)))},r.guid=e.guid=e.guid||x.guid++,r},x.holdReady=function(e){e?x.readyWait++:x.ready(!0)},x.isArray=Array.isArray,x.parseJSON=JSON.parse,x.nodeName=A,x.isFunction=b,x.isWindow=v,x.camelCase=Z,x.type=C,x.now=Date.now,x.isNumeric=function(e){var t=x.type(e);return(\"number\"===t||\"string\"===t)&&!isNaN(e-parseFloat(e))},x.trim=function(e){return null==e?\"\":(e+\"\").replace(on,\"\")},i=[],r=function(){return x}.apply(t,i),void 0===r||(e.exports=r);var sn=n.jQuery,ln=n.$;return x.noConflict=function(e){return n.$===x&&(n.$=ln),e&&n.jQuery===x&&(n.jQuery=sn),x},\"undefined\"===typeof a&&(n.jQuery=n.$=x),x}))},\"12f2\":function(e,t,n){\"use strict\";t.__esModule=!0,t.default=function(e){return{methods:{focus:function(){this.$refs[e].focus()}}}}},1367:function(e,t){function n(e){return{name:\"ERB\",subLanguage:\"xml\",contains:[e.COMMENT(\"<%#\",\"%>\"),{begin:\"<%[%=-]?\",end:\"[%-]?%>\",subLanguage:\"ruby\",excludeBegin:!0,excludeEnd:!0}]}}e.exports=n},1487:function(e,t,n){var i=n(\"1020\");i.registerLanguage(\"1c\",n(\"f71c\")),i.registerLanguage(\"abnf\",n(\"b528\")),i.registerLanguage(\"accesslog\",n(\"998d\")),i.registerLanguage(\"actionscript\",n(\"f9f0\")),i.registerLanguage(\"ada\",n(\"01ac\")),i.registerLanguage(\"angelscript\",n(\"dbcc\")),i.registerLanguage(\"apache\",n(\"f0aa\")),i.registerLanguage(\"applescript\",n(\"7bc1\")),i.registerLanguage(\"arcade\",n(\"305e\")),i.registerLanguage(\"arduino\",n(\"944e\")),i.registerLanguage(\"armasm\",n(\"a33c\")),i.registerLanguage(\"xml\",n(\"8dcb\")),i.registerLanguage(\"asciidoc\",n(\"0290\")),i.registerLanguage(\"aspectj\",n(\"9814\")),i.registerLanguage(\"autohotkey\",n(\"0481\")),i.registerLanguage(\"autoit\",n(\"ef99\")),i.registerLanguage(\"avrasm\",n(\"a6fb\")),i.registerLanguage(\"awk\",n(\"1069\")),i.registerLanguage(\"axapta\",n(\"a885\")),i.registerLanguage(\"bash\",n(\"f0f8\")),i.registerLanguage(\"basic\",n(\"a15a\")),i.registerLanguage(\"bnf\",n(\"75da\")),i.registerLanguage(\"brainfuck\",n(\"5921\")),i.registerLanguage(\"c-like\",n(\"af9a\")),i.registerLanguage(\"c\",n(\"1fe5\")),i.registerLanguage(\"cal\",n(\"7781\")),i.registerLanguage(\"capnproto\",n(\"4a5e\")),i.registerLanguage(\"ceylon\",n(\"ba76\")),i.registerLanguage(\"clean\",n(\"51ab\")),i.registerLanguage(\"clojure\",n(\"b884\")),i.registerLanguage(\"clojure-repl\",n(\"149d\")),i.registerLanguage(\"cmake\",n(\"eaab\")),i.registerLanguage(\"coffeescript\",n(\"a995\")),i.registerLanguage(\"coq\",n(\"80b3\")),i.registerLanguage(\"cos\",n(\"8261\")),i.registerLanguage(\"cpp\",n(\"0209\")),i.registerLanguage(\"crmsh\",n(\"c8e5\")),i.registerLanguage(\"crystal\",n(\"294a\")),i.registerLanguage(\"csharp\",n(\"98af\")),i.registerLanguage(\"csp\",n(\"4272\")),i.registerLanguage(\"css\",n(\"ee8c\")),i.registerLanguage(\"d\",n(\"8d6d\")),i.registerLanguage(\"markdown\",n(\"04b0\")),i.registerLanguage(\"dart\",n(\"7c46\")),i.registerLanguage(\"delphi\",n(\"1f8a\")),i.registerLanguage(\"diff\",n(\"48b8\")),i.registerLanguage(\"django\",n(\"d248\")),i.registerLanguage(\"dns\",n(\"8a86\")),i.registerLanguage(\"dockerfile\",n(\"44b5\")),i.registerLanguage(\"dos\",n(\"7cff\")),i.registerLanguage(\"dsconfig\",n(\"b91e\")),i.registerLanguage(\"dts\",n(\"b0cf\")),i.registerLanguage(\"dust\",n(\"f4da\")),i.registerLanguage(\"ebnf\",n(\"1b4d\")),i.registerLanguage(\"elixir\",n(\"7727\")),i.registerLanguage(\"elm\",n(\"5051\")),i.registerLanguage(\"ruby\",n(\"82cb\")),i.registerLanguage(\"erb\",n(\"1367\")),i.registerLanguage(\"erlang-repl\",n(\"f492\")),i.registerLanguage(\"erlang\",n(\"b3c5\")),i.registerLanguage(\"excel\",n(\"f5cf\")),i.registerLanguage(\"fix\",n(\"2b22\")),i.registerLanguage(\"flix\",n(\"a14e\")),i.registerLanguage(\"fortran\",n(\"485f\")),i.registerLanguage(\"fsharp\",n(\"0215\")),i.registerLanguage(\"gams\",n(\"7d9d\")),i.registerLanguage(\"gauss\",n(\"ae7a\")),i.registerLanguage(\"gcode\",n(\"94a2\")),i.registerLanguage(\"gherkin\",n(\"351a\")),i.registerLanguage(\"glsl\",n(\"df06\")),i.registerLanguage(\"gml\",n(\"e6ea\")),i.registerLanguage(\"go\",n(\"0b22\")),i.registerLanguage(\"golo\",n(\"919d\")),i.registerLanguage(\"gradle\",n(\"9544\")),i.registerLanguage(\"groovy\",n(\"1f64\")),i.registerLanguage(\"haml\",n(\"4f4a\")),i.registerLanguage(\"handlebars\",n(\"e55c\")),i.registerLanguage(\"haskell\",n(\"3f38\")),i.registerLanguage(\"haxe\",n(\"7c71\")),i.registerLanguage(\"hsp\",n(\"c22d\")),i.registerLanguage(\"htmlbars\",n(\"79b5\")),i.registerLanguage(\"http\",n(\"c01d\")),i.registerLanguage(\"hy\",n(\"8667\")),i.registerLanguage(\"inform7\",n(\"2e5d\")),i.registerLanguage(\"ini\",n(\"2a93\")),i.registerLanguage(\"irpf90\",n(\"074e\")),i.registerLanguage(\"isbl\",n(\"bb43\")),i.registerLanguage(\"java\",n(\"332f\")),i.registerLanguage(\"javascript\",n(\"4dd1\")),i.registerLanguage(\"jboss-cli\",n(\"04a8\")),i.registerLanguage(\"json\",n(\"5ad2\")),i.registerLanguage(\"julia\",n(\"2265\")),i.registerLanguage(\"julia-repl\",n(\"b7aa\")),i.registerLanguage(\"kotlin\",n(\"a941\")),i.registerLanguage(\"lasso\",n(\"25bd\")),i.registerLanguage(\"latex\",n(\"1555\")),i.registerLanguage(\"ldif\",n(\"1a06\")),i.registerLanguage(\"leaf\",n(\"2e9b\")),i.registerLanguage(\"less\",n(\"1846\")),i.registerLanguage(\"lisp\",n(\"9b32\")),i.registerLanguage(\"livecodeserver\",n(\"1beb\")),i.registerLanguage(\"livescript\",n(\"2e11\")),i.registerLanguage(\"llvm\",n(\"7c30\")),i.registerLanguage(\"lsl\",n(\"28ad\")),i.registerLanguage(\"lua\",n(\"ecfe\")),i.registerLanguage(\"makefile\",n(\"7a5e\")),i.registerLanguage(\"mathematica\",n(\"ef7a\")),i.registerLanguage(\"matlab\",n(\"8ca5\")),i.registerLanguage(\"maxima\",n(\"399d\")),i.registerLanguage(\"mel\",n(\"bb7e\")),i.registerLanguage(\"mercury\",n(\"2425\")),i.registerLanguage(\"mipsasm\",n(\"a342\")),i.registerLanguage(\"mizar\",n(\"0f16\")),i.registerLanguage(\"perl\",n(\"6a51\")),i.registerLanguage(\"mojolicious\",n(\"66ba\")),i.registerLanguage(\"monkey\",n(\"a710\")),i.registerLanguage(\"moonscript\",n(\"b1b9\")),i.registerLanguage(\"n1ql\",n(\"f4c8\")),i.registerLanguage(\"nginx\",n(\"f54f\")),i.registerLanguage(\"nim\",n(\"861d\")),i.registerLanguage(\"nix\",n(\"46ae\")),i.registerLanguage(\"node-repl\",n(\"0118\")),i.registerLanguage(\"nsis\",n(\"b322\")),i.registerLanguage(\"objectivec\",n(\"9bf2\")),i.registerLanguage(\"ocaml\",n(\"ee6c\")),i.registerLanguage(\"openscad\",n(\"02c4\")),i.registerLanguage(\"oxygene\",n(\"6de8\")),i.registerLanguage(\"parser3\",n(\"3728\")),i.registerLanguage(\"pf\",n(\"767a\")),i.registerLanguage(\"pgsql\",n(\"f851\")),i.registerLanguage(\"php\",n(\"2907\")),i.registerLanguage(\"php-template\",n(\"e05a\")),i.registerLanguage(\"plaintext\",n(\"44e5\")),i.registerLanguage(\"pony\",n(\"95d0\")),i.registerLanguage(\"powershell\",n(\"508e\")),i.registerLanguage(\"processing\",n(\"afba\")),i.registerLanguage(\"profile\",n(\"b90a\")),i.registerLanguage(\"prolog\",n(\"4396\")),i.registerLanguage(\"properties\",n(\"56b2\")),i.registerLanguage(\"protobuf\",n(\"2e8e\")),i.registerLanguage(\"puppet\",n(\"5027\")),i.registerLanguage(\"purebasic\",n(\"1b02\")),i.registerLanguage(\"python\",n(\"9510\")),i.registerLanguage(\"python-repl\",n(\"4168\")),i.registerLanguage(\"q\",n(\"5dfb\")),i.registerLanguage(\"qml\",n(\"612a\")),i.registerLanguage(\"r\",n(\"26bc\")),i.registerLanguage(\"reasonml\",n(\"e990\")),i.registerLanguage(\"rib\",n(\"0faf\")),i.registerLanguage(\"roboconf\",n(\"f50f\")),i.registerLanguage(\"routeros\",n(\"d959\")),i.registerLanguage(\"rsl\",n(\"a0a7\")),i.registerLanguage(\"ruleslanguage\",n(\"8aba\")),i.registerLanguage(\"rust\",n(\"2ce7\")),i.registerLanguage(\"sas\",n(\"40f4\")),i.registerLanguage(\"scala\",n(\"9f7f\")),i.registerLanguage(\"scheme\",n(\"4108\")),i.registerLanguage(\"scilab\",n(\"ea4d\")),i.registerLanguage(\"scss\",n(\"6113\")),i.registerLanguage(\"shell\",n(\"b65b\")),i.registerLanguage(\"smali\",n(\"1b1c\")),i.registerLanguage(\"smalltalk\",n(\"8d4f\")),i.registerLanguage(\"sml\",n(\"dc41\")),i.registerLanguage(\"sqf\",n(\"e2a7\")),i.registerLanguage(\"sql_more\",n(\"f761\")),i.registerLanguage(\"sql\",n(\"de09\")),i.registerLanguage(\"stan\",n(\"8931\")),i.registerLanguage(\"stata\",n(\"d4b5\")),i.registerLanguage(\"step21\",n(\"0081\")),i.registerLanguage(\"stylus\",n(\"bd88\")),i.registerLanguage(\"subunit\",n(\"02ac\")),i.registerLanguage(\"swift\",n(\"2a39\")),i.registerLanguage(\"taggerscript\",n(\"2468\")),i.registerLanguage(\"yaml\",n(\"2e7b\")),i.registerLanguage(\"tap\",n(\"06b4\")),i.registerLanguage(\"tcl\",n(\"a27d\")),i.registerLanguage(\"thrift\",n(\"adf9\")),i.registerLanguage(\"tp\",n(\"a613\")),i.registerLanguage(\"twig\",n(\"f46e\")),i.registerLanguage(\"typescript\",n(\"af44\")),i.registerLanguage(\"vala\",n(\"f122\")),i.registerLanguage(\"vbnet\",n(\"89e7\")),i.registerLanguage(\"vbscript\",n(\"5a3e\")),i.registerLanguage(\"vbscript-html\",n(\"f45a\")),i.registerLanguage(\"verilog\",n(\"e10f\")),i.registerLanguage(\"vhdl\",n(\"310f\")),i.registerLanguage(\"vim\",n(\"3c69\")),i.registerLanguage(\"x86asm\",n(\"a154\")),i.registerLanguage(\"xl\",n(\"2639\")),i.registerLanguage(\"xquery\",n(\"268a\")),i.registerLanguage(\"zephir\",n(\"9f0c\")),e.exports=i},1495:function(e,t,n){var i=n(\"86cc\"),r=n(\"cb7c\"),a=n(\"0d58\");e.exports=n(\"9e1e\")?Object.defineProperties:function(e,t){r(e);var n,o=a(t),s=o.length,l=0;while(s>l)i.f(e,n=o[l++],t[n]);return e}},\"149d\":function(e,t){function n(e){return{name:\"Clojure REPL\",contains:[{className:\"meta\",begin:/^([\\w.-]+|\\s*#_)?=>/,starts:{end:/$/,subLanguage:\"clojure\"}}]}}e.exports=n},\"14e9\":function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=127)}({127:function(e,t,n){\"use strict\";n.r(t);var i=n(16),r=n(39),a=n.n(r),o=n(3),s=n(2),l={vertical:{offset:\"offsetHeight\",scroll:\"scrollTop\",scrollSize:\"scrollHeight\",size:\"height\",key:\"vertical\",axis:\"Y\",client:\"clientY\",direction:\"top\"},horizontal:{offset:\"offsetWidth\",scroll:\"scrollLeft\",scrollSize:\"scrollWidth\",size:\"width\",key:\"horizontal\",axis:\"X\",client:\"clientX\",direction:\"left\"}};function c(e){var t=e.move,n=e.size,i=e.bar,r={},a=\"translate\"+i.axis+\"(\"+t+\"%)\";return r[i.size]=n,r.transform=a,r.msTransform=a,r.webkitTransform=a,r}var u={name:\"Bar\",props:{vertical:Boolean,size:String,move:Number},computed:{bar:function(){return l[this.vertical?\"vertical\":\"horizontal\"]},wrap:function(){return this.$parent.wrap}},render:function(e){var t=this.size,n=this.move,i=this.bar;return e(\"div\",{class:[\"el-scrollbar__bar\",\"is-\"+i.key],on:{mousedown:this.clickTrackHandler}},[e(\"div\",{ref:\"thumb\",class:\"el-scrollbar__thumb\",on:{mousedown:this.clickThumbHandler},style:c({size:t,move:n,bar:i})})])},methods:{clickThumbHandler:function(e){e.ctrlKey||2===e.button||(this.startDrag(e),this[this.bar.axis]=e.currentTarget[this.bar.offset]-(e[this.bar.client]-e.currentTarget.getBoundingClientRect()[this.bar.direction]))},clickTrackHandler:function(e){var t=Math.abs(e.target.getBoundingClientRect()[this.bar.direction]-e[this.bar.client]),n=this.$refs.thumb[this.bar.offset]/2,i=100*(t-n)/this.$el[this.bar.offset];this.wrap[this.bar.scroll]=i*this.wrap[this.bar.scrollSize]/100},startDrag:function(e){e.stopImmediatePropagation(),this.cursorDown=!0,Object(s[\"on\"])(document,\"mousemove\",this.mouseMoveDocumentHandler),Object(s[\"on\"])(document,\"mouseup\",this.mouseUpDocumentHandler),document.onselectstart=function(){return!1}},mouseMoveDocumentHandler:function(e){if(!1!==this.cursorDown){var t=this[this.bar.axis];if(t){var n=-1*(this.$el.getBoundingClientRect()[this.bar.direction]-e[this.bar.client]),i=this.$refs.thumb[this.bar.offset]-t,r=100*(n-i)/this.$el[this.bar.offset];this.wrap[this.bar.scroll]=r*this.wrap[this.bar.scrollSize]/100}}},mouseUpDocumentHandler:function(e){this.cursorDown=!1,this[this.bar.axis]=0,Object(s[\"off\"])(document,\"mousemove\",this.mouseMoveDocumentHandler),document.onselectstart=null}},destroyed:function(){Object(s[\"off\"])(document,\"mouseup\",this.mouseUpDocumentHandler)}},d={name:\"ElScrollbar\",components:{Bar:u},props:{native:Boolean,wrapStyle:{},wrapClass:{},viewClass:{},viewStyle:{},noresize:Boolean,tag:{type:String,default:\"div\"}},data:function(){return{sizeWidth:\"0\",sizeHeight:\"0\",moveX:0,moveY:0}},computed:{wrap:function(){return this.$refs.wrap}},render:function(e){var t=a()(),n=this.wrapStyle;if(t){var i=\"-\"+t+\"px\",r=\"margin-bottom: \"+i+\"; margin-right: \"+i+\";\";Array.isArray(this.wrapStyle)?(n=Object(o[\"toObject\"])(this.wrapStyle),n.marginRight=n.marginBottom=i):\"string\"===typeof this.wrapStyle?n+=r:n=r}var s=e(this.tag,{class:[\"el-scrollbar__view\",this.viewClass],style:this.viewStyle,ref:\"resize\"},this.$slots.default),l=e(\"div\",{ref:\"wrap\",style:n,on:{scroll:this.handleScroll},class:[this.wrapClass,\"el-scrollbar__wrap\",t?\"\":\"el-scrollbar__wrap--hidden-default\"]},[[s]]),c=void 0;return c=this.native?[e(\"div\",{ref:\"wrap\",class:[this.wrapClass,\"el-scrollbar__wrap\"],style:n},[[s]])]:[l,e(u,{attrs:{move:this.moveX,size:this.sizeWidth}}),e(u,{attrs:{vertical:!0,move:this.moveY,size:this.sizeHeight}})],e(\"div\",{class:\"el-scrollbar\"},c)},methods:{handleScroll:function(){var e=this.wrap;this.moveY=100*e.scrollTop/e.clientHeight,this.moveX=100*e.scrollLeft/e.clientWidth},update:function(){var e=void 0,t=void 0,n=this.wrap;n&&(e=100*n.clientHeight/n.scrollHeight,t=100*n.clientWidth/n.scrollWidth,this.sizeHeight=e<100?e+\"%\":\"\",this.sizeWidth=t<100?t+\"%\":\"\")}},mounted:function(){this.native||(this.$nextTick(this.update),!this.noresize&&Object(i[\"addResizeListener\"])(this.$refs.resize,this.update))},beforeDestroy:function(){this.native||!this.noresize&&Object(i[\"removeResizeListener\"])(this.$refs.resize,this.update)},install:function(e){e.component(d.name,d)}};t[\"default\"]=d},16:function(e,t){e.exports=n(\"4010\")},2:function(e,t){e.exports=n(\"5924\")},3:function(e,t){e.exports=n(\"8122\")},39:function(e,t){e.exports=n(\"e62d\")}})},1555:function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=\"(\"+e.map(e=>n(e)).join(\"|\")+\")\";return t}function r(e){const t=i(...[\"(?:NeedsTeXFormat|RequirePackage|GetIdInfo)\",\"Provides(?:Expl)?(?:Package|Class|File)\",\"(?:DeclareOption|ProcessOptions)\",\"(?:documentclass|usepackage|input|include)\",\"makeat(?:letter|other)\",\"ExplSyntax(?:On|Off)\",\"(?:new|renew|provide)?command\",\"(?:re)newenvironment\",\"(?:New|Renew|Provide|Declare)(?:Expandable)?DocumentCommand\",\"(?:New|Renew|Provide|Declare)DocumentEnvironment\",\"(?:(?:e|g|x)?def|let)\",\"(?:begin|end)\",\"(?:part|chapter|(?:sub){0,2}section|(?:sub)?paragraph)\",\"caption\",\"(?:label|(?:eq|page|name)?ref|(?:paren|foot|super)?cite)\",\"(?:alpha|beta|[Gg]amma|[Dd]elta|(?:var)?epsilon|zeta|eta|[Tt]heta|vartheta)\",\"(?:iota|(?:var)?kappa|[Ll]ambda|mu|nu|[Xx]i|[Pp]i|varpi|(?:var)rho)\",\"(?:[Ss]igma|varsigma|tau|[Uu]psilon|[Pp]hi|varphi|chi|[Pp]si|[Oo]mega)\",\"(?:frac|sum|prod|lim|infty|times|sqrt|leq|geq|left|right|middle|[bB]igg?)\",\"(?:[lr]angle|q?quad|[lcvdi]?dots|d?dot|hat|tilde|bar)\"].map(e=>e+\"(?![a-zA-Z@:_])\")),n=new RegExp([\"(?:__)?[a-zA-Z]{2,}_[a-zA-Z](?:_?[a-zA-Z])+:[a-zA-Z]*\",\"[lgc]__?[a-zA-Z](?:_?[a-zA-Z])*_[a-zA-Z]{2,}\",\"[qs]__?[a-zA-Z](?:_?[a-zA-Z])+\",\"use(?:_i)?:[a-zA-Z]*\",\"(?:else|fi|or):\",\"(?:if|cs|exp):w\",\"(?:hbox|vbox):n\",\"::[a-zA-Z]_unbraced\",\"::[a-zA-Z:]\"].map(e=>e+\"(?![a-zA-Z:_])\").join(\"|\")),r=[{begin:/[a-zA-Z@]+/},{begin:/[^a-zA-Z@]?/}],a=[{begin:/\\^{6}[0-9a-f]{6}/},{begin:/\\^{5}[0-9a-f]{5}/},{begin:/\\^{4}[0-9a-f]{4}/},{begin:/\\^{3}[0-9a-f]{3}/},{begin:/\\^{2}[0-9a-f]{2}/},{begin:/\\^{2}[\\u0000-\\u007f]/}],o={className:\"keyword\",begin:/\\\\/,relevance:0,contains:[{endsParent:!0,begin:t},{endsParent:!0,begin:n},{endsParent:!0,variants:a},{endsParent:!0,relevance:0,variants:r}]},s={className:\"params\",relevance:0,begin:/#+\\d?/},l={variants:a},c={className:\"built_in\",relevance:0,begin:/[$&^_]/},u={className:\"meta\",begin:\"% !TeX\",end:\"$\",relevance:10},d=e.COMMENT(\"%\",\"$\",{relevance:0}),p=[o,s,l,c,u,d],h={begin:/\\{/,end:/\\}/,relevance:0,contains:[\"self\",...p]},f=e.inherit(h,{relevance:0,endsParent:!0,contains:[h,...p]}),_={begin:/\\[/,end:/\\]/,endsParent:!0,relevance:0,contains:[h,...p]},m={begin:/\\s+/,relevance:0},g=[f],b=[_],v=function(e,t){return{contains:[m],starts:{relevance:0,contains:e,starts:t}}},E=function(e,t){return{begin:\"\\\\\\\\\"+e+\"(?![a-zA-Z@:_])\",keywords:{$pattern:/\\\\[a-zA-Z]+/,keyword:\"\\\\\"+e},relevance:0,contains:[m],starts:t}},y=function(t,n){return e.inherit({begin:\"\\\\\\\\begin(?=[ \\t]*(\\\\r?\\\\n[ \\t]*)?\\\\{\"+t+\"\\\\})\",keywords:{$pattern:/\\\\[a-zA-Z]+/,keyword:\"\\\\begin\"},relevance:0},v(g,n))},S=(t=\"string\")=>e.END_SAME_AS_BEGIN({className:t,begin:/(.|\\r?\\n)/,end:/(.|\\r?\\n)/,excludeBegin:!0,excludeEnd:!0,endsParent:!0}),C=function(e){return{className:\"string\",end:\"(?=\\\\\\\\end\\\\{\"+e+\"\\\\})\"}},T=(e=\"string\")=>({relevance:0,begin:/\\{/,starts:{endsParent:!0,contains:[{className:e,end:/(?=\\})/,endsParent:!0,contains:[{begin:/\\{/,end:/\\}/,relevance:0,contains:[\"self\"]}]}]}}),x=[...[\"verb\",\"lstinline\"].map(e=>E(e,{contains:[S()]})),E(\"mint\",v(g,{contains:[S()]})),E(\"mintinline\",v(g,{contains:[T(),S()]})),E(\"url\",{contains:[T(\"link\"),T(\"link\")]}),E(\"hyperref\",{contains:[T(\"link\")]}),E(\"href\",v(b,{contains:[T(\"link\")]})),...[].concat(...[\"\",\"\\\\*\"].map(e=>[y(\"verbatim\"+e,C(\"verbatim\"+e)),y(\"filecontents\"+e,v(g,C(\"filecontents\"+e))),...[\"\",\"B\",\"L\"].map(t=>y(t+\"Verbatim\"+e,v(b,C(t+\"Verbatim\"+e))))])),y(\"minted\",v(b,v(g,C(\"minted\"))))];return{name:\"LaTeX\",aliases:[\"TeX\"],contains:[...x,...p]}}e.exports=r},1654:function(e,t,n){\"use strict\";var i=n(\"71c1\")(!0);n(\"30f1\")(String,\"String\",(function(e){this._t=String(e),this._i=0}),(function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=i(t,n),this._i+=e.length,{value:e,done:!1})}))},1691:function(e,t){e.exports=\"constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf\".split(\",\")},\"17ed\":function(e,t,n){e.exports={default:n(\"d8d6\"),__esModule:!0}},1846:function(e,t){const n=e=>({IMPORTANT:{className:\"meta\",begin:\"!important\"},HEXCOLOR:{className:\"number\",begin:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\"},ATTRIBUTE_SELECTOR_MODE:{className:\"selector-attr\",begin:/\\[/,end:/\\]/,illegal:\"$\",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}}),i=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"main\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],r=[\"any-hover\",\"any-pointer\",\"aspect-ratio\",\"color\",\"color-gamut\",\"color-index\",\"device-aspect-ratio\",\"device-height\",\"device-width\",\"display-mode\",\"forced-colors\",\"grid\",\"height\",\"hover\",\"inverted-colors\",\"monochrome\",\"orientation\",\"overflow-block\",\"overflow-inline\",\"pointer\",\"prefers-color-scheme\",\"prefers-contrast\",\"prefers-reduced-motion\",\"prefers-reduced-transparency\",\"resolution\",\"scan\",\"scripting\",\"update\",\"width\",\"min-width\",\"max-width\",\"min-height\",\"max-height\"],a=[\"active\",\"any-link\",\"blank\",\"checked\",\"current\",\"default\",\"defined\",\"dir\",\"disabled\",\"drop\",\"empty\",\"enabled\",\"first\",\"first-child\",\"first-of-type\",\"fullscreen\",\"future\",\"focus\",\"focus-visible\",\"focus-within\",\"has\",\"host\",\"host-context\",\"hover\",\"indeterminate\",\"in-range\",\"invalid\",\"is\",\"lang\",\"last-child\",\"last-of-type\",\"left\",\"link\",\"local-link\",\"not\",\"nth-child\",\"nth-col\",\"nth-last-child\",\"nth-last-col\",\"nth-last-of-type\",\"nth-of-type\",\"only-child\",\"only-of-type\",\"optional\",\"out-of-range\",\"past\",\"placeholder-shown\",\"read-only\",\"read-write\",\"required\",\"right\",\"root\",\"scope\",\"target\",\"target-within\",\"user-invalid\",\"valid\",\"visited\",\"where\"],o=[\"after\",\"backdrop\",\"before\",\"cue\",\"cue-region\",\"first-letter\",\"first-line\",\"grammar-error\",\"marker\",\"part\",\"placeholder\",\"selection\",\"slotted\",\"spelling-error\"],s=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-display\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-variation-settings\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"src\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"].reverse(),l=a.concat(o);function c(e){const t=n(e),c=l,u=\"and or not only\",d=\"[\\\\w-]+\",p=\"(\"+d+\"|@\\\\{\"+d+\"\\\\})\",h=[],f=[],_=function(e){return{className:\"string\",begin:\"~?\"+e+\".*?\"+e}},m=function(e,t,n){return{className:e,begin:t,relevance:n}},g={$pattern:/[a-z-]+/,keyword:u,attribute:r.join(\" \")},b={begin:\"\\\\(\",end:\"\\\\)\",contains:f,keywords:g,relevance:0};f.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,_(\"'\"),_('\"'),e.CSS_NUMBER_MODE,{begin:\"(url|data-uri)\\\\(\",starts:{className:\"string\",end:\"[\\\\)\\\\n]\",excludeEnd:!0}},t.HEXCOLOR,b,m(\"variable\",\"@@?\"+d,10),m(\"variable\",\"@\\\\{\"+d+\"\\\\}\"),m(\"built_in\",\"~?`[^`]*?`\"),{className:\"attribute\",begin:d+\"\\\\s*:\",end:\":\",returnBegin:!0,excludeEnd:!0},t.IMPORTANT);const v=f.concat({begin:/\\{/,end:/\\}/,contains:h}),E={beginKeywords:\"when\",endsWithParent:!0,contains:[{beginKeywords:\"and not\"}].concat(f)},y={begin:p+\"\\\\s*:\",returnBegin:!0,end:/[;}]/,relevance:0,contains:[{begin:/-(webkit|moz|ms|o)-/},{className:\"attribute\",begin:\"\\\\b(\"+s.join(\"|\")+\")\\\\b\",end:/(?=:)/,starts:{endsWithParent:!0,illegal:\"[<=$]\",relevance:0,contains:f}}]},S={className:\"keyword\",begin:\"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\\\b\",starts:{end:\"[;{}]\",keywords:g,returnEnd:!0,contains:f,relevance:0}},C={className:\"variable\",variants:[{begin:\"@\"+d+\"\\\\s*:\",relevance:15},{begin:\"@\"+d}],starts:{end:\"[;}]\",returnEnd:!0,contains:v}},T={variants:[{begin:\"[\\\\.#:&\\\\[>]\",end:\"[;{}]\"},{begin:p,end:/\\{/}],returnBegin:!0,returnEnd:!0,illegal:\"[<='$\\\"]\",relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,E,m(\"keyword\",\"all\\\\b\"),m(\"variable\",\"@\\\\{\"+d+\"\\\\}\"),{begin:\"\\\\b(\"+i.join(\"|\")+\")\\\\b\",className:\"selector-tag\"},m(\"selector-tag\",p+\"%?\",0),m(\"selector-id\",\"#\"+p),m(\"selector-class\",\"\\\\.\"+p,0),m(\"selector-tag\",\"&\",0),t.ATTRIBUTE_SELECTOR_MODE,{className:\"selector-pseudo\",begin:\":(\"+a.join(\"|\")+\")\"},{className:\"selector-pseudo\",begin:\"::(\"+o.join(\"|\")+\")\"},{begin:\"\\\\(\",end:\"\\\\)\",contains:v},{begin:\"!important\"}]},x={begin:d+\":(:)?\"+`(${c.join(\"|\")})`,returnBegin:!0,contains:[T]};return h.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,S,C,x,y,T),{name:\"Less\",case_insensitive:!0,illegal:\"[=>'/<($\\\"]\",contains:h}}e.exports=c},1991:function(e,t,n){var i,r,a,o=n(\"9b43\"),s=n(\"31f4\"),l=n(\"fab2\"),c=n(\"230e\"),u=n(\"7726\"),d=u.process,p=u.setImmediate,h=u.clearImmediate,f=u.MessageChannel,_=u.Dispatch,m=0,g={},b=\"onreadystatechange\",v=function(){var e=+this;if(g.hasOwnProperty(e)){var t=g[e];delete g[e],t()}},E=function(e){v.call(e.data)};p&&h||(p=function(e){var t=[],n=1;while(arguments.length>n)t.push(arguments[n++]);return g[++m]=function(){s(\"function\"==typeof e?e:Function(e),t)},i(m),m},h=function(e){delete g[e]},\"process\"==n(\"2d95\")(d)?i=function(e){d.nextTick(o(v,e,1))}:_&&_.now?i=function(e){_.now(o(v,e,1))}:f?(r=new f,a=r.port2,r.port1.onmessage=E,i=o(a.postMessage,a,1)):u.addEventListener&&\"function\"==typeof postMessage&&!u.importScripts?(i=function(e){u.postMessage(e+\"\",\"*\")},u.addEventListener(\"message\",E,!1)):i=b in c(\"script\")?function(e){l.appendChild(c(\"script\"))[b]=function(){l.removeChild(this),v.call(e)}}:function(e){setTimeout(o(v,e,1),0)}),e.exports={set:p,clear:h}},\"1a06\":function(e,t){function n(e){return{name:\"LDIF\",contains:[{className:\"attribute\",begin:\"^dn\",end:\": \",excludeEnd:!0,starts:{end:\"$\",relevance:0},relevance:10},{className:\"attribute\",begin:\"^\\\\w\",end:\": \",excludeEnd:!0,starts:{end:\"$\",relevance:0}},{className:\"literal\",begin:\"^-\",end:\"$\"},e.HASH_COMMENT_MODE]}}e.exports=n},\"1b02\":function(e,t){function n(e){const t={className:\"string\",begin:'(~)?\"',end:'\"',illegal:\"\\\\n\"},n={className:\"symbol\",begin:\"#[a-zA-Z_]\\\\w*\\\\$?\"};return{name:\"PureBASIC\",aliases:[\"pb\",\"pbi\"],keywords:\"Align And Array As Break CallDebugger Case CompilerCase CompilerDefault CompilerElse CompilerElseIf CompilerEndIf CompilerEndSelect CompilerError CompilerIf CompilerSelect CompilerWarning Continue Data DataSection Debug DebugLevel Declare DeclareC DeclareCDLL DeclareDLL DeclareModule Default Define Dim DisableASM DisableDebugger DisableExplicit Else ElseIf EnableASM EnableDebugger EnableExplicit End EndDataSection EndDeclareModule EndEnumeration EndIf EndImport EndInterface EndMacro EndModule EndProcedure EndSelect EndStructure EndStructureUnion EndWith Enumeration EnumerationBinary Extends FakeReturn For ForEach ForEver Global Gosub Goto If Import ImportC IncludeBinary IncludeFile IncludePath Interface List Macro MacroExpandedCount Map Module NewList NewMap Next Not Or Procedure ProcedureC ProcedureCDLL ProcedureDLL ProcedureReturn Protected Prototype PrototypeC ReDim Read Repeat Restore Return Runtime Select Shared Static Step Structure StructureUnion Swap Threaded To UndefineMacro Until Until  UnuseModule UseModule Wend While With XIncludeFile XOr\",contains:[e.COMMENT(\";\",\"$\",{relevance:0}),{className:\"function\",begin:\"\\\\b(Procedure|Declare)(C|CDLL|DLL)?\\\\b\",end:\"\\\\(\",excludeEnd:!0,returnBegin:!0,contains:[{className:\"keyword\",begin:\"(Procedure|Declare)(C|CDLL|DLL)?\",excludeEnd:!0},{className:\"type\",begin:\"\\\\.\\\\w*\"},e.UNDERSCORE_TITLE_MODE]},t,n]}}e.exports=n},\"1b1c\":function(e,t){function n(e){const t=[\"add\",\"and\",\"cmp\",\"cmpg\",\"cmpl\",\"const\",\"div\",\"double\",\"float\",\"goto\",\"if\",\"int\",\"long\",\"move\",\"mul\",\"neg\",\"new\",\"nop\",\"not\",\"or\",\"rem\",\"return\",\"shl\",\"shr\",\"sput\",\"sub\",\"throw\",\"ushr\",\"xor\"],n=[\"aget\",\"aput\",\"array\",\"check\",\"execute\",\"fill\",\"filled\",\"goto/16\",\"goto/32\",\"iget\",\"instance\",\"invoke\",\"iput\",\"monitor\",\"packed\",\"sget\",\"sparse\"],i=[\"transient\",\"constructor\",\"abstract\",\"final\",\"synthetic\",\"public\",\"private\",\"protected\",\"static\",\"bridge\",\"system\"];return{name:\"Smali\",aliases:[\"smali\"],contains:[{className:\"string\",begin:'\"',end:'\"',relevance:0},e.COMMENT(\"#\",\"$\",{relevance:0}),{className:\"keyword\",variants:[{begin:\"\\\\s*\\\\.end\\\\s[a-zA-Z0-9]*\"},{begin:\"^[ ]*\\\\.[a-zA-Z]*\",relevance:0},{begin:\"\\\\s:[a-zA-Z_0-9]*\",relevance:0},{begin:\"\\\\s(\"+i.join(\"|\")+\")\"}]},{className:\"built_in\",variants:[{begin:\"\\\\s(\"+t.join(\"|\")+\")\\\\s\"},{begin:\"\\\\s(\"+t.join(\"|\")+\")((-|/)[a-zA-Z0-9]+)+\\\\s\",relevance:10},{begin:\"\\\\s(\"+n.join(\"|\")+\")((-|/)[a-zA-Z0-9]+)*\\\\s\",relevance:10}]},{className:\"class\",begin:\"L[^(;:\\n]*;\",relevance:0},{begin:\"[vp][0-9]+\"}]}}e.exports=n},\"1b4d\":function(e,t){function n(e){const t=e.COMMENT(/\\(\\*/,/\\*\\)/),n={className:\"attribute\",begin:/^[ ]*[a-zA-Z]+([\\s_-]+[a-zA-Z]+)*/},i={className:\"meta\",begin:/\\?.*\\?/},r={begin:/=/,end:/[.;]/,contains:[t,i,{className:\"string\",variants:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{begin:\"`\",end:\"`\"}]}]};return{name:\"Extended Backus-Naur Form\",illegal:/\\S/,contains:[t,n,r]}}e.exports=n},\"1bc3\":function(e,t,n){var i=n(\"f772\");e.exports=function(e,t){if(!i(e))return e;var n,r;if(t&&\"function\"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;if(\"function\"==typeof(n=e.valueOf)&&!i(r=n.call(e)))return r;if(!t&&\"function\"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;throw TypeError(\"Can't convert object to primitive value\")}},\"1beb\":function(e,t){function n(e){const t={className:\"variable\",variants:[{begin:\"\\\\b([gtps][A-Z]{1}[a-zA-Z0-9]*)(\\\\[.+\\\\])?(?:\\\\s*?)\"},{begin:\"\\\\$_[A-Z]+\"}],relevance:0},n=[e.C_BLOCK_COMMENT_MODE,e.HASH_COMMENT_MODE,e.COMMENT(\"--\",\"$\"),e.COMMENT(\"[^:]//\",\"$\")],i=e.inherit(e.TITLE_MODE,{variants:[{begin:\"\\\\b_*rig[A-Z][A-Za-z0-9_\\\\-]*\"},{begin:\"\\\\b_[a-z0-9\\\\-]+\"}]}),r=e.inherit(e.TITLE_MODE,{begin:\"\\\\b([A-Za-z0-9_\\\\-]+)\\\\b\"});return{name:\"LiveCode\",case_insensitive:!1,keywords:{keyword:\"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys\",literal:\"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK\",built_in:\"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress difference directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge messageAuthenticationCode messageDigest millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetDriver libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load extension loadedExtensions multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract symmetric union unload vectorDotProduct wait write\"},contains:[t,{className:\"keyword\",begin:\"\\\\bend\\\\sif\\\\b\"},{className:\"function\",beginKeywords:\"function\",end:\"$\",contains:[t,r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE,i]},{className:\"function\",begin:\"\\\\bend\\\\s+\",end:\"$\",keywords:\"end\",contains:[r,i],relevance:0},{beginKeywords:\"command on\",end:\"$\",contains:[t,r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE,i]},{className:\"meta\",variants:[{begin:\"<\\\\?(rev|lc|livecode)\",relevance:10},{begin:\"<\\\\?\"},{begin:\"\\\\?>\"}]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE,i].concat(n),illegal:\";$|^\\\\[|^=|&|\\\\{\"}}e.exports=n},\"1d2b\":function(e,t,n){\"use strict\";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),i=0;i<n.length;i++)n[i]=arguments[i];return e.apply(t,n)}}},\"1ec9\":function(e,t,n){var i=n(\"f772\"),r=n(\"e53d\").document,a=i(r)&&i(r.createElement);e.exports=function(e){return a?r.createElement(e):{}}},\"1f64\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(e){return r(\"(?=\",e,\")\")}function r(...e){const t=e.map(e=>n(e)).join(\"\");return t}function a(e,t={}){return t.variants=e,t}function o(e){const t=\"[A-Za-z0-9_$]+\",n=a([e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.COMMENT(\"/\\\\*\\\\*\",\"\\\\*/\",{relevance:0,contains:[{begin:/\\w+@/,relevance:0},{className:\"doctag\",begin:\"@[A-Za-z]+\"}]})]),r={className:\"regexp\",begin:/~?\\/[^\\/\\n]+\\//,contains:[e.BACKSLASH_ESCAPE]},o=a([e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]),s=a([{begin:/\"\"\"/,end:/\"\"\"/},{begin:/'''/,end:/'''/},{begin:\"\\\\$/\",end:\"/\\\\$\",relevance:10},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE],{className:\"string\"});return{name:\"Groovy\",keywords:{built_in:\"this super\",literal:\"true false null\",keyword:\"byte short char int long boolean float double void def as in assert trait abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof\"},contains:[e.SHEBANG({binary:\"groovy\",relevance:10}),n,s,r,o,{className:\"class\",beginKeywords:\"class interface trait enum\",end:/\\{/,illegal:\":\",contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]},{className:\"meta\",begin:\"@[A-Za-z]+\",relevance:0},{className:\"attr\",begin:t+\"[ \\t]*:\",relevance:0},{begin:/\\?/,end:/:/,relevance:0,contains:[n,s,r,o,\"self\"]},{className:\"symbol\",begin:\"^[ \\t]*\"+i(t+\":\"),excludeBegin:!0,end:t+\":\",relevance:0}],illegal:/#|<\\//}}e.exports=o},\"1f8a\":function(e,t){function n(e){const t=\"exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure absolute reintroduce operator as is abstract alias assembler bitpacked break continue cppdecl cvar enumerator experimental platform deprecated unimplemented dynamic export far16 forward generic helper implements interrupt iochecks local name nodefault noreturn nostackframe oldfpccall otherwise saveregisters softfloat specialize strict unaligned varargs \",n=[e.C_LINE_COMMENT_MODE,e.COMMENT(/\\{/,/\\}/,{relevance:0}),e.COMMENT(/\\(\\*/,/\\*\\)/,{relevance:10})],i={className:\"meta\",variants:[{begin:/\\{\\$/,end:/\\}/},{begin:/\\(\\*\\$/,end:/\\*\\)/}]},r={className:\"string\",begin:/'/,end:/'/,contains:[{begin:/''/}]},a={className:\"number\",relevance:0,variants:[{begin:\"\\\\$[0-9A-Fa-f]+\"},{begin:\"&[0-7]+\"},{begin:\"%[01]+\"}]},o={className:\"string\",begin:/(#\\d+)+/},s={begin:e.IDENT_RE+\"\\\\s*=\\\\s*class\\\\s*\\\\(\",returnBegin:!0,contains:[e.TITLE_MODE]},l={className:\"function\",beginKeywords:\"function constructor destructor procedure\",end:/[:;]/,keywords:\"function constructor|10 destructor|10 procedure|10\",contains:[e.TITLE_MODE,{className:\"params\",begin:/\\(/,end:/\\)/,keywords:t,contains:[r,o,i].concat(n)},i].concat(n)};return{name:\"Delphi\",aliases:[\"dpr\",\"dfm\",\"pas\",\"pascal\",\"freepascal\",\"lazarus\",\"lpr\",\"lfm\"],case_insensitive:!0,keywords:t,illegal:/\"|\\$[G-Zg-z]|\\/\\*|<\\/|\\|/,contains:[r,o,e.NUMBER_MODE,a,s,l,i].concat(n)}}e.exports=n},\"1fa8\":function(e,t,n){var i=n(\"cb7c\");e.exports=function(e,t,n,r){try{return r?t(i(n)[0],n[1]):t(n)}catch(o){var a=e[\"return\"];throw void 0!==a&&i(a.call(e)),o}}},\"1fe5\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(e){return r(\"(\",e,\")?\")}function r(...e){const t=e.map(e=>n(e)).join(\"\");return t}function a(e){const t=e.COMMENT(\"//\",\"$\",{contains:[{begin:/\\\\\\n/}]}),n=\"decltype\\\\(auto\\\\)\",r=\"[a-zA-Z_]\\\\w*::\",a=\"<[^<>]+>\",o=\"(\"+n+\"|\"+i(r)+\"[a-zA-Z_]\\\\w*\"+i(a)+\")\",s={className:\"keyword\",begin:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},l=\"\\\\\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\\\S)\",c={className:\"string\",variants:[{begin:'(u8?|U|L)?\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},{begin:\"(u8?|U|L)?'(\"+l+\"|.)\",end:\"'\",illegal:\".\"},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R\"([^()\\\\ ]{0,16})\\(/,end:/\\)([^()\\\\ ]{0,16})\"/})]},u={className:\"number\",variants:[{begin:\"\\\\b(0b[01']+)\"},{begin:\"(-?)\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)\"},{begin:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],relevance:0},d={className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{\"meta-keyword\":\"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(c,{className:\"meta-string\"}),{className:\"meta-string\",begin:/<.*?>/,end:/$/,illegal:\"\\\\n\"},t,e.C_BLOCK_COMMENT_MODE]},p={className:\"title\",begin:i(r)+e.IDENT_RE,relevance:0},h=i(r)+e.IDENT_RE+\"\\\\s*\\\\(\",f={keyword:\"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const 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 asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override 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 and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq\",built_in:\"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future 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 _Bool complex _Complex imaginary _Imaginary\",literal:\"true false nullptr NULL\"},_=[d,s,t,e.C_BLOCK_COMMENT_MODE,u,c],m={variants:[{begin:/=/,end:/;/},{begin:/\\(/,end:/\\)/},{beginKeywords:\"new throw return else\",end:/;/}],keywords:f,contains:_.concat([{begin:/\\(/,end:/\\)/,keywords:f,contains:_.concat([\"self\"]),relevance:0}]),relevance:0},g={className:\"function\",begin:\"(\"+o+\"[\\\\*&\\\\s]+)+\"+h,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:f,illegal:/[^\\w\\s\\*&:<>.]/,contains:[{begin:n,keywords:f,relevance:0},{begin:h,returnBegin:!0,contains:[p],relevance:0},{className:\"params\",begin:/\\(/,end:/\\)/,keywords:f,relevance:0,contains:[t,e.C_BLOCK_COMMENT_MODE,c,u,s,{begin:/\\(/,end:/\\)/,keywords:f,relevance:0,contains:[\"self\",t,e.C_BLOCK_COMMENT_MODE,c,u,s]}]},s,t,e.C_BLOCK_COMMENT_MODE,d]};return{name:\"C\",aliases:[\"c\",\"h\"],keywords:f,disableAutodetect:!0,illegal:\"</\",contains:[].concat(m,g,_,[d,{begin:\"\\\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",end:\">\",keywords:f,contains:[\"self\",s]},{begin:e.IDENT_RE+\"::\",keywords:f},{className:\"class\",beginKeywords:\"enum class struct union\",end:/[{;:<>=]/,contains:[{beginKeywords:\"final class struct\"},e.TITLE_MODE]}]),exports:{preprocessor:d,strings:c,keywords:f}}}e.exports=a},2265:function(e,t){function n(e){var t=\"[A-Za-z_\\\\u00A1-\\\\uFFFF][A-Za-z_0-9\\\\u00A1-\\\\uFFFF]*\",n=[\"baremodule\",\"begin\",\"break\",\"catch\",\"ccall\",\"const\",\"continue\",\"do\",\"else\",\"elseif\",\"end\",\"export\",\"false\",\"finally\",\"for\",\"function\",\"global\",\"if\",\"import\",\"in\",\"isa\",\"let\",\"local\",\"macro\",\"module\",\"quote\",\"return\",\"true\",\"try\",\"using\",\"where\",\"while\"],i=[\"ARGS\",\"C_NULL\",\"DEPOT_PATH\",\"ENDIAN_BOM\",\"ENV\",\"Inf\",\"Inf16\",\"Inf32\",\"Inf64\",\"InsertionSort\",\"LOAD_PATH\",\"MergeSort\",\"NaN\",\"NaN16\",\"NaN32\",\"NaN64\",\"PROGRAM_FILE\",\"QuickSort\",\"RoundDown\",\"RoundFromZero\",\"RoundNearest\",\"RoundNearestTiesAway\",\"RoundNearestTiesUp\",\"RoundToZero\",\"RoundUp\",\"VERSION|0\",\"devnull\",\"false\",\"im\",\"missing\",\"nothing\",\"pi\",\"stderr\",\"stdin\",\"stdout\",\"true\",\"undef\",\"π\",\"ℯ\"],r=[\"AbstractArray\",\"AbstractChannel\",\"AbstractChar\",\"AbstractDict\",\"AbstractDisplay\",\"AbstractFloat\",\"AbstractIrrational\",\"AbstractMatrix\",\"AbstractRange\",\"AbstractSet\",\"AbstractString\",\"AbstractUnitRange\",\"AbstractVecOrMat\",\"AbstractVector\",\"Any\",\"ArgumentError\",\"Array\",\"AssertionError\",\"BigFloat\",\"BigInt\",\"BitArray\",\"BitMatrix\",\"BitSet\",\"BitVector\",\"Bool\",\"BoundsError\",\"CapturedException\",\"CartesianIndex\",\"CartesianIndices\",\"Cchar\",\"Cdouble\",\"Cfloat\",\"Channel\",\"Char\",\"Cint\",\"Cintmax_t\",\"Clong\",\"Clonglong\",\"Cmd\",\"Colon\",\"Complex\",\"ComplexF16\",\"ComplexF32\",\"ComplexF64\",\"CompositeException\",\"Condition\",\"Cptrdiff_t\",\"Cshort\",\"Csize_t\",\"Cssize_t\",\"Cstring\",\"Cuchar\",\"Cuint\",\"Cuintmax_t\",\"Culong\",\"Culonglong\",\"Cushort\",\"Cvoid\",\"Cwchar_t\",\"Cwstring\",\"DataType\",\"DenseArray\",\"DenseMatrix\",\"DenseVecOrMat\",\"DenseVector\",\"Dict\",\"DimensionMismatch\",\"Dims\",\"DivideError\",\"DomainError\",\"EOFError\",\"Enum\",\"ErrorException\",\"Exception\",\"ExponentialBackOff\",\"Expr\",\"Float16\",\"Float32\",\"Float64\",\"Function\",\"GlobalRef\",\"HTML\",\"IO\",\"IOBuffer\",\"IOContext\",\"IOStream\",\"IdDict\",\"IndexCartesian\",\"IndexLinear\",\"IndexStyle\",\"InexactError\",\"InitError\",\"Int\",\"Int128\",\"Int16\",\"Int32\",\"Int64\",\"Int8\",\"Integer\",\"InterruptException\",\"InvalidStateException\",\"Irrational\",\"KeyError\",\"LinRange\",\"LineNumberNode\",\"LinearIndices\",\"LoadError\",\"MIME\",\"Matrix\",\"Method\",\"MethodError\",\"Missing\",\"MissingException\",\"Module\",\"NTuple\",\"NamedTuple\",\"Nothing\",\"Number\",\"OrdinalRange\",\"OutOfMemoryError\",\"OverflowError\",\"Pair\",\"PartialQuickSort\",\"PermutedDimsArray\",\"Pipe\",\"ProcessFailedException\",\"Ptr\",\"QuoteNode\",\"Rational\",\"RawFD\",\"ReadOnlyMemoryError\",\"Real\",\"ReentrantLock\",\"Ref\",\"Regex\",\"RegexMatch\",\"RoundingMode\",\"SegmentationFault\",\"Set\",\"Signed\",\"Some\",\"StackOverflowError\",\"StepRange\",\"StepRangeLen\",\"StridedArray\",\"StridedMatrix\",\"StridedVecOrMat\",\"StridedVector\",\"String\",\"StringIndexError\",\"SubArray\",\"SubString\",\"SubstitutionString\",\"Symbol\",\"SystemError\",\"Task\",\"TaskFailedException\",\"Text\",\"TextDisplay\",\"Timer\",\"Tuple\",\"Type\",\"TypeError\",\"TypeVar\",\"UInt\",\"UInt128\",\"UInt16\",\"UInt32\",\"UInt64\",\"UInt8\",\"UndefInitializer\",\"UndefKeywordError\",\"UndefRefError\",\"UndefVarError\",\"Union\",\"UnionAll\",\"UnitRange\",\"Unsigned\",\"Val\",\"Vararg\",\"VecElement\",\"VecOrMat\",\"Vector\",\"VersionNumber\",\"WeakKeyDict\",\"WeakRef\"],a={$pattern:t,keyword:n,literal:i,built_in:r},o={keywords:a,illegal:/<\\//},s={className:\"number\",begin:/(\\b0x[\\d_]*(\\.[\\d_]*)?|0x\\.\\d[\\d_]*)p[-+]?\\d+|\\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\\b\\d[\\d_]*(\\.[\\d_]*)?|\\.\\d[\\d_]*)([eEfF][-+]?\\d+)?/,relevance:0},l={className:\"string\",begin:/'(.|\\\\[xXuU][a-zA-Z0-9]+)'/},c={className:\"subst\",begin:/\\$\\(/,end:/\\)/,keywords:a},u={className:\"variable\",begin:\"\\\\$\"+t},d={className:\"string\",contains:[e.BACKSLASH_ESCAPE,c,u],variants:[{begin:/\\w*\"\"\"/,end:/\"\"\"\\w*/,relevance:10},{begin:/\\w*\"/,end:/\"\\w*/}]},p={className:\"string\",contains:[e.BACKSLASH_ESCAPE,c,u],begin:\"`\",end:\"`\"},h={className:\"meta\",begin:\"@\"+t},f={className:\"comment\",variants:[{begin:\"#=\",end:\"=#\",relevance:10},{begin:\"#\",end:\"$\"}]};return o.name=\"Julia\",o.contains=[s,l,d,p,h,f,e.HASH_COMMENT_MODE,{className:\"keyword\",begin:\"\\\\b(((abstract|primitive)\\\\s+)type|(mutable\\\\s+)?struct)\\\\b\"},{begin:/<:/}],c.contains=o.contains,o}e.exports=n},\"230e\":function(e,t,n){var i=n(\"d3f4\"),r=n(\"7726\").document,a=i(r)&&i(r.createElement);e.exports=function(e){return a?r.createElement(e):{}}},\"23c6\":function(e,t,n){var i=n(\"2d95\"),r=n(\"2b4c\")(\"toStringTag\"),a=\"Arguments\"==i(function(){return arguments}()),o=function(e,t){try{return e[t]}catch(n){}};e.exports=function(e){var t,n,s;return void 0===e?\"Undefined\":null===e?\"Null\":\"string\"==typeof(n=o(t=Object(e),r))?n:a?i(t):\"Object\"==(s=i(t))&&\"function\"==typeof t.callee?\"Arguments\":s}},\"241e\":function(e,t,n){var i=n(\"25eb\");e.exports=function(e){return Object(i(e))}},2425:function(e,t){function n(e){const t={keyword:\"module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure\",meta:\"inline no_inline type_spec source_file fact_table obsolete memo loop_check minimal_model terminates does_not_terminate check_termination promise_equivalent_clauses foreign_proc foreign_decl foreign_code foreign_type foreign_import_module foreign_export_enum foreign_export foreign_enum may_call_mercury will_not_call_mercury thread_safe not_thread_safe maybe_thread_safe promise_pure promise_semipure tabled_for_io local untrailed trailed attach_to_io_state can_pass_as_mercury_type stable will_not_throw_exception may_modify_trail will_not_modify_trail may_duplicate may_not_duplicate affects_liveness does_not_affect_liveness doesnt_affect_liveness no_sharing unknown_sharing sharing\",built_in:\"some all not if then else true fail false try catch catch_any semidet_true semidet_false semidet_fail impure_true impure semipure\"},n=e.COMMENT(\"%\",\"$\"),i={className:\"number\",begin:\"0'.\\\\|0[box][0-9a-fA-F]*\"},r=e.inherit(e.APOS_STRING_MODE,{relevance:0}),a=e.inherit(e.QUOTE_STRING_MODE,{relevance:0}),o={className:\"subst\",begin:\"\\\\\\\\[abfnrtv]\\\\|\\\\\\\\x[0-9a-fA-F]*\\\\\\\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]\",relevance:0};a.contains=a.contains.slice(),a.contains.push(o);const s={className:\"built_in\",variants:[{begin:\"<=>\"},{begin:\"<=\",relevance:0},{begin:\"=>\",relevance:0},{begin:\"/\\\\\\\\\"},{begin:\"\\\\\\\\/\"}]},l={className:\"built_in\",variants:[{begin:\":-\\\\|--\\x3e\"},{begin:\"=\",relevance:0}]};return{name:\"Mercury\",aliases:[\"m\",\"moo\"],keywords:t,contains:[s,l,n,e.C_BLOCK_COMMENT_MODE,i,e.NUMBER_MODE,r,a,{begin:/:-/},{begin:/\\.$/}]}}e.exports=n},2444:function(e,t,n){\"use strict\";(function(t){var i=n(\"c532\"),r=n(\"c8af\"),a={\"Content-Type\":\"application/x-www-form-urlencoded\"};function o(e,t){!i.isUndefined(e)&&i.isUndefined(e[\"Content-Type\"])&&(e[\"Content-Type\"]=t)}function s(){var e;return(\"undefined\"!==typeof XMLHttpRequest||\"undefined\"!==typeof t&&\"[object process]\"===Object.prototype.toString.call(t))&&(e=n(\"b50d\")),e}var l={adapter:s(),transformRequest:[function(e,t){return r(t,\"Accept\"),r(t,\"Content-Type\"),i.isFormData(e)||i.isArrayBuffer(e)||i.isBuffer(e)||i.isStream(e)||i.isFile(e)||i.isBlob(e)?e:i.isArrayBufferView(e)?e.buffer:i.isURLSearchParams(e)?(o(t,\"application/x-www-form-urlencoded;charset=utf-8\"),e.toString()):i.isObject(e)?(o(t,\"application/json;charset=utf-8\"),JSON.stringify(e)):e}],transformResponse:[function(e){if(\"string\"===typeof e)try{e=JSON.parse(e)}catch(t){}return e}],timeout:0,xsrfCookieName:\"XSRF-TOKEN\",xsrfHeaderName:\"X-XSRF-TOKEN\",maxContentLength:-1,validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:\"application/json, text/plain, */*\"}}};i.forEach([\"delete\",\"get\",\"head\"],(function(e){l.headers[e]={}})),i.forEach([\"post\",\"put\",\"patch\"],(function(e){l.headers[e]=i.merge(a)})),e.exports=l}).call(this,n(\"f28c\"))},2468:function(e,t){function n(e){const t={className:\"comment\",begin:/\\$noop\\(/,end:/\\)/,contains:[{begin:/\\(/,end:/\\)/,contains:[\"self\",{begin:/\\\\./}]}],relevance:10},n={className:\"keyword\",begin:/\\$(?!noop)[a-zA-Z][_a-zA-Z0-9]*/,end:/\\(/,excludeEnd:!0},i={className:\"variable\",begin:/%[_a-zA-Z0-9:]*/,end:\"%\"},r={className:\"symbol\",begin:/\\\\./};return{name:\"Tagger Script\",contains:[t,n,i,r]}}e.exports=n},\"25bd\":function(e,t){function n(e){const t=\"[a-zA-Z_][\\\\w.]*\",n=\"<\\\\?(lasso(script)?|=)\",i=\"\\\\]|\\\\?>\",r={$pattern:t+\"|&[lg]t;\",literal:\"true false none minimal full all void and or not bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft\",built_in:\"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock\",keyword:\"cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else fail_if fail_ifnot fail if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome\"},a=e.COMMENT(\"\\x3c!--\",\"--\\x3e\",{relevance:0}),o={className:\"meta\",begin:\"\\\\[noprocess\\\\]\",starts:{end:\"\\\\[/noprocess\\\\]\",returnEnd:!0,contains:[a]}},s={className:\"meta\",begin:\"\\\\[/noprocess|\"+n},l={className:\"symbol\",begin:\"'\"+t+\"'\"},c=[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.inherit(e.C_NUMBER_MODE,{begin:e.C_NUMBER_RE+\"|(-?infinity|NaN)\\\\b\"}),e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),{className:\"string\",begin:\"`\",end:\"`\"},{variants:[{begin:\"[#$]\"+t},{begin:\"#\",end:\"\\\\d+\",illegal:\"\\\\W\"}]},{className:\"type\",begin:\"::\\\\s*\",end:t,illegal:\"\\\\W\"},{className:\"params\",variants:[{begin:\"-(?!infinity)\"+t,relevance:0},{begin:\"(\\\\.\\\\.\\\\.)\"}]},{begin:/(->|\\.)\\s*/,relevance:0,contains:[l]},{className:\"class\",beginKeywords:\"define\",returnEnd:!0,end:\"\\\\(|=>\",contains:[e.inherit(e.TITLE_MODE,{begin:t+\"(=(?!>))?|[-+*/%](?!>)\"})]}];return{name:\"Lasso\",aliases:[\"ls\",\"lassoscript\"],case_insensitive:!0,keywords:r,contains:[{className:\"meta\",begin:i,relevance:0,starts:{end:\"\\\\[|\"+n,returnEnd:!0,relevance:0,contains:[a]}},o,s,{className:\"meta\",begin:\"\\\\[no_square_brackets\",starts:{end:\"\\\\[/no_square_brackets\\\\]\",keywords:r,contains:[{className:\"meta\",begin:i,relevance:0,starts:{end:\"\\\\[noprocess\\\\]|\"+n,returnEnd:!0,contains:[a]}},o,s].concat(c)}},{className:\"meta\",begin:\"\\\\[\",relevance:0},{className:\"meta\",begin:\"^#!\",end:\"lasso9$\",relevance:10}].concat(c)}}e.exports=n},\"25eb\":function(e,t){e.exports=function(e){if(void 0==e)throw TypeError(\"Can't call method on  \"+e);return e}},2621:function(e,t){t.f=Object.getOwnPropertySymbols},2639:function(e,t){function n(e){const t=\"ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts\",n={$pattern:/[a-zA-Z][a-zA-Z0-9_?]*/,keyword:\"if then else do while until for loop import with is as where when by data constant integer real text name boolean symbol infix prefix postfix block tree\",literal:\"true false nil\",built_in:\"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons \"+t},i={className:\"string\",begin:'\"',end:'\"',illegal:\"\\\\n\"},r={className:\"string\",begin:\"'\",end:\"'\",illegal:\"\\\\n\"},a={className:\"string\",begin:\"<<\",end:\">>\"},o={className:\"number\",begin:\"[0-9]+#[0-9A-Z_]+(\\\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?\"},s={beginKeywords:\"import\",end:\"$\",keywords:n,contains:[i]},l={className:\"function\",begin:/[a-z][^\\n]*->/,returnBegin:!0,end:/->/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,keywords:n}})]};return{name:\"XL\",aliases:[\"tao\"],keywords:n,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,i,r,a,l,s,o,e.NUMBER_MODE]}}e.exports=n},\"268a\":function(e,t){function n(e){const t=\"module schema namespace boundary-space preserve no-preserve strip default collation base-uri ordering context decimal-format decimal-separator copy-namespaces empty-sequence except exponent-separator external grouping-separator inherit no-inherit lax minus-sign per-mille percent schema-attribute schema-element strict unordered zero-digit declare import option function validate variable for at in let where order group by return if then else tumbling sliding window start when only end previous next stable ascending descending allowing empty greatest least some every satisfies switch case typeswitch try catch and or to union intersect instance of treat as castable cast map array delete insert into replace value rename copy modify update\",n=\"item document-node node attribute document element comment namespace namespace-node processing-instruction text construction xs:anyAtomicType xs:untypedAtomic xs:duration xs:time xs:decimal xs:float xs:double xs:gYearMonth xs:gYear xs:gMonthDay xs:gMonth xs:gDay xs:boolean xs:base64Binary xs:hexBinary xs:anyURI xs:QName xs:NOTATION xs:dateTime xs:dateTimeStamp xs:date xs:string xs:normalizedString xs:token xs:language xs:NMTOKEN xs:Name xs:NCName xs:ID xs:IDREF xs:ENTITY xs:integer xs:nonPositiveInteger xs:negativeInteger xs:long xs:int xs:short xs:byte xs:nonNegativeInteger xs:unisignedLong xs:unsignedInt xs:unsignedShort xs:unsignedByte xs:positiveInteger xs:yearMonthDuration xs:dayTimeDuration\",i=\"eq ne lt le gt ge is self:: child:: descendant:: descendant-or-self:: attribute:: following:: following-sibling:: parent:: ancestor:: ancestor-or-self:: preceding:: preceding-sibling:: NaN\",r={className:\"built_in\",variants:[{begin:/\\barray:/,end:/(?:append|filter|flatten|fold-(?:left|right)|for-each(?:-pair)?|get|head|insert-before|join|put|remove|reverse|size|sort|subarray|tail)\\b/},{begin:/\\bmap:/,end:/(?:contains|entry|find|for-each|get|keys|merge|put|remove|size)\\b/},{begin:/\\bmath:/,end:/(?:a(?:cos|sin|tan[2]?)|cos|exp(?:10)?|log(?:10)?|pi|pow|sin|sqrt|tan)\\b/},{begin:/\\bop:/,end:/\\(/,excludeEnd:!0},{begin:/\\bfn:/,end:/\\(/,excludeEnd:!0},{begin:/[^</$:'\"-]\\b(?:abs|accumulator-(?:after|before)|adjust-(?:date(?:Time)?|time)-to-timezone|analyze-string|apply|available-(?:environment-variables|system-properties)|avg|base-uri|boolean|ceiling|codepoints?-(?:equal|to-string)|collation-key|collection|compare|concat|contains(?:-token)?|copy-of|count|current(?:-)?(?:date(?:Time)?|time|group(?:ing-key)?|output-uri|merge-(?:group|key))?data|dateTime|days?-from-(?:date(?:Time)?|duration)|deep-equal|default-(?:collation|language)|distinct-values|document(?:-uri)?|doc(?:-available)?|element-(?:available|with-id)|empty|encode-for-uri|ends-with|environment-variable|error|escape-html-uri|exactly-one|exists|false|filter|floor|fold-(?:left|right)|for-each(?:-pair)?|format-(?:date(?:Time)?|time|integer|number)|function-(?:arity|available|lookup|name)|generate-id|has-children|head|hours-from-(?:dateTime|duration|time)|id(?:ref)?|implicit-timezone|in-scope-prefixes|index-of|innermost|insert-before|iri-to-uri|json-(?:doc|to-xml)|key|lang|last|load-xquery-module|local-name(?:-from-QName)?|(?:lower|upper)-case|matches|max|minutes-from-(?:dateTime|duration|time)|min|months?-from-(?:date(?:Time)?|duration)|name(?:space-uri-?(?:for-prefix|from-QName)?)?|nilled|node-name|normalize-(?:space|unicode)|not|number|one-or-more|outermost|parse-(?:ietf-date|json)|path|position|(?:prefix-from-)?QName|random-number-generator|regex-group|remove|replace|resolve-(?:QName|uri)|reverse|root|round(?:-half-to-even)?|seconds-from-(?:dateTime|duration|time)|snapshot|sort|starts-with|static-base-uri|stream-available|string-?(?:join|length|to-codepoints)?|subsequence|substring-?(?:after|before)?|sum|system-property|tail|timezone-from-(?:date(?:Time)?|time)|tokenize|trace|trans(?:form|late)|true|type-available|unordered|unparsed-(?:entity|text)?-?(?:public-id|uri|available|lines)?|uri-collection|xml-to-json|years?-from-(?:date(?:Time)?|duration)|zero-or-one)\\b/},{begin:/\\blocal:/,end:/\\(/,excludeEnd:!0},{begin:/\\bzip:/,end:/(?:zip-file|(?:xml|html|text|binary)-entry| (?:update-)?entries)\\b/},{begin:/\\b(?:util|db|functx|app|xdmp|xmldb):/,end:/\\(/,excludeEnd:!0}]},a={className:\"title\",begin:/\\bxquery version \"[13]\\.[01]\"\\s?(?:encoding \".+\")?/,end:/;/},o={className:\"variable\",begin:/[$][\\w\\-:]+/},s={className:\"number\",begin:/(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b/,relevance:0},l={className:\"string\",variants:[{begin:/\"/,end:/\"/,contains:[{begin:/\"\"/,relevance:0}]},{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]}]},c={className:\"meta\",begin:/%[\\w\\-:]+/},u={className:\"comment\",begin:/\\(:/,end:/:\\)/,relevance:10,contains:[{className:\"doctag\",begin:/@\\w+/}]},d={beginKeywords:\"element attribute comment document processing-instruction\",end:/\\{/,excludeEnd:!0},p={begin:/<([\\w._:-]+)(\\s+\\S*=('|\").*('|\"))?>/,end:/(\\/[\\w._:-]+>)/,subLanguage:\"xml\",contains:[{begin:/\\{/,end:/\\}/,subLanguage:\"xquery\"},\"self\"]},h=[o,r,l,s,u,c,a,d,p];return{name:\"XQuery\",aliases:[\"xpath\",\"xq\"],case_insensitive:!1,illegal:/(proc)|(abstract)|(extends)|(until)|(#)/,keywords:{$pattern:/[a-zA-Z$][a-zA-Z0-9_:-]*/,keyword:t,type:n,literal:i},contains:h}}e.exports=n},\"26bc\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(e){return r(\"(?=\",e,\")\")}function r(...e){const t=e.map(e=>n(e)).join(\"\");return t}function a(e){const t=/(?:(?:[a-zA-Z]|\\.[._a-zA-Z])[._a-zA-Z0-9]*)|\\.(?!\\d)/,n=/[a-zA-Z][a-zA-Z_0-9]*/;return{name:\"R\",illegal:/->/,keywords:{$pattern:t,keyword:\"function if in break next repeat else for while\",literal:\"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10\",built_in:\"LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm\"},compilerExtensions:[(e,t)=>{if(!e.beforeMatch)return;if(e.starts)throw new Error(\"beforeMatch cannot be used with starts\");const n=Object.assign({},e);Object.keys(e).forEach(t=>{delete e[t]}),e.begin=r(n.beforeMatch,i(n.begin)),e.starts={relevance:0,contains:[Object.assign(n,{endsParent:!0})]},e.relevance=0,delete n.beforeMatch}],contains:[e.COMMENT(/#'/,/$/,{contains:[{className:\"doctag\",begin:\"@examples\",starts:{contains:[{begin:/\\n/},{begin:/#'\\s*(?=@[a-zA-Z]+)/,endsParent:!0},{begin:/#'/,end:/$/,excludeBegin:!0}]}},{className:\"doctag\",begin:\"@param\",end:/$/,contains:[{className:\"variable\",variants:[{begin:t},{begin:/`(?:\\\\.|[^`\\\\])+`/}],endsParent:!0}]},{className:\"doctag\",begin:/@[a-zA-Z]+/},{className:\"meta-keyword\",begin:/\\\\[a-zA-Z]+/}]}),e.HASH_COMMENT_MODE,{className:\"string\",contains:[e.BACKSLASH_ESCAPE],variants:[e.END_SAME_AS_BEGIN({begin:/[rR]\"(-*)\\(/,end:/\\)(-*)\"/}),e.END_SAME_AS_BEGIN({begin:/[rR]\"(-*)\\{/,end:/\\}(-*)\"/}),e.END_SAME_AS_BEGIN({begin:/[rR]\"(-*)\\[/,end:/\\](-*)\"/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\\(/,end:/\\)(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\\{/,end:/\\}(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\\[/,end:/\\](-*)'/}),{begin:'\"',end:'\"',relevance:0},{begin:\"'\",end:\"'\",relevance:0}]},{className:\"number\",relevance:0,beforeMatch:/([^a-zA-Z0-9._])/,variants:[{match:/0[xX][0-9a-fA-F]+\\.[0-9a-fA-F]*[pP][+-]?\\d+i?/},{match:/0[xX][0-9a-fA-F]+([pP][+-]?\\d+)?[Li]?/},{match:/(\\d+(\\.\\d*)?|\\.\\d+)([eE][+-]?\\d+)?[Li]?/}]},{begin:\"%\",end:\"%\"},{begin:r(n,\"\\\\s+<-\\\\s+\")},{begin:\"`\",end:\"`\",contains:[{begin:/\\\\./}]}]}}e.exports=a},\"27ee\":function(e,t,n){var i=n(\"23c6\"),r=n(\"2b4c\")(\"iterator\"),a=n(\"84f2\");e.exports=n(\"8378\").getIteratorMethod=function(e){if(void 0!=e)return e[r]||e[\"@@iterator\"]||a[i(e)]}},2877:function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},\"28ad\":function(e,t){function n(e){var t={className:\"subst\",begin:/\\\\[tn\"\\\\]/},n={className:\"string\",begin:'\"',end:'\"',contains:[t]},i={className:\"number\",relevance:0,begin:e.C_NUMBER_RE},r={className:\"literal\",variants:[{begin:\"\\\\b(PI|TWO_PI|PI_BY_TWO|DEG_TO_RAD|RAD_TO_DEG|SQRT2)\\\\b\"},{begin:\"\\\\b(XP_ERROR_(EXPERIENCES_DISABLED|EXPERIENCE_(DISABLED|SUSPENDED)|INVALID_(EXPERIENCE|PARAMETERS)|KEY_NOT_FOUND|MATURITY_EXCEEDED|NONE|NOT_(FOUND|PERMITTED(_LAND)?)|NO_EXPERIENCE|QUOTA_EXCEEDED|RETRY_UPDATE|STORAGE_EXCEPTION|STORE_DISABLED|THROTTLED|UNKNOWN_ERROR)|JSON_APPEND|STATUS_(PHYSICS|ROTATE_[XYZ]|PHANTOM|SANDBOX|BLOCK_GRAB(_OBJECT)?|(DIE|RETURN)_AT_EDGE|CAST_SHADOWS|OK|MALFORMED_PARAMS|TYPE_MISMATCH|BOUNDS_ERROR|NOT_(FOUND|SUPPORTED)|INTERNAL_ERROR|WHITELIST_FAILED)|AGENT(_(BY_(LEGACY_|USER)NAME|FLYING|ATTACHMENTS|SCRIPTED|MOUSELOOK|SITTING|ON_OBJECT|AWAY|WALKING|IN_AIR|TYPING|CROUCHING|BUSY|ALWAYS_RUN|AUTOPILOT|LIST_(PARCEL(_OWNER)?|REGION)))?|CAMERA_(PITCH|DISTANCE|BEHINDNESS_(ANGLE|LAG)|(FOCUS|POSITION)(_(THRESHOLD|LOCKED|LAG))?|FOCUS_OFFSET|ACTIVE)|ANIM_ON|LOOP|REVERSE|PING_PONG|SMOOTH|ROTATE|SCALE|ALL_SIDES|LINK_(ROOT|SET|ALL_(OTHERS|CHILDREN)|THIS)|ACTIVE|PASS(IVE|_(ALWAYS|IF_NOT_HANDLED|NEVER))|SCRIPTED|CONTROL_(FWD|BACK|(ROT_)?(LEFT|RIGHT)|UP|DOWN|(ML_)?LBUTTON)|PERMISSION_(RETURN_OBJECTS|DEBIT|OVERRIDE_ANIMATIONS|SILENT_ESTATE_MANAGEMENT|TAKE_CONTROLS|TRIGGER_ANIMATION|ATTACH|CHANGE_LINKS|(CONTROL|TRACK)_CAMERA|TELEPORT)|INVENTORY_(TEXTURE|SOUND|OBJECT|SCRIPT|LANDMARK|CLOTHING|NOTECARD|BODYPART|ANIMATION|GESTURE|ALL|NONE)|CHANGED_(INVENTORY|COLOR|SHAPE|SCALE|TEXTURE|LINK|ALLOWED_DROP|OWNER|REGION(_START)?|TELEPORT|MEDIA)|OBJECT_(CLICK_ACTION|HOVER_HEIGHT|LAST_OWNER_ID|(PHYSICS|SERVER|STREAMING)_COST|UNKNOWN_DETAIL|CHARACTER_TIME|PHANTOM|PHYSICS|TEMP_(ATTACHED|ON_REZ)|NAME|DESC|POS|PRIM_(COUNT|EQUIVALENCE)|RETURN_(PARCEL(_OWNER)?|REGION)|REZZER_KEY|ROO?T|VELOCITY|OMEGA|OWNER|GROUP(_TAG)?|CREATOR|ATTACHED_(POINT|SLOTS_AVAILABLE)|RENDER_WEIGHT|(BODY_SHAPE|PATHFINDING)_TYPE|(RUNNING|TOTAL)_SCRIPT_COUNT|TOTAL_INVENTORY_COUNT|SCRIPT_(MEMORY|TIME))|TYPE_(INTEGER|FLOAT|STRING|KEY|VECTOR|ROTATION|INVALID)|(DEBUG|PUBLIC)_CHANNEL|ATTACH_(AVATAR_CENTER|CHEST|HEAD|BACK|PELVIS|MOUTH|CHIN|NECK|NOSE|BELLY|[LR](SHOULDER|HAND|FOOT|EAR|EYE|[UL](ARM|LEG)|HIP)|(LEFT|RIGHT)_PEC|HUD_(CENTER_[12]|TOP_(RIGHT|CENTER|LEFT)|BOTTOM(_(RIGHT|LEFT))?)|[LR]HAND_RING1|TAIL_(BASE|TIP)|[LR]WING|FACE_(JAW|[LR]EAR|[LR]EYE|TOUNGE)|GROIN|HIND_[LR]FOOT)|LAND_(LEVEL|RAISE|LOWER|SMOOTH|NOISE|REVERT)|DATA_(ONLINE|NAME|BORN|SIM_(POS|STATUS|RATING)|PAYINFO)|PAYMENT_INFO_(ON_FILE|USED)|REMOTE_DATA_(CHANNEL|REQUEST|REPLY)|PSYS_(PART_(BF_(ZERO|ONE(_MINUS_(DEST_COLOR|SOURCE_(ALPHA|COLOR)))?|DEST_COLOR|SOURCE_(ALPHA|COLOR))|BLEND_FUNC_(DEST|SOURCE)|FLAGS|(START|END)_(COLOR|ALPHA|SCALE|GLOW)|MAX_AGE|(RIBBON|WIND|INTERP_(COLOR|SCALE)|BOUNCE|FOLLOW_(SRC|VELOCITY)|TARGET_(POS|LINEAR)|EMISSIVE)_MASK)|SRC_(MAX_AGE|PATTERN|ANGLE_(BEGIN|END)|BURST_(RATE|PART_COUNT|RADIUS|SPEED_(MIN|MAX))|ACCEL|TEXTURE|TARGET_KEY|OMEGA|PATTERN_(DROP|EXPLODE|ANGLE(_CONE(_EMPTY)?)?)))|VEHICLE_(REFERENCE_FRAME|TYPE_(NONE|SLED|CAR|BOAT|AIRPLANE|BALLOON)|(LINEAR|ANGULAR)_(FRICTION_TIMESCALE|MOTOR_DIRECTION)|LINEAR_MOTOR_OFFSET|HOVER_(HEIGHT|EFFICIENCY|TIMESCALE)|BUOYANCY|(LINEAR|ANGULAR)_(DEFLECTION_(EFFICIENCY|TIMESCALE)|MOTOR_(DECAY_)?TIMESCALE)|VERTICAL_ATTRACTION_(EFFICIENCY|TIMESCALE)|BANKING_(EFFICIENCY|MIX|TIMESCALE)|FLAG_(NO_DEFLECTION_UP|LIMIT_(ROLL_ONLY|MOTOR_UP)|HOVER_((WATER|TERRAIN|UP)_ONLY|GLOBAL_HEIGHT)|MOUSELOOK_(STEER|BANK)|CAMERA_DECOUPLED))|PRIM_(ALLOW_UNSIT|ALPHA_MODE(_(BLEND|EMISSIVE|MASK|NONE))?|NORMAL|SPECULAR|TYPE(_(BOX|CYLINDER|PRISM|SPHERE|TORUS|TUBE|RING|SCULPT))?|HOLE_(DEFAULT|CIRCLE|SQUARE|TRIANGLE)|MATERIAL(_(STONE|METAL|GLASS|WOOD|FLESH|PLASTIC|RUBBER))?|SHINY_(NONE|LOW|MEDIUM|HIGH)|BUMP_(NONE|BRIGHT|DARK|WOOD|BARK|BRICKS|CHECKER|CONCRETE|TILE|STONE|DISKS|GRAVEL|BLOBS|SIDING|LARGETILE|STUCCO|SUCTION|WEAVE)|TEXGEN_(DEFAULT|PLANAR)|SCRIPTED_SIT_ONLY|SCULPT_(TYPE_(SPHERE|TORUS|PLANE|CYLINDER|MASK)|FLAG_(MIRROR|INVERT))|PHYSICS(_(SHAPE_(CONVEX|NONE|PRIM|TYPE)))?|(POS|ROT)_LOCAL|SLICE|TEXT|FLEXIBLE|POINT_LIGHT|TEMP_ON_REZ|PHANTOM|POSITION|SIT_TARGET|SIZE|ROTATION|TEXTURE|NAME|OMEGA|DESC|LINK_TARGET|COLOR|BUMP_SHINY|FULLBRIGHT|TEXGEN|GLOW|MEDIA_(ALT_IMAGE_ENABLE|CONTROLS|(CURRENT|HOME)_URL|AUTO_(LOOP|PLAY|SCALE|ZOOM)|FIRST_CLICK_INTERACT|(WIDTH|HEIGHT)_PIXELS|WHITELIST(_ENABLE)?|PERMS_(INTERACT|CONTROL)|PARAM_MAX|CONTROLS_(STANDARD|MINI)|PERM_(NONE|OWNER|GROUP|ANYONE)|MAX_(URL_LENGTH|WHITELIST_(SIZE|COUNT)|(WIDTH|HEIGHT)_PIXELS)))|MASK_(BASE|OWNER|GROUP|EVERYONE|NEXT)|PERM_(TRANSFER|MODIFY|COPY|MOVE|ALL)|PARCEL_(MEDIA_COMMAND_(STOP|PAUSE|PLAY|LOOP|TEXTURE|URL|TIME|AGENT|UNLOAD|AUTO_ALIGN|TYPE|SIZE|DESC|LOOP_SET)|FLAG_(ALLOW_(FLY|(GROUP_)?SCRIPTS|LANDMARK|TERRAFORM|DAMAGE|CREATE_(GROUP_)?OBJECTS)|USE_(ACCESS_(GROUP|LIST)|BAN_LIST|LAND_PASS_LIST)|LOCAL_SOUND_ONLY|RESTRICT_PUSHOBJECT|ALLOW_(GROUP|ALL)_OBJECT_ENTRY)|COUNT_(TOTAL|OWNER|GROUP|OTHER|SELECTED|TEMP)|DETAILS_(NAME|DESC|OWNER|GROUP|AREA|ID|SEE_AVATARS))|LIST_STAT_(MAX|MIN|MEAN|MEDIAN|STD_DEV|SUM(_SQUARES)?|NUM_COUNT|GEOMETRIC_MEAN|RANGE)|PAY_(HIDE|DEFAULT)|REGION_FLAG_(ALLOW_DAMAGE|FIXED_SUN|BLOCK_TERRAFORM|SANDBOX|DISABLE_(COLLISIONS|PHYSICS)|BLOCK_FLY|ALLOW_DIRECT_TELEPORT|RESTRICT_PUSHOBJECT)|HTTP_(METHOD|MIMETYPE|BODY_(MAXLENGTH|TRUNCATED)|CUSTOM_HEADER|PRAGMA_NO_CACHE|VERBOSE_THROTTLE|VERIFY_CERT)|SIT_(INVALID_(AGENT|LINK_OBJECT)|NO(T_EXPERIENCE|_(ACCESS|EXPERIENCE_PERMISSION|SIT_TARGET)))|STRING_(TRIM(_(HEAD|TAIL))?)|CLICK_ACTION_(NONE|TOUCH|SIT|BUY|PAY|OPEN(_MEDIA)?|PLAY|ZOOM)|TOUCH_INVALID_FACE|PROFILE_(NONE|SCRIPT_MEMORY)|RC_(DATA_FLAGS|DETECT_PHANTOM|GET_(LINK_NUM|NORMAL|ROOT_KEY)|MAX_HITS|REJECT_(TYPES|AGENTS|(NON)?PHYSICAL|LAND))|RCERR_(CAST_TIME_EXCEEDED|SIM_PERF_LOW|UNKNOWN)|ESTATE_ACCESS_(ALLOWED_(AGENT|GROUP)_(ADD|REMOVE)|BANNED_AGENT_(ADD|REMOVE))|DENSITY|FRICTION|RESTITUTION|GRAVITY_MULTIPLIER|KFM_(COMMAND|CMD_(PLAY|STOP|PAUSE)|MODE|FORWARD|LOOP|PING_PONG|REVERSE|DATA|ROTATION|TRANSLATION)|ERR_(GENERIC|PARCEL_PERMISSIONS|MALFORMED_PARAMS|RUNTIME_PERMISSIONS|THROTTLED)|CHARACTER_(CMD_((SMOOTH_)?STOP|JUMP)|DESIRED_(TURN_)?SPEED|RADIUS|STAY_WITHIN_PARCEL|LENGTH|ORIENTATION|ACCOUNT_FOR_SKIPPED_FRAMES|AVOIDANCE_MODE|TYPE(_([ABCD]|NONE))?|MAX_(DECEL|TURN_RADIUS|(ACCEL|SPEED)))|PURSUIT_(OFFSET|FUZZ_FACTOR|GOAL_TOLERANCE|INTERCEPT)|REQUIRE_LINE_OF_SIGHT|FORCE_DIRECT_PATH|VERTICAL|HORIZONTAL|AVOID_(CHARACTERS|DYNAMIC_OBSTACLES|NONE)|PU_(EVADE_(HIDDEN|SPOTTED)|FAILURE_(DYNAMIC_PATHFINDING_DISABLED|INVALID_(GOAL|START)|NO_(NAVMESH|VALID_DESTINATION)|OTHER|TARGET_GONE|(PARCEL_)?UNREACHABLE)|(GOAL|SLOWDOWN_DISTANCE)_REACHED)|TRAVERSAL_TYPE(_(FAST|NONE|SLOW))?|CONTENT_TYPE_(ATOM|FORM|HTML|JSON|LLSD|RSS|TEXT|XHTML|XML)|GCNP_(RADIUS|STATIC)|(PATROL|WANDER)_PAUSE_AT_WAYPOINTS|OPT_(AVATAR|CHARACTER|EXCLUSION_VOLUME|LEGACY_LINKSET|MATERIAL_VOLUME|OTHER|STATIC_OBSTACLE|WALKABLE)|SIM_STAT_PCT_CHARS_STEPPED)\\\\b\"},{begin:\"\\\\b(FALSE|TRUE)\\\\b\"},{begin:\"\\\\b(ZERO_ROTATION)\\\\b\"},{begin:\"\\\\b(EOF|JSON_(ARRAY|DELETE|FALSE|INVALID|NULL|NUMBER|OBJECT|STRING|TRUE)|NULL_KEY|TEXTURE_(BLANK|DEFAULT|MEDIA|PLYWOOD|TRANSPARENT)|URL_REQUEST_(GRANTED|DENIED))\\\\b\"},{begin:\"\\\\b(ZERO_VECTOR|TOUCH_INVALID_(TEXCOORD|VECTOR))\\\\b\"}]},a={className:\"built_in\",begin:\"\\\\b(ll(AgentInExperience|(Create|DataSize|Delete|KeyCount|Keys|Read|Update)KeyValue|GetExperience(Details|ErrorMessage)|ReturnObjectsBy(ID|Owner)|Json(2List|[GS]etValue|ValueType)|Sin|Cos|Tan|Atan2|Sqrt|Pow|Abs|Fabs|Frand|Floor|Ceil|Round|Vec(Mag|Norm|Dist)|Rot(Between|2(Euler|Fwd|Left|Up))|(Euler|Axes)2Rot|Whisper|(Region|Owner)?Say|Shout|Listen(Control|Remove)?|Sensor(Repeat|Remove)?|Detected(Name|Key|Owner|Type|Pos|Vel|Grab|Rot|Group|LinkNumber)|Die|Ground|Wind|([GS]et)(AnimationOverride|MemoryLimit|PrimMediaParams|ParcelMusicURL|Object(Desc|Name)|PhysicsMaterial|Status|Scale|Color|Alpha|Texture|Pos|Rot|Force|Torque)|ResetAnimationOverride|(Scale|Offset|Rotate)Texture|(Rot)?Target(Remove)?|(Stop)?MoveToTarget|Apply(Rotational)?Impulse|Set(KeyframedMotion|ContentType|RegionPos|(Angular)?Velocity|Buoyancy|HoverHeight|ForceAndTorque|TimerEvent|ScriptState|Damage|TextureAnim|Sound(Queueing|Radius)|Vehicle(Type|(Float|Vector|Rotation)Param)|(Touch|Sit)?Text|Camera(Eye|At)Offset|PrimitiveParams|ClickAction|Link(Alpha|Color|PrimitiveParams(Fast)?|Texture(Anim)?|Camera|Media)|RemoteScriptAccessPin|PayPrice|LocalRot)|ScaleByFactor|Get((Max|Min)ScaleFactor|ClosestNavPoint|StaticPath|SimStats|Env|PrimitiveParams|Link(PrimitiveParams|Number(OfSides)?|Key|Name|Media)|HTTPHeader|FreeURLs|Object(Details|PermMask|PrimCount)|Parcel(MaxPrims|Details|Prim(Count|Owners))|Attached(List)?|(SPMax|Free|Used)Memory|Region(Name|TimeDilation|FPS|Corner|AgentCount)|Root(Position|Rotation)|UnixTime|(Parcel|Region)Flags|(Wall|GMT)clock|SimulatorHostname|BoundingBox|GeometricCenter|Creator|NumberOf(Prims|NotecardLines|Sides)|Animation(List)?|(Camera|Local)(Pos|Rot)|Vel|Accel|Omega|Time(stamp|OfDay)|(Object|CenterOf)?Mass|MassMKS|Energy|Owner|(Owner)?Key|SunDirection|Texture(Offset|Scale|Rot)|Inventory(Number|Name|Key|Type|Creator|PermMask)|Permissions(Key)?|StartParameter|List(Length|EntryType)|Date|Agent(Size|Info|Language|List)|LandOwnerAt|NotecardLine|Script(Name|State))|(Get|Reset|GetAndReset)Time|PlaySound(Slave)?|LoopSound(Master|Slave)?|(Trigger|Stop|Preload)Sound|((Get|Delete)Sub|Insert)String|To(Upper|Lower)|Give(InventoryList|Money)|RezObject|(Stop)?LookAt|Sleep|CollisionFilter|(Take|Release)Controls|DetachFromAvatar|AttachToAvatar(Temp)?|InstantMessage|(GetNext)?Email|StopHover|MinEventDelay|RotLookAt|String(Length|Trim)|(Start|Stop)Animation|TargetOmega|Request(Experience)?Permissions|(Create|Break)Link|BreakAllLinks|(Give|Remove)Inventory|Water|PassTouches|Request(Agent|Inventory)Data|TeleportAgent(Home|GlobalCoords)?|ModifyLand|CollisionSound|ResetScript|MessageLinked|PushObject|PassCollisions|AxisAngle2Rot|Rot2(Axis|Angle)|A(cos|sin)|AngleBetween|AllowInventoryDrop|SubStringIndex|List2(CSV|Integer|Json|Float|String|Key|Vector|Rot|List(Strided)?)|DeleteSubList|List(Statistics|Sort|Randomize|(Insert|Find|Replace)List)|EdgeOfWorld|AdjustSoundVolume|Key2Name|TriggerSoundLimited|EjectFromLand|(CSV|ParseString)2List|OverMyLand|SameGroup|UnSit|Ground(Slope|Normal|Contour)|GroundRepel|(Set|Remove)VehicleFlags|SitOnLink|(AvatarOn)?(Link)?SitTarget|Script(Danger|Profiler)|Dialog|VolumeDetect|ResetOtherScript|RemoteLoadScriptPin|(Open|Close)RemoteDataChannel|SendRemoteData|RemoteDataReply|(Integer|String)ToBase64|XorBase64|Log(10)?|Base64To(String|Integer)|ParseStringKeepNulls|RezAtRoot|RequestSimulatorData|ForceMouselook|(Load|Release|(E|Une)scape)URL|ParcelMedia(CommandList|Query)|ModPow|MapDestination|(RemoveFrom|AddTo|Reset)Land(Pass|Ban)List|(Set|Clear)CameraParams|HTTP(Request|Response)|TextBox|DetectedTouch(UV|Face|Pos|(N|Bin)ormal|ST)|(MD5|SHA1|DumpList2)String|Request(Secure)?URL|Clear(Prim|Link)Media|(Link)?ParticleSystem|(Get|Request)(Username|DisplayName)|RegionSayTo|CastRay|GenerateKey|TransferLindenDollars|ManageEstateAccess|(Create|Delete)Character|ExecCharacterCmd|Evade|FleeFrom|NavigateTo|PatrolPoints|Pursue|UpdateCharacter|WanderWithin))\\\\b\"};return{name:\"LSL (Linden Scripting Language)\",illegal:\":\",contains:[n,{className:\"comment\",variants:[e.COMMENT(\"//\",\"$\"),e.COMMENT(\"/\\\\*\",\"\\\\*/\")],relevance:0},i,{className:\"section\",variants:[{begin:\"\\\\b(state|default)\\\\b\"},{begin:\"\\\\b(state_(entry|exit)|touch(_(start|end))?|(land_)?collision(_(start|end))?|timer|listen|(no_)?sensor|control|(not_)?at_(rot_)?target|money|email|experience_permissions(_denied)?|run_time_permissions|changed|attach|dataserver|moving_(start|end)|link_message|(on|object)_rez|remote_data|http_re(sponse|quest)|path_update|transaction_result)\\\\b\"}]},a,r,{className:\"type\",begin:\"\\\\b(integer|float|string|key|vector|quaternion|rotation|list)\\\\b\"}]}}e.exports=n},2907:function(e,t){function n(e){const t={className:\"variable\",begin:\"\\\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*(?![A-Za-z0-9])(?![$])\"},n={className:\"meta\",variants:[{begin:/<\\?php/,relevance:10},{begin:/<\\?[=]?/},{begin:/\\?>/}]},i={className:\"subst\",variants:[{begin:/\\$\\w+/},{begin:/\\{\\$/,end:/\\}/}]},r=e.inherit(e.APOS_STRING_MODE,{illegal:null}),a=e.inherit(e.QUOTE_STRING_MODE,{illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(i)}),o=e.END_SAME_AS_BEGIN({begin:/<<<[ \\t]*(\\w+)\\n/,end:/[ \\t]*(\\w+)\\b/,contains:e.QUOTE_STRING_MODE.contains.concat(i)}),s={className:\"string\",contains:[e.BACKSLASH_ESCAPE,n],variants:[e.inherit(r,{begin:\"b'\",end:\"'\"}),e.inherit(a,{begin:'b\"',end:'\"'}),a,r,o]},l={variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]},c={keyword:\"__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 new object or private protected public real return string switch throw trait try unset use var void while xor yield\",literal:\"false null true\",built_in:\"Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Throwable Traversable WeakReference Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass\"};return{aliases:[\"php\",\"php3\",\"php4\",\"php5\",\"php6\",\"php7\",\"php8\"],case_insensitive:!0,keywords:c,contains:[e.HASH_COMMENT_MODE,e.COMMENT(\"//\",\"$\",{contains:[n]}),e.COMMENT(\"/\\\\*\",\"\\\\*/\",{contains:[{className:\"doctag\",begin:\"@[A-Za-z]+\"}]}),e.COMMENT(\"__halt_compiler.+?;\",!1,{endsWithParent:!0,keywords:\"__halt_compiler\"}),n,{className:\"keyword\",begin:/\\$this\\b/},t,{begin:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{className:\"function\",relevance:0,beginKeywords:\"fn function\",end:/[;{]/,excludeEnd:!0,illegal:\"[$%\\\\[]\",contains:[e.UNDERSCORE_TITLE_MODE,{begin:\"=>\"},{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",excludeBegin:!0,excludeEnd:!0,keywords:c,contains:[\"self\",t,e.C_BLOCK_COMMENT_MODE,s,l]}]},{className:\"class\",beginKeywords:\"class interface\",relevance:0,end:/\\{/,excludeEnd:!0,illegal:/[:($\"]/,contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:\"namespace\",relevance:0,end:\";\",illegal:/[.']/,contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:\"use\",relevance:0,end:\";\",contains:[e.UNDERSCORE_TITLE_MODE]},s,l]}}e.exports=n},\"294a\":function(e,t){function n(e){const t=\"(_?[ui](8|16|32|64|128))?\",n=\"(_?f(32|64))?\",i=\"[a-zA-Z_]\\\\w*[!?=]?\",r=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]@|<<|>>|[=!]~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~|]|//|//=|&[-+*]=?|&\\\\*\\\\*|\\\\[\\\\][=?]?\",a=\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|!)?\",o={$pattern:i,keyword:\"abstract alias annotation as as? asm begin break case class def do else elsif end ensure enum extend for fun if include instance_sizeof is_a? lib macro module next nil? of out pointerof private protected rescue responds_to? return require select self sizeof struct super then type typeof union uninitialized unless until verbatim when while with yield __DIR__ __END_LINE__ __FILE__ __LINE__\",literal:\"false nil true\"},s={className:\"subst\",begin:/#\\{/,end:/\\}/,keywords:o},l={className:\"template-variable\",variants:[{begin:\"\\\\{\\\\{\",end:\"\\\\}\\\\}\"},{begin:\"\\\\{%\",end:\"%\\\\}\"}],keywords:o};function c(e,t){const n=[{begin:e,end:t}];return n[0].contains=n,n}const u={className:\"string\",contains:[e.BACKSLASH_ESCAPE,s],variants:[{begin:/'/,end:/'/},{begin:/\"/,end:/\"/},{begin:/`/,end:/`/},{begin:\"%[Qwi]?\\\\(\",end:\"\\\\)\",contains:c(\"\\\\(\",\"\\\\)\")},{begin:\"%[Qwi]?\\\\[\",end:\"\\\\]\",contains:c(\"\\\\[\",\"\\\\]\")},{begin:\"%[Qwi]?\\\\{\",end:/\\}/,contains:c(/\\{/,/\\}/)},{begin:\"%[Qwi]?<\",end:\">\",contains:c(\"<\",\">\")},{begin:\"%[Qwi]?\\\\|\",end:\"\\\\|\"},{begin:/<<-\\w+$/,end:/^\\s*\\w+$/}],relevance:0},d={className:\"string\",variants:[{begin:\"%q\\\\(\",end:\"\\\\)\",contains:c(\"\\\\(\",\"\\\\)\")},{begin:\"%q\\\\[\",end:\"\\\\]\",contains:c(\"\\\\[\",\"\\\\]\")},{begin:\"%q\\\\{\",end:/\\}/,contains:c(/\\{/,/\\}/)},{begin:\"%q<\",end:\">\",contains:c(\"<\",\">\")},{begin:\"%q\\\\|\",end:\"\\\\|\"},{begin:/<<-'\\w+'$/,end:/^\\s*\\w+$/}],relevance:0},p={begin:\"(?!%\\\\})(\"+e.RE_STARTERS_RE+\"|\\\\n|\\\\b(case|if|select|unless|until|when|while)\\\\b)\\\\s*\",keywords:\"case if select unless until when while\",contains:[{className:\"regexp\",contains:[e.BACKSLASH_ESCAPE,s],variants:[{begin:\"//[a-z]*\",relevance:0},{begin:\"/(?!\\\\/)\",end:\"/[a-z]*\"}]}],relevance:0},h={className:\"regexp\",contains:[e.BACKSLASH_ESCAPE,s],variants:[{begin:\"%r\\\\(\",end:\"\\\\)\",contains:c(\"\\\\(\",\"\\\\)\")},{begin:\"%r\\\\[\",end:\"\\\\]\",contains:c(\"\\\\[\",\"\\\\]\")},{begin:\"%r\\\\{\",end:/\\}/,contains:c(/\\{/,/\\}/)},{begin:\"%r<\",end:\">\",contains:c(\"<\",\">\")},{begin:\"%r\\\\|\",end:\"\\\\|\"}],relevance:0},f={className:\"meta\",begin:\"@\\\\[\",end:\"\\\\]\",contains:[e.inherit(e.QUOTE_STRING_MODE,{className:\"meta-string\"})]},_=[l,u,d,h,p,f,e.HASH_COMMENT_MODE,{className:\"class\",beginKeywords:\"class module struct\",end:\"$|;\",illegal:/=/,contains:[e.HASH_COMMENT_MODE,e.inherit(e.TITLE_MODE,{begin:a}),{begin:\"<\"}]},{className:\"class\",beginKeywords:\"lib enum union\",end:\"$|;\",illegal:/=/,contains:[e.HASH_COMMENT_MODE,e.inherit(e.TITLE_MODE,{begin:a})]},{beginKeywords:\"annotation\",end:\"$|;\",illegal:/=/,contains:[e.HASH_COMMENT_MODE,e.inherit(e.TITLE_MODE,{begin:a})],relevance:2},{className:\"function\",beginKeywords:\"def\",end:/\\B\\b/,contains:[e.inherit(e.TITLE_MODE,{begin:r,endsParent:!0})]},{className:\"function\",beginKeywords:\"fun macro\",end:/\\B\\b/,contains:[e.inherit(e.TITLE_MODE,{begin:r,endsParent:!0})],relevance:2},{className:\"symbol\",begin:e.UNDERSCORE_IDENT_RE+\"(!|\\\\?)?:\",relevance:0},{className:\"symbol\",begin:\":\",contains:[u,{begin:r}],relevance:0},{className:\"number\",variants:[{begin:\"\\\\b0b([01_]+)\"+t},{begin:\"\\\\b0o([0-7_]+)\"+t},{begin:\"\\\\b0x([A-Fa-f0-9_]+)\"+t},{begin:\"\\\\b([1-9][0-9_]*[0-9]|[0-9])(\\\\.[0-9][0-9_]*)?([eE]_?[-+]?[0-9_]*)?\"+n+\"(?!_)\"},{begin:\"\\\\b([1-9][0-9_]*|0)\"+t}],relevance:0}];return s.contains=_,l.contains=_.slice(1),{name:\"Crystal\",aliases:[\"cr\"],keywords:o,contains:_}}e.exports=n},\"294c\":function(e,t){e.exports=function(e){try{return!!e()}catch(t){return!0}}},\"299c\":function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=131)}({131:function(e,t,n){\"use strict\";n.r(t);var i=n(5),r=n.n(i),a=n(17),o=n.n(a),s=n(2),l=n(3),c=n(7),u=n.n(c),d={name:\"ElTooltip\",mixins:[r.a],props:{openDelay:{type:Number,default:0},disabled:Boolean,manual:Boolean,effect:{type:String,default:\"dark\"},arrowOffset:{type:Number,default:0},popperClass:String,content:String,visibleArrow:{default:!0},transition:{type:String,default:\"el-fade-in-linear\"},popperOptions:{default:function(){return{boundariesPadding:10,gpuAcceleration:!1}}},enterable:{type:Boolean,default:!0},hideAfter:{type:Number,default:0},tabindex:{type:Number,default:0}},data:function(){return{tooltipId:\"el-tooltip-\"+Object(l[\"generateId\"])(),timeoutPending:null,focusing:!1}},beforeCreate:function(){var e=this;this.$isServer||(this.popperVM=new u.a({data:{node:\"\"},render:function(e){return this.node}}).$mount(),this.debounceClose=o()(200,(function(){return e.handleClosePopper()})))},render:function(e){var t=this;this.popperVM&&(this.popperVM.node=e(\"transition\",{attrs:{name:this.transition},on:{afterLeave:this.doDestroy}},[e(\"div\",{on:{mouseleave:function(){t.setExpectedState(!1),t.debounceClose()},mouseenter:function(){t.setExpectedState(!0)}},ref:\"popper\",attrs:{role:\"tooltip\",id:this.tooltipId,\"aria-hidden\":this.disabled||!this.showPopper?\"true\":\"false\"},directives:[{name:\"show\",value:!this.disabled&&this.showPopper}],class:[\"el-tooltip__popper\",\"is-\"+this.effect,this.popperClass]},[this.$slots.content||this.content])]));var n=this.getFirstElement();if(!n)return null;var i=n.data=n.data||{};return i.staticClass=this.addTooltipClass(i.staticClass),n},mounted:function(){var e=this;this.referenceElm=this.$el,1===this.$el.nodeType&&(this.$el.setAttribute(\"aria-describedby\",this.tooltipId),this.$el.setAttribute(\"tabindex\",this.tabindex),Object(s[\"on\"])(this.referenceElm,\"mouseenter\",this.show),Object(s[\"on\"])(this.referenceElm,\"mouseleave\",this.hide),Object(s[\"on\"])(this.referenceElm,\"focus\",(function(){if(e.$slots.default&&e.$slots.default.length){var t=e.$slots.default[0].componentInstance;t&&t.focus?t.focus():e.handleFocus()}else e.handleFocus()})),Object(s[\"on\"])(this.referenceElm,\"blur\",this.handleBlur),Object(s[\"on\"])(this.referenceElm,\"click\",this.removeFocusing)),this.value&&this.popperVM&&this.popperVM.$nextTick((function(){e.value&&e.updatePopper()}))},watch:{focusing:function(e){e?Object(s[\"addClass\"])(this.referenceElm,\"focusing\"):Object(s[\"removeClass\"])(this.referenceElm,\"focusing\")}},methods:{show:function(){this.setExpectedState(!0),this.handleShowPopper()},hide:function(){this.setExpectedState(!1),this.debounceClose()},handleFocus:function(){this.focusing=!0,this.show()},handleBlur:function(){this.focusing=!1,this.hide()},removeFocusing:function(){this.focusing=!1},addTooltipClass:function(e){return e?\"el-tooltip \"+e.replace(\"el-tooltip\",\"\"):\"el-tooltip\"},handleShowPopper:function(){var e=this;this.expectedState&&!this.manual&&(clearTimeout(this.timeout),this.timeout=setTimeout((function(){e.showPopper=!0}),this.openDelay),this.hideAfter>0&&(this.timeoutPending=setTimeout((function(){e.showPopper=!1}),this.hideAfter)))},handleClosePopper:function(){this.enterable&&this.expectedState||this.manual||(clearTimeout(this.timeout),this.timeoutPending&&clearTimeout(this.timeoutPending),this.showPopper=!1,this.disabled&&this.doDestroy())},setExpectedState:function(e){!1===e&&clearTimeout(this.timeoutPending),this.expectedState=e},getFirstElement:function(){var e=this.$slots.default;if(!Array.isArray(e))return null;for(var t=null,n=0;n<e.length;n++)e[n]&&e[n].tag&&(t=e[n]);return t}},beforeDestroy:function(){this.popperVM&&this.popperVM.$destroy()},destroyed:function(){var e=this.referenceElm;1===e.nodeType&&(Object(s[\"off\"])(e,\"mouseenter\",this.show),Object(s[\"off\"])(e,\"mouseleave\",this.hide),Object(s[\"off\"])(e,\"focus\",this.handleFocus),Object(s[\"off\"])(e,\"blur\",this.handleBlur),Object(s[\"off\"])(e,\"click\",this.removeFocusing))},install:function(e){e.component(d.name,d)}};t[\"default\"]=d},17:function(e,t){e.exports=n(\"0e15\")},2:function(e,t){e.exports=n(\"5924\")},3:function(e,t){e.exports=n(\"8122\")},5:function(e,t){e.exports=n(\"e974\")},7:function(e,t){e.exports=n(\"2b0e\")}})},\"2a39\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(e){return r(\"(?=\",e,\")\")}function r(...e){const t=e.map(e=>n(e)).join(\"\");return t}function a(...e){const t=\"(\"+e.map(e=>n(e)).join(\"|\")+\")\";return t}const o=e=>r(/\\b/,e,/\\w$/.test(e)?/\\b/:/\\B/),s=[\"Protocol\",\"Type\"].map(o),l=[\"init\",\"self\"].map(o),c=[\"Any\",\"Self\"],u=[\"associatedtype\",/as\\?/,/as!/,\"as\",\"break\",\"case\",\"catch\",\"class\",\"continue\",\"convenience\",\"default\",\"defer\",\"deinit\",\"didSet\",\"do\",\"dynamic\",\"else\",\"enum\",\"extension\",\"fallthrough\",/fileprivate\\(set\\)/,\"fileprivate\",\"final\",\"for\",\"func\",\"get\",\"guard\",\"if\",\"import\",\"indirect\",\"infix\",/init\\?/,/init!/,\"inout\",/internal\\(set\\)/,\"internal\",\"in\",\"is\",\"lazy\",\"let\",\"mutating\",\"nonmutating\",/open\\(set\\)/,\"open\",\"operator\",\"optional\",\"override\",\"postfix\",\"precedencegroup\",\"prefix\",/private\\(set\\)/,\"private\",\"protocol\",/public\\(set\\)/,\"public\",\"repeat\",\"required\",\"rethrows\",\"return\",\"set\",\"some\",\"static\",\"struct\",\"subscript\",\"super\",\"switch\",\"throws\",\"throw\",/try\\?/,/try!/,\"try\",\"typealias\",/unowned\\(safe\\)/,/unowned\\(unsafe\\)/,\"unowned\",\"var\",\"weak\",\"where\",\"while\",\"willSet\"],d=[\"false\",\"nil\",\"true\"],p=[\"assignment\",\"associativity\",\"higherThan\",\"left\",\"lowerThan\",\"none\",\"right\"],h=[\"#colorLiteral\",\"#column\",\"#dsohandle\",\"#else\",\"#elseif\",\"#endif\",\"#error\",\"#file\",\"#fileID\",\"#fileLiteral\",\"#filePath\",\"#function\",\"#if\",\"#imageLiteral\",\"#keyPath\",\"#line\",\"#selector\",\"#sourceLocation\",\"#warn_unqualified_access\",\"#warning\"],f=[\"abs\",\"all\",\"any\",\"assert\",\"assertionFailure\",\"debugPrint\",\"dump\",\"fatalError\",\"getVaList\",\"isKnownUniquelyReferenced\",\"max\",\"min\",\"numericCast\",\"pointwiseMax\",\"pointwiseMin\",\"precondition\",\"preconditionFailure\",\"print\",\"readLine\",\"repeatElement\",\"sequence\",\"stride\",\"swap\",\"swift_unboxFromSwiftValueWithType\",\"transcode\",\"type\",\"unsafeBitCast\",\"unsafeDowncast\",\"withExtendedLifetime\",\"withUnsafeMutablePointer\",\"withUnsafePointer\",\"withVaList\",\"withoutActuallyEscaping\",\"zip\"],_=a(/[/=\\-+!*%<>&|^~?]/,/[\\u00A1-\\u00A7]/,/[\\u00A9\\u00AB]/,/[\\u00AC\\u00AE]/,/[\\u00B0\\u00B1]/,/[\\u00B6\\u00BB\\u00BF\\u00D7\\u00F7]/,/[\\u2016-\\u2017]/,/[\\u2020-\\u2027]/,/[\\u2030-\\u203E]/,/[\\u2041-\\u2053]/,/[\\u2055-\\u205E]/,/[\\u2190-\\u23FF]/,/[\\u2500-\\u2775]/,/[\\u2794-\\u2BFF]/,/[\\u2E00-\\u2E7F]/,/[\\u3001-\\u3003]/,/[\\u3008-\\u3020]/,/[\\u3030]/),m=a(_,/[\\u0300-\\u036F]/,/[\\u1DC0-\\u1DFF]/,/[\\u20D0-\\u20FF]/,/[\\uFE00-\\uFE0F]/,/[\\uFE20-\\uFE2F]/),g=r(_,m,\"*\"),b=a(/[a-zA-Z_]/,/[\\u00A8\\u00AA\\u00AD\\u00AF\\u00B2-\\u00B5\\u00B7-\\u00BA]/,/[\\u00BC-\\u00BE\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u00FF]/,/[\\u0100-\\u02FF\\u0370-\\u167F\\u1681-\\u180D\\u180F-\\u1DBF]/,/[\\u1E00-\\u1FFF]/,/[\\u200B-\\u200D\\u202A-\\u202E\\u203F-\\u2040\\u2054\\u2060-\\u206F]/,/[\\u2070-\\u20CF\\u2100-\\u218F\\u2460-\\u24FF\\u2776-\\u2793]/,/[\\u2C00-\\u2DFF\\u2E80-\\u2FFF]/,/[\\u3004-\\u3007\\u3021-\\u302F\\u3031-\\u303F\\u3040-\\uD7FF]/,/[\\uF900-\\uFD3D\\uFD40-\\uFDCF\\uFDF0-\\uFE1F\\uFE30-\\uFE44]/,/[\\uFE47-\\uFEFE\\uFF00-\\uFFFD]/),v=a(b,/\\d/,/[\\u0300-\\u036F\\u1DC0-\\u1DFF\\u20D0-\\u20FF\\uFE20-\\uFE2F]/),E=r(b,v,\"*\"),y=r(/[A-Z]/,v,\"*\"),S=[\"autoclosure\",r(/convention\\(/,a(\"swift\",\"block\",\"c\"),/\\)/),\"discardableResult\",\"dynamicCallable\",\"dynamicMemberLookup\",\"escaping\",\"frozen\",\"GKInspectable\",\"IBAction\",\"IBDesignable\",\"IBInspectable\",\"IBOutlet\",\"IBSegueAction\",\"inlinable\",\"main\",\"nonobjc\",\"NSApplicationMain\",\"NSCopying\",\"NSManaged\",r(/objc\\(/,E,/\\)/),\"objc\",\"objcMembers\",\"propertyWrapper\",\"requires_stored_property_inits\",\"testable\",\"UIApplicationMain\",\"unknown\",\"usableFromInline\"],C=[\"iOS\",\"iOSApplicationExtension\",\"macOS\",\"macOSApplicationExtension\",\"macCatalyst\",\"macCatalystApplicationExtension\",\"watchOS\",\"watchOSApplicationExtension\",\"tvOS\",\"tvOSApplicationExtension\",\"swift\"];function T(e){const t={match:/\\s+/,relevance:0},n=e.COMMENT(\"/\\\\*\",\"\\\\*/\",{contains:[\"self\"]}),_=[e.C_LINE_COMMENT_MODE,n],b={className:\"keyword\",begin:r(/\\./,i(a(...s,...l))),end:a(...s,...l),excludeBegin:!0},T={match:r(/\\./,a(...u)),relevance:0},x=u.filter(e=>\"string\"===typeof e).concat([\"_|0\"]),w=u.filter(e=>\"string\"!==typeof e).concat(c).map(o),O={variants:[{className:\"keyword\",match:a(...w,...l)}]},N={$pattern:a(/\\b\\w+/,/#\\w+/),keyword:x.concat(h),literal:d},R=[b,T,O],k={match:r(/\\./,a(...f)),relevance:0},A={className:\"built_in\",match:r(/\\b/,a(...f),/(?=\\()/)},D=[k,A],I={match:/->/,relevance:0},M={className:\"operator\",relevance:0,variants:[{match:g},{match:`\\\\.(\\\\.|${m})+`}]},L=[I,M],P=\"([0-9]_*)+\",F=\"([0-9a-fA-F]_*)+\",B={className:\"number\",relevance:0,variants:[{match:`\\\\b(${P})(\\\\.(${P}))?([eE][+-]?(${P}))?\\\\b`},{match:`\\\\b0x(${F})(\\\\.(${F}))?([pP][+-]?(${P}))?\\\\b`},{match:/\\b0o([0-7]_*)+\\b/},{match:/\\b0b([01]_*)+\\b/}]},U=(e=\"\")=>({className:\"subst\",variants:[{match:r(/\\\\/,e,/[0\\\\tnr\"']/)},{match:r(/\\\\/,e,/u\\{[0-9a-fA-F]{1,8}\\}/)}]}),$=(e=\"\")=>({className:\"subst\",match:r(/\\\\/,e,/[\\t ]*(?:[\\r\\n]|\\r\\n)/)}),j=(e=\"\")=>({className:\"subst\",label:\"interpol\",begin:r(/\\\\/,e,/\\(/),end:/\\)/}),G=(e=\"\")=>({begin:r(e,/\"\"\"/),end:r(/\"\"\"/,e),contains:[U(e),$(e),j(e)]}),q=(e=\"\")=>({begin:r(e,/\"/),end:r(/\"/,e),contains:[U(e),j(e)]}),H={className:\"string\",variants:[G(),G(\"#\"),G(\"##\"),G(\"###\"),q(),q(\"#\"),q(\"##\"),q(\"###\")]},V={match:r(/`/,E,/`/)},z={className:\"variable\",match:/\\$\\d+/},Y={className:\"variable\",match:`\\\\$${v}+`},W=[V,z,Y],K={match:/(@|#)available/,className:\"keyword\",starts:{contains:[{begin:/\\(/,end:/\\)/,keywords:C,contains:[...L,B,H]}]}},Q={className:\"keyword\",match:r(/@/,a(...S))},X={className:\"meta\",match:r(/@/,E)},Z=[K,Q,X],J={match:i(/\\b[A-Z]/),relevance:0,contains:[{className:\"type\",match:r(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,v,\"+\")},{className:\"type\",match:y,relevance:0},{match:/[?!]+/,relevance:0},{match:/\\.\\.\\./,relevance:0},{match:r(/\\s+&\\s+/,i(y)),relevance:0}]},ee={begin:/</,end:/>/,keywords:N,contains:[..._,...R,...Z,I,J]};J.contains.push(ee);const te={match:r(E,/\\s*:/),keywords:\"_|0\",relevance:0},ne={begin:/\\(/,end:/\\)/,relevance:0,keywords:N,contains:[\"self\",te,..._,...R,...D,...L,B,H,...W,...Z,J]},ie={beginKeywords:\"func\",contains:[{className:\"title\",match:a(V.match,E,g),endsParent:!0,relevance:0},t]},re={begin:/</,end:/>/,contains:[..._,J]},ae={begin:a(i(r(E,/\\s*:/)),i(r(E,/\\s+/,E,/\\s*:/))),end:/:/,relevance:0,contains:[{className:\"keyword\",match:/\\b_\\b/},{className:\"params\",match:E}]},oe={begin:/\\(/,end:/\\)/,keywords:N,contains:[ae,..._,...R,...L,B,H,...Z,J,ne],endsParent:!0,illegal:/[\"']/},se={className:\"function\",match:i(/\\bfunc\\b/),contains:[ie,re,oe,t],illegal:[/\\[/,/%/]},le={className:\"function\",match:/\\b(subscript|init[?!]?)\\s*(?=[<(])/,keywords:{keyword:\"subscript init init? init!\",$pattern:/\\w+[?!]?/},contains:[re,oe,t],illegal:/\\[|%/},ce={beginKeywords:\"operator\",end:e.MATCH_NOTHING_RE,contains:[{className:\"title\",match:g,endsParent:!0,relevance:0}]},ue={beginKeywords:\"precedencegroup\",end:e.MATCH_NOTHING_RE,contains:[{className:\"title\",match:y,relevance:0},{begin:/{/,end:/}/,relevance:0,endsParent:!0,keywords:[...p,...d],contains:[J]}]};for(const i of H.variants){const e=i.contains.find(e=>\"interpol\"===e.label);e.keywords=N;const t=[...R,...D,...L,B,H,...W];e.contains=[...t,{begin:/\\(/,end:/\\)/,contains:[\"self\",...t]}]}return{name:\"Swift\",keywords:N,contains:[..._,se,le,{className:\"class\",beginKeywords:\"struct protocol class extension enum\",end:\"\\\\{\",excludeEnd:!0,keywords:N,contains:[e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][\\u00C0-\\u02B80-9A-Za-z$_]*/}),...R]},ce,ue,{beginKeywords:\"import\",end:/$/,contains:[..._],relevance:0},...R,...D,...L,B,H,...W,...Z,J,ne]}}e.exports=T},\"2a5e\":function(e,t,n){\"use strict\";t.__esModule=!0,t.default=o;var i=n(\"2b0e\"),r=a(i);function a(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(!r.default.prototype.$isServer)if(t){var n=[],i=t.offsetParent;while(i&&e!==i&&e.contains(i))n.push(i),i=i.offsetParent;var a=t.offsetTop+n.reduce((function(e,t){return e+t.offsetTop}),0),o=a+t.offsetHeight,s=e.scrollTop,l=s+e.clientHeight;a<s?e.scrollTop=a:o>l&&(e.scrollTop=o-e.clientHeight)}else e.scrollTop=0}},\"2a93\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(e){return r(\"(?=\",e,\")\")}function r(...e){const t=e.map(e=>n(e)).join(\"\");return t}function a(...e){const t=\"(\"+e.map(e=>n(e)).join(\"|\")+\")\";return t}function o(e){const t={className:\"number\",relevance:0,variants:[{begin:/([+-]+)?[\\d]+_[\\d_]+/},{begin:e.NUMBER_RE}]},n=e.COMMENT();n.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];const o={className:\"variable\",variants:[{begin:/\\$[\\w\\d\"][\\w\\d_]*/},{begin:/\\$\\{(.*?)\\}/}]},s={className:\"literal\",begin:/\\bon|off|true|false|yes|no\\b/},l={className:\"string\",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:\"'''\",end:\"'''\",relevance:10},{begin:'\"\"\"',end:'\"\"\"',relevance:10},{begin:'\"',end:'\"'},{begin:\"'\",end:\"'\"}]},c={begin:/\\[/,end:/\\]/,contains:[n,s,o,l,t,\"self\"],relevance:0},u=/[A-Za-z0-9_-]+/,d=/\"(\\\\\"|[^\"])*\"/,p=/'[^']*'/,h=a(u,d,p),f=r(h,\"(\\\\s*\\\\.\\\\s*\",h,\")*\",i(/\\s*=\\s*[^#\\s]/));return{name:\"TOML, also INI\",aliases:[\"toml\"],case_insensitive:!0,illegal:/\\S/,contains:[n,{className:\"section\",begin:/\\[+/,end:/\\]+/},{begin:f,className:\"attr\",starts:{end:/$/,contains:[n,c,s,o,l,t]}}]}}e.exports=o},\"2aba\":function(e,t,n){var i=n(\"7726\"),r=n(\"32e9\"),a=n(\"69a8\"),o=n(\"ca5a\")(\"src\"),s=n(\"fa5b\"),l=\"toString\",c=(\"\"+s).split(l);n(\"8378\").inspectSource=function(e){return s.call(e)},(e.exports=function(e,t,n,s){var l=\"function\"==typeof n;l&&(a(n,\"name\")||r(n,\"name\",t)),e[t]!==n&&(l&&(a(n,o)||r(n,o,e[t]?\"\"+e[t]:c.join(String(t)))),e===i?e[t]=n:s?e[t]?e[t]=n:r(e,t,n):(delete e[t],r(e,t,n)))})(Function.prototype,l,(function(){return\"function\"==typeof this&&this[o]||s.call(this)}))},\"2aeb\":function(e,t,n){var i=n(\"cb7c\"),r=n(\"1495\"),a=n(\"e11e\"),o=n(\"613b\")(\"IE_PROTO\"),s=function(){},l=\"prototype\",c=function(){var e,t=n(\"230e\")(\"iframe\"),i=a.length,r=\"<\",o=\">\";t.style.display=\"none\",n(\"fab2\").appendChild(t),t.src=\"javascript:\",e=t.contentWindow.document,e.open(),e.write(r+\"script\"+o+\"document.F=Object\"+r+\"/script\"+o),e.close(),c=e.F;while(i--)delete c[l][a[i]];return c()};e.exports=Object.create||function(e,t){var n;return null!==e?(s[l]=i(e),n=new s,s[l]=null,n[o]=e):n=c(),void 0===t?n:r(n,t)}},\"2b0e\":function(e,t,n){\"use strict\";n.r(t),function(e){\n/*!\n * Vue.js v2.6.12\n * (c) 2014-2020 Evan You\n * Released under the MIT License.\n */\nvar n=Object.freeze({});function i(e){return void 0===e||null===e}function r(e){return void 0!==e&&null!==e}function a(e){return!0===e}function o(e){return!1===e}function s(e){return\"string\"===typeof e||\"number\"===typeof e||\"symbol\"===typeof e||\"boolean\"===typeof e}function l(e){return null!==e&&\"object\"===typeof e}var c=Object.prototype.toString;function u(e){return\"[object Object]\"===c.call(e)}function d(e){return\"[object RegExp]\"===c.call(e)}function p(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function h(e){return r(e)&&\"function\"===typeof e.then&&\"function\"===typeof e.catch}function f(e){return null==e?\"\":Array.isArray(e)||u(e)&&e.toString===c?JSON.stringify(e,null,2):String(e)}function _(e){var t=parseFloat(e);return isNaN(t)?e:t}function m(e,t){for(var n=Object.create(null),i=e.split(\",\"),r=0;r<i.length;r++)n[i[r]]=!0;return t?function(e){return n[e.toLowerCase()]}:function(e){return n[e]}}m(\"slot,component\",!0);var g=m(\"key,ref,slot,slot-scope,is\");function b(e,t){if(e.length){var n=e.indexOf(t);if(n>-1)return e.splice(n,1)}}var v=Object.prototype.hasOwnProperty;function E(e,t){return v.call(e,t)}function y(e){var t=Object.create(null);return function(n){var i=t[n];return i||(t[n]=e(n))}}var S=/-(\\w)/g,C=y((function(e){return e.replace(S,(function(e,t){return t?t.toUpperCase():\"\"}))})),T=y((function(e){return e.charAt(0).toUpperCase()+e.slice(1)})),x=/\\B([A-Z])/g,w=y((function(e){return e.replace(x,\"-$1\").toLowerCase()}));function O(e,t){function n(n){var i=arguments.length;return i?i>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function N(e,t){return e.bind(t)}var R=Function.prototype.bind?N:O;function k(e,t){t=t||0;var n=e.length-t,i=new Array(n);while(n--)i[n]=e[n+t];return i}function A(e,t){for(var n in t)e[n]=t[n];return e}function D(e){for(var t={},n=0;n<e.length;n++)e[n]&&A(t,e[n]);return t}function I(e,t,n){}var M=function(e,t,n){return!1},L=function(e){return e};function P(e,t){if(e===t)return!0;var n=l(e),i=l(t);if(!n||!i)return!n&&!i&&String(e)===String(t);try{var r=Array.isArray(e),a=Array.isArray(t);if(r&&a)return e.length===t.length&&e.every((function(e,n){return P(e,t[n])}));if(e instanceof Date&&t instanceof Date)return e.getTime()===t.getTime();if(r||a)return!1;var o=Object.keys(e),s=Object.keys(t);return o.length===s.length&&o.every((function(n){return P(e[n],t[n])}))}catch(c){return!1}}function F(e,t){for(var n=0;n<e.length;n++)if(P(e[n],t))return n;return-1}function B(e){var t=!1;return function(){t||(t=!0,e.apply(this,arguments))}}var U=\"data-server-rendered\",$=[\"component\",\"directive\",\"filter\"],j=[\"beforeCreate\",\"created\",\"beforeMount\",\"mounted\",\"beforeUpdate\",\"updated\",\"beforeDestroy\",\"destroyed\",\"activated\",\"deactivated\",\"errorCaptured\",\"serverPrefetch\"],G={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:M,isReservedAttr:M,isUnknownElement:M,getTagNamespace:I,parsePlatformTagName:L,mustUseProp:M,async:!0,_lifecycleHooks:j},q=/a-zA-Z\\u00B7\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u203F-\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD/;function H(e){var t=(e+\"\").charCodeAt(0);return 36===t||95===t}function V(e,t,n,i){Object.defineProperty(e,t,{value:n,enumerable:!!i,writable:!0,configurable:!0})}var z=new RegExp(\"[^\"+q.source+\".$_\\\\d]\");function Y(e){if(!z.test(e)){var t=e.split(\".\");return function(e){for(var n=0;n<t.length;n++){if(!e)return;e=e[t[n]]}return e}}}var W,K=\"__proto__\"in{},Q=\"undefined\"!==typeof window,X=\"undefined\"!==typeof WXEnvironment&&!!WXEnvironment.platform,Z=X&&WXEnvironment.platform.toLowerCase(),J=Q&&window.navigator.userAgent.toLowerCase(),ee=J&&/msie|trident/.test(J),te=J&&J.indexOf(\"msie 9.0\")>0,ne=J&&J.indexOf(\"edge/\")>0,ie=(J&&J.indexOf(\"android\"),J&&/iphone|ipad|ipod|ios/.test(J)||\"ios\"===Z),re=(J&&/chrome\\/\\d+/.test(J),J&&/phantomjs/.test(J),J&&J.match(/firefox\\/(\\d+)/)),ae={}.watch,oe=!1;if(Q)try{var se={};Object.defineProperty(se,\"passive\",{get:function(){oe=!0}}),window.addEventListener(\"test-passive\",null,se)}catch(Co){}var le=function(){return void 0===W&&(W=!Q&&!X&&\"undefined\"!==typeof e&&(e[\"process\"]&&\"server\"===e[\"process\"].env.VUE_ENV)),W},ce=Q&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ue(e){return\"function\"===typeof e&&/native code/.test(e.toString())}var de,pe=\"undefined\"!==typeof Symbol&&ue(Symbol)&&\"undefined\"!==typeof Reflect&&ue(Reflect.ownKeys);de=\"undefined\"!==typeof Set&&ue(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var he=I,fe=0,_e=function(){this.id=fe++,this.subs=[]};_e.prototype.addSub=function(e){this.subs.push(e)},_e.prototype.removeSub=function(e){b(this.subs,e)},_e.prototype.depend=function(){_e.target&&_e.target.addDep(this)},_e.prototype.notify=function(){var e=this.subs.slice();for(var t=0,n=e.length;t<n;t++)e[t].update()},_e.target=null;var me=[];function ge(e){me.push(e),_e.target=e}function be(){me.pop(),_e.target=me[me.length-1]}var ve=function(e,t,n,i,r,a,o,s){this.tag=e,this.data=t,this.children=n,this.text=i,this.elm=r,this.ns=void 0,this.context=a,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=t&&t.key,this.componentOptions=o,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=s,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},Ee={child:{configurable:!0}};Ee.child.get=function(){return this.componentInstance},Object.defineProperties(ve.prototype,Ee);var ye=function(e){void 0===e&&(e=\"\");var t=new ve;return t.text=e,t.isComment=!0,t};function Se(e){return new ve(void 0,void 0,void 0,String(e))}function Ce(e){var t=new ve(e.tag,e.data,e.children&&e.children.slice(),e.text,e.elm,e.context,e.componentOptions,e.asyncFactory);return t.ns=e.ns,t.isStatic=e.isStatic,t.key=e.key,t.isComment=e.isComment,t.fnContext=e.fnContext,t.fnOptions=e.fnOptions,t.fnScopeId=e.fnScopeId,t.asyncMeta=e.asyncMeta,t.isCloned=!0,t}var Te=Array.prototype,xe=Object.create(Te),we=[\"push\",\"pop\",\"shift\",\"unshift\",\"splice\",\"sort\",\"reverse\"];we.forEach((function(e){var t=Te[e];V(xe,e,(function(){var n=[],i=arguments.length;while(i--)n[i]=arguments[i];var r,a=t.apply(this,n),o=this.__ob__;switch(e){case\"push\":case\"unshift\":r=n;break;case\"splice\":r=n.slice(2);break}return r&&o.observeArray(r),o.dep.notify(),a}))}));var Oe=Object.getOwnPropertyNames(xe),Ne=!0;function Re(e){Ne=e}var ke=function(e){this.value=e,this.dep=new _e,this.vmCount=0,V(e,\"__ob__\",this),Array.isArray(e)?(K?Ae(e,xe):De(e,xe,Oe),this.observeArray(e)):this.walk(e)};function Ae(e,t){e.__proto__=t}function De(e,t,n){for(var i=0,r=n.length;i<r;i++){var a=n[i];V(e,a,t[a])}}function Ie(e,t){var n;if(l(e)&&!(e instanceof ve))return E(e,\"__ob__\")&&e.__ob__ instanceof ke?n=e.__ob__:Ne&&!le()&&(Array.isArray(e)||u(e))&&Object.isExtensible(e)&&!e._isVue&&(n=new ke(e)),t&&n&&n.vmCount++,n}function Me(e,t,n,i,r){var a=new _e,o=Object.getOwnPropertyDescriptor(e,t);if(!o||!1!==o.configurable){var s=o&&o.get,l=o&&o.set;s&&!l||2!==arguments.length||(n=e[t]);var c=!r&&Ie(n);Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:function(){var t=s?s.call(e):n;return _e.target&&(a.depend(),c&&(c.dep.depend(),Array.isArray(t)&&Fe(t))),t},set:function(t){var i=s?s.call(e):n;t===i||t!==t&&i!==i||s&&!l||(l?l.call(e,t):n=t,c=!r&&Ie(t),a.notify())}})}}function Le(e,t,n){if(Array.isArray(e)&&p(t))return e.length=Math.max(e.length,t),e.splice(t,1,n),n;if(t in e&&!(t in Object.prototype))return e[t]=n,n;var i=e.__ob__;return e._isVue||i&&i.vmCount?n:i?(Me(i.value,t,n),i.dep.notify(),n):(e[t]=n,n)}function Pe(e,t){if(Array.isArray(e)&&p(t))e.splice(t,1);else{var n=e.__ob__;e._isVue||n&&n.vmCount||E(e,t)&&(delete e[t],n&&n.dep.notify())}}function Fe(e){for(var t=void 0,n=0,i=e.length;n<i;n++)t=e[n],t&&t.__ob__&&t.__ob__.dep.depend(),Array.isArray(t)&&Fe(t)}ke.prototype.walk=function(e){for(var t=Object.keys(e),n=0;n<t.length;n++)Me(e,t[n])},ke.prototype.observeArray=function(e){for(var t=0,n=e.length;t<n;t++)Ie(e[t])};var Be=G.optionMergeStrategies;function Ue(e,t){if(!t)return e;for(var n,i,r,a=pe?Reflect.ownKeys(t):Object.keys(t),o=0;o<a.length;o++)n=a[o],\"__ob__\"!==n&&(i=e[n],r=t[n],E(e,n)?i!==r&&u(i)&&u(r)&&Ue(i,r):Le(e,n,r));return e}function $e(e,t,n){return n?function(){var i=\"function\"===typeof t?t.call(n,n):t,r=\"function\"===typeof e?e.call(n,n):e;return i?Ue(i,r):r}:t?e?function(){return Ue(\"function\"===typeof t?t.call(this,this):t,\"function\"===typeof e?e.call(this,this):e)}:t:e}function je(e,t){var n=t?e?e.concat(t):Array.isArray(t)?t:[t]:e;return n?Ge(n):n}function Ge(e){for(var t=[],n=0;n<e.length;n++)-1===t.indexOf(e[n])&&t.push(e[n]);return t}function qe(e,t,n,i){var r=Object.create(e||null);return t?A(r,t):r}Be.data=function(e,t,n){return n?$e(e,t,n):t&&\"function\"!==typeof t?e:$e(e,t)},j.forEach((function(e){Be[e]=je})),$.forEach((function(e){Be[e+\"s\"]=qe})),Be.watch=function(e,t,n,i){if(e===ae&&(e=void 0),t===ae&&(t=void 0),!t)return Object.create(e||null);if(!e)return t;var r={};for(var a in A(r,e),t){var o=r[a],s=t[a];o&&!Array.isArray(o)&&(o=[o]),r[a]=o?o.concat(s):Array.isArray(s)?s:[s]}return r},Be.props=Be.methods=Be.inject=Be.computed=function(e,t,n,i){if(!e)return t;var r=Object.create(null);return A(r,e),t&&A(r,t),r},Be.provide=$e;var He=function(e,t){return void 0===t?e:t};function Ve(e,t){var n=e.props;if(n){var i,r,a,o={};if(Array.isArray(n)){i=n.length;while(i--)r=n[i],\"string\"===typeof r&&(a=C(r),o[a]={type:null})}else if(u(n))for(var s in n)r=n[s],a=C(s),o[a]=u(r)?r:{type:r};else 0;e.props=o}}function ze(e,t){var n=e.inject;if(n){var i=e.inject={};if(Array.isArray(n))for(var r=0;r<n.length;r++)i[n[r]]={from:n[r]};else if(u(n))for(var a in n){var o=n[a];i[a]=u(o)?A({from:a},o):{from:o}}else 0}}function Ye(e){var t=e.directives;if(t)for(var n in t){var i=t[n];\"function\"===typeof i&&(t[n]={bind:i,update:i})}}function We(e,t,n){if(\"function\"===typeof t&&(t=t.options),Ve(t,n),ze(t,n),Ye(t),!t._base&&(t.extends&&(e=We(e,t.extends,n)),t.mixins))for(var i=0,r=t.mixins.length;i<r;i++)e=We(e,t.mixins[i],n);var a,o={};for(a in e)s(a);for(a in t)E(e,a)||s(a);function s(i){var r=Be[i]||He;o[i]=r(e[i],t[i],n,i)}return o}function Ke(e,t,n,i){if(\"string\"===typeof n){var r=e[t];if(E(r,n))return r[n];var a=C(n);if(E(r,a))return r[a];var o=T(a);if(E(r,o))return r[o];var s=r[n]||r[a]||r[o];return s}}function Qe(e,t,n,i){var r=t[e],a=!E(n,e),o=n[e],s=et(Boolean,r.type);if(s>-1)if(a&&!E(r,\"default\"))o=!1;else if(\"\"===o||o===w(e)){var l=et(String,r.type);(l<0||s<l)&&(o=!0)}if(void 0===o){o=Xe(i,r,e);var c=Ne;Re(!0),Ie(o),Re(c)}return o}function Xe(e,t,n){if(E(t,\"default\")){var i=t.default;return e&&e.$options.propsData&&void 0===e.$options.propsData[n]&&void 0!==e._props[n]?e._props[n]:\"function\"===typeof i&&\"Function\"!==Ze(t.type)?i.call(e):i}}function Ze(e){var t=e&&e.toString().match(/^\\s*function (\\w+)/);return t?t[1]:\"\"}function Je(e,t){return Ze(e)===Ze(t)}function et(e,t){if(!Array.isArray(t))return Je(t,e)?0:-1;for(var n=0,i=t.length;n<i;n++)if(Je(t[n],e))return n;return-1}function tt(e,t,n){ge();try{if(t){var i=t;while(i=i.$parent){var r=i.$options.errorCaptured;if(r)for(var a=0;a<r.length;a++)try{var o=!1===r[a].call(i,e,t,n);if(o)return}catch(Co){it(Co,i,\"errorCaptured hook\")}}}it(e,t,n)}finally{be()}}function nt(e,t,n,i,r){var a;try{a=n?e.apply(t,n):e.call(t),a&&!a._isVue&&h(a)&&!a._handled&&(a.catch((function(e){return tt(e,i,r+\" (Promise/async)\")})),a._handled=!0)}catch(Co){tt(Co,i,r)}return a}function it(e,t,n){if(G.errorHandler)try{return G.errorHandler.call(null,e,t,n)}catch(Co){Co!==e&&rt(Co,null,\"config.errorHandler\")}rt(e,t,n)}function rt(e,t,n){if(!Q&&!X||\"undefined\"===typeof console)throw e}var at,ot=!1,st=[],lt=!1;function ct(){lt=!1;var e=st.slice(0);st.length=0;for(var t=0;t<e.length;t++)e[t]()}if(\"undefined\"!==typeof Promise&&ue(Promise)){var ut=Promise.resolve();at=function(){ut.then(ct),ie&&setTimeout(I)},ot=!0}else if(ee||\"undefined\"===typeof MutationObserver||!ue(MutationObserver)&&\"[object MutationObserverConstructor]\"!==MutationObserver.toString())at=\"undefined\"!==typeof setImmediate&&ue(setImmediate)?function(){setImmediate(ct)}:function(){setTimeout(ct,0)};else{var dt=1,pt=new MutationObserver(ct),ht=document.createTextNode(String(dt));pt.observe(ht,{characterData:!0}),at=function(){dt=(dt+1)%2,ht.data=String(dt)},ot=!0}function ft(e,t){var n;if(st.push((function(){if(e)try{e.call(t)}catch(Co){tt(Co,t,\"nextTick\")}else n&&n(t)})),lt||(lt=!0,at()),!e&&\"undefined\"!==typeof Promise)return new Promise((function(e){n=e}))}var _t=new de;function mt(e){gt(e,_t),_t.clear()}function gt(e,t){var n,i,r=Array.isArray(e);if(!(!r&&!l(e)||Object.isFrozen(e)||e instanceof ve)){if(e.__ob__){var a=e.__ob__.dep.id;if(t.has(a))return;t.add(a)}if(r){n=e.length;while(n--)gt(e[n],t)}else{i=Object.keys(e),n=i.length;while(n--)gt(e[i[n]],t)}}}var bt=y((function(e){var t=\"&\"===e.charAt(0);e=t?e.slice(1):e;var n=\"~\"===e.charAt(0);e=n?e.slice(1):e;var i=\"!\"===e.charAt(0);return e=i?e.slice(1):e,{name:e,once:n,capture:i,passive:t}}));function vt(e,t){function n(){var e=arguments,i=n.fns;if(!Array.isArray(i))return nt(i,null,arguments,t,\"v-on handler\");for(var r=i.slice(),a=0;a<r.length;a++)nt(r[a],null,e,t,\"v-on handler\")}return n.fns=e,n}function Et(e,t,n,r,o,s){var l,c,u,d;for(l in e)c=e[l],u=t[l],d=bt(l),i(c)||(i(u)?(i(c.fns)&&(c=e[l]=vt(c,s)),a(d.once)&&(c=e[l]=o(d.name,c,d.capture)),n(d.name,c,d.capture,d.passive,d.params)):c!==u&&(u.fns=c,e[l]=u));for(l in t)i(e[l])&&(d=bt(l),r(d.name,t[l],d.capture))}function yt(e,t,n){var o;e instanceof ve&&(e=e.data.hook||(e.data.hook={}));var s=e[t];function l(){n.apply(this,arguments),b(o.fns,l)}i(s)?o=vt([l]):r(s.fns)&&a(s.merged)?(o=s,o.fns.push(l)):o=vt([s,l]),o.merged=!0,e[t]=o}function St(e,t,n){var a=t.options.props;if(!i(a)){var o={},s=e.attrs,l=e.props;if(r(s)||r(l))for(var c in a){var u=w(c);Ct(o,l,c,u,!0)||Ct(o,s,c,u,!1)}return o}}function Ct(e,t,n,i,a){if(r(t)){if(E(t,n))return e[n]=t[n],a||delete t[n],!0;if(E(t,i))return e[n]=t[i],a||delete t[i],!0}return!1}function Tt(e){for(var t=0;t<e.length;t++)if(Array.isArray(e[t]))return Array.prototype.concat.apply([],e);return e}function xt(e){return s(e)?[Se(e)]:Array.isArray(e)?Ot(e):void 0}function wt(e){return r(e)&&r(e.text)&&o(e.isComment)}function Ot(e,t){var n,o,l,c,u=[];for(n=0;n<e.length;n++)o=e[n],i(o)||\"boolean\"===typeof o||(l=u.length-1,c=u[l],Array.isArray(o)?o.length>0&&(o=Ot(o,(t||\"\")+\"_\"+n),wt(o[0])&&wt(c)&&(u[l]=Se(c.text+o[0].text),o.shift()),u.push.apply(u,o)):s(o)?wt(c)?u[l]=Se(c.text+o):\"\"!==o&&u.push(Se(o)):wt(o)&&wt(c)?u[l]=Se(c.text+o.text):(a(e._isVList)&&r(o.tag)&&i(o.key)&&r(t)&&(o.key=\"__vlist\"+t+\"_\"+n+\"__\"),u.push(o)));return u}function Nt(e){var t=e.$options.provide;t&&(e._provided=\"function\"===typeof t?t.call(e):t)}function Rt(e){var t=kt(e.$options.inject,e);t&&(Re(!1),Object.keys(t).forEach((function(n){Me(e,n,t[n])})),Re(!0))}function kt(e,t){if(e){for(var n=Object.create(null),i=pe?Reflect.ownKeys(e):Object.keys(e),r=0;r<i.length;r++){var a=i[r];if(\"__ob__\"!==a){var o=e[a].from,s=t;while(s){if(s._provided&&E(s._provided,o)){n[a]=s._provided[o];break}s=s.$parent}if(!s)if(\"default\"in e[a]){var l=e[a].default;n[a]=\"function\"===typeof l?l.call(t):l}else 0}}return n}}function At(e,t){if(!e||!e.length)return{};for(var n={},i=0,r=e.length;i<r;i++){var a=e[i],o=a.data;if(o&&o.attrs&&o.attrs.slot&&delete o.attrs.slot,a.context!==t&&a.fnContext!==t||!o||null==o.slot)(n.default||(n.default=[])).push(a);else{var s=o.slot,l=n[s]||(n[s]=[]);\"template\"===a.tag?l.push.apply(l,a.children||[]):l.push(a)}}for(var c in n)n[c].every(Dt)&&delete n[c];return n}function Dt(e){return e.isComment&&!e.asyncFactory||\" \"===e.text}function It(e,t,i){var r,a=Object.keys(t).length>0,o=e?!!e.$stable:!a,s=e&&e.$key;if(e){if(e._normalized)return e._normalized;if(o&&i&&i!==n&&s===i.$key&&!a&&!i.$hasNormal)return i;for(var l in r={},e)e[l]&&\"$\"!==l[0]&&(r[l]=Mt(t,l,e[l]))}else r={};for(var c in t)c in r||(r[c]=Lt(t,c));return e&&Object.isExtensible(e)&&(e._normalized=r),V(r,\"$stable\",o),V(r,\"$key\",s),V(r,\"$hasNormal\",a),r}function Mt(e,t,n){var i=function(){var e=arguments.length?n.apply(null,arguments):n({});return e=e&&\"object\"===typeof e&&!Array.isArray(e)?[e]:xt(e),e&&(0===e.length||1===e.length&&e[0].isComment)?void 0:e};return n.proxy&&Object.defineProperty(e,t,{get:i,enumerable:!0,configurable:!0}),i}function Lt(e,t){return function(){return e[t]}}function Pt(e,t){var n,i,a,o,s;if(Array.isArray(e)||\"string\"===typeof e)for(n=new Array(e.length),i=0,a=e.length;i<a;i++)n[i]=t(e[i],i);else if(\"number\"===typeof e)for(n=new Array(e),i=0;i<e;i++)n[i]=t(i+1,i);else if(l(e))if(pe&&e[Symbol.iterator]){n=[];var c=e[Symbol.iterator](),u=c.next();while(!u.done)n.push(t(u.value,n.length)),u=c.next()}else for(o=Object.keys(e),n=new Array(o.length),i=0,a=o.length;i<a;i++)s=o[i],n[i]=t(e[s],s,i);return r(n)||(n=[]),n._isVList=!0,n}function Ft(e,t,n,i){var r,a=this.$scopedSlots[e];a?(n=n||{},i&&(n=A(A({},i),n)),r=a(n)||t):r=this.$slots[e]||t;var o=n&&n.slot;return o?this.$createElement(\"template\",{slot:o},r):r}function Bt(e){return Ke(this.$options,\"filters\",e,!0)||L}function Ut(e,t){return Array.isArray(e)?-1===e.indexOf(t):e!==t}function $t(e,t,n,i,r){var a=G.keyCodes[t]||n;return r&&i&&!G.keyCodes[t]?Ut(r,i):a?Ut(a,e):i?w(i)!==t:void 0}function jt(e,t,n,i,r){if(n)if(l(n)){var a;Array.isArray(n)&&(n=D(n));var o=function(o){if(\"class\"===o||\"style\"===o||g(o))a=e;else{var s=e.attrs&&e.attrs.type;a=i||G.mustUseProp(t,s,o)?e.domProps||(e.domProps={}):e.attrs||(e.attrs={})}var l=C(o),c=w(o);if(!(l in a)&&!(c in a)&&(a[o]=n[o],r)){var u=e.on||(e.on={});u[\"update:\"+o]=function(e){n[o]=e}}};for(var s in n)o(s)}else;return e}function Gt(e,t){var n=this._staticTrees||(this._staticTrees=[]),i=n[e];return i&&!t||(i=n[e]=this.$options.staticRenderFns[e].call(this._renderProxy,null,this),Ht(i,\"__static__\"+e,!1)),i}function qt(e,t,n){return Ht(e,\"__once__\"+t+(n?\"_\"+n:\"\"),!0),e}function Ht(e,t,n){if(Array.isArray(e))for(var i=0;i<e.length;i++)e[i]&&\"string\"!==typeof e[i]&&Vt(e[i],t+\"_\"+i,n);else Vt(e,t,n)}function Vt(e,t,n){e.isStatic=!0,e.key=t,e.isOnce=n}function zt(e,t){if(t)if(u(t)){var n=e.on=e.on?A({},e.on):{};for(var i in t){var r=n[i],a=t[i];n[i]=r?[].concat(r,a):a}}else;return e}function Yt(e,t,n,i){t=t||{$stable:!n};for(var r=0;r<e.length;r++){var a=e[r];Array.isArray(a)?Yt(a,t,n):a&&(a.proxy&&(a.fn.proxy=!0),t[a.key]=a.fn)}return i&&(t.$key=i),t}function Wt(e,t){for(var n=0;n<t.length;n+=2){var i=t[n];\"string\"===typeof i&&i&&(e[t[n]]=t[n+1])}return e}function Kt(e,t){return\"string\"===typeof e?t+e:e}function Qt(e){e._o=qt,e._n=_,e._s=f,e._l=Pt,e._t=Ft,e._q=P,e._i=F,e._m=Gt,e._f=Bt,e._k=$t,e._b=jt,e._v=Se,e._e=ye,e._u=Yt,e._g=zt,e._d=Wt,e._p=Kt}function Xt(e,t,i,r,o){var s,l=this,c=o.options;E(r,\"_uid\")?(s=Object.create(r),s._original=r):(s=r,r=r._original);var u=a(c._compiled),d=!u;this.data=e,this.props=t,this.children=i,this.parent=r,this.listeners=e.on||n,this.injections=kt(c.inject,r),this.slots=function(){return l.$slots||It(e.scopedSlots,l.$slots=At(i,r)),l.$slots},Object.defineProperty(this,\"scopedSlots\",{enumerable:!0,get:function(){return It(e.scopedSlots,this.slots())}}),u&&(this.$options=c,this.$slots=this.slots(),this.$scopedSlots=It(e.scopedSlots,this.$slots)),c._scopeId?this._c=function(e,t,n,i){var a=dn(s,e,t,n,i,d);return a&&!Array.isArray(a)&&(a.fnScopeId=c._scopeId,a.fnContext=r),a}:this._c=function(e,t,n,i){return dn(s,e,t,n,i,d)}}function Zt(e,t,i,a,o){var s=e.options,l={},c=s.props;if(r(c))for(var u in c)l[u]=Qe(u,c,t||n);else r(i.attrs)&&en(l,i.attrs),r(i.props)&&en(l,i.props);var d=new Xt(i,l,o,a,e),p=s.render.call(null,d._c,d);if(p instanceof ve)return Jt(p,i,d.parent,s,d);if(Array.isArray(p)){for(var h=xt(p)||[],f=new Array(h.length),_=0;_<h.length;_++)f[_]=Jt(h[_],i,d.parent,s,d);return f}}function Jt(e,t,n,i,r){var a=Ce(e);return a.fnContext=n,a.fnOptions=i,t.slot&&((a.data||(a.data={})).slot=t.slot),a}function en(e,t){for(var n in t)e[C(n)]=t[n]}Qt(Xt.prototype);var tn={init:function(e,t){if(e.componentInstance&&!e.componentInstance._isDestroyed&&e.data.keepAlive){var n=e;tn.prepatch(n,n)}else{var i=e.componentInstance=an(e,kn);i.$mount(t?e.elm:void 0,t)}},prepatch:function(e,t){var n=t.componentOptions,i=t.componentInstance=e.componentInstance;Ln(i,n.propsData,n.listeners,t,n.children)},insert:function(e){var t=e.context,n=e.componentInstance;n._isMounted||(n._isMounted=!0,Un(n,\"mounted\")),e.data.keepAlive&&(t._isMounted?Zn(n):Fn(n,!0))},destroy:function(e){var t=e.componentInstance;t._isDestroyed||(e.data.keepAlive?Bn(t,!0):t.$destroy())}},nn=Object.keys(tn);function rn(e,t,n,o,s){if(!i(e)){var c=n.$options._base;if(l(e)&&(e=c.extend(e)),\"function\"===typeof e){var u;if(i(e.cid)&&(u=e,e=yn(u,c),void 0===e))return En(u,t,n,o,s);t=t||{},yi(e),r(t.model)&&ln(e.options,t);var d=St(t,e,s);if(a(e.options.functional))return Zt(e,d,t,n,o);var p=t.on;if(t.on=t.nativeOn,a(e.options.abstract)){var h=t.slot;t={},h&&(t.slot=h)}on(t);var f=e.options.name||s,_=new ve(\"vue-component-\"+e.cid+(f?\"-\"+f:\"\"),t,void 0,void 0,void 0,n,{Ctor:e,propsData:d,listeners:p,tag:s,children:o},u);return _}}}function an(e,t){var n={_isComponent:!0,_parentVnode:e,parent:t},i=e.data.inlineTemplate;return r(i)&&(n.render=i.render,n.staticRenderFns=i.staticRenderFns),new e.componentOptions.Ctor(n)}function on(e){for(var t=e.hook||(e.hook={}),n=0;n<nn.length;n++){var i=nn[n],r=t[i],a=tn[i];r===a||r&&r._merged||(t[i]=r?sn(a,r):a)}}function sn(e,t){var n=function(n,i){e(n,i),t(n,i)};return n._merged=!0,n}function ln(e,t){var n=e.model&&e.model.prop||\"value\",i=e.model&&e.model.event||\"input\";(t.attrs||(t.attrs={}))[n]=t.model.value;var a=t.on||(t.on={}),o=a[i],s=t.model.callback;r(o)?(Array.isArray(o)?-1===o.indexOf(s):o!==s)&&(a[i]=[s].concat(o)):a[i]=s}var cn=1,un=2;function dn(e,t,n,i,r,o){return(Array.isArray(n)||s(n))&&(r=i,i=n,n=void 0),a(o)&&(r=un),pn(e,t,n,i,r)}function pn(e,t,n,i,a){if(r(n)&&r(n.__ob__))return ye();if(r(n)&&r(n.is)&&(t=n.is),!t)return ye();var o,s,l;(Array.isArray(i)&&\"function\"===typeof i[0]&&(n=n||{},n.scopedSlots={default:i[0]},i.length=0),a===un?i=xt(i):a===cn&&(i=Tt(i)),\"string\"===typeof t)?(s=e.$vnode&&e.$vnode.ns||G.getTagNamespace(t),o=G.isReservedTag(t)?new ve(G.parsePlatformTagName(t),n,i,void 0,void 0,e):n&&n.pre||!r(l=Ke(e.$options,\"components\",t))?new ve(t,n,i,void 0,void 0,e):rn(l,n,e,i,t)):o=rn(t,n,e,i);return Array.isArray(o)?o:r(o)?(r(s)&&hn(o,s),r(n)&&fn(n),o):ye()}function hn(e,t,n){if(e.ns=t,\"foreignObject\"===e.tag&&(t=void 0,n=!0),r(e.children))for(var o=0,s=e.children.length;o<s;o++){var l=e.children[o];r(l.tag)&&(i(l.ns)||a(n)&&\"svg\"!==l.tag)&&hn(l,t,n)}}function fn(e){l(e.style)&&mt(e.style),l(e.class)&&mt(e.class)}function _n(e){e._vnode=null,e._staticTrees=null;var t=e.$options,i=e.$vnode=t._parentVnode,r=i&&i.context;e.$slots=At(t._renderChildren,r),e.$scopedSlots=n,e._c=function(t,n,i,r){return dn(e,t,n,i,r,!1)},e.$createElement=function(t,n,i,r){return dn(e,t,n,i,r,!0)};var a=i&&i.data;Me(e,\"$attrs\",a&&a.attrs||n,null,!0),Me(e,\"$listeners\",t._parentListeners||n,null,!0)}var mn,gn=null;function bn(e){Qt(e.prototype),e.prototype.$nextTick=function(e){return ft(e,this)},e.prototype._render=function(){var e,t=this,n=t.$options,i=n.render,r=n._parentVnode;r&&(t.$scopedSlots=It(r.data.scopedSlots,t.$slots,t.$scopedSlots)),t.$vnode=r;try{gn=t,e=i.call(t._renderProxy,t.$createElement)}catch(Co){tt(Co,t,\"render\"),e=t._vnode}finally{gn=null}return Array.isArray(e)&&1===e.length&&(e=e[0]),e instanceof ve||(e=ye()),e.parent=r,e}}function vn(e,t){return(e.__esModule||pe&&\"Module\"===e[Symbol.toStringTag])&&(e=e.default),l(e)?t.extend(e):e}function En(e,t,n,i,r){var a=ye();return a.asyncFactory=e,a.asyncMeta={data:t,context:n,children:i,tag:r},a}function yn(e,t){if(a(e.error)&&r(e.errorComp))return e.errorComp;if(r(e.resolved))return e.resolved;var n=gn;if(n&&r(e.owners)&&-1===e.owners.indexOf(n)&&e.owners.push(n),a(e.loading)&&r(e.loadingComp))return e.loadingComp;if(n&&!r(e.owners)){var o=e.owners=[n],s=!0,c=null,u=null;n.$on(\"hook:destroyed\",(function(){return b(o,n)}));var d=function(e){for(var t=0,n=o.length;t<n;t++)o[t].$forceUpdate();e&&(o.length=0,null!==c&&(clearTimeout(c),c=null),null!==u&&(clearTimeout(u),u=null))},p=B((function(n){e.resolved=vn(n,t),s?o.length=0:d(!0)})),f=B((function(t){r(e.errorComp)&&(e.error=!0,d(!0))})),_=e(p,f);return l(_)&&(h(_)?i(e.resolved)&&_.then(p,f):h(_.component)&&(_.component.then(p,f),r(_.error)&&(e.errorComp=vn(_.error,t)),r(_.loading)&&(e.loadingComp=vn(_.loading,t),0===_.delay?e.loading=!0:c=setTimeout((function(){c=null,i(e.resolved)&&i(e.error)&&(e.loading=!0,d(!1))}),_.delay||200)),r(_.timeout)&&(u=setTimeout((function(){u=null,i(e.resolved)&&f(null)}),_.timeout)))),s=!1,e.loading?e.loadingComp:e.resolved}}function Sn(e){return e.isComment&&e.asyncFactory}function Cn(e){if(Array.isArray(e))for(var t=0;t<e.length;t++){var n=e[t];if(r(n)&&(r(n.componentOptions)||Sn(n)))return n}}function Tn(e){e._events=Object.create(null),e._hasHookEvent=!1;var t=e.$options._parentListeners;t&&Nn(e,t)}function xn(e,t){mn.$on(e,t)}function wn(e,t){mn.$off(e,t)}function On(e,t){var n=mn;return function i(){var r=t.apply(null,arguments);null!==r&&n.$off(e,i)}}function Nn(e,t,n){mn=e,Et(t,n||{},xn,wn,On,e),mn=void 0}function Rn(e){var t=/^hook:/;e.prototype.$on=function(e,n){var i=this;if(Array.isArray(e))for(var r=0,a=e.length;r<a;r++)i.$on(e[r],n);else(i._events[e]||(i._events[e]=[])).push(n),t.test(e)&&(i._hasHookEvent=!0);return i},e.prototype.$once=function(e,t){var n=this;function i(){n.$off(e,i),t.apply(n,arguments)}return i.fn=t,n.$on(e,i),n},e.prototype.$off=function(e,t){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(Array.isArray(e)){for(var i=0,r=e.length;i<r;i++)n.$off(e[i],t);return n}var a,o=n._events[e];if(!o)return n;if(!t)return n._events[e]=null,n;var s=o.length;while(s--)if(a=o[s],a===t||a.fn===t){o.splice(s,1);break}return n},e.prototype.$emit=function(e){var t=this,n=t._events[e];if(n){n=n.length>1?k(n):n;for(var i=k(arguments,1),r='event handler for \"'+e+'\"',a=0,o=n.length;a<o;a++)nt(n[a],t,i,t,r)}return t}}var kn=null;function An(e){var t=kn;return kn=e,function(){kn=t}}function Dn(e){var t=e.$options,n=t.parent;if(n&&!t.abstract){while(n.$options.abstract&&n.$parent)n=n.$parent;n.$children.push(e)}e.$parent=n,e.$root=n?n.$root:e,e.$children=[],e.$refs={},e._watcher=null,e._inactive=null,e._directInactive=!1,e._isMounted=!1,e._isDestroyed=!1,e._isBeingDestroyed=!1}function In(e){e.prototype._update=function(e,t){var n=this,i=n.$el,r=n._vnode,a=An(n);n._vnode=e,n.$el=r?n.__patch__(r,e):n.__patch__(n.$el,e,t,!1),a(),i&&(i.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},e.prototype.$forceUpdate=function(){var e=this;e._watcher&&e._watcher.update()},e.prototype.$destroy=function(){var e=this;if(!e._isBeingDestroyed){Un(e,\"beforeDestroy\"),e._isBeingDestroyed=!0;var t=e.$parent;!t||t._isBeingDestroyed||e.$options.abstract||b(t.$children,e),e._watcher&&e._watcher.teardown();var n=e._watchers.length;while(n--)e._watchers[n].teardown();e._data.__ob__&&e._data.__ob__.vmCount--,e._isDestroyed=!0,e.__patch__(e._vnode,null),Un(e,\"destroyed\"),e.$off(),e.$el&&(e.$el.__vue__=null),e.$vnode&&(e.$vnode.parent=null)}}}function Mn(e,t,n){var i;return e.$el=t,e.$options.render||(e.$options.render=ye),Un(e,\"beforeMount\"),i=function(){e._update(e._render(),n)},new ni(e,i,I,{before:function(){e._isMounted&&!e._isDestroyed&&Un(e,\"beforeUpdate\")}},!0),n=!1,null==e.$vnode&&(e._isMounted=!0,Un(e,\"mounted\")),e}function Ln(e,t,i,r,a){var o=r.data.scopedSlots,s=e.$scopedSlots,l=!!(o&&!o.$stable||s!==n&&!s.$stable||o&&e.$scopedSlots.$key!==o.$key),c=!!(a||e.$options._renderChildren||l);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=a,e.$attrs=r.data.attrs||n,e.$listeners=i||n,t&&e.$options.props){Re(!1);for(var u=e._props,d=e.$options._propKeys||[],p=0;p<d.length;p++){var h=d[p],f=e.$options.props;u[h]=Qe(h,f,t,e)}Re(!0),e.$options.propsData=t}i=i||n;var _=e.$options._parentListeners;e.$options._parentListeners=i,Nn(e,i,_),c&&(e.$slots=At(a,r.context),e.$forceUpdate())}function Pn(e){while(e&&(e=e.$parent))if(e._inactive)return!0;return!1}function Fn(e,t){if(t){if(e._directInactive=!1,Pn(e))return}else if(e._directInactive)return;if(e._inactive||null===e._inactive){e._inactive=!1;for(var n=0;n<e.$children.length;n++)Fn(e.$children[n]);Un(e,\"activated\")}}function Bn(e,t){if((!t||(e._directInactive=!0,!Pn(e)))&&!e._inactive){e._inactive=!0;for(var n=0;n<e.$children.length;n++)Bn(e.$children[n]);Un(e,\"deactivated\")}}function Un(e,t){ge();var n=e.$options[t],i=t+\" hook\";if(n)for(var r=0,a=n.length;r<a;r++)nt(n[r],e,null,e,i);e._hasHookEvent&&e.$emit(\"hook:\"+t),be()}var $n=[],jn=[],Gn={},qn=!1,Hn=!1,Vn=0;function zn(){Vn=$n.length=jn.length=0,Gn={},qn=Hn=!1}var Yn=0,Wn=Date.now;if(Q&&!ee){var Kn=window.performance;Kn&&\"function\"===typeof Kn.now&&Wn()>document.createEvent(\"Event\").timeStamp&&(Wn=function(){return Kn.now()})}function Qn(){var e,t;for(Yn=Wn(),Hn=!0,$n.sort((function(e,t){return e.id-t.id})),Vn=0;Vn<$n.length;Vn++)e=$n[Vn],e.before&&e.before(),t=e.id,Gn[t]=null,e.run();var n=jn.slice(),i=$n.slice();zn(),Jn(n),Xn(i),ce&&G.devtools&&ce.emit(\"flush\")}function Xn(e){var t=e.length;while(t--){var n=e[t],i=n.vm;i._watcher===n&&i._isMounted&&!i._isDestroyed&&Un(i,\"updated\")}}function Zn(e){e._inactive=!1,jn.push(e)}function Jn(e){for(var t=0;t<e.length;t++)e[t]._inactive=!0,Fn(e[t],!0)}function ei(e){var t=e.id;if(null==Gn[t]){if(Gn[t]=!0,Hn){var n=$n.length-1;while(n>Vn&&$n[n].id>e.id)n--;$n.splice(n+1,0,e)}else $n.push(e);qn||(qn=!0,ft(Qn))}}var ti=0,ni=function(e,t,n,i,r){this.vm=e,r&&(e._watcher=this),e._watchers.push(this),i?(this.deep=!!i.deep,this.user=!!i.user,this.lazy=!!i.lazy,this.sync=!!i.sync,this.before=i.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++ti,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new de,this.newDepIds=new de,this.expression=\"\",\"function\"===typeof t?this.getter=t:(this.getter=Y(t),this.getter||(this.getter=I)),this.value=this.lazy?void 0:this.get()};ni.prototype.get=function(){var e;ge(this);var t=this.vm;try{e=this.getter.call(t,t)}catch(Co){if(!this.user)throw Co;tt(Co,t,'getter for watcher \"'+this.expression+'\"')}finally{this.deep&&mt(e),be(),this.cleanupDeps()}return e},ni.prototype.addDep=function(e){var t=e.id;this.newDepIds.has(t)||(this.newDepIds.add(t),this.newDeps.push(e),this.depIds.has(t)||e.addSub(this))},ni.prototype.cleanupDeps=function(){var e=this.deps.length;while(e--){var t=this.deps[e];this.newDepIds.has(t.id)||t.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},ni.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():ei(this)},ni.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||l(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(Co){tt(Co,this.vm,'callback for watcher \"'+this.expression+'\"')}else this.cb.call(this.vm,e,t)}}},ni.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},ni.prototype.depend=function(){var e=this.deps.length;while(e--)this.deps[e].depend()},ni.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||b(this.vm._watchers,this);var e=this.deps.length;while(e--)this.deps[e].removeSub(this);this.active=!1}};var ii={enumerable:!0,configurable:!0,get:I,set:I};function ri(e,t,n){ii.get=function(){return this[t][n]},ii.set=function(e){this[t][n]=e},Object.defineProperty(e,n,ii)}function ai(e){e._watchers=[];var t=e.$options;t.props&&oi(e,t.props),t.methods&&fi(e,t.methods),t.data?si(e):Ie(e._data={},!0),t.computed&&ui(e,t.computed),t.watch&&t.watch!==ae&&_i(e,t.watch)}function oi(e,t){var n=e.$options.propsData||{},i=e._props={},r=e.$options._propKeys=[],a=!e.$parent;a||Re(!1);var o=function(a){r.push(a);var o=Qe(a,t,n,e);Me(i,a,o),a in e||ri(e,\"_props\",a)};for(var s in t)o(s);Re(!0)}function si(e){var t=e.$options.data;t=e._data=\"function\"===typeof t?li(t,e):t||{},u(t)||(t={});var n=Object.keys(t),i=e.$options.props,r=(e.$options.methods,n.length);while(r--){var a=n[r];0,i&&E(i,a)||H(a)||ri(e,\"_data\",a)}Ie(t,!0)}function li(e,t){ge();try{return e.call(t,t)}catch(Co){return tt(Co,t,\"data()\"),{}}finally{be()}}var ci={lazy:!0};function ui(e,t){var n=e._computedWatchers=Object.create(null),i=le();for(var r in t){var a=t[r],o=\"function\"===typeof a?a:a.get;0,i||(n[r]=new ni(e,o||I,I,ci)),r in e||di(e,r,a)}}function di(e,t,n){var i=!le();\"function\"===typeof n?(ii.get=i?pi(t):hi(n),ii.set=I):(ii.get=n.get?i&&!1!==n.cache?pi(t):hi(n.get):I,ii.set=n.set||I),Object.defineProperty(e,t,ii)}function pi(e){return function(){var t=this._computedWatchers&&this._computedWatchers[e];if(t)return t.dirty&&t.evaluate(),_e.target&&t.depend(),t.value}}function hi(e){return function(){return e.call(this,this)}}function fi(e,t){e.$options.props;for(var n in t)e[n]=\"function\"!==typeof t[n]?I:R(t[n],e)}function _i(e,t){for(var n in t){var i=t[n];if(Array.isArray(i))for(var r=0;r<i.length;r++)mi(e,n,i[r]);else mi(e,n,i)}}function mi(e,t,n,i){return u(n)&&(i=n,n=n.handler),\"string\"===typeof n&&(n=e[n]),e.$watch(t,n,i)}function gi(e){var t={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(e.prototype,\"$data\",t),Object.defineProperty(e.prototype,\"$props\",n),e.prototype.$set=Le,e.prototype.$delete=Pe,e.prototype.$watch=function(e,t,n){var i=this;if(u(t))return mi(i,e,t,n);n=n||{},n.user=!0;var r=new ni(i,e,t,n);if(n.immediate)try{t.call(i,r.value)}catch(a){tt(a,i,'callback for immediate watcher \"'+r.expression+'\"')}return function(){r.teardown()}}}var bi=0;function vi(e){e.prototype._init=function(e){var t=this;t._uid=bi++,t._isVue=!0,e&&e._isComponent?Ei(t,e):t.$options=We(yi(t.constructor),e||{},t),t._renderProxy=t,t._self=t,Dn(t),Tn(t),_n(t),Un(t,\"beforeCreate\"),Rt(t),ai(t),Nt(t),Un(t,\"created\"),t.$options.el&&t.$mount(t.$options.el)}}function Ei(e,t){var n=e.$options=Object.create(e.constructor.options),i=t._parentVnode;n.parent=t.parent,n._parentVnode=i;var r=i.componentOptions;n.propsData=r.propsData,n._parentListeners=r.listeners,n._renderChildren=r.children,n._componentTag=r.tag,t.render&&(n.render=t.render,n.staticRenderFns=t.staticRenderFns)}function yi(e){var t=e.options;if(e.super){var n=yi(e.super),i=e.superOptions;if(n!==i){e.superOptions=n;var r=Si(e);r&&A(e.extendOptions,r),t=e.options=We(n,e.extendOptions),t.name&&(t.components[t.name]=e)}}return t}function Si(e){var t,n=e.options,i=e.sealedOptions;for(var r in n)n[r]!==i[r]&&(t||(t={}),t[r]=n[r]);return t}function Ci(e){this._init(e)}function Ti(e){e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=k(arguments,1);return n.unshift(this),\"function\"===typeof e.install?e.install.apply(e,n):\"function\"===typeof e&&e.apply(null,n),t.push(e),this}}function xi(e){e.mixin=function(e){return this.options=We(this.options,e),this}}function wi(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,i=n.cid,r=e._Ctor||(e._Ctor={});if(r[i])return r[i];var a=e.name||n.options.name;var o=function(e){this._init(e)};return o.prototype=Object.create(n.prototype),o.prototype.constructor=o,o.cid=t++,o.options=We(n.options,e),o[\"super\"]=n,o.options.props&&Oi(o),o.options.computed&&Ni(o),o.extend=n.extend,o.mixin=n.mixin,o.use=n.use,$.forEach((function(e){o[e]=n[e]})),a&&(o.options.components[a]=o),o.superOptions=n.options,o.extendOptions=e,o.sealedOptions=A({},o.options),r[i]=o,o}}function Oi(e){var t=e.options.props;for(var n in t)ri(e.prototype,\"_props\",n)}function Ni(e){var t=e.options.computed;for(var n in t)di(e.prototype,n,t[n])}function Ri(e){$.forEach((function(t){e[t]=function(e,n){return n?(\"component\"===t&&u(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),\"directive\"===t&&\"function\"===typeof n&&(n={bind:n,update:n}),this.options[t+\"s\"][e]=n,n):this.options[t+\"s\"][e]}}))}function ki(e){return e&&(e.Ctor.options.name||e.tag)}function Ai(e,t){return Array.isArray(e)?e.indexOf(t)>-1:\"string\"===typeof e?e.split(\",\").indexOf(t)>-1:!!d(e)&&e.test(t)}function Di(e,t){var n=e.cache,i=e.keys,r=e._vnode;for(var a in n){var o=n[a];if(o){var s=ki(o.componentOptions);s&&!t(s)&&Ii(n,a,i,r)}}}function Ii(e,t,n,i){var r=e[t];!r||i&&r.tag===i.tag||r.componentInstance.$destroy(),e[t]=null,b(n,t)}vi(Ci),gi(Ci),Rn(Ci),In(Ci),bn(Ci);var Mi=[String,RegExp,Array],Li={name:\"keep-alive\",abstract:!0,props:{include:Mi,exclude:Mi,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var e in this.cache)Ii(this.cache,e,this.keys)},mounted:function(){var e=this;this.$watch(\"include\",(function(t){Di(e,(function(e){return Ai(t,e)}))})),this.$watch(\"exclude\",(function(t){Di(e,(function(e){return!Ai(t,e)}))}))},render:function(){var e=this.$slots.default,t=Cn(e),n=t&&t.componentOptions;if(n){var i=ki(n),r=this,a=r.include,o=r.exclude;if(a&&(!i||!Ai(a,i))||o&&i&&Ai(o,i))return t;var s=this,l=s.cache,c=s.keys,u=null==t.key?n.Ctor.cid+(n.tag?\"::\"+n.tag:\"\"):t.key;l[u]?(t.componentInstance=l[u].componentInstance,b(c,u),c.push(u)):(l[u]=t,c.push(u),this.max&&c.length>parseInt(this.max)&&Ii(l,c[0],c,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}},Pi={KeepAlive:Li};function Fi(e){var t={get:function(){return G}};Object.defineProperty(e,\"config\",t),e.util={warn:he,extend:A,mergeOptions:We,defineReactive:Me},e.set=Le,e.delete=Pe,e.nextTick=ft,e.observable=function(e){return Ie(e),e},e.options=Object.create(null),$.forEach((function(t){e.options[t+\"s\"]=Object.create(null)})),e.options._base=e,A(e.options.components,Pi),Ti(e),xi(e),wi(e),Ri(e)}Fi(Ci),Object.defineProperty(Ci.prototype,\"$isServer\",{get:le}),Object.defineProperty(Ci.prototype,\"$ssrContext\",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(Ci,\"FunctionalRenderContext\",{value:Xt}),Ci.version=\"2.6.12\";var Bi=m(\"style,class\"),Ui=m(\"input,textarea,option,select,progress\"),$i=function(e,t,n){return\"value\"===n&&Ui(e)&&\"button\"!==t||\"selected\"===n&&\"option\"===e||\"checked\"===n&&\"input\"===e||\"muted\"===n&&\"video\"===e},ji=m(\"contenteditable,draggable,spellcheck\"),Gi=m(\"events,caret,typing,plaintext-only\"),qi=function(e,t){return Wi(t)||\"false\"===t?\"false\":\"contenteditable\"===e&&Gi(t)?t:\"true\"},Hi=m(\"allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible\"),Vi=\"http://www.w3.org/1999/xlink\",zi=function(e){return\":\"===e.charAt(5)&&\"xlink\"===e.slice(0,5)},Yi=function(e){return zi(e)?e.slice(6,e.length):\"\"},Wi=function(e){return null==e||!1===e};function Ki(e){var t=e.data,n=e,i=e;while(r(i.componentInstance))i=i.componentInstance._vnode,i&&i.data&&(t=Qi(i.data,t));while(r(n=n.parent))n&&n.data&&(t=Qi(t,n.data));return Xi(t.staticClass,t.class)}function Qi(e,t){return{staticClass:Zi(e.staticClass,t.staticClass),class:r(e.class)?[e.class,t.class]:t.class}}function Xi(e,t){return r(e)||r(t)?Zi(e,Ji(t)):\"\"}function Zi(e,t){return e?t?e+\" \"+t:e:t||\"\"}function Ji(e){return Array.isArray(e)?er(e):l(e)?tr(e):\"string\"===typeof e?e:\"\"}function er(e){for(var t,n=\"\",i=0,a=e.length;i<a;i++)r(t=Ji(e[i]))&&\"\"!==t&&(n&&(n+=\" \"),n+=t);return n}function tr(e){var t=\"\";for(var n in e)e[n]&&(t&&(t+=\" \"),t+=n);return t}var nr={svg:\"http://www.w3.org/2000/svg\",math:\"http://www.w3.org/1998/Math/MathML\"},ir=m(\"html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot\"),rr=m(\"svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view\",!0),ar=function(e){return ir(e)||rr(e)};function or(e){return rr(e)?\"svg\":\"math\"===e?\"math\":void 0}var sr=Object.create(null);function lr(e){if(!Q)return!0;if(ar(e))return!1;if(e=e.toLowerCase(),null!=sr[e])return sr[e];var t=document.createElement(e);return e.indexOf(\"-\")>-1?sr[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:sr[e]=/HTMLUnknownElement/.test(t.toString())}var cr=m(\"text,number,password,search,email,tel,url\");function ur(e){if(\"string\"===typeof e){var t=document.querySelector(e);return t||document.createElement(\"div\")}return e}function dr(e,t){var n=document.createElement(e);return\"select\"!==e||t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute(\"multiple\",\"multiple\"),n}function pr(e,t){return document.createElementNS(nr[e],t)}function hr(e){return document.createTextNode(e)}function fr(e){return document.createComment(e)}function _r(e,t,n){e.insertBefore(t,n)}function mr(e,t){e.removeChild(t)}function gr(e,t){e.appendChild(t)}function br(e){return e.parentNode}function vr(e){return e.nextSibling}function Er(e){return e.tagName}function yr(e,t){e.textContent=t}function Sr(e,t){e.setAttribute(t,\"\")}var Cr=Object.freeze({createElement:dr,createElementNS:pr,createTextNode:hr,createComment:fr,insertBefore:_r,removeChild:mr,appendChild:gr,parentNode:br,nextSibling:vr,tagName:Er,setTextContent:yr,setStyleScope:Sr}),Tr={create:function(e,t){xr(t)},update:function(e,t){e.data.ref!==t.data.ref&&(xr(e,!0),xr(t))},destroy:function(e){xr(e,!0)}};function xr(e,t){var n=e.data.ref;if(r(n)){var i=e.context,a=e.componentInstance||e.elm,o=i.$refs;t?Array.isArray(o[n])?b(o[n],a):o[n]===a&&(o[n]=void 0):e.data.refInFor?Array.isArray(o[n])?o[n].indexOf(a)<0&&o[n].push(a):o[n]=[a]:o[n]=a}}var wr=new ve(\"\",{},[]),Or=[\"create\",\"activate\",\"update\",\"remove\",\"destroy\"];function Nr(e,t){return e.key===t.key&&(e.tag===t.tag&&e.isComment===t.isComment&&r(e.data)===r(t.data)&&Rr(e,t)||a(e.isAsyncPlaceholder)&&e.asyncFactory===t.asyncFactory&&i(t.asyncFactory.error))}function Rr(e,t){if(\"input\"!==e.tag)return!0;var n,i=r(n=e.data)&&r(n=n.attrs)&&n.type,a=r(n=t.data)&&r(n=n.attrs)&&n.type;return i===a||cr(i)&&cr(a)}function kr(e,t,n){var i,a,o={};for(i=t;i<=n;++i)a=e[i].key,r(a)&&(o[a]=i);return o}function Ar(e){var t,n,o={},l=e.modules,c=e.nodeOps;for(t=0;t<Or.length;++t)for(o[Or[t]]=[],n=0;n<l.length;++n)r(l[n][Or[t]])&&o[Or[t]].push(l[n][Or[t]]);function u(e){return new ve(c.tagName(e).toLowerCase(),{},[],void 0,e)}function d(e,t){function n(){0===--n.listeners&&p(e)}return n.listeners=t,n}function p(e){var t=c.parentNode(e);r(t)&&c.removeChild(t,e)}function h(e,t,n,i,o,s,l){if(r(e.elm)&&r(s)&&(e=s[l]=Ce(e)),e.isRootInsert=!o,!f(e,t,n,i)){var u=e.data,d=e.children,p=e.tag;r(p)?(e.elm=e.ns?c.createElementNS(e.ns,p):c.createElement(p,e),S(e),v(e,d,t),r(u)&&y(e,t),b(n,e.elm,i)):a(e.isComment)?(e.elm=c.createComment(e.text),b(n,e.elm,i)):(e.elm=c.createTextNode(e.text),b(n,e.elm,i))}}function f(e,t,n,i){var o=e.data;if(r(o)){var s=r(e.componentInstance)&&o.keepAlive;if(r(o=o.hook)&&r(o=o.init)&&o(e,!1),r(e.componentInstance))return _(e,t),b(n,e.elm,i),a(s)&&g(e,t,n,i),!0}}function _(e,t){r(e.data.pendingInsert)&&(t.push.apply(t,e.data.pendingInsert),e.data.pendingInsert=null),e.elm=e.componentInstance.$el,E(e)?(y(e,t),S(e)):(xr(e),t.push(e))}function g(e,t,n,i){var a,s=e;while(s.componentInstance)if(s=s.componentInstance._vnode,r(a=s.data)&&r(a=a.transition)){for(a=0;a<o.activate.length;++a)o.activate[a](wr,s);t.push(s);break}b(n,e.elm,i)}function b(e,t,n){r(e)&&(r(n)?c.parentNode(n)===e&&c.insertBefore(e,t,n):c.appendChild(e,t))}function v(e,t,n){if(Array.isArray(t)){0;for(var i=0;i<t.length;++i)h(t[i],n,e.elm,null,!0,t,i)}else s(e.text)&&c.appendChild(e.elm,c.createTextNode(String(e.text)))}function E(e){while(e.componentInstance)e=e.componentInstance._vnode;return r(e.tag)}function y(e,n){for(var i=0;i<o.create.length;++i)o.create[i](wr,e);t=e.data.hook,r(t)&&(r(t.create)&&t.create(wr,e),r(t.insert)&&n.push(e))}function S(e){var t;if(r(t=e.fnScopeId))c.setStyleScope(e.elm,t);else{var n=e;while(n)r(t=n.context)&&r(t=t.$options._scopeId)&&c.setStyleScope(e.elm,t),n=n.parent}r(t=kn)&&t!==e.context&&t!==e.fnContext&&r(t=t.$options._scopeId)&&c.setStyleScope(e.elm,t)}function C(e,t,n,i,r,a){for(;i<=r;++i)h(n[i],a,e,t,!1,n,i)}function T(e){var t,n,i=e.data;if(r(i))for(r(t=i.hook)&&r(t=t.destroy)&&t(e),t=0;t<o.destroy.length;++t)o.destroy[t](e);if(r(t=e.children))for(n=0;n<e.children.length;++n)T(e.children[n])}function x(e,t,n){for(;t<=n;++t){var i=e[t];r(i)&&(r(i.tag)?(w(i),T(i)):p(i.elm))}}function w(e,t){if(r(t)||r(e.data)){var n,i=o.remove.length+1;for(r(t)?t.listeners+=i:t=d(e.elm,i),r(n=e.componentInstance)&&r(n=n._vnode)&&r(n.data)&&w(n,t),n=0;n<o.remove.length;++n)o.remove[n](e,t);r(n=e.data.hook)&&r(n=n.remove)?n(e,t):t()}else p(e.elm)}function O(e,t,n,a,o){var s,l,u,d,p=0,f=0,_=t.length-1,m=t[0],g=t[_],b=n.length-1,v=n[0],E=n[b],y=!o;while(p<=_&&f<=b)i(m)?m=t[++p]:i(g)?g=t[--_]:Nr(m,v)?(R(m,v,a,n,f),m=t[++p],v=n[++f]):Nr(g,E)?(R(g,E,a,n,b),g=t[--_],E=n[--b]):Nr(m,E)?(R(m,E,a,n,b),y&&c.insertBefore(e,m.elm,c.nextSibling(g.elm)),m=t[++p],E=n[--b]):Nr(g,v)?(R(g,v,a,n,f),y&&c.insertBefore(e,g.elm,m.elm),g=t[--_],v=n[++f]):(i(s)&&(s=kr(t,p,_)),l=r(v.key)?s[v.key]:N(v,t,p,_),i(l)?h(v,a,e,m.elm,!1,n,f):(u=t[l],Nr(u,v)?(R(u,v,a,n,f),t[l]=void 0,y&&c.insertBefore(e,u.elm,m.elm)):h(v,a,e,m.elm,!1,n,f)),v=n[++f]);p>_?(d=i(n[b+1])?null:n[b+1].elm,C(e,d,n,f,b,a)):f>b&&x(t,p,_)}function N(e,t,n,i){for(var a=n;a<i;a++){var o=t[a];if(r(o)&&Nr(e,o))return a}}function R(e,t,n,s,l,u){if(e!==t){r(t.elm)&&r(s)&&(t=s[l]=Ce(t));var d=t.elm=e.elm;if(a(e.isAsyncPlaceholder))r(t.asyncFactory.resolved)?D(e.elm,t,n):t.isAsyncPlaceholder=!0;else if(a(t.isStatic)&&a(e.isStatic)&&t.key===e.key&&(a(t.isCloned)||a(t.isOnce)))t.componentInstance=e.componentInstance;else{var p,h=t.data;r(h)&&r(p=h.hook)&&r(p=p.prepatch)&&p(e,t);var f=e.children,_=t.children;if(r(h)&&E(t)){for(p=0;p<o.update.length;++p)o.update[p](e,t);r(p=h.hook)&&r(p=p.update)&&p(e,t)}i(t.text)?r(f)&&r(_)?f!==_&&O(d,f,_,n,u):r(_)?(r(e.text)&&c.setTextContent(d,\"\"),C(d,null,_,0,_.length-1,n)):r(f)?x(f,0,f.length-1):r(e.text)&&c.setTextContent(d,\"\"):e.text!==t.text&&c.setTextContent(d,t.text),r(h)&&r(p=h.hook)&&r(p=p.postpatch)&&p(e,t)}}}function k(e,t,n){if(a(n)&&r(e.parent))e.parent.data.pendingInsert=t;else for(var i=0;i<t.length;++i)t[i].data.hook.insert(t[i])}var A=m(\"attrs,class,staticClass,staticStyle,key\");function D(e,t,n,i){var o,s=t.tag,l=t.data,c=t.children;if(i=i||l&&l.pre,t.elm=e,a(t.isComment)&&r(t.asyncFactory))return t.isAsyncPlaceholder=!0,!0;if(r(l)&&(r(o=l.hook)&&r(o=o.init)&&o(t,!0),r(o=t.componentInstance)))return _(t,n),!0;if(r(s)){if(r(c))if(e.hasChildNodes())if(r(o=l)&&r(o=o.domProps)&&r(o=o.innerHTML)){if(o!==e.innerHTML)return!1}else{for(var u=!0,d=e.firstChild,p=0;p<c.length;p++){if(!d||!D(d,c[p],n,i)){u=!1;break}d=d.nextSibling}if(!u||d)return!1}else v(t,c,n);if(r(l)){var h=!1;for(var f in l)if(!A(f)){h=!0,y(t,n);break}!h&&l[\"class\"]&&mt(l[\"class\"])}}else e.data!==t.text&&(e.data=t.text);return!0}return function(e,t,n,s){if(!i(t)){var l=!1,d=[];if(i(e))l=!0,h(t,d);else{var p=r(e.nodeType);if(!p&&Nr(e,t))R(e,t,d,null,null,s);else{if(p){if(1===e.nodeType&&e.hasAttribute(U)&&(e.removeAttribute(U),n=!0),a(n)&&D(e,t,d))return k(t,d,!0),e;e=u(e)}var f=e.elm,_=c.parentNode(f);if(h(t,d,f._leaveCb?null:_,c.nextSibling(f)),r(t.parent)){var m=t.parent,g=E(t);while(m){for(var b=0;b<o.destroy.length;++b)o.destroy[b](m);if(m.elm=t.elm,g){for(var v=0;v<o.create.length;++v)o.create[v](wr,m);var y=m.data.hook.insert;if(y.merged)for(var S=1;S<y.fns.length;S++)y.fns[S]()}else xr(m);m=m.parent}}r(_)?x([e],0,0):r(e.tag)&&T(e)}}return k(t,d,l),t.elm}r(e)&&T(e)}}var Dr={create:Ir,update:Ir,destroy:function(e){Ir(e,wr)}};function Ir(e,t){(e.data.directives||t.data.directives)&&Mr(e,t)}function Mr(e,t){var n,i,r,a=e===wr,o=t===wr,s=Pr(e.data.directives,e.context),l=Pr(t.data.directives,t.context),c=[],u=[];for(n in l)i=s[n],r=l[n],i?(r.oldValue=i.value,r.oldArg=i.arg,Br(r,\"update\",t,e),r.def&&r.def.componentUpdated&&u.push(r)):(Br(r,\"bind\",t,e),r.def&&r.def.inserted&&c.push(r));if(c.length){var d=function(){for(var n=0;n<c.length;n++)Br(c[n],\"inserted\",t,e)};a?yt(t,\"insert\",d):d()}if(u.length&&yt(t,\"postpatch\",(function(){for(var n=0;n<u.length;n++)Br(u[n],\"componentUpdated\",t,e)})),!a)for(n in s)l[n]||Br(s[n],\"unbind\",e,e,o)}var Lr=Object.create(null);function Pr(e,t){var n,i,r=Object.create(null);if(!e)return r;for(n=0;n<e.length;n++)i=e[n],i.modifiers||(i.modifiers=Lr),r[Fr(i)]=i,i.def=Ke(t.$options,\"directives\",i.name,!0);return r}function Fr(e){return e.rawName||e.name+\".\"+Object.keys(e.modifiers||{}).join(\".\")}function Br(e,t,n,i,r){var a=e.def&&e.def[t];if(a)try{a(n.elm,e,n,i,r)}catch(Co){tt(Co,n.context,\"directive \"+e.name+\" \"+t+\" hook\")}}var Ur=[Tr,Dr];function $r(e,t){var n=t.componentOptions;if((!r(n)||!1!==n.Ctor.options.inheritAttrs)&&(!i(e.data.attrs)||!i(t.data.attrs))){var a,o,s,l=t.elm,c=e.data.attrs||{},u=t.data.attrs||{};for(a in r(u.__ob__)&&(u=t.data.attrs=A({},u)),u)o=u[a],s=c[a],s!==o&&jr(l,a,o);for(a in(ee||ne)&&u.value!==c.value&&jr(l,\"value\",u.value),c)i(u[a])&&(zi(a)?l.removeAttributeNS(Vi,Yi(a)):ji(a)||l.removeAttribute(a))}}function jr(e,t,n){e.tagName.indexOf(\"-\")>-1?Gr(e,t,n):Hi(t)?Wi(n)?e.removeAttribute(t):(n=\"allowfullscreen\"===t&&\"EMBED\"===e.tagName?\"true\":t,e.setAttribute(t,n)):ji(t)?e.setAttribute(t,qi(t,n)):zi(t)?Wi(n)?e.removeAttributeNS(Vi,Yi(t)):e.setAttributeNS(Vi,t,n):Gr(e,t,n)}function Gr(e,t,n){if(Wi(n))e.removeAttribute(t);else{if(ee&&!te&&\"TEXTAREA\"===e.tagName&&\"placeholder\"===t&&\"\"!==n&&!e.__ieph){var i=function(t){t.stopImmediatePropagation(),e.removeEventListener(\"input\",i)};e.addEventListener(\"input\",i),e.__ieph=!0}e.setAttribute(t,n)}}var qr={create:$r,update:$r};function Hr(e,t){var n=t.elm,a=t.data,o=e.data;if(!(i(a.staticClass)&&i(a.class)&&(i(o)||i(o.staticClass)&&i(o.class)))){var s=Ki(t),l=n._transitionClasses;r(l)&&(s=Zi(s,Ji(l))),s!==n._prevClass&&(n.setAttribute(\"class\",s),n._prevClass=s)}}var Vr,zr={create:Hr,update:Hr},Yr=\"__r\",Wr=\"__c\";function Kr(e){if(r(e[Yr])){var t=ee?\"change\":\"input\";e[t]=[].concat(e[Yr],e[t]||[]),delete e[Yr]}r(e[Wr])&&(e.change=[].concat(e[Wr],e.change||[]),delete e[Wr])}function Qr(e,t,n){var i=Vr;return function r(){var a=t.apply(null,arguments);null!==a&&Jr(e,r,n,i)}}var Xr=ot&&!(re&&Number(re[1])<=53);function Zr(e,t,n,i){if(Xr){var r=Yn,a=t;t=a._wrapper=function(e){if(e.target===e.currentTarget||e.timeStamp>=r||e.timeStamp<=0||e.target.ownerDocument!==document)return a.apply(this,arguments)}}Vr.addEventListener(e,t,oe?{capture:n,passive:i}:n)}function Jr(e,t,n,i){(i||Vr).removeEventListener(e,t._wrapper||t,n)}function ea(e,t){if(!i(e.data.on)||!i(t.data.on)){var n=t.data.on||{},r=e.data.on||{};Vr=t.elm,Kr(n),Et(n,r,Zr,Jr,Qr,t.context),Vr=void 0}}var ta,na={create:ea,update:ea};function ia(e,t){if(!i(e.data.domProps)||!i(t.data.domProps)){var n,a,o=t.elm,s=e.data.domProps||{},l=t.data.domProps||{};for(n in r(l.__ob__)&&(l=t.data.domProps=A({},l)),s)n in l||(o[n]=\"\");for(n in l){if(a=l[n],\"textContent\"===n||\"innerHTML\"===n){if(t.children&&(t.children.length=0),a===s[n])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if(\"value\"===n&&\"PROGRESS\"!==o.tagName){o._value=a;var c=i(a)?\"\":String(a);ra(o,c)&&(o.value=c)}else if(\"innerHTML\"===n&&rr(o.tagName)&&i(o.innerHTML)){ta=ta||document.createElement(\"div\"),ta.innerHTML=\"<svg>\"+a+\"</svg>\";var u=ta.firstChild;while(o.firstChild)o.removeChild(o.firstChild);while(u.firstChild)o.appendChild(u.firstChild)}else if(a!==s[n])try{o[n]=a}catch(Co){}}}}function ra(e,t){return!e.composing&&(\"OPTION\"===e.tagName||aa(e,t)||oa(e,t))}function aa(e,t){var n=!0;try{n=document.activeElement!==e}catch(Co){}return n&&e.value!==t}function oa(e,t){var n=e.value,i=e._vModifiers;if(r(i)){if(i.number)return _(n)!==_(t);if(i.trim)return n.trim()!==t.trim()}return n!==t}var sa={create:ia,update:ia},la=y((function(e){var t={},n=/;(?![^(]*\\))/g,i=/:(.+)/;return e.split(n).forEach((function(e){if(e){var n=e.split(i);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}));function ca(e){var t=ua(e.style);return e.staticStyle?A(e.staticStyle,t):t}function ua(e){return Array.isArray(e)?D(e):\"string\"===typeof e?la(e):e}function da(e,t){var n,i={};if(t){var r=e;while(r.componentInstance)r=r.componentInstance._vnode,r&&r.data&&(n=ca(r.data))&&A(i,n)}(n=ca(e.data))&&A(i,n);var a=e;while(a=a.parent)a.data&&(n=ca(a.data))&&A(i,n);return i}var pa,ha=/^--/,fa=/\\s*!important$/,_a=function(e,t,n){if(ha.test(t))e.style.setProperty(t,n);else if(fa.test(n))e.style.setProperty(w(t),n.replace(fa,\"\"),\"important\");else{var i=ga(t);if(Array.isArray(n))for(var r=0,a=n.length;r<a;r++)e.style[i]=n[r];else e.style[i]=n}},ma=[\"Webkit\",\"Moz\",\"ms\"],ga=y((function(e){if(pa=pa||document.createElement(\"div\").style,e=C(e),\"filter\"!==e&&e in pa)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),n=0;n<ma.length;n++){var i=ma[n]+t;if(i in pa)return i}}));function ba(e,t){var n=t.data,a=e.data;if(!(i(n.staticStyle)&&i(n.style)&&i(a.staticStyle)&&i(a.style))){var o,s,l=t.elm,c=a.staticStyle,u=a.normalizedStyle||a.style||{},d=c||u,p=ua(t.data.style)||{};t.data.normalizedStyle=r(p.__ob__)?A({},p):p;var h=da(t,!0);for(s in d)i(h[s])&&_a(l,s,\"\");for(s in h)o=h[s],o!==d[s]&&_a(l,s,null==o?\"\":o)}}var va={create:ba,update:ba},Ea=/\\s+/;function ya(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(\" \")>-1?t.split(Ea).forEach((function(t){return e.classList.add(t)})):e.classList.add(t);else{var n=\" \"+(e.getAttribute(\"class\")||\"\")+\" \";n.indexOf(\" \"+t+\" \")<0&&e.setAttribute(\"class\",(n+t).trim())}}function Sa(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(\" \")>-1?t.split(Ea).forEach((function(t){return e.classList.remove(t)})):e.classList.remove(t),e.classList.length||e.removeAttribute(\"class\");else{var n=\" \"+(e.getAttribute(\"class\")||\"\")+\" \",i=\" \"+t+\" \";while(n.indexOf(i)>=0)n=n.replace(i,\" \");n=n.trim(),n?e.setAttribute(\"class\",n):e.removeAttribute(\"class\")}}function Ca(e){if(e){if(\"object\"===typeof e){var t={};return!1!==e.css&&A(t,Ta(e.name||\"v\")),A(t,e),t}return\"string\"===typeof e?Ta(e):void 0}}var Ta=y((function(e){return{enterClass:e+\"-enter\",enterToClass:e+\"-enter-to\",enterActiveClass:e+\"-enter-active\",leaveClass:e+\"-leave\",leaveToClass:e+\"-leave-to\",leaveActiveClass:e+\"-leave-active\"}})),xa=Q&&!te,wa=\"transition\",Oa=\"animation\",Na=\"transition\",Ra=\"transitionend\",ka=\"animation\",Aa=\"animationend\";xa&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Na=\"WebkitTransition\",Ra=\"webkitTransitionEnd\"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(ka=\"WebkitAnimation\",Aa=\"webkitAnimationEnd\"));var Da=Q?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function Ia(e){Da((function(){Da(e)}))}function Ma(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),ya(e,t))}function La(e,t){e._transitionClasses&&b(e._transitionClasses,t),Sa(e,t)}function Pa(e,t,n){var i=Ba(e,t),r=i.type,a=i.timeout,o=i.propCount;if(!r)return n();var s=r===wa?Ra:Aa,l=0,c=function(){e.removeEventListener(s,u),n()},u=function(t){t.target===e&&++l>=o&&c()};setTimeout((function(){l<o&&c()}),a+1),e.addEventListener(s,u)}var Fa=/\\b(transform|all)(,|$)/;function Ba(e,t){var n,i=window.getComputedStyle(e),r=(i[Na+\"Delay\"]||\"\").split(\", \"),a=(i[Na+\"Duration\"]||\"\").split(\", \"),o=Ua(r,a),s=(i[ka+\"Delay\"]||\"\").split(\", \"),l=(i[ka+\"Duration\"]||\"\").split(\", \"),c=Ua(s,l),u=0,d=0;t===wa?o>0&&(n=wa,u=o,d=a.length):t===Oa?c>0&&(n=Oa,u=c,d=l.length):(u=Math.max(o,c),n=u>0?o>c?wa:Oa:null,d=n?n===wa?a.length:l.length:0);var p=n===wa&&Fa.test(i[Na+\"Property\"]);return{type:n,timeout:u,propCount:d,hasTransform:p}}function Ua(e,t){while(e.length<t.length)e=e.concat(e);return Math.max.apply(null,t.map((function(t,n){return $a(t)+$a(e[n])})))}function $a(e){return 1e3*Number(e.slice(0,-1).replace(\",\",\".\"))}function ja(e,t){var n=e.elm;r(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var a=Ca(e.data.transition);if(!i(a)&&!r(n._enterCb)&&1===n.nodeType){var o=a.css,s=a.type,c=a.enterClass,u=a.enterToClass,d=a.enterActiveClass,p=a.appearClass,h=a.appearToClass,f=a.appearActiveClass,m=a.beforeEnter,g=a.enter,b=a.afterEnter,v=a.enterCancelled,E=a.beforeAppear,y=a.appear,S=a.afterAppear,C=a.appearCancelled,T=a.duration,x=kn,w=kn.$vnode;while(w&&w.parent)x=w.context,w=w.parent;var O=!x._isMounted||!e.isRootInsert;if(!O||y||\"\"===y){var N=O&&p?p:c,R=O&&f?f:d,k=O&&h?h:u,A=O&&E||m,D=O&&\"function\"===typeof y?y:g,I=O&&S||b,M=O&&C||v,L=_(l(T)?T.enter:T);0;var P=!1!==o&&!te,F=Ha(D),U=n._enterCb=B((function(){P&&(La(n,k),La(n,R)),U.cancelled?(P&&La(n,N),M&&M(n)):I&&I(n),n._enterCb=null}));e.data.show||yt(e,\"insert\",(function(){var t=n.parentNode,i=t&&t._pending&&t._pending[e.key];i&&i.tag===e.tag&&i.elm._leaveCb&&i.elm._leaveCb(),D&&D(n,U)})),A&&A(n),P&&(Ma(n,N),Ma(n,R),Ia((function(){La(n,N),U.cancelled||(Ma(n,k),F||(qa(L)?setTimeout(U,L):Pa(n,s,U)))}))),e.data.show&&(t&&t(),D&&D(n,U)),P||F||U()}}}function Ga(e,t){var n=e.elm;r(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var a=Ca(e.data.transition);if(i(a)||1!==n.nodeType)return t();if(!r(n._leaveCb)){var o=a.css,s=a.type,c=a.leaveClass,u=a.leaveToClass,d=a.leaveActiveClass,p=a.beforeLeave,h=a.leave,f=a.afterLeave,m=a.leaveCancelled,g=a.delayLeave,b=a.duration,v=!1!==o&&!te,E=Ha(h),y=_(l(b)?b.leave:b);0;var S=n._leaveCb=B((function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[e.key]=null),v&&(La(n,u),La(n,d)),S.cancelled?(v&&La(n,c),m&&m(n)):(t(),f&&f(n)),n._leaveCb=null}));g?g(C):C()}function C(){S.cancelled||(!e.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[e.key]=e),p&&p(n),v&&(Ma(n,c),Ma(n,d),Ia((function(){La(n,c),S.cancelled||(Ma(n,u),E||(qa(y)?setTimeout(S,y):Pa(n,s,S)))}))),h&&h(n,S),v||E||S())}}function qa(e){return\"number\"===typeof e&&!isNaN(e)}function Ha(e){if(i(e))return!1;var t=e.fns;return r(t)?Ha(Array.isArray(t)?t[0]:t):(e._length||e.length)>1}function Va(e,t){!0!==t.data.show&&ja(t)}var za=Q?{create:Va,activate:Va,remove:function(e,t){!0!==e.data.show?Ga(e,t):t()}}:{},Ya=[qr,zr,na,sa,va,za],Wa=Ya.concat(Ur),Ka=Ar({nodeOps:Cr,modules:Wa});te&&document.addEventListener(\"selectionchange\",(function(){var e=document.activeElement;e&&e.vmodel&&io(e,\"input\")}));var Qa={inserted:function(e,t,n,i){\"select\"===n.tag?(i.elm&&!i.elm._vOptions?yt(n,\"postpatch\",(function(){Qa.componentUpdated(e,t,n)})):Xa(e,t,n.context),e._vOptions=[].map.call(e.options,eo)):(\"textarea\"===n.tag||cr(e.type))&&(e._vModifiers=t.modifiers,t.modifiers.lazy||(e.addEventListener(\"compositionstart\",to),e.addEventListener(\"compositionend\",no),e.addEventListener(\"change\",no),te&&(e.vmodel=!0)))},componentUpdated:function(e,t,n){if(\"select\"===n.tag){Xa(e,t,n.context);var i=e._vOptions,r=e._vOptions=[].map.call(e.options,eo);if(r.some((function(e,t){return!P(e,i[t])}))){var a=e.multiple?t.value.some((function(e){return Ja(e,r)})):t.value!==t.oldValue&&Ja(t.value,r);a&&io(e,\"change\")}}}};function Xa(e,t,n){Za(e,t,n),(ee||ne)&&setTimeout((function(){Za(e,t,n)}),0)}function Za(e,t,n){var i=t.value,r=e.multiple;if(!r||Array.isArray(i)){for(var a,o,s=0,l=e.options.length;s<l;s++)if(o=e.options[s],r)a=F(i,eo(o))>-1,o.selected!==a&&(o.selected=a);else if(P(eo(o),i))return void(e.selectedIndex!==s&&(e.selectedIndex=s));r||(e.selectedIndex=-1)}}function Ja(e,t){return t.every((function(t){return!P(t,e)}))}function eo(e){return\"_value\"in e?e._value:e.value}function to(e){e.target.composing=!0}function no(e){e.target.composing&&(e.target.composing=!1,io(e.target,\"input\"))}function io(e,t){var n=document.createEvent(\"HTMLEvents\");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function ro(e){return!e.componentInstance||e.data&&e.data.transition?e:ro(e.componentInstance._vnode)}var ao={bind:function(e,t,n){var i=t.value;n=ro(n);var r=n.data&&n.data.transition,a=e.__vOriginalDisplay=\"none\"===e.style.display?\"\":e.style.display;i&&r?(n.data.show=!0,ja(n,(function(){e.style.display=a}))):e.style.display=i?a:\"none\"},update:function(e,t,n){var i=t.value,r=t.oldValue;if(!i!==!r){n=ro(n);var a=n.data&&n.data.transition;a?(n.data.show=!0,i?ja(n,(function(){e.style.display=e.__vOriginalDisplay})):Ga(n,(function(){e.style.display=\"none\"}))):e.style.display=i?e.__vOriginalDisplay:\"none\"}},unbind:function(e,t,n,i,r){r||(e.style.display=e.__vOriginalDisplay)}},oo={model:Qa,show:ao},so={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function lo(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?lo(Cn(t.children)):e}function co(e){var t={},n=e.$options;for(var i in n.propsData)t[i]=e[i];var r=n._parentListeners;for(var a in r)t[C(a)]=r[a];return t}function uo(e,t){if(/\\d-keep-alive$/.test(t.tag))return e(\"keep-alive\",{props:t.componentOptions.propsData})}function po(e){while(e=e.parent)if(e.data.transition)return!0}function ho(e,t){return t.key===e.key&&t.tag===e.tag}var fo=function(e){return e.tag||Sn(e)},_o=function(e){return\"show\"===e.name},mo={name:\"transition\",props:so,abstract:!0,render:function(e){var t=this,n=this.$slots.default;if(n&&(n=n.filter(fo),n.length)){0;var i=this.mode;0;var r=n[0];if(po(this.$vnode))return r;var a=lo(r);if(!a)return r;if(this._leaving)return uo(e,r);var o=\"__transition-\"+this._uid+\"-\";a.key=null==a.key?a.isComment?o+\"comment\":o+a.tag:s(a.key)?0===String(a.key).indexOf(o)?a.key:o+a.key:a.key;var l=(a.data||(a.data={})).transition=co(this),c=this._vnode,u=lo(c);if(a.data.directives&&a.data.directives.some(_o)&&(a.data.show=!0),u&&u.data&&!ho(a,u)&&!Sn(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var d=u.data.transition=A({},l);if(\"out-in\"===i)return this._leaving=!0,yt(d,\"afterLeave\",(function(){t._leaving=!1,t.$forceUpdate()})),uo(e,r);if(\"in-out\"===i){if(Sn(a))return c;var p,h=function(){p()};yt(l,\"afterEnter\",h),yt(l,\"enterCancelled\",h),yt(d,\"delayLeave\",(function(e){p=e}))}}return r}}},go=A({tag:String,moveClass:String},so);delete go.mode;var bo={props:go,beforeMount:function(){var e=this,t=this._update;this._update=function(n,i){var r=An(e);e.__patch__(e._vnode,e.kept,!1,!0),e._vnode=e.kept,r(),t.call(e,n,i)}},render:function(e){for(var t=this.tag||this.$vnode.data.tag||\"span\",n=Object.create(null),i=this.prevChildren=this.children,r=this.$slots.default||[],a=this.children=[],o=co(this),s=0;s<r.length;s++){var l=r[s];if(l.tag)if(null!=l.key&&0!==String(l.key).indexOf(\"__vlist\"))a.push(l),n[l.key]=l,(l.data||(l.data={})).transition=o;else;}if(i){for(var c=[],u=[],d=0;d<i.length;d++){var p=i[d];p.data.transition=o,p.data.pos=p.elm.getBoundingClientRect(),n[p.key]?c.push(p):u.push(p)}this.kept=e(t,null,c),this.removed=u}return e(t,null,a)},updated:function(){var e=this.prevChildren,t=this.moveClass||(this.name||\"v\")+\"-move\";e.length&&this.hasMove(e[0].elm,t)&&(e.forEach(vo),e.forEach(Eo),e.forEach(yo),this._reflow=document.body.offsetHeight,e.forEach((function(e){if(e.data.moved){var n=e.elm,i=n.style;Ma(n,t),i.transform=i.WebkitTransform=i.transitionDuration=\"\",n.addEventListener(Ra,n._moveCb=function e(i){i&&i.target!==n||i&&!/transform$/.test(i.propertyName)||(n.removeEventListener(Ra,e),n._moveCb=null,La(n,t))})}})))},methods:{hasMove:function(e,t){if(!xa)return!1;if(this._hasMove)return this._hasMove;var n=e.cloneNode();e._transitionClasses&&e._transitionClasses.forEach((function(e){Sa(n,e)})),ya(n,t),n.style.display=\"none\",this.$el.appendChild(n);var i=Ba(n);return this.$el.removeChild(n),this._hasMove=i.hasTransform}}};function vo(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Eo(e){e.data.newPos=e.elm.getBoundingClientRect()}function yo(e){var t=e.data.pos,n=e.data.newPos,i=t.left-n.left,r=t.top-n.top;if(i||r){e.data.moved=!0;var a=e.elm.style;a.transform=a.WebkitTransform=\"translate(\"+i+\"px,\"+r+\"px)\",a.transitionDuration=\"0s\"}}var So={Transition:mo,TransitionGroup:bo};Ci.config.mustUseProp=$i,Ci.config.isReservedTag=ar,Ci.config.isReservedAttr=Bi,Ci.config.getTagNamespace=or,Ci.config.isUnknownElement=lr,A(Ci.options.directives,oo),A(Ci.options.components,So),Ci.prototype.__patch__=Q?Ka:I,Ci.prototype.$mount=function(e,t){return e=e&&Q?ur(e):void 0,Mn(this,e,t)},Q&&setTimeout((function(){G.devtools&&ce&&ce.emit(\"init\",Ci)}),0),t[\"default\"]=Ci}.call(this,n(\"c8ba\"))},\"2b22\":function(e,t){function n(e){return{name:\"FIX\",contains:[{begin:/[^\\u2401\\u0001]+/,end:/[\\u2401\\u0001]/,excludeEnd:!0,returnBegin:!0,returnEnd:!1,contains:[{begin:/([^\\u2401\\u0001=]+)/,end:/=([^\\u2401\\u0001=]+)/,returnEnd:!0,returnBegin:!1,className:\"attr\"},{begin:/=/,end:/([\\u2401\\u0001])/,excludeEnd:!0,excludeBegin:!0,className:\"string\"}]}],case_insensitive:!0}}e.exports=n},\"2b4c\":function(e,t,n){var i=n(\"5537\")(\"wks\"),r=n(\"ca5a\"),a=n(\"7726\").Symbol,o=\"function\"==typeof a,s=e.exports=function(e){return i[e]||(i[e]=o&&a[e]||(o?a:r)(\"Symbol.\"+e))};s.store=i},\"2bb5\":function(e,t,n){\"use strict\";t.__esModule=!0;n(\"8122\");t.default={mounted:function(){},methods:{getMigratingConfig:function(){return{props:{},events:{}}}}}},\"2ce7\":function(e,t){function n(e){const t=\"([ui](8|16|32|64|128|size)|f(32|64))?\",n=\"abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self Self static struct super trait true try type typeof unsafe unsized use virtual where while yield\",i=\"drop i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize f32 f64 str char bool Box Option Result String Vec Copy Send Sized Sync Drop Fn FnMut FnOnce ToOwned Clone Debug PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator SliceConcatExt ToString assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln! macro_rules! assert_ne! debug_assert_ne!\";return{name:\"Rust\",aliases:[\"rs\"],keywords:{$pattern:e.IDENT_RE+\"!?\",keyword:n,literal:\"true false Some None Ok Err\",built_in:i},illegal:\"</\",contains:[e.C_LINE_COMMENT_MODE,e.COMMENT(\"/\\\\*\",\"\\\\*/\",{contains:[\"self\"]}),e.inherit(e.QUOTE_STRING_MODE,{begin:/b?\"/,illegal:null}),{className:\"string\",variants:[{begin:/r(#*)\"(.|\\n)*?\"\\1(?!#)/},{begin:/b?'\\\\?(x\\w{2}|u\\w{4}|U\\w{8}|.)'/}]},{className:\"symbol\",begin:/'[a-zA-Z_][a-zA-Z0-9_]*/},{className:\"number\",variants:[{begin:\"\\\\b0b([01_]+)\"+t},{begin:\"\\\\b0o([0-7_]+)\"+t},{begin:\"\\\\b0x([A-Fa-f0-9_]+)\"+t},{begin:\"\\\\b(\\\\d[\\\\d_]*(\\\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)\"+t}],relevance:0},{className:\"function\",beginKeywords:\"fn\",end:\"(\\\\(|<)\",excludeEnd:!0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:\"meta\",begin:\"#!?\\\\[\",end:\"\\\\]\",contains:[{className:\"meta-string\",begin:/\"/,end:/\"/}]},{className:\"class\",beginKeywords:\"type\",end:\";\",contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{endsParent:!0})],illegal:\"\\\\S\"},{className:\"class\",beginKeywords:\"trait enum struct union\",end:/\\{/,contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{endsParent:!0})],illegal:\"[\\\\w\\\\d]\"},{begin:e.IDENT_RE+\"::\",keywords:{built_in:i}},{begin:\"->\"}]}}e.exports=n},\"2d00\":function(e,t){e.exports=!1},\"2d83\":function(e,t,n){\"use strict\";var i=n(\"387f\");e.exports=function(e,t,n,r,a){var o=new Error(e);return i(o,t,n,r,a)}},\"2d95\":function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},\"2e11\":function(e,t){const n=[\"as\",\"in\",\"of\",\"if\",\"for\",\"while\",\"finally\",\"var\",\"new\",\"function\",\"do\",\"return\",\"void\",\"else\",\"break\",\"catch\",\"instanceof\",\"with\",\"throw\",\"case\",\"default\",\"try\",\"switch\",\"continue\",\"typeof\",\"delete\",\"let\",\"yield\",\"const\",\"class\",\"debugger\",\"async\",\"await\",\"static\",\"import\",\"from\",\"export\",\"extends\"],i=[\"true\",\"false\",\"null\",\"undefined\",\"NaN\",\"Infinity\"],r=[\"Intl\",\"DataView\",\"Number\",\"Math\",\"Date\",\"String\",\"RegExp\",\"Object\",\"Function\",\"Boolean\",\"Error\",\"Symbol\",\"Set\",\"Map\",\"WeakSet\",\"WeakMap\",\"Proxy\",\"Reflect\",\"JSON\",\"Promise\",\"Float64Array\",\"Int16Array\",\"Int32Array\",\"Int8Array\",\"Uint16Array\",\"Uint32Array\",\"Float32Array\",\"Array\",\"Uint8Array\",\"Uint8ClampedArray\",\"ArrayBuffer\"],a=[\"EvalError\",\"InternalError\",\"RangeError\",\"ReferenceError\",\"SyntaxError\",\"TypeError\",\"URIError\"],o=[\"setInterval\",\"setTimeout\",\"clearInterval\",\"clearTimeout\",\"require\",\"exports\",\"eval\",\"isFinite\",\"isNaN\",\"parseFloat\",\"parseInt\",\"decodeURI\",\"decodeURIComponent\",\"encodeURI\",\"encodeURIComponent\",\"escape\",\"unescape\"],s=[\"arguments\",\"this\",\"super\",\"console\",\"window\",\"document\",\"localStorage\",\"module\",\"global\"],l=[].concat(o,s,r,a);function c(e){const t=[\"npm\",\"print\"],r=[\"yes\",\"no\",\"on\",\"off\",\"it\",\"that\",\"void\"],a=[\"then\",\"unless\",\"until\",\"loop\",\"of\",\"by\",\"when\",\"and\",\"or\",\"is\",\"isnt\",\"not\",\"it\",\"that\",\"otherwise\",\"from\",\"to\",\"til\",\"fallthrough\",\"case\",\"enum\",\"native\",\"list\",\"map\",\"__hasProp\",\"__extends\",\"__slice\",\"__bind\",\"__indexOf\"],o={keyword:n.concat(a),literal:i.concat(r),built_in:l.concat(t)},s=\"[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*\",c=e.inherit(e.TITLE_MODE,{begin:s}),u={className:\"subst\",begin:/#\\{/,end:/\\}/,keywords:o},d={className:\"subst\",begin:/#[A-Za-z$_]/,end:/(?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,keywords:o},p=[e.BINARY_NUMBER_MODE,{className:\"number\",begin:\"(\\\\b0[xX][a-fA-F0-9_]+)|(\\\\b\\\\d(\\\\d|_\\\\d)*(\\\\.(\\\\d(\\\\d|_\\\\d)*)?)?(_*[eE]([-+]\\\\d(_\\\\d|\\\\d)*)?)?[_a-z]*)\",relevance:0,starts:{end:\"(\\\\s*/)?\",relevance:0}},{className:\"string\",variants:[{begin:/'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE]},{begin:/'/,end:/'/,contains:[e.BACKSLASH_ESCAPE]},{begin:/\"\"\"/,end:/\"\"\"/,contains:[e.BACKSLASH_ESCAPE,u,d]},{begin:/\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,u,d]},{begin:/\\\\/,end:/(\\s|$)/,excludeEnd:!0}]},{className:\"regexp\",variants:[{begin:\"//\",end:\"//[gim]*\",contains:[u,e.HASH_COMMENT_MODE]},{begin:/\\/(?![ *])(\\\\.|[^\\\\\\n])*?\\/[gim]*(?=\\W)/}]},{begin:\"@\"+s},{begin:\"``\",end:\"``\",excludeBegin:!0,excludeEnd:!0,subLanguage:\"javascript\"}];u.contains=p;const h={className:\"params\",begin:\"\\\\(\",returnBegin:!0,contains:[{begin:/\\(/,end:/\\)/,keywords:o,contains:[\"self\"].concat(p)}]},f={begin:\"(#=>|=>|\\\\|>>|-?->|!->)\"};return{name:\"LiveScript\",aliases:[\"ls\"],keywords:o,illegal:/\\/\\*/,contains:p.concat([e.COMMENT(\"\\\\/\\\\*\",\"\\\\*\\\\/\"),e.HASH_COMMENT_MODE,f,{className:\"function\",contains:[c,h],returnBegin:!0,variants:[{begin:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\)\\\\s*)?\\\\B->\\\\*?\",end:\"->\\\\*?\"},{begin:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?!?(\\\\(.*\\\\)\\\\s*)?\\\\B[-~]{1,2}>\\\\*?\",end:\"[-~]{1,2}>\\\\*?\"},{begin:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\)\\\\s*)?\\\\B!?[-~]{1,2}>\\\\*?\",end:\"!?[-~]{1,2}>\\\\*?\"}]},{className:\"class\",beginKeywords:\"class\",end:\"$\",illegal:/[:=\"\\[\\]]/,contains:[{beginKeywords:\"extends\",endsWithParent:!0,illegal:/[:=\"\\[\\]]/,contains:[c]},c]},{begin:s+\":\",end:\":\",returnBegin:!0,returnEnd:!0,relevance:0}])}}e.exports=c},\"2e5d\":function(e,t){function n(e){const t=\"\\\\[\",n=\"\\\\]\";return{name:\"Inform 7\",aliases:[\"i7\"],case_insensitive:!0,keywords:{keyword:\"thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule\"},contains:[{className:\"string\",begin:'\"',end:'\"',relevance:0,contains:[{className:\"subst\",begin:t,end:n}]},{className:\"section\",begin:/^(Volume|Book|Part|Chapter|Section|Table)\\b/,end:\"$\"},{begin:/^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\\b/,end:\":\",contains:[{begin:\"\\\\(This\",end:\"\\\\)\"}]},{className:\"comment\",begin:t,end:n,contains:[\"self\"]}]}}e.exports=n},\"2e67\":function(e,t,n){\"use strict\";e.exports=function(e){return!(!e||!e.__CANCEL__)}},\"2e7b\":function(e,t){function n(e){var t=\"true false yes no null\",n=\"[\\\\w#;/?:@&=+$,.~*'()[\\\\]]+\",i={className:\"attr\",variants:[{begin:\"\\\\w[\\\\w :\\\\/.-]*:(?=[ \\t]|$)\"},{begin:'\"\\\\w[\\\\w :\\\\/.-]*\":(?=[ \\t]|$)'},{begin:\"'\\\\w[\\\\w :\\\\/.-]*':(?=[ \\t]|$)\"}]},r={className:\"template-variable\",variants:[{begin:/\\{\\{/,end:/\\}\\}/},{begin:/%\\{/,end:/\\}/}]},a={className:\"string\",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/\"/,end:/\"/},{begin:/\\S+/}],contains:[e.BACKSLASH_ESCAPE,r]},o=e.inherit(a,{variants:[{begin:/'/,end:/'/},{begin:/\"/,end:/\"/},{begin:/[^\\s,{}[\\]]+/}]}),s=\"[0-9]{4}(-[0-9][0-9]){0,2}\",l=\"([Tt \\\\t][0-9][0-9]?(:[0-9][0-9]){2})?\",c=\"(\\\\.[0-9]*)?\",u=\"([ \\\\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\",d={className:\"number\",begin:\"\\\\b\"+s+l+c+u+\"\\\\b\"},p={end:\",\",endsWithParent:!0,excludeEnd:!0,keywords:t,relevance:0},h={begin:/\\{/,end:/\\}/,contains:[p],illegal:\"\\\\n\",relevance:0},f={begin:\"\\\\[\",end:\"\\\\]\",contains:[p],illegal:\"\\\\n\",relevance:0},_=[i,{className:\"meta\",begin:\"^---\\\\s*$\",relevance:10},{className:\"string\",begin:\"[\\\\|>]([1-9]?[+-])?[ ]*\\\\n( +)[^ ][^\\\\n]*\\\\n(\\\\2[^\\\\n]+\\\\n?)*\"},{begin:\"<%[%=-]?\",end:\"[%-]?%>\",subLanguage:\"ruby\",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:\"type\",begin:\"!\\\\w+!\"+n},{className:\"type\",begin:\"!<\"+n+\">\"},{className:\"type\",begin:\"!\"+n},{className:\"type\",begin:\"!!\"+n},{className:\"meta\",begin:\"&\"+e.UNDERSCORE_IDENT_RE+\"$\"},{className:\"meta\",begin:\"\\\\*\"+e.UNDERSCORE_IDENT_RE+\"$\"},{className:\"bullet\",begin:\"-(?=[ ]|$)\",relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:t,keywords:{literal:t}},d,{className:\"number\",begin:e.C_NUMBER_RE+\"\\\\b\",relevance:0},h,f,a],m=[..._];return m.pop(),m.push(o),p.contains=m,{name:\"YAML\",case_insensitive:!0,aliases:[\"yml\",\"YAML\"],contains:_}}e.exports=n},\"2e8e\":function(e,t){function n(e){return{name:\"Protocol Buffers\",keywords:{keyword:\"package import option optional required repeated group oneof\",built_in:\"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes\",literal:\"true false\"},contains:[e.QUOTE_STRING_MODE,e.NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"class\",beginKeywords:\"message enum service\",end:/\\{/,illegal:/\\n/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]},{className:\"function\",beginKeywords:\"rpc\",end:/[{;]/,excludeEnd:!0,keywords:\"rpc returns\"},{begin:/^\\s*[A-Z_]+(?=\\s*=[^\\n]+;$)/}]}}e.exports=n},\"2e9b\":function(e,t){function n(e){return{name:\"Leaf\",contains:[{className:\"function\",begin:\"#+[A-Za-z_0-9]*\\\\(\",end:/ \\{/,returnBegin:!0,excludeEnd:!0,contains:[{className:\"keyword\",begin:\"#+\"},{className:\"title\",begin:\"[A-Za-z_][A-Za-z_0-9]*\"},{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",endsParent:!0,contains:[{className:\"string\",begin:'\"',end:'\"'},{className:\"variable\",begin:\"[A-Za-z_][A-Za-z_0-9]*\"}]}]}]}}e.exports=n},\"2f62\":function(e,t,n){\"use strict\";(function(e){\n/*!\n * vuex v3.6.0\n * (c) 2020 Evan You\n * @license MIT\n */\nfunction i(e){var t=Number(e.version.split(\".\")[0]);if(t>=2)e.mixin({beforeCreate:i});else{var n=e.prototype._init;e.prototype._init=function(e){void 0===e&&(e={}),e.init=e.init?[i].concat(e.init):i,n.call(this,e)}}function i(){var e=this.$options;e.store?this.$store=\"function\"===typeof e.store?e.store():e.store:e.parent&&e.parent.$store&&(this.$store=e.parent.$store)}}n.d(t,\"b\",(function(){return L}));var r=\"undefined\"!==typeof window?window:\"undefined\"!==typeof e?e:{},a=r.__VUE_DEVTOOLS_GLOBAL_HOOK__;function o(e){a&&(e._devtoolHook=a,a.emit(\"vuex:init\",e),a.on(\"vuex:travel-to-state\",(function(t){e.replaceState(t)})),e.subscribe((function(e,t){a.emit(\"vuex:mutation\",e,t)}),{prepend:!0}),e.subscribeAction((function(e,t){a.emit(\"vuex:action\",e,t)}),{prepend:!0}))}function s(e,t){return e.filter(t)[0]}function l(e,t){if(void 0===t&&(t=[]),null===e||\"object\"!==typeof e)return e;var n=s(t,(function(t){return t.original===e}));if(n)return n.copy;var i=Array.isArray(e)?[]:{};return t.push({original:e,copy:i}),Object.keys(e).forEach((function(n){i[n]=l(e[n],t)})),i}function c(e,t){Object.keys(e).forEach((function(n){return t(e[n],n)}))}function u(e){return null!==e&&\"object\"===typeof e}function d(e){return e&&\"function\"===typeof e.then}function p(e,t){return function(){return e(t)}}var h=function(e,t){this.runtime=t,this._children=Object.create(null),this._rawModule=e;var n=e.state;this.state=(\"function\"===typeof n?n():n)||{}},f={namespaced:{configurable:!0}};f.namespaced.get=function(){return!!this._rawModule.namespaced},h.prototype.addChild=function(e,t){this._children[e]=t},h.prototype.removeChild=function(e){delete this._children[e]},h.prototype.getChild=function(e){return this._children[e]},h.prototype.hasChild=function(e){return e in this._children},h.prototype.update=function(e){this._rawModule.namespaced=e.namespaced,e.actions&&(this._rawModule.actions=e.actions),e.mutations&&(this._rawModule.mutations=e.mutations),e.getters&&(this._rawModule.getters=e.getters)},h.prototype.forEachChild=function(e){c(this._children,e)},h.prototype.forEachGetter=function(e){this._rawModule.getters&&c(this._rawModule.getters,e)},h.prototype.forEachAction=function(e){this._rawModule.actions&&c(this._rawModule.actions,e)},h.prototype.forEachMutation=function(e){this._rawModule.mutations&&c(this._rawModule.mutations,e)},Object.defineProperties(h.prototype,f);var _=function(e){this.register([],e,!1)};function m(e,t,n){if(t.update(n),n.modules)for(var i in n.modules){if(!t.getChild(i))return void 0;m(e.concat(i),t.getChild(i),n.modules[i])}}_.prototype.get=function(e){return e.reduce((function(e,t){return e.getChild(t)}),this.root)},_.prototype.getNamespace=function(e){var t=this.root;return e.reduce((function(e,n){return t=t.getChild(n),e+(t.namespaced?n+\"/\":\"\")}),\"\")},_.prototype.update=function(e){m([],this.root,e)},_.prototype.register=function(e,t,n){var i=this;void 0===n&&(n=!0);var r=new h(t,n);if(0===e.length)this.root=r;else{var a=this.get(e.slice(0,-1));a.addChild(e[e.length-1],r)}t.modules&&c(t.modules,(function(t,r){i.register(e.concat(r),t,n)}))},_.prototype.unregister=function(e){var t=this.get(e.slice(0,-1)),n=e[e.length-1],i=t.getChild(n);i&&i.runtime&&t.removeChild(n)},_.prototype.isRegistered=function(e){var t=this.get(e.slice(0,-1)),n=e[e.length-1];return!!t&&t.hasChild(n)};var g;var b=function(e){var t=this;void 0===e&&(e={}),!g&&\"undefined\"!==typeof window&&window.Vue&&D(window.Vue);var n=e.plugins;void 0===n&&(n=[]);var i=e.strict;void 0===i&&(i=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new _(e),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new g,this._makeLocalGettersCache=Object.create(null);var r=this,a=this,s=a.dispatch,l=a.commit;this.dispatch=function(e,t){return s.call(r,e,t)},this.commit=function(e,t,n){return l.call(r,e,t,n)},this.strict=i;var c=this._modules.root.state;C(this,c,[],this._modules.root),S(this,c),n.forEach((function(e){return e(t)}));var u=void 0!==e.devtools?e.devtools:g.config.devtools;u&&o(this)},v={state:{configurable:!0}};function E(e,t,n){return t.indexOf(e)<0&&(n&&n.prepend?t.unshift(e):t.push(e)),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}function y(e,t){e._actions=Object.create(null),e._mutations=Object.create(null),e._wrappedGetters=Object.create(null),e._modulesNamespaceMap=Object.create(null);var n=e.state;C(e,n,[],e._modules.root,!0),S(e,n,t)}function S(e,t,n){var i=e._vm;e.getters={},e._makeLocalGettersCache=Object.create(null);var r=e._wrappedGetters,a={};c(r,(function(t,n){a[n]=p(t,e),Object.defineProperty(e.getters,n,{get:function(){return e._vm[n]},enumerable:!0})}));var o=g.config.silent;g.config.silent=!0,e._vm=new g({data:{$$state:t},computed:a}),g.config.silent=o,e.strict&&R(e),i&&(n&&e._withCommit((function(){i._data.$$state=null})),g.nextTick((function(){return i.$destroy()})))}function C(e,t,n,i,r){var a=!n.length,o=e._modules.getNamespace(n);if(i.namespaced&&(e._modulesNamespaceMap[o],e._modulesNamespaceMap[o]=i),!a&&!r){var s=k(t,n.slice(0,-1)),l=n[n.length-1];e._withCommit((function(){g.set(s,l,i.state)}))}var c=i.context=T(e,o,n);i.forEachMutation((function(t,n){var i=o+n;w(e,i,t,c)})),i.forEachAction((function(t,n){var i=t.root?n:o+n,r=t.handler||t;O(e,i,r,c)})),i.forEachGetter((function(t,n){var i=o+n;N(e,i,t,c)})),i.forEachChild((function(i,a){C(e,t,n.concat(a),i,r)}))}function T(e,t,n){var i=\"\"===t,r={dispatch:i?e.dispatch:function(n,i,r){var a=A(n,i,r),o=a.payload,s=a.options,l=a.type;return s&&s.root||(l=t+l),e.dispatch(l,o)},commit:i?e.commit:function(n,i,r){var a=A(n,i,r),o=a.payload,s=a.options,l=a.type;s&&s.root||(l=t+l),e.commit(l,o,s)}};return Object.defineProperties(r,{getters:{get:i?function(){return e.getters}:function(){return x(e,t)}},state:{get:function(){return k(e.state,n)}}}),r}function x(e,t){if(!e._makeLocalGettersCache[t]){var n={},i=t.length;Object.keys(e.getters).forEach((function(r){if(r.slice(0,i)===t){var a=r.slice(i);Object.defineProperty(n,a,{get:function(){return e.getters[r]},enumerable:!0})}})),e._makeLocalGettersCache[t]=n}return e._makeLocalGettersCache[t]}function w(e,t,n,i){var r=e._mutations[t]||(e._mutations[t]=[]);r.push((function(t){n.call(e,i.state,t)}))}function O(e,t,n,i){var r=e._actions[t]||(e._actions[t]=[]);r.push((function(t){var r=n.call(e,{dispatch:i.dispatch,commit:i.commit,getters:i.getters,state:i.state,rootGetters:e.getters,rootState:e.state},t);return d(r)||(r=Promise.resolve(r)),e._devtoolHook?r.catch((function(t){throw e._devtoolHook.emit(\"vuex:error\",t),t})):r}))}function N(e,t,n,i){e._wrappedGetters[t]||(e._wrappedGetters[t]=function(e){return n(i.state,i.getters,e.state,e.getters)})}function R(e){e._vm.$watch((function(){return this._data.$$state}),(function(){0}),{deep:!0,sync:!0})}function k(e,t){return t.reduce((function(e,t){return e[t]}),e)}function A(e,t,n){return u(e)&&e.type&&(n=t,t=e,e=e.type),{type:e,payload:t,options:n}}function D(e){g&&e===g||(g=e,i(g))}v.state.get=function(){return this._vm._data.$$state},v.state.set=function(e){0},b.prototype.commit=function(e,t,n){var i=this,r=A(e,t,n),a=r.type,o=r.payload,s=(r.options,{type:a,payload:o}),l=this._mutations[a];l&&(this._withCommit((function(){l.forEach((function(e){e(o)}))})),this._subscribers.slice().forEach((function(e){return e(s,i.state)})))},b.prototype.dispatch=function(e,t){var n=this,i=A(e,t),r=i.type,a=i.payload,o={type:r,payload:a},s=this._actions[r];if(s){try{this._actionSubscribers.slice().filter((function(e){return e.before})).forEach((function(e){return e.before(o,n.state)}))}catch(c){0}var l=s.length>1?Promise.all(s.map((function(e){return e(a)}))):s[0](a);return new Promise((function(e,t){l.then((function(t){try{n._actionSubscribers.filter((function(e){return e.after})).forEach((function(e){return e.after(o,n.state)}))}catch(c){0}e(t)}),(function(e){try{n._actionSubscribers.filter((function(e){return e.error})).forEach((function(t){return t.error(o,n.state,e)}))}catch(c){0}t(e)}))}))}},b.prototype.subscribe=function(e,t){return E(e,this._subscribers,t)},b.prototype.subscribeAction=function(e,t){var n=\"function\"===typeof e?{before:e}:e;return E(n,this._actionSubscribers,t)},b.prototype.watch=function(e,t,n){var i=this;return this._watcherVM.$watch((function(){return e(i.state,i.getters)}),t,n)},b.prototype.replaceState=function(e){var t=this;this._withCommit((function(){t._vm._data.$$state=e}))},b.prototype.registerModule=function(e,t,n){void 0===n&&(n={}),\"string\"===typeof e&&(e=[e]),this._modules.register(e,t),C(this,this.state,e,this._modules.get(e),n.preserveState),S(this,this.state)},b.prototype.unregisterModule=function(e){var t=this;\"string\"===typeof e&&(e=[e]),this._modules.unregister(e),this._withCommit((function(){var n=k(t.state,e.slice(0,-1));g.delete(n,e[e.length-1])})),y(this)},b.prototype.hasModule=function(e){return\"string\"===typeof e&&(e=[e]),this._modules.isRegistered(e)},b.prototype.hotUpdate=function(e){this._modules.update(e),y(this,!0)},b.prototype._withCommit=function(e){var t=this._committing;this._committing=!0,e(),this._committing=t},Object.defineProperties(b.prototype,v);var I=$((function(e,t){var n={};return B(t).forEach((function(t){var i=t.key,r=t.val;n[i]=function(){var t=this.$store.state,n=this.$store.getters;if(e){var i=j(this.$store,\"mapState\",e);if(!i)return;t=i.context.state,n=i.context.getters}return\"function\"===typeof r?r.call(this,t,n):t[r]},n[i].vuex=!0})),n})),M=$((function(e,t){var n={};return B(t).forEach((function(t){var i=t.key,r=t.val;n[i]=function(){var t=[],n=arguments.length;while(n--)t[n]=arguments[n];var i=this.$store.commit;if(e){var a=j(this.$store,\"mapMutations\",e);if(!a)return;i=a.context.commit}return\"function\"===typeof r?r.apply(this,[i].concat(t)):i.apply(this.$store,[r].concat(t))}})),n})),L=$((function(e,t){var n={};return B(t).forEach((function(t){var i=t.key,r=t.val;r=e+r,n[i]=function(){if(!e||j(this.$store,\"mapGetters\",e))return this.$store.getters[r]},n[i].vuex=!0})),n})),P=$((function(e,t){var n={};return B(t).forEach((function(t){var i=t.key,r=t.val;n[i]=function(){var t=[],n=arguments.length;while(n--)t[n]=arguments[n];var i=this.$store.dispatch;if(e){var a=j(this.$store,\"mapActions\",e);if(!a)return;i=a.context.dispatch}return\"function\"===typeof r?r.apply(this,[i].concat(t)):i.apply(this.$store,[r].concat(t))}})),n})),F=function(e){return{mapState:I.bind(null,e),mapGetters:L.bind(null,e),mapMutations:M.bind(null,e),mapActions:P.bind(null,e)}};function B(e){return U(e)?Array.isArray(e)?e.map((function(e){return{key:e,val:e}})):Object.keys(e).map((function(t){return{key:t,val:e[t]}})):[]}function U(e){return Array.isArray(e)||u(e)}function $(e){return function(t,n){return\"string\"!==typeof t?(n=t,t=\"\"):\"/\"!==t.charAt(t.length-1)&&(t+=\"/\"),e(t,n)}}function j(e,t,n){var i=e._modulesNamespaceMap[n];return i}function G(e){void 0===e&&(e={});var t=e.collapsed;void 0===t&&(t=!0);var n=e.filter;void 0===n&&(n=function(e,t,n){return!0});var i=e.transformer;void 0===i&&(i=function(e){return e});var r=e.mutationTransformer;void 0===r&&(r=function(e){return e});var a=e.actionFilter;void 0===a&&(a=function(e,t){return!0});var o=e.actionTransformer;void 0===o&&(o=function(e){return e});var s=e.logMutations;void 0===s&&(s=!0);var c=e.logActions;void 0===c&&(c=!0);var u=e.logger;return void 0===u&&(u=console),function(e){var d=l(e.state);\"undefined\"!==typeof u&&(s&&e.subscribe((function(e,a){var o=l(a);if(n(e,d,o)){var s=V(),c=r(e),p=\"mutation \"+e.type+s;q(u,p,t),u.log(\"%c prev state\",\"color: #9E9E9E; font-weight: bold\",i(d)),u.log(\"%c mutation\",\"color: #03A9F4; font-weight: bold\",c),u.log(\"%c next state\",\"color: #4CAF50; font-weight: bold\",i(o)),H(u)}d=o})),c&&e.subscribeAction((function(e,n){if(a(e,n)){var i=V(),r=o(e),s=\"action \"+e.type+i;q(u,s,t),u.log(\"%c action\",\"color: #03A9F4; font-weight: bold\",r),H(u)}})))}}function q(e,t,n){var i=n?e.groupCollapsed:e.group;try{i.call(e,t)}catch(r){e.log(t)}}function H(e){try{e.groupEnd()}catch(t){e.log(\"—— log end ——\")}}function V(){var e=new Date;return\" @ \"+Y(e.getHours(),2)+\":\"+Y(e.getMinutes(),2)+\":\"+Y(e.getSeconds(),2)+\".\"+Y(e.getMilliseconds(),3)}function z(e,t){return new Array(t+1).join(e)}function Y(e,t){return z(\"0\",t-e.toString().length)+e}var W={Store:b,install:D,version:\"3.6.0\",mapState:I,mapMutations:M,mapGetters:L,mapActions:P,createNamespacedHelpers:F,createLogger:G};t[\"a\"]=W}).call(this,n(\"c8ba\"))},\"305e\":function(e,t){function n(e){const t=\"[A-Za-z_][0-9A-Za-z_]*\",n={keyword:\"if for while var new function do return void else break\",literal:\"BackSlash DoubleQuote false ForwardSlash Infinity NaN NewLine null PI SingleQuote Tab TextFormatting true undefined\",built_in:\"Abs Acos Angle Attachments Area AreaGeodetic Asin Atan Atan2 Average Bearing Boolean Buffer BufferGeodetic Ceil Centroid Clip Console Constrain Contains Cos Count Crosses Cut Date DateAdd DateDiff Day Decode DefaultValue Dictionary Difference Disjoint Distance DistanceGeodetic Distinct DomainCode DomainName Equals Exp Extent Feature FeatureSet FeatureSetByAssociation FeatureSetById FeatureSetByPortalItem FeatureSetByRelationshipName FeatureSetByTitle FeatureSetByUrl Filter First Floor Geometry GroupBy Guid HasKey Hour IIf IndexOf Intersection Intersects IsEmpty IsNan IsSelfIntersecting Length LengthGeodetic Log Max Mean Millisecond Min Minute Month MultiPartToSinglePart Multipoint NextSequenceValue Now Number OrderBy Overlaps Point Polygon Polyline Portal Pow Random Relate Reverse RingIsClockWise Round Second SetGeometry Sin Sort Sqrt Stdev Sum SymmetricDifference Tan Text Timestamp Today ToLocal Top Touches ToUTC TrackCurrentTime TrackGeometryWindow TrackIndex TrackStartTime TrackWindow TypeOf Union UrlEncode Variance Weekday When Within Year \"},i={className:\"symbol\",begin:\"\\\\$[datastore|feature|layer|map|measure|sourcefeature|sourcelayer|targetfeature|targetlayer|value|view]+\"},r={className:\"number\",variants:[{begin:\"\\\\b(0[bB][01]+)\"},{begin:\"\\\\b(0[oO][0-7]+)\"},{begin:e.C_NUMBER_RE}],relevance:0},a={className:\"subst\",begin:\"\\\\$\\\\{\",end:\"\\\\}\",keywords:n,contains:[]},o={className:\"string\",begin:\"`\",end:\"`\",contains:[e.BACKSLASH_ESCAPE,a]};a.contains=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,o,r,e.REGEXP_MODE];const s=a.contains.concat([e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]);return{name:\"ArcGIS Arcade\",aliases:[\"arcade\"],keywords:n,contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,o,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,i,r,{begin:/[{,]\\s*/,relevance:0,contains:[{begin:t+\"\\\\s*:\",returnBegin:!0,relevance:0,contains:[{className:\"attr\",begin:t,relevance:0}]}]},{begin:\"(\"+e.RE_STARTERS_RE+\"|\\\\b(return)\\\\b)\\\\s*\",keywords:\"return\",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.REGEXP_MODE,{className:\"function\",begin:\"(\\\\(.*?\\\\)|\"+t+\")\\\\s*=>\",returnBegin:!0,end:\"\\\\s*=>\",contains:[{className:\"params\",variants:[{begin:t},{begin:/\\(\\s*\\)/},{begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:n,contains:s}]}]}],relevance:0},{className:\"function\",beginKeywords:\"function\",end:/\\{/,excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:t}),{className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,contains:s}],illegal:/\\[|%/},{begin:/\\$[(.]/}],illegal:/#(?!!)/}}e.exports=n},\"30b5\":function(e,t,n){\"use strict\";var i=n(\"c532\");function r(e){return encodeURIComponent(e).replace(/%40/gi,\"@\").replace(/%3A/gi,\":\").replace(/%24/g,\"$\").replace(/%2C/gi,\",\").replace(/%20/g,\"+\").replace(/%5B/gi,\"[\").replace(/%5D/gi,\"]\")}e.exports=function(e,t,n){if(!t)return e;var a;if(n)a=n(t);else if(i.isURLSearchParams(t))a=t.toString();else{var o=[];i.forEach(t,(function(e,t){null!==e&&\"undefined\"!==typeof e&&(i.isArray(e)?t+=\"[]\":e=[e],i.forEach(e,(function(e){i.isDate(e)?e=e.toISOString():i.isObject(e)&&(e=JSON.stringify(e)),o.push(r(t)+\"=\"+r(e))})))})),a=o.join(\"&\")}if(a){var s=e.indexOf(\"#\");-1!==s&&(e=e.slice(0,s)),e+=(-1===e.indexOf(\"?\")?\"?\":\"&\")+a}return e}},\"30f1\":function(e,t,n){\"use strict\";var i=n(\"b8e3\"),r=n(\"63b6\"),a=n(\"9138\"),o=n(\"35e8\"),s=n(\"481b\"),l=n(\"8f60\"),c=n(\"45f2\"),u=n(\"53e2\"),d=n(\"5168\")(\"iterator\"),p=!([].keys&&\"next\"in[].keys()),h=\"@@iterator\",f=\"keys\",_=\"values\",m=function(){return this};e.exports=function(e,t,n,g,b,v,E){l(n,t,g);var y,S,C,T=function(e){if(!p&&e in N)return N[e];switch(e){case f:return function(){return new n(this,e)};case _:return function(){return new n(this,e)}}return function(){return new n(this,e)}},x=t+\" Iterator\",w=b==_,O=!1,N=e.prototype,R=N[d]||N[h]||b&&N[b],k=R||T(b),A=b?w?T(\"entries\"):k:void 0,D=\"Array\"==t&&N.entries||R;if(D&&(C=u(D.call(new e)),C!==Object.prototype&&C.next&&(c(C,x,!0),i||\"function\"==typeof C[d]||o(C,d,m))),w&&R&&R.name!==_&&(O=!0,k=function(){return R.call(this)}),i&&!E||!p&&!O&&N[d]||o(N,d,k),s[t]=k,s[x]=m,b)if(y={values:w?k:T(_),keys:v?k:T(f),entries:A},E)for(S in y)S in N||a(N,S,y[S]);else r(r.P+r.F*(p||O),t,y);return y}},\"310f\":function(e,t){function n(e){const t=\"\\\\d(_|\\\\d)*\",n=\"[eE][-+]?\"+t,i=t+\"(\\\\.\"+t+\")?(\"+n+\")?\",r=\"\\\\w+\",a=t+\"#\"+r+\"(\\\\.\"+r+\")?#(\"+n+\")?\",o=\"\\\\b(\"+a+\"|\"+i+\")\";return{name:\"VHDL\",case_insensitive:!0,keywords:{keyword:\"abs access after alias all and architecture array assert assume assume_guarantee attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package parameter port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable view vmode vprop vunit wait when while with xnor xor\",built_in:\"boolean bit character integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_logic std_logic_vector unsigned signed boolean_vector integer_vector std_ulogic std_ulogic_vector unresolved_unsigned u_unsigned unresolved_signed u_signed real_vector time_vector\",literal:\"false true note warning error failure line text side width\"},illegal:/\\{/,contains:[e.C_BLOCK_COMMENT_MODE,e.COMMENT(\"--\",\"$\"),e.QUOTE_STRING_MODE,{className:\"number\",begin:o,relevance:0},{className:\"string\",begin:\"'(U|X|0|1|Z|W|L|H|-)'\",contains:[e.BACKSLASH_ESCAPE]},{className:\"symbol\",begin:\"'[A-Za-z](_?[A-Za-z0-9])*\",contains:[e.BACKSLASH_ESCAPE]}]}}e.exports=n},\"31f4\":function(e,t){e.exports=function(e,t,n){var i=void 0===n;switch(t.length){case 0:return i?e():e.call(n);case 1:return i?e(t[0]):e.call(n,t[0]);case 2:return i?e(t[0],t[1]):e.call(n,t[0],t[1]);case 3:return i?e(t[0],t[1],t[2]):e.call(n,t[0],t[1],t[2]);case 4:return i?e(t[0],t[1],t[2],t[3]):e.call(n,t[0],t[1],t[2],t[3])}return e.apply(n,t)}},\"32e9\":function(e,t,n){var i=n(\"86cc\"),r=n(\"4630\");e.exports=n(\"9e1e\")?function(e,t,n){return i.f(e,t,r(1,n))}:function(e,t,n){return e[t]=n,e}},\"32fc\":function(e,t,n){var i=n(\"e53d\").document;e.exports=i&&i.documentElement},\"332f\":function(e,t){var n=\"[0-9](_*[0-9])*\",i=`\\\\.(${n})`,r=\"[0-9a-fA-F](_*[0-9a-fA-F])*\",a={className:\"number\",variants:[{begin:`(\\\\b(${n})((${i})|\\\\.)?|(${i}))[eE][+-]?(${n})[fFdD]?\\\\b`},{begin:`\\\\b(${n})((${i})[fFdD]?\\\\b|\\\\.([fFdD]\\\\b)?)`},{begin:`(${i})[fFdD]?\\\\b`},{begin:`\\\\b(${n})[fFdD]\\\\b`},{begin:`\\\\b0[xX]((${r})\\\\.?|(${r})?\\\\.(${r}))[pP][+-]?(${n})[fFdD]?\\\\b`},{begin:\"\\\\b(0|[1-9](_*[0-9])*)[lL]?\\\\b\"},{begin:`\\\\b0[xX](${r})[lL]?\\\\b`},{begin:\"\\\\b0(_*[0-7])*[lL]?\\\\b\"},{begin:\"\\\\b0[bB][01](_*[01])*[lL]?\\\\b\"}],relevance:0};function o(e){var t=\"[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*\",n=t+\"(<\"+t+\"(\\\\s*,\\\\s*\"+t+\")*>)?\",i=\"false synchronized int abstract float private char boolean var 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 do\",r={className:\"meta\",begin:\"@\"+t,contains:[{begin:/\\(/,end:/\\)/,contains:[\"self\"]}]};const o=a;return{name:\"Java\",aliases:[\"jsp\"],keywords:i,illegal:/<\\/|#/,contains:[e.COMMENT(\"/\\\\*\\\\*\",\"\\\\*/\",{relevance:0,contains:[{begin:/\\w+@/,relevance:0},{className:\"doctag\",begin:\"@[A-Za-z]+\"}]}),{begin:/import java\\.[a-z]+\\./,keywords:\"import\",relevance:2},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:\"class\",beginKeywords:\"class interface enum\",end:/[{;=]/,excludeEnd:!0,relevance:1,keywords:\"class interface enum\",illegal:/[:\"\\[\\]]/,contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:\"new throw return else\",relevance:0},{className:\"class\",begin:\"record\\\\s+\"+e.UNDERSCORE_IDENT_RE+\"\\\\s*\\\\(\",returnBegin:!0,excludeEnd:!0,end:/[{;=]/,keywords:i,contains:[{beginKeywords:\"record\"},{begin:e.UNDERSCORE_IDENT_RE+\"\\\\s*\\\\(\",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:\"params\",begin:/\\(/,end:/\\)/,keywords:i,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:\"function\",begin:\"(\"+n+\"\\\\s+)+\"+e.UNDERSCORE_IDENT_RE+\"\\\\s*\\\\(\",returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:i,contains:[{begin:e.UNDERSCORE_IDENT_RE+\"\\\\s*\\\\(\",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:\"params\",begin:/\\(/,end:/\\)/,keywords:i,relevance:0,contains:[r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,o,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},o,r]}}e.exports=o},\"335c\":function(e,t,n){var i=n(\"6b4c\");e.exports=Object(\"z\").propertyIsEnumerable(0)?Object:function(e){return\"String\"==i(e)?e.split(\"\"):Object(e)}},\"33a4\":function(e,t,n){var i=n(\"84f2\"),r=n(\"2b4c\")(\"iterator\"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(i.Array===e||a[r]===e)}},\"351a\":function(e,t){function n(e){return{name:\"Gherkin\",aliases:[\"feature\"],keywords:\"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When\",contains:[{className:\"symbol\",begin:\"\\\\*\",relevance:0},{className:\"meta\",begin:\"@[^@\\\\s]+\"},{begin:\"\\\\|\",end:\"\\\\|\\\\w*$\",contains:[{className:\"string\",begin:\"[^|]+\"}]},{className:\"variable\",begin:\"<\",end:\">\"},e.HASH_COMMENT_MODE,{className:\"string\",begin:'\"\"\"',end:'\"\"\"'},e.QUOTE_STRING_MODE]}}e.exports=n},\"355d\":function(e,t){t.f={}.propertyIsEnumerable},\"35e8\":function(e,t,n){var i=n(\"d9f6\"),r=n(\"aebd\");e.exports=n(\"8e60\")?function(e,t,n){return i.f(e,t,r(1,n))}:function(e,t,n){return e[t]=n,e}},\"36c3\":function(e,t,n){var i=n(\"335c\"),r=n(\"25eb\");e.exports=function(e){return i(r(e))}},3728:function(e,t){function n(e){const t=e.COMMENT(/\\{/,/\\}/,{contains:[\"self\"]});return{name:\"Parser3\",subLanguage:\"xml\",relevance:0,contains:[e.COMMENT(\"^#\",\"$\"),e.COMMENT(/\\^rem\\{/,/\\}/,{relevance:10,contains:[t]}),{className:\"meta\",begin:\"^@(?:BASE|USE|CLASS|OPTIONS)$\",relevance:10},{className:\"title\",begin:\"@[\\\\w\\\\-]+\\\\[[\\\\w^;\\\\-]*\\\\](?:\\\\[[\\\\w^;\\\\-]*\\\\])?(?:.*)$\"},{className:\"variable\",begin:/\\$\\{?[\\w\\-.:]+\\}?/},{className:\"keyword\",begin:/\\^[\\w\\-.:]+/},{className:\"number\",begin:\"\\\\^#[0-9a-fA-F]+\"},e.C_NUMBER_MODE]}}e.exports=n},\"387f\":function(e,t,n){\"use strict\";e.exports=function(e,t,n,i,r){return e.config=t,n&&(e.code=n),e.request=i,e.response=r,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},e}},\"38fd\":function(e,t,n){var i=n(\"69a8\"),r=n(\"4bf8\"),a=n(\"613b\")(\"IE_PROTO\"),o=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=r(e),i(e,a)?e[a]:\"function\"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?o:null}},3934:function(e,t,n){\"use strict\";var i=n(\"c532\");e.exports=i.isStandardBrowserEnv()?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement(\"a\");function r(e){var i=e;return t&&(n.setAttribute(\"href\",i),i=n.href),n.setAttribute(\"href\",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,\"\"):\"\",host:n.host,search:n.search?n.search.replace(/^\\?/,\"\"):\"\",hash:n.hash?n.hash.replace(/^#/,\"\"):\"\",hostname:n.hostname,port:n.port,pathname:\"/\"===n.pathname.charAt(0)?n.pathname:\"/\"+n.pathname}}return e=r(window.location.href),function(t){var n=i.isString(t)?r(t):t;return n.protocol===e.protocol&&n.host===e.host}}():function(){return function(){return!0}}()},\"399d\":function(e,t){function n(e){const t=\"if then else elseif for thru do while unless step in and or not\",n=\"true false unknown inf minf ind und %e %i %pi %phi %gamma\",i=\" abasep abs absint absolute_real_time acos acosh acot acoth acsc acsch activate addcol add_edge add_edges addmatrices addrow add_vertex add_vertices adjacency_matrix adjoin adjoint af agd airy airy_ai airy_bi airy_dai airy_dbi algsys alg_type alias allroots alphacharp alphanumericp amortization %and annuity_fv annuity_pv antid antidiff AntiDifference append appendfile apply apply1 apply2 applyb1 apropos args arit_amortization arithmetic arithsum array arrayapply arrayinfo arraymake arraysetapply ascii asec asech asin asinh askinteger asksign assoc assoc_legendre_p assoc_legendre_q assume assume_external_byte_order asympa at atan atan2 atanh atensimp atom atvalue augcoefmatrix augmented_lagrangian_method av average_degree backtrace bars barsplot barsplot_description base64 base64_decode bashindices batch batchload bc2 bdvac belln benefit_cost bern bernpoly bernstein_approx bernstein_expand bernstein_poly bessel bessel_i bessel_j bessel_k bessel_simplify bessel_y beta beta_incomplete beta_incomplete_generalized beta_incomplete_regularized bezout bfallroots bffac bf_find_root bf_fmin_cobyla bfhzeta bfloat bfloatp bfpsi bfpsi0 bfzeta biconnected_components bimetric binomial bipartition block blockmatrixp bode_gain bode_phase bothcoef box boxplot boxplot_description break bug_report build_info|10 buildq build_sample burn cabs canform canten cardinality carg cartan cartesian_product catch cauchy_matrix cbffac cdf_bernoulli cdf_beta cdf_binomial cdf_cauchy cdf_chi2 cdf_continuous_uniform cdf_discrete_uniform cdf_exp cdf_f cdf_gamma cdf_general_finite_discrete cdf_geometric cdf_gumbel cdf_hypergeometric cdf_laplace cdf_logistic cdf_lognormal cdf_negative_binomial cdf_noncentral_chi2 cdf_noncentral_student_t cdf_normal cdf_pareto cdf_poisson cdf_rank_sum cdf_rayleigh cdf_signed_rank cdf_student_t cdf_weibull cdisplay ceiling central_moment cequal cequalignore cf cfdisrep cfexpand cgeodesic cgreaterp cgreaterpignore changename changevar chaosgame charat charfun charfun2 charlist charp charpoly chdir chebyshev_t chebyshev_u checkdiv check_overlaps chinese cholesky christof chromatic_index chromatic_number cint circulant_graph clear_edge_weight clear_rules clear_vertex_label clebsch_gordan clebsch_graph clessp clesspignore close closefile cmetric coeff coefmatrix cograd col collapse collectterms columnop columnspace columnswap columnvector combination combine comp2pui compare compfile compile compile_file complement_graph complete_bipartite_graph complete_graph complex_number_p components compose_functions concan concat conjugate conmetderiv connected_components connect_vertices cons constant constantp constituent constvalue cont2part content continuous_freq contortion contour_plot contract contract_edge contragrad contrib_ode convert coord copy copy_file copy_graph copylist copymatrix cor cos cosh cot coth cov cov1 covdiff covect covers crc24sum create_graph create_list csc csch csetup cspline ctaylor ct_coordsys ctransform ctranspose cube_graph cuboctahedron_graph cunlisp cv cycle_digraph cycle_graph cylindrical days360 dblint deactivate declare declare_constvalue declare_dimensions declare_fundamental_dimensions declare_fundamental_units declare_qty declare_translated declare_unit_conversion declare_units declare_weights decsym defcon define define_alt_display define_variable defint defmatch defrule defstruct deftaylor degree_sequence del delete deleten delta demo demoivre denom depends derivdegree derivlist describe desolve determinant dfloat dgauss_a dgauss_b dgeev dgemm dgeqrf dgesv dgesvd diag diagmatrix diag_matrix diagmatrixp diameter diff digitcharp dimacs_export dimacs_import dimension dimensionless dimensions dimensions_as_list direct directory discrete_freq disjoin disjointp disolate disp dispcon dispform dispfun dispJordan display disprule dispterms distrib divide divisors divsum dkummer_m dkummer_u dlange dodecahedron_graph dotproduct dotsimp dpart draw draw2d draw3d drawdf draw_file draw_graph dscalar echelon edge_coloring edge_connectivity edges eigens_by_jacobi eigenvalues eigenvectors eighth einstein eivals eivects elapsed_real_time elapsed_run_time ele2comp ele2polynome ele2pui elem elementp elevation_grid elim elim_allbut eliminate eliminate_using ellipse elliptic_e elliptic_ec elliptic_eu elliptic_f elliptic_kc elliptic_pi ematrix empty_graph emptyp endcons entermatrix entertensor entier equal equalp equiv_classes erf erfc erf_generalized erfi errcatch error errormsg errors euler ev eval_string evenp every evolution evolution2d evundiff example exp expand expandwrt expandwrt_factored expint expintegral_chi expintegral_ci expintegral_e expintegral_e1 expintegral_ei expintegral_e_simplify expintegral_li expintegral_shi expintegral_si explicit explose exponentialize express expt exsec extdiff extract_linear_equations extremal_subset ezgcd %f f90 facsum factcomb factor factorfacsum factorial factorout factorsum facts fast_central_elements fast_linsolve fasttimes featurep fernfale fft fib fibtophi fifth filename_merge file_search file_type fillarray findde find_root find_root_abs find_root_error find_root_rel first fix flatten flength float floatnump floor flower_snark flush flush1deriv flushd flushnd flush_output fmin_cobyla forget fortran fourcos fourexpand fourier fourier_elim fourint fourintcos fourintsin foursimp foursin fourth fposition frame_bracket freeof freshline fresnel_c fresnel_s from_adjacency_matrix frucht_graph full_listify fullmap fullmapl fullratsimp fullratsubst fullsetify funcsolve fundamental_dimensions fundamental_units fundef funmake funp fv g0 g1 gamma gamma_greek gamma_incomplete gamma_incomplete_generalized gamma_incomplete_regularized gauss gauss_a gauss_b gaussprob gcd gcdex gcdivide gcfac gcfactor gd generalized_lambert_w genfact gen_laguerre genmatrix gensym geo_amortization geo_annuity_fv geo_annuity_pv geomap geometric geometric_mean geosum get getcurrentdirectory get_edge_weight getenv get_lu_factors get_output_stream_string get_pixel get_plot_option get_tex_environment get_tex_environment_default get_vertex_label gfactor gfactorsum ggf girth global_variances gn gnuplot_close gnuplot_replot gnuplot_reset gnuplot_restart gnuplot_start go Gosper GosperSum gr2d gr3d gradef gramschmidt graph6_decode graph6_encode graph6_export graph6_import graph_center graph_charpoly graph_eigenvalues graph_flow graph_order graph_periphery graph_product graph_size graph_union great_rhombicosidodecahedron_graph great_rhombicuboctahedron_graph grid_graph grind grobner_basis grotzch_graph hamilton_cycle hamilton_path hankel hankel_1 hankel_2 harmonic harmonic_mean hav heawood_graph hermite hessian hgfred hilbertmap hilbert_matrix hipow histogram histogram_description hodge horner hypergeometric i0 i1 %ibes ic1 ic2 ic_convert ichr1 ichr2 icosahedron_graph icosidodecahedron_graph icurvature ident identfor identity idiff idim idummy ieqn %if ifactors iframes ifs igcdex igeodesic_coords ilt image imagpart imetric implicit implicit_derivative implicit_plot indexed_tensor indices induced_subgraph inferencep inference_result infix info_display init_atensor init_ctensor in_neighbors innerproduct inpart inprod inrt integerp integer_partitions integrate intersect intersection intervalp intopois intosum invariant1 invariant2 inverse_fft inverse_jacobi_cd inverse_jacobi_cn inverse_jacobi_cs inverse_jacobi_dc inverse_jacobi_dn inverse_jacobi_ds inverse_jacobi_nc inverse_jacobi_nd inverse_jacobi_ns inverse_jacobi_sc inverse_jacobi_sd inverse_jacobi_sn invert invert_by_adjoint invert_by_lu inv_mod irr is is_biconnected is_bipartite is_connected is_digraph is_edge_in_graph is_graph is_graph_or_digraph ishow is_isomorphic isolate isomorphism is_planar isqrt isreal_p is_sconnected is_tree is_vertex_in_graph items_inference %j j0 j1 jacobi jacobian jacobi_cd jacobi_cn jacobi_cs jacobi_dc jacobi_dn jacobi_ds jacobi_nc jacobi_nd jacobi_ns jacobi_p jacobi_sc jacobi_sd jacobi_sn JF jn join jordan julia julia_set julia_sin %k kdels kdelta kill killcontext kostka kron_delta kronecker_product kummer_m kummer_u kurtosis kurtosis_bernoulli kurtosis_beta kurtosis_binomial kurtosis_chi2 kurtosis_continuous_uniform kurtosis_discrete_uniform kurtosis_exp kurtosis_f kurtosis_gamma kurtosis_general_finite_discrete kurtosis_geometric kurtosis_gumbel kurtosis_hypergeometric kurtosis_laplace kurtosis_logistic kurtosis_lognormal kurtosis_negative_binomial kurtosis_noncentral_chi2 kurtosis_noncentral_student_t kurtosis_normal kurtosis_pareto kurtosis_poisson kurtosis_rayleigh kurtosis_student_t kurtosis_weibull label labels lagrange laguerre lambda lambert_w laplace laplacian_matrix last lbfgs lc2kdt lcharp lc_l lcm lc_u ldefint ldisp ldisplay legendre_p legendre_q leinstein length let letrules letsimp levi_civita lfreeof lgtreillis lhs li liediff limit Lindstedt linear linearinterpol linear_program linear_regression line_graph linsolve listarray list_correlations listify list_matrix_entries list_nc_monomials listoftens listofvars listp lmax lmin load loadfile local locate_matrix_entry log logcontract log_gamma lopow lorentz_gauge lowercasep lpart lratsubst lreduce lriemann lsquares_estimates lsquares_estimates_approximate lsquares_estimates_exact lsquares_mse lsquares_residual_mse lsquares_residuals lsum ltreillis lu_backsub lucas lu_factor %m macroexpand macroexpand1 make_array makebox makefact makegamma make_graph make_level_picture makelist makeOrders make_poly_continent make_poly_country make_polygon make_random_state make_rgb_picture makeset make_string_input_stream make_string_output_stream make_transform mandelbrot mandelbrot_set map mapatom maplist matchdeclare matchfix mat_cond mat_fullunblocker mat_function mathml_display mat_norm matrix matrixmap matrixp matrix_size mattrace mat_trace mat_unblocker max max_clique max_degree max_flow maximize_lp max_independent_set max_matching maybe md5sum mean mean_bernoulli mean_beta mean_binomial mean_chi2 mean_continuous_uniform mean_deviation mean_discrete_uniform mean_exp mean_f mean_gamma mean_general_finite_discrete mean_geometric mean_gumbel mean_hypergeometric mean_laplace mean_logistic mean_lognormal mean_negative_binomial mean_noncentral_chi2 mean_noncentral_student_t mean_normal mean_pareto mean_poisson mean_rayleigh mean_student_t mean_weibull median median_deviation member mesh metricexpandall mgf1_sha1 min min_degree min_edge_cut minfactorial minimalPoly minimize_lp minimum_spanning_tree minor minpack_lsquares minpack_solve min_vertex_cover min_vertex_cut mkdir mnewton mod mode_declare mode_identity ModeMatrix moebius mon2schur mono monomial_dimensions multibernstein_poly multi_display_for_texinfo multi_elem multinomial multinomial_coeff multi_orbit multiplot_mode multi_pui multsym multthru mycielski_graph nary natural_unit nc_degree ncexpt ncharpoly negative_picture neighbors new newcontext newdet new_graph newline newton new_variable next_prime nicedummies niceindices ninth nofix nonarray noncentral_moment nonmetricity nonnegintegerp nonscalarp nonzeroandfreeof notequal nounify nptetrad npv nroots nterms ntermst nthroot nullity nullspace num numbered_boundaries numberp number_to_octets num_distinct_partitions numerval numfactor num_partitions nusum nzeta nzetai nzetar octets_to_number octets_to_oid odd_girth oddp ode2 ode_check odelin oid_to_octets op opena opena_binary openr openr_binary openw openw_binary operatorp opsubst optimize %or orbit orbits ordergreat ordergreatp orderless orderlessp orthogonal_complement orthopoly_recur orthopoly_weight outermap out_neighbors outofpois pade parabolic_cylinder_d parametric parametric_surface parg parGosper parse_string parse_timedate part part2cont partfrac partition partition_set partpol path_digraph path_graph pathname_directory pathname_name pathname_type pdf_bernoulli pdf_beta pdf_binomial pdf_cauchy pdf_chi2 pdf_continuous_uniform pdf_discrete_uniform pdf_exp pdf_f pdf_gamma pdf_general_finite_discrete pdf_geometric pdf_gumbel pdf_hypergeometric pdf_laplace pdf_logistic pdf_lognormal pdf_negative_binomial pdf_noncentral_chi2 pdf_noncentral_student_t pdf_normal pdf_pareto pdf_poisson pdf_rank_sum pdf_rayleigh pdf_signed_rank pdf_student_t pdf_weibull pearson_skewness permanent permut permutation permutations petersen_graph petrov pickapart picture_equalp picturep piechart piechart_description planar_embedding playback plog plot2d plot3d plotdf ploteq plsquares pochhammer points poisdiff poisexpt poisint poismap poisplus poissimp poissubst poistimes poistrim polar polarform polartorect polar_to_xy poly_add poly_buchberger poly_buchberger_criterion poly_colon_ideal poly_content polydecomp poly_depends_p poly_elimination_ideal poly_exact_divide poly_expand poly_expt poly_gcd polygon poly_grobner poly_grobner_equal poly_grobner_member poly_grobner_subsetp poly_ideal_intersection poly_ideal_polysaturation poly_ideal_polysaturation1 poly_ideal_saturation poly_ideal_saturation1 poly_lcm poly_minimization polymod poly_multiply polynome2ele polynomialp poly_normal_form poly_normalize poly_normalize_list poly_polysaturation_extension poly_primitive_part poly_pseudo_divide poly_reduced_grobner poly_reduction poly_saturation_extension poly_s_polynomial poly_subtract polytocompanion pop postfix potential power_mod powerseries powerset prefix prev_prime primep primes principal_components print printf printfile print_graph printpois printprops prodrac product properties propvars psi psubst ptriangularize pui pui2comp pui2ele pui2polynome pui_direct puireduc push put pv qput qrange qty quad_control quad_qag quad_qagi quad_qagp quad_qags quad_qawc quad_qawf quad_qawo quad_qaws quadrilateral quantile quantile_bernoulli quantile_beta quantile_binomial quantile_cauchy quantile_chi2 quantile_continuous_uniform quantile_discrete_uniform quantile_exp quantile_f quantile_gamma quantile_general_finite_discrete quantile_geometric quantile_gumbel quantile_hypergeometric quantile_laplace quantile_logistic quantile_lognormal quantile_negative_binomial quantile_noncentral_chi2 quantile_noncentral_student_t quantile_normal quantile_pareto quantile_poisson quantile_rayleigh quantile_student_t quantile_weibull quartile_skewness quit qunit quotient racah_v racah_w radcan radius random random_bernoulli random_beta random_binomial random_bipartite_graph random_cauchy random_chi2 random_continuous_uniform random_digraph random_discrete_uniform random_exp random_f random_gamma random_general_finite_discrete random_geometric random_graph random_graph1 random_gumbel random_hypergeometric random_laplace random_logistic random_lognormal random_negative_binomial random_network random_noncentral_chi2 random_noncentral_student_t random_normal random_pareto random_permutation random_poisson random_rayleigh random_regular_graph random_student_t random_tournament random_tree random_weibull range rank rat ratcoef ratdenom ratdiff ratdisrep ratexpand ratinterpol rational rationalize ratnumer ratnump ratp ratsimp ratsubst ratvars ratweight read read_array read_binary_array read_binary_list read_binary_matrix readbyte readchar read_hashed_array readline read_list read_matrix read_nested_list readonly read_xpm real_imagpart_to_conjugate realpart realroots rearray rectangle rectform rectform_log_if_constant recttopolar rediff reduce_consts reduce_order region region_boundaries region_boundaries_plus rem remainder remarray rembox remcomps remcon remcoord remfun remfunction remlet remove remove_constvalue remove_dimensions remove_edge remove_fundamental_dimensions remove_fundamental_units remove_plot_option remove_vertex rempart remrule remsym remvalue rename rename_file reset reset_displays residue resolvante resolvante_alternee1 resolvante_bipartite resolvante_diedrale resolvante_klein resolvante_klein3 resolvante_produit_sym resolvante_unitaire resolvante_vierer rest resultant return reveal reverse revert revert2 rgb2level rhs ricci riemann rinvariant risch rk rmdir rncombine romberg room rootscontract round row rowop rowswap rreduce run_testsuite %s save saving scalarp scaled_bessel_i scaled_bessel_i0 scaled_bessel_i1 scalefactors scanmap scatterplot scatterplot_description scene schur2comp sconcat scopy scsimp scurvature sdowncase sec sech second sequal sequalignore set_alt_display setdifference set_draw_defaults set_edge_weight setelmx setequalp setify setp set_partitions set_plot_option set_prompt set_random_state set_tex_environment set_tex_environment_default setunits setup_autoload set_up_dot_simplifications set_vertex_label seventh sexplode sf sha1sum sha256sum shortest_path shortest_weighted_path show showcomps showratvars sierpinskiale sierpinskimap sign signum similaritytransform simp_inequality simplify_sum simplode simpmetderiv simtran sin sinh sinsert sinvertcase sixth skewness skewness_bernoulli skewness_beta skewness_binomial skewness_chi2 skewness_continuous_uniform skewness_discrete_uniform skewness_exp skewness_f skewness_gamma skewness_general_finite_discrete skewness_geometric skewness_gumbel skewness_hypergeometric skewness_laplace skewness_logistic skewness_lognormal skewness_negative_binomial skewness_noncentral_chi2 skewness_noncentral_student_t skewness_normal skewness_pareto skewness_poisson skewness_rayleigh skewness_student_t skewness_weibull slength smake small_rhombicosidodecahedron_graph small_rhombicuboctahedron_graph smax smin smismatch snowmap snub_cube_graph snub_dodecahedron_graph solve solve_rec solve_rec_rat some somrac sort sparse6_decode sparse6_encode sparse6_export sparse6_import specint spherical spherical_bessel_j spherical_bessel_y spherical_hankel1 spherical_hankel2 spherical_harmonic spherical_to_xyz splice split sposition sprint sqfr sqrt sqrtdenest sremove sremovefirst sreverse ssearch ssort sstatus ssubst ssubstfirst staircase standardize standardize_inverse_trig starplot starplot_description status std std1 std_bernoulli std_beta std_binomial std_chi2 std_continuous_uniform std_discrete_uniform std_exp std_f std_gamma std_general_finite_discrete std_geometric std_gumbel std_hypergeometric std_laplace std_logistic std_lognormal std_negative_binomial std_noncentral_chi2 std_noncentral_student_t std_normal std_pareto std_poisson std_rayleigh std_student_t std_weibull stemplot stirling stirling1 stirling2 strim striml strimr string stringout stringp strong_components struve_h struve_l sublis sublist sublist_indices submatrix subsample subset subsetp subst substinpart subst_parallel substpart substring subvar subvarp sum sumcontract summand_to_rec supcase supcontext symbolp symmdifference symmetricp system take_channel take_inference tan tanh taylor taylorinfo taylorp taylor_simplifier taytorat tcl_output tcontract tellrat tellsimp tellsimpafter tentex tenth test_mean test_means_difference test_normality test_proportion test_proportions_difference test_rank_sum test_sign test_signed_rank test_variance test_variance_ratio tex tex1 tex_display texput %th third throw time timedate timer timer_info tldefint tlimit todd_coxeter toeplitz tokens to_lisp topological_sort to_poly to_poly_solve totaldisrep totalfourier totient tpartpol trace tracematrix trace_options transform_sample translate translate_file transpose treefale tree_reduce treillis treinat triangle triangularize trigexpand trigrat trigreduce trigsimp trunc truncate truncated_cube_graph truncated_dodecahedron_graph truncated_icosahedron_graph truncated_tetrahedron_graph tr_warnings_get tube tutte_graph ueivects uforget ultraspherical underlying_graph undiff union unique uniteigenvectors unitp units unit_step unitvector unorder unsum untellrat untimer untrace uppercasep uricci uriemann uvect vandermonde_matrix var var1 var_bernoulli var_beta var_binomial var_chi2 var_continuous_uniform var_discrete_uniform var_exp var_f var_gamma var_general_finite_discrete var_geometric var_gumbel var_hypergeometric var_laplace var_logistic var_lognormal var_negative_binomial var_noncentral_chi2 var_noncentral_student_t var_normal var_pareto var_poisson var_rayleigh var_student_t var_weibull vector vectorpotential vectorsimp verbify vers vertex_coloring vertex_connectivity vertex_degree vertex_distance vertex_eccentricity vertex_in_degree vertex_out_degree vertices vertices_to_cycle vertices_to_path %w weyl wheel_graph wiener_index wigner_3j wigner_6j wigner_9j with_stdout write_binary_data writebyte write_data writefile wronskian xreduce xthru %y Zeilberger zeroequiv zerofor zeromatrix zeromatrixp zeta zgeev zheev zlange zn_add_table zn_carmichael_lambda zn_characteristic_factors zn_determinant zn_factor_generators zn_invert_by_lu zn_log zn_mult_table absboxchar activecontexts adapt_depth additive adim aform algebraic algepsilon algexact aliases allbut all_dotsimp_denoms allocation allsym alphabetic animation antisymmetric arrays askexp assume_pos assume_pos_pred assumescalar asymbol atomgrad atrig1 axes axis_3d axis_bottom axis_left axis_right axis_top azimuth background background_color backsubst berlefact bernstein_explicit besselexpand beta_args_sum_to_integer beta_expand bftorat bftrunc bindtest border boundaries_array box boxchar breakup %c capping cauchysum cbrange cbtics center cflength cframe_flag cnonmet_flag color color_bar color_bar_tics colorbox columns commutative complex cone context contexts contour contour_levels cosnpiflag ctaypov ctaypt ctayswitch ctayvar ct_coords ctorsion_flag ctrgsimp cube current_let_rule_package cylinder data_file_name debugmode decreasing default_let_rule_package delay dependencies derivabbrev derivsubst detout diagmetric diff dim dimensions dispflag display2d|10 display_format_internal distribute_over doallmxops domain domxexpt domxmxops domxnctimes dontfactor doscmxops doscmxplus dot0nscsimp dot0simp dot1simp dotassoc dotconstrules dotdistrib dotexptsimp dotident dotscrules draw_graph_program draw_realpart edge_color edge_coloring edge_partition edge_type edge_width %edispflag elevation %emode endphi endtheta engineering_format_floats enhanced3d %enumer epsilon_lp erfflag erf_representation errormsg error_size error_syms error_type %e_to_numlog eval even evenfun evflag evfun ev_point expandwrt_denom expintexpand expintrep expon expop exptdispflag exptisolate exptsubst facexpand facsum_combine factlim factorflag factorial_expand factors_only fb feature features file_name file_output_append file_search_demo file_search_lisp file_search_maxima|10 file_search_tests file_search_usage file_type_lisp file_type_maxima|10 fill_color fill_density filled_func fixed_vertices flipflag float2bf font font_size fortindent fortspaces fpprec fpprintprec functions gamma_expand gammalim gdet genindex gensumnum GGFCFMAX GGFINFINITY globalsolve gnuplot_command gnuplot_curve_styles gnuplot_curve_titles gnuplot_default_term_command gnuplot_dumb_term_command gnuplot_file_args gnuplot_file_name gnuplot_out_file gnuplot_pdf_term_command gnuplot_pm3d gnuplot_png_term_command gnuplot_postamble gnuplot_preamble gnuplot_ps_term_command gnuplot_svg_term_command gnuplot_term gnuplot_view_args Gosper_in_Zeilberger gradefs grid grid2d grind halfangles head_angle head_both head_length head_type height hypergeometric_representation %iargs ibase icc1 icc2 icounter idummyx ieqnprint ifb ifc1 ifc2 ifg ifgi ifr iframe_bracket_form ifri igeowedge_flag ikt1 ikt2 imaginary inchar increasing infeval infinity inflag infolists inm inmc1 inmc2 intanalysis integer integervalued integrate_use_rootsof integration_constant integration_constant_counter interpolate_color intfaclim ip_grid ip_grid_in irrational isolate_wrt_times iterations itr julia_parameter %k1 %k2 keepfloat key key_pos kinvariant kt label label_alignment label_orientation labels lassociative lbfgs_ncorrections lbfgs_nfeval_max leftjust legend letrat let_rule_packages lfg lg lhospitallim limsubst linear linear_solver linechar linel|10 linenum line_type linewidth line_width linsolve_params linsolvewarn lispdisp listarith listconstvars listdummyvars lmxchar load_pathname loadprint logabs logarc logcb logconcoeffp logexpand lognegint logsimp logx logx_secondary logy logy_secondary logz lriem m1pbranch macroexpansion macros mainvar manual_demo maperror mapprint matrix_element_add matrix_element_mult matrix_element_transpose maxapplydepth maxapplyheight maxima_tempdir|10 maxima_userdir|10 maxnegex MAX_ORD maxposex maxpsifracdenom maxpsifracnum maxpsinegint maxpsiposint maxtayorder mesh_lines_color method mod_big_prime mode_check_errorp mode_checkp mode_check_warnp mod_test mod_threshold modular_linear_solver modulus multiplicative multiplicities myoptions nary negdistrib negsumdispflag newline newtonepsilon newtonmaxiter nextlayerfactor niceindicespref nm nmc noeval nolabels nonegative_lp noninteger nonscalar noun noundisp nouns np npi nticks ntrig numer numer_pbranch obase odd oddfun opacity opproperties opsubst optimprefix optionset orientation origin orthopoly_returns_intervals outative outchar packagefile palette partswitch pdf_file pfeformat phiresolution %piargs piece pivot_count_sx pivot_max_sx plot_format plot_options plot_realpart png_file pochhammer_max_index points pointsize point_size points_joined point_type poislim poisson poly_coefficient_ring poly_elimination_order polyfactor poly_grobner_algorithm poly_grobner_debug poly_monomial_order poly_primary_elimination_order poly_return_term_list poly_secondary_elimination_order poly_top_reduction_only posfun position powerdisp pred prederror primep_number_of_tests product_use_gamma program programmode promote_float_to_bigfloat prompt proportional_axes props psexpand ps_file radexpand radius radsubstflag rassociative ratalgdenom ratchristof ratdenomdivide rateinstein ratepsilon ratfac rational ratmx ratprint ratriemann ratsimpexpons ratvarswitch ratweights ratweyl ratwtlvl real realonly redraw refcheck resolution restart resultant ric riem rmxchar %rnum_list rombergabs rombergit rombergmin rombergtol rootsconmode rootsepsilon run_viewer same_xy same_xyz savedef savefactors scalar scalarmatrixp scale scale_lp setcheck setcheckbreak setval show_edge_color show_edges show_edge_type show_edge_width show_id show_label showtime show_vertex_color show_vertex_size show_vertex_type show_vertices show_weight simp simplified_output simplify_products simpproduct simpsum sinnpiflag solvedecomposes solveexplicit solvefactors solvenullwarn solveradcan solvetrigwarn space sparse sphere spring_embedding_depth sqrtdispflag stardisp startphi starttheta stats_numer stringdisp structures style sublis_apply_lambda subnumsimp sumexpand sumsplitfact surface surface_hide svg_file symmetric tab taylordepth taylor_logexpand taylor_order_coefficients taylor_truncate_polynomials tensorkill terminal testsuite_files thetaresolution timer_devalue title tlimswitch tr track transcompile transform transform_xy translate_fast_arrays transparent transrun tr_array_as_ref tr_bound_function_applyp tr_file_tty_messagesp tr_float_can_branch_complex tr_function_call_default trigexpandplus trigexpandtimes triginverses trigsign trivial_solutions tr_numer tr_optimize_max_loop tr_semicompile tr_state_vars tr_warn_bad_function_calls tr_warn_fexpr tr_warn_meval tr_warn_mode tr_warn_undeclared tr_warn_undefined_variable tstep ttyoff tube_extremes ufg ug %unitexpand unit_vectors uric uriem use_fast_arrays user_preamble usersetunits values vect_cross verbose vertex_color vertex_coloring vertex_partition vertex_size vertex_type view warnings weyl width windowname windowtitle wired_surface wireframe xaxis xaxis_color xaxis_secondary xaxis_type xaxis_width xlabel xlabel_secondary xlength xrange xrange_secondary xtics xtics_axis xtics_rotate xtics_rotate_secondary xtics_secondary xtics_secondary_axis xu_grid x_voxel xy_file xyplane xy_scale yaxis yaxis_color yaxis_secondary yaxis_type yaxis_width ylabel ylabel_secondary ylength yrange yrange_secondary ytics ytics_axis ytics_rotate ytics_rotate_secondary ytics_secondary ytics_secondary_axis yv_grid y_voxel yx_ratio zaxis zaxis_color zaxis_type zaxis_width zeroa zerob zerobern zeta%pi zlabel zlabel_rotate zlength zmin zn_primroot_limit zn_primroot_pretest\",r=\"_ __ %|0 %%|0\";return{name:\"Maxima\",keywords:{$pattern:\"[A-Za-z_%][0-9A-Za-z_%]*\",keyword:t,literal:n,built_in:i,symbol:r},contains:[{className:\"comment\",begin:\"/\\\\*\",end:\"\\\\*/\",contains:[\"self\"]},e.QUOTE_STRING_MODE,{className:\"number\",relevance:0,variants:[{begin:\"\\\\b(\\\\d+|\\\\d+\\\\.|\\\\.\\\\d+|\\\\d+\\\\.\\\\d+)[Ee][-+]?\\\\d+\\\\b\"},{begin:\"\\\\b(\\\\d+|\\\\d+\\\\.|\\\\.\\\\d+|\\\\d+\\\\.\\\\d+)[Bb][-+]?\\\\d+\\\\b\",relevance:10},{begin:\"\\\\b(\\\\.\\\\d+|\\\\d+\\\\.\\\\d+)\\\\b\"},{begin:\"\\\\b(\\\\d+|0[0-9A-Za-z]+)\\\\.?\\\\b\"}]}],illegal:/@/}}e.exports=n},\"3a38\":function(e,t){var n=Math.ceil,i=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?i:n)(e)}},\"3c4e\":function(e,t,n){\"use strict\";var i=function(e){return r(e)&&!a(e)};function r(e){return!!e&&\"object\"===typeof e}function a(e){var t=Object.prototype.toString.call(e);return\"[object RegExp]\"===t||\"[object Date]\"===t||l(e)}var o=\"function\"===typeof Symbol&&Symbol.for,s=o?Symbol.for(\"react.element\"):60103;function l(e){return e.$$typeof===s}function c(e){return Array.isArray(e)?[]:{}}function u(e,t){var n=t&&!0===t.clone;return n&&i(e)?h(c(e),e,t):e}function d(e,t,n){var r=e.slice();return t.forEach((function(t,a){\"undefined\"===typeof r[a]?r[a]=u(t,n):i(t)?r[a]=h(e[a],t,n):-1===e.indexOf(t)&&r.push(u(t,n))})),r}function p(e,t,n){var r={};return i(e)&&Object.keys(e).forEach((function(t){r[t]=u(e[t],n)})),Object.keys(t).forEach((function(a){i(t[a])&&e[a]?r[a]=h(e[a],t[a],n):r[a]=u(t[a],n)})),r}function h(e,t,n){var i=Array.isArray(t),r=Array.isArray(e),a=n||{arrayMerge:d},o=i===r;if(o){if(i){var s=a.arrayMerge||d;return s(e,t,n)}return p(e,t,n)}return u(t,n)}h.all=function(e,t){if(!Array.isArray(e)||e.length<2)throw new Error(\"first argument should be an array with at least two elements\");return e.reduce((function(e,n){return h(e,n,t)}))};var f=h;e.exports=f},\"3c69\":function(e,t){function n(e){return{name:\"Vim Script\",keywords:{$pattern:/[!#@\\w]+/,keyword:\"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu go gr grepa gu gv ha helpf helpg helpt hi hid his ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf quita qa rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank\",built_in:\"synIDtrans atan2 range matcharg did_filetype asin feedkeys xor argv complete_check add getwinposx getqflist getwinposy screencol clearmatches empty extend getcmdpos mzeval garbagecollect setreg ceil sqrt diff_hlID inputsecret get getfperm getpid filewritable shiftwidth max sinh isdirectory synID system inputrestore winline atan visualmode inputlist tabpagewinnr round getregtype mapcheck hasmapto histdel argidx findfile sha256 exists toupper getcmdline taglist string getmatches bufnr strftime winwidth bufexists strtrans tabpagebuflist setcmdpos remote_read printf setloclist getpos getline bufwinnr float2nr len getcmdtype diff_filler luaeval resolve libcallnr foldclosedend reverse filter has_key bufname str2float strlen setline getcharmod setbufvar index searchpos shellescape undofile foldclosed setqflist buflisted strchars str2nr virtcol floor remove undotree remote_expr winheight gettabwinvar reltime cursor tabpagenr finddir localtime acos getloclist search tanh matchend rename gettabvar strdisplaywidth type abs py3eval setwinvar tolower wildmenumode log10 spellsuggest bufloaded synconcealed nextnonblank server2client complete settabwinvar executable input wincol setmatches getftype hlID inputsave searchpair or screenrow line settabvar histadd deepcopy strpart remote_peek and eval getftime submatch screenchar winsaveview matchadd mkdir screenattr getfontname libcall reltimestr getfsize winnr invert pow getbufline byte2line soundfold repeat fnameescape tagfiles sin strwidth spellbadword trunc maparg log lispindent hostname setpos globpath remote_foreground getchar synIDattr fnamemodify cscope_connection stridx winbufnr indent min complete_add nr2char searchpairpos inputdialog values matchlist items hlexists strridx browsedir expand fmod pathshorten line2byte argc count getwinvar glob foldtextresult getreg foreground cosh matchdelete has char2nr simplify histget searchdecl iconv winrestcmd pumvisible writefile foldlevel haslocaldir keys cos matchstr foldtext histnr tan tempname getcwd byteidx getbufvar islocked escape eventhandler remote_send serverlist winrestview synstack pyeval prevnonblank readfile cindent filereadable changenr exp\"},illegal:/;/,contains:[e.NUMBER_MODE,{className:\"string\",begin:\"'\",end:\"'\",illegal:\"\\\\n\"},{className:\"string\",begin:/\"(\\\\\"|\\n\\\\|[^\"\\n])*\"/},e.COMMENT('\"',\"$\"),{className:\"variable\",begin:/[bwtglsav]:[\\w\\d_]*/},{className:\"function\",beginKeywords:\"function function!\",end:\"$\",relevance:0,contains:[e.TITLE_MODE,{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\"}]},{className:\"symbol\",begin:/<[\\w-]+>/}]}}e.exports=n},\"3f38\":function(e,t){function n(e){const t={variants:[e.COMMENT(\"--\",\"$\"),e.COMMENT(/\\{-/,/-\\}/,{contains:[\"self\"]})]},n={className:\"meta\",begin:/\\{-#/,end:/#-\\}/},i={className:\"meta\",begin:\"^#\",end:\"$\"},r={className:\"type\",begin:\"\\\\b[A-Z][\\\\w']*\",relevance:0},a={begin:\"\\\\(\",end:\"\\\\)\",illegal:'\"',contains:[n,i,{className:\"type\",begin:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"},e.inherit(e.TITLE_MODE,{begin:\"[_a-z][\\\\w']*\"}),t]},o={begin:/\\{/,end:/\\}/,contains:a.contains};return{name:\"Haskell\",aliases:[\"hs\"],keywords:\"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec\",contains:[{beginKeywords:\"module\",end:\"where\",keywords:\"module where\",contains:[a,t],illegal:\"\\\\W\\\\.|;\"},{begin:\"\\\\bimport\\\\b\",end:\"$\",keywords:\"import qualified as hiding\",contains:[a,t],illegal:\"\\\\W\\\\.|;\"},{className:\"class\",begin:\"^(\\\\s*)?(class|instance)\\\\b\",end:\"where\",keywords:\"class family instance where\",contains:[r,a,t]},{className:\"class\",begin:\"\\\\b(data|(new)?type)\\\\b\",end:\"$\",keywords:\"data family type newtype deriving\",contains:[n,r,a,o,t]},{beginKeywords:\"default\",end:\"$\",contains:[r,a,t]},{beginKeywords:\"infix infixl infixr\",end:\"$\",contains:[e.C_NUMBER_MODE,t]},{begin:\"\\\\bforeign\\\\b\",end:\"$\",keywords:\"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe\",contains:[r,e.QUOTE_STRING_MODE,t]},{className:\"meta\",begin:\"#!\\\\/usr\\\\/bin\\\\/env runhaskell\",end:\"$\"},n,i,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,r,e.inherit(e.TITLE_MODE,{begin:\"^[_a-z][\\\\w']*\"}),t,{begin:\"->|<-\"}]}}e.exports=n},\"3f6b\":function(e,t,n){e.exports={default:n(\"51b6\"),__esModule:!0}},4010:function(e,t,n){\"use strict\";t.__esModule=!0,t.removeResizeListener=t.addResizeListener=void 0;var i=n(\"6dd8\"),r=a(i);function a(e){return e&&e.__esModule?e:{default:e}}var o=\"undefined\"===typeof window,s=function(e){var t=e,n=Array.isArray(t),i=0;for(t=n?t:t[Symbol.iterator]();;){var r;if(n){if(i>=t.length)break;r=t[i++]}else{if(i=t.next(),i.done)break;r=i.value}var a=r,o=a.target.__resizeListeners__||[];o.length&&o.forEach((function(e){e()}))}};t.addResizeListener=function(e,t){o||(e.__resizeListeners__||(e.__resizeListeners__=[],e.__ro__=new r.default(s),e.__ro__.observe(e)),e.__resizeListeners__.push(t))},t.removeResizeListener=function(e,t){e&&e.__resizeListeners__&&(e.__resizeListeners__.splice(e.__resizeListeners__.indexOf(t),1),e.__resizeListeners__.length||e.__ro__.disconnect())}},\"40f4\":function(e,t){function n(e){const t=\"do if then else end until while abort array attrib by call cards cards4 catname continue datalines datalines4 delete delim delimiter display dm drop endsas error file filename footnote format goto in infile informat input keep label leave length libname link list lostcard merge missing modify options output out page put redirect remove rename replace retain return select set skip startsas stop title update waitsas where window x systask add and alter as cascade check create delete describe distinct drop foreign from group having index insert into in key like message modify msgtype not null on or order primary references reset restrict select set table unique update validate view where\",n=\"abs|addr|airy|arcos|arsin|atan|attrc|attrn|band|betainv|blshift|bnot|bor|brshift|bxor|byte|cdf|ceil|cexist|cinv|close|cnonct|collate|compbl|compound|compress|cos|cosh|css|curobs|cv|daccdb|daccdbsl|daccsl|daccsyd|dacctab|dairy|date|datejul|datepart|datetime|day|dclose|depdb|depdbsl|depdbsl|depsl|depsl|depsyd|depsyd|deptab|deptab|dequote|dhms|dif|digamma|dim|dinfo|dnum|dopen|doptname|doptnum|dread|dropnote|dsname|erf|erfc|exist|exp|fappend|fclose|fcol|fdelete|fetch|fetchobs|fexist|fget|fileexist|filename|fileref|finfo|finv|fipname|fipnamel|fipstate|floor|fnonct|fnote|fopen|foptname|foptnum|fpoint|fpos|fput|fread|frewind|frlen|fsep|fuzz|fwrite|gaminv|gamma|getoption|getvarc|getvarn|hbound|hms|hosthelp|hour|ibessel|index|indexc|indexw|input|inputc|inputn|int|intck|intnx|intrr|irr|jbessel|juldate|kurtosis|lag|lbound|left|length|lgamma|libname|libref|log|log10|log2|logpdf|logpmf|logsdf|lowcase|max|mdy|mean|min|minute|mod|month|mopen|mort|n|netpv|nmiss|normal|note|npv|open|ordinal|pathname|pdf|peek|peekc|pmf|point|poisson|poke|probbeta|probbnml|probchi|probf|probgam|probhypr|probit|probnegb|probnorm|probt|put|putc|putn|qtr|quote|ranbin|rancau|ranexp|rangam|range|rank|rannor|ranpoi|rantbl|rantri|ranuni|repeat|resolve|reverse|rewind|right|round|saving|scan|sdf|second|sign|sin|sinh|skewness|soundex|spedis|sqrt|std|stderr|stfips|stname|stnamel|substr|sum|symget|sysget|sysmsg|sysprod|sysrc|system|tan|tanh|time|timepart|tinv|tnonct|today|translate|tranwrd|trigamma|trim|trimn|trunc|uniform|upcase|uss|var|varfmt|varinfmt|varlabel|varlen|varname|varnum|varray|varrayx|vartype|verify|vformat|vformatd|vformatdx|vformatn|vformatnx|vformatw|vformatwx|vformatx|vinarray|vinarrayx|vinformat|vinformatd|vinformatdx|vinformatn|vinformatnx|vinformatw|vinformatwx|vinformatx|vlabel|vlabelx|vlength|vlengthx|vname|vnamex|vtype|vtypex|weekday|year|yyq|zipfips|zipname|zipnamel|zipstate\",i=\"bquote|nrbquote|cmpres|qcmpres|compstor|datatyp|display|do|else|end|eval|global|goto|if|index|input|keydef|label|left|length|let|local|lowcase|macro|mend|nrbquote|nrquote|nrstr|put|qcmpres|qleft|qlowcase|qscan|qsubstr|qsysfunc|qtrim|quote|qupcase|scan|str|substr|superq|syscall|sysevalf|sysexec|sysfunc|sysget|syslput|sysprod|sysrc|sysrput|then|to|trim|unquote|until|upcase|verify|while|window\";return{name:\"SAS\",aliases:[\"sas\",\"SAS\"],case_insensitive:!0,keywords:{literal:\"null missing _all_ _automatic_ _character_ _infile_ _n_ _name_ _null_ _numeric_ _user_ _webout_\",meta:t},contains:[{className:\"keyword\",begin:/^\\s*(proc [\\w\\d_]+|data|run|quit)[\\s;]/},{className:\"variable\",begin:/&[a-zA-Z_&][a-zA-Z0-9_]*\\.?/},{className:\"emphasis\",begin:/^\\s*datalines|cards.*;/,end:/^\\s*;\\s*$/},{className:\"built_in\",begin:\"%(\"+i+\")\"},{className:\"name\",begin:/%[a-zA-Z_][a-zA-Z_0-9]*/},{className:\"meta\",begin:\"[^%](\"+n+\")[(]\"},{className:\"string\",variants:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},e.COMMENT(\"\\\\*\",\";\"),e.C_BLOCK_COMMENT_MODE]}}e.exports=n},4108:function(e,t){function n(e){const t=\"[^\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}\\\",'`;#|\\\\\\\\\\\\s]+\",n=\"(-|\\\\+)?\\\\d+([./]\\\\d+)?\",i=n+\"[+\\\\-]\"+n+\"i\",r={$pattern:t,\"builtin-name\":\"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?\"},a={className:\"literal\",begin:\"(#t|#f|#\\\\\\\\\"+t+\"|#\\\\\\\\.)\"},o={className:\"number\",variants:[{begin:n,relevance:0},{begin:i,relevance:0},{begin:\"#b[0-1]+(/[0-1]+)?\"},{begin:\"#o[0-7]+(/[0-7]+)?\"},{begin:\"#x[0-9a-f]+(/[0-9a-f]+)?\"}]},s=e.QUOTE_STRING_MODE,l=[e.COMMENT(\";\",\"$\",{relevance:0}),e.COMMENT(\"#\\\\|\",\"\\\\|#\")],c={begin:t,relevance:0},u={className:\"symbol\",begin:\"'\"+t},d={endsWithParent:!0,relevance:0},p={variants:[{begin:/'/},{begin:\"`\"}],contains:[{begin:\"\\\\(\",end:\"\\\\)\",contains:[\"self\",a,s,o,c,u]}]},h={className:\"name\",relevance:0,begin:t,keywords:r},f={begin:/lambda/,endsWithParent:!0,returnBegin:!0,contains:[h,{endsParent:!0,variants:[{begin:/\\(/,end:/\\)/},{begin:/\\[/,end:/\\]/}],contains:[c]}]},_={variants:[{begin:\"\\\\(\",end:\"\\\\)\"},{begin:\"\\\\[\",end:\"\\\\]\"}],contains:[f,h,d]};return d.contains=[a,o,s,c,u,p,_].concat(l),{name:\"Scheme\",illegal:/\\S/,contains:[e.SHEBANG(),o,s,u,p,_].concat(l)}}e.exports=n},4127:function(e,t,n){\"use strict\";var i=n(\"d233\"),r=n(\"b313\"),a=Object.prototype.hasOwnProperty,o={brackets:function(e){return e+\"[]\"},comma:\"comma\",indices:function(e,t){return e+\"[\"+t+\"]\"},repeat:function(e){return e}},s=Array.isArray,l=Array.prototype.push,c=function(e,t){l.apply(e,s(t)?t:[t])},u=Date.prototype.toISOString,d={addQueryPrefix:!1,allowDots:!1,charset:\"utf-8\",charsetSentinel:!1,delimiter:\"&\",encode:!0,encoder:i.encode,encodeValuesOnly:!1,formatter:r.formatters[r[\"default\"]],indices:!1,serializeDate:function(e){return u.call(e)},skipNulls:!1,strictNullHandling:!1},p=function e(t,n,r,a,o,l,u,p,h,f,_,m,g){var b=t;if(\"function\"===typeof u?b=u(n,b):b instanceof Date?b=f(b):\"comma\"===r&&s(b)&&(b=b.join(\",\")),null===b){if(a)return l&&!m?l(n,d.encoder,g):n;b=\"\"}if(\"string\"===typeof b||\"number\"===typeof b||\"boolean\"===typeof b||i.isBuffer(b)){if(l){var v=m?n:l(n,d.encoder,g);return[_(v)+\"=\"+_(l(b,d.encoder,g))]}return[_(n)+\"=\"+_(String(b))]}var E,y=[];if(\"undefined\"===typeof b)return y;if(s(u))E=u;else{var S=Object.keys(b);E=p?S.sort(p):S}for(var C=0;C<E.length;++C){var T=E[C];o&&null===b[T]||(s(b)?c(y,e(b[T],\"function\"===typeof r?r(n,T):n,r,a,o,l,u,p,h,f,_,m,g)):c(y,e(b[T],n+(h?\".\"+T:\"[\"+T+\"]\"),r,a,o,l,u,p,h,f,_,m,g)))}return y},h=function(e){if(!e)return d;if(null!==e.encoder&&void 0!==e.encoder&&\"function\"!==typeof e.encoder)throw new TypeError(\"Encoder has to be a function.\");var t=e.charset||d.charset;if(\"undefined\"!==typeof e.charset&&\"utf-8\"!==e.charset&&\"iso-8859-1\"!==e.charset)throw new TypeError(\"The charset option must be either utf-8, iso-8859-1, or undefined\");var n=r[\"default\"];if(\"undefined\"!==typeof e.format){if(!a.call(r.formatters,e.format))throw new TypeError(\"Unknown format option provided.\");n=e.format}var i=r.formatters[n],o=d.filter;return(\"function\"===typeof e.filter||s(e.filter))&&(o=e.filter),{addQueryPrefix:\"boolean\"===typeof e.addQueryPrefix?e.addQueryPrefix:d.addQueryPrefix,allowDots:\"undefined\"===typeof e.allowDots?d.allowDots:!!e.allowDots,charset:t,charsetSentinel:\"boolean\"===typeof e.charsetSentinel?e.charsetSentinel:d.charsetSentinel,delimiter:\"undefined\"===typeof e.delimiter?d.delimiter:e.delimiter,encode:\"boolean\"===typeof e.encode?e.encode:d.encode,encoder:\"function\"===typeof e.encoder?e.encoder:d.encoder,encodeValuesOnly:\"boolean\"===typeof e.encodeValuesOnly?e.encodeValuesOnly:d.encodeValuesOnly,filter:o,formatter:i,serializeDate:\"function\"===typeof e.serializeDate?e.serializeDate:d.serializeDate,skipNulls:\"boolean\"===typeof e.skipNulls?e.skipNulls:d.skipNulls,sort:\"function\"===typeof e.sort?e.sort:null,strictNullHandling:\"boolean\"===typeof e.strictNullHandling?e.strictNullHandling:d.strictNullHandling}};e.exports=function(e,t){var n,i,r=e,a=h(t);\"function\"===typeof a.filter?(i=a.filter,r=i(\"\",r)):s(a.filter)&&(i=a.filter,n=i);var l,u=[];if(\"object\"!==typeof r||null===r)return\"\";l=t&&t.arrayFormat in o?t.arrayFormat:t&&\"indices\"in t?t.indices?\"indices\":\"repeat\":\"indices\";var d=o[l];n||(n=Object.keys(r)),a.sort&&n.sort(a.sort);for(var f=0;f<n.length;++f){var _=n[f];a.skipNulls&&null===r[_]||c(u,p(r[_],_,d,a.strictNullHandling,a.skipNulls,a.encode?a.encoder:null,a.filter,a.sort,a.allowDots,a.serializeDate,a.formatter,a.encodeValuesOnly,a.charset))}var m=u.join(a.delimiter),g=!0===a.addQueryPrefix?\"?\":\"\";return a.charsetSentinel&&(\"iso-8859-1\"===a.charset?g+=\"utf8=%26%2310003%3B&\":g+=\"utf8=%E2%9C%93&\"),m.length>0?g+m:\"\"}},4168:function(e,t){function n(e){return{aliases:[\"pycon\"],contains:[{className:\"meta\",starts:{end:/ |$/,starts:{end:\"$\",subLanguage:\"python\"}},variants:[{begin:/^>>>(?=[ ]|$)/},{begin:/^\\.\\.\\.(?=[ ]|$)/}]}]}}e.exports=n},\"417f\":function(e,t,n){\"use strict\";t.__esModule=!0;var i=n(\"2b0e\"),r=o(i),a=n(\"5924\");function o(e){return e&&e.__esModule?e:{default:e}}var s=[],l=\"@@clickoutsideContext\",c=void 0,u=0;function d(e,t,n){return function(){var i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!(n&&n.context&&i.target&&r.target)||e.contains(i.target)||e.contains(r.target)||e===i.target||n.context.popperElm&&(n.context.popperElm.contains(i.target)||n.context.popperElm.contains(r.target))||(t.expression&&e[l].methodName&&n.context[e[l].methodName]?n.context[e[l].methodName]():e[l].bindingFn&&e[l].bindingFn())}}!r.default.prototype.$isServer&&(0,a.on)(document,\"mousedown\",(function(e){return c=e})),!r.default.prototype.$isServer&&(0,a.on)(document,\"mouseup\",(function(e){s.forEach((function(t){return t[l].documentHandler(e,c)}))})),t.default={bind:function(e,t,n){s.push(e);var i=u++;e[l]={id:i,documentHandler:d(e,t,n),methodName:t.expression,bindingFn:t.value}},update:function(e,t,n){e[l].documentHandler=d(e,t,n),e[l].methodName=t.expression,e[l].bindingFn=t.value},unbind:function(e){for(var t=s.length,n=0;n<t;n++)if(s[n][l].id===e[l].id){s.splice(n,1);break}delete e[l]}}},\"41a0\":function(e,t,n){\"use strict\";var i=n(\"2aeb\"),r=n(\"4630\"),a=n(\"7f20\"),o={};n(\"32e9\")(o,n(\"2b4c\")(\"iterator\"),(function(){return this})),e.exports=function(e,t,n){e.prototype=i(o,{next:r(1,n)}),a(e,t+\" Iterator\")}},\"41b2\":function(e,t,n){\"use strict\";t.__esModule=!0;var i=n(\"3f6b\"),r=a(i);function a(e){return e&&e.__esModule?e:{default:e}}t.default=r.default||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e}},\"41f8\":function(e,t,n){\"use strict\";t.__esModule=!0;var i=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e};t.isVNode=a;var r=n(\"8122\");function a(e){return null!==e&&\"object\"===(\"undefined\"===typeof e?\"undefined\":i(e))&&(0,r.hasOwn)(e,\"componentOptions\")}},4272:function(e,t){function n(e){return{name:\"CSP\",case_insensitive:!1,keywords:{$pattern:\"[a-zA-Z][a-zA-Z0-9_-]*\",keyword:\"base-uri child-src connect-src default-src font-src form-action frame-ancestors frame-src img-src media-src object-src plugin-types report-uri sandbox script-src style-src\"},contains:[{className:\"string\",begin:\"'\",end:\"'\"},{className:\"attribute\",begin:\"^Content\",end:\":\",excludeEnd:!0}]}}e.exports=n},4328:function(e,t,n){\"use strict\";var i=n(\"4127\"),r=n(\"9e6a\"),a=n(\"b313\");e.exports={formats:a,parse:r,stringify:i}},4396:function(e,t){function n(e){const t={begin:/[a-z][A-Za-z0-9_]*/,relevance:0},n={className:\"symbol\",variants:[{begin:/[A-Z][a-zA-Z0-9_]*/},{begin:/_[A-Za-z0-9_]*/}],relevance:0},i={begin:/\\(/,end:/\\)/,relevance:0},r={begin:/\\[/,end:/\\]/},a={className:\"comment\",begin:/%/,end:/$/,contains:[e.PHRASAL_WORDS_MODE]},o={className:\"string\",begin:/`/,end:/`/,contains:[e.BACKSLASH_ESCAPE]},s={className:\"string\",begin:/0'(\\\\'|.)/},l={className:\"string\",begin:/0'\\\\s/},c={begin:/:-/},u=[t,n,i,c,r,a,e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,o,s,l,e.C_NUMBER_MODE];return i.contains=u,r.contains=u,{name:\"Prolog\",contains:u.concat([{begin:/\\.$/}])}}e.exports=n},\"44b5\":function(e,t){function n(e){return{name:\"Dockerfile\",aliases:[\"docker\"],case_insensitive:!0,keywords:\"from maintainer expose env arg user onbuild stopsignal\",contains:[e.HASH_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.NUMBER_MODE,{beginKeywords:\"run cmd entrypoint volume add copy workdir label healthcheck shell\",starts:{end:/[^\\\\]$/,subLanguage:\"bash\"}}],illegal:\"</\"}}e.exports=n},\"44e5\":function(e,t){function n(e){return{name:\"Plain text\",aliases:[\"text\",\"txt\"],disableAutodetect:!0}}e.exports=n},\"456d\":function(e,t,n){var i=n(\"4bf8\"),r=n(\"0d58\");n(\"5eda\")(\"keys\",(function(){return function(e){return r(i(e))}}))},4588:function(e,t){var n=Math.ceil,i=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?i:n)(e)}},\"45f2\":function(e,t,n){var i=n(\"d9f6\").f,r=n(\"07e3\"),a=n(\"5168\")(\"toStringTag\");e.exports=function(e,t,n){e&&!r(e=n?e:e.prototype,a)&&i(e,a,{configurable:!0,value:t})}},4630:function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},\"467f\":function(e,t,n){\"use strict\";var i=n(\"2d83\");e.exports=function(e,t,n){var r=n.config.validateStatus;!r||r(n.status)?e(n):t(i(\"Request failed with status code \"+n.status,n.config,null,n.request,n))}},\"46ae\":function(e,t){function n(e){const t={keyword:\"rec with let in inherit assert if else then\",literal:\"true false or and null\",built_in:\"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation\"},n={className:\"subst\",begin:/\\$\\{/,end:/\\}/,keywords:t},i={begin:/[a-zA-Z0-9-_]+(\\s*=)/,returnBegin:!0,relevance:0,contains:[{className:\"attr\",begin:/\\S+/}]},r={className:\"string\",contains:[n],variants:[{begin:\"''\",end:\"''\"},{begin:'\"',end:'\"'}]},a=[e.NUMBER_MODE,e.HASH_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,r,i];return n.contains=a,{name:\"Nix\",aliases:[\"nixos\"],keywords:t,contains:a}}e.exports=n},4726:function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=59)}({0:function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},14:function(e,t){e.exports=n(\"14e9\")},18:function(e,t){e.exports=n(\"dcdc\")},21:function(e,t){e.exports=n(\"d397\")},26:function(e,t){e.exports=n(\"92fa\")},3:function(e,t){e.exports=n(\"8122\")},31:function(e,t){e.exports=n(\"2a5e\")},32:function(e,t){e.exports=n(\"e452\")},51:function(e,t){e.exports=n(\"f494\")},59:function(e,t,n){\"use strict\";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{class:[\"el-cascader-panel\",e.border&&\"is-bordered\"],on:{keydown:e.handleKeyDown}},e._l(e.menus,(function(e,t){return n(\"cascader-menu\",{key:t,ref:\"menu\",refInFor:!0,attrs:{index:t,nodes:e}})})),1)},r=[];i._withStripped=!0;var a,o,s=n(26),l=n.n(s),c=n(14),u=n.n(c),d=n(18),p=n.n(d),h=n(51),f=n.n(h),_=n(3),m=function(e){return e.stopPropagation()},g={inject:[\"panel\"],components:{ElCheckbox:p.a,ElRadio:f.a},props:{node:{required:!0},nodeId:String},computed:{config:function(){return this.panel.config},isLeaf:function(){return this.node.isLeaf},isDisabled:function(){return this.node.isDisabled},checkedValue:function(){return this.panel.checkedValue},isChecked:function(){return this.node.isSameNode(this.checkedValue)},inActivePath:function(){return this.isInPath(this.panel.activePath)},inCheckedPath:function(){var e=this;return!!this.config.checkStrictly&&this.panel.checkedNodePaths.some((function(t){return e.isInPath(t)}))},value:function(){return this.node.getValueByOption()}},methods:{handleExpand:function(){var e=this,t=this.panel,n=this.node,i=this.isDisabled,r=this.config,a=r.multiple,o=r.checkStrictly;!o&&i||n.loading||(r.lazy&&!n.loaded?t.lazyLoad(n,(function(){var t=e.isLeaf;if(t||e.handleExpand(),a){var i=!!t&&n.checked;e.handleMultiCheckChange(i)}})):t.handleExpand(n))},handleCheckChange:function(){var e=this.panel,t=this.value,n=this.node;e.handleCheckChange(t),e.handleExpand(n)},handleMultiCheckChange:function(e){this.node.doCheck(e),this.panel.calculateMultiCheckedValue()},isInPath:function(e){var t=this.node,n=e[t.level-1]||{};return n.uid===t.uid},renderPrefix:function(e){var t=this.isLeaf,n=this.isChecked,i=this.config,r=i.checkStrictly,a=i.multiple;return a?this.renderCheckbox(e):r?this.renderRadio(e):t&&n?this.renderCheckIcon(e):null},renderPostfix:function(e){var t=this.node,n=this.isLeaf;return t.loading?this.renderLoadingIcon(e):n?null:this.renderExpandIcon(e)},renderCheckbox:function(e){var t=this.node,n=this.config,i=this.isDisabled,r={on:{change:this.handleMultiCheckChange},nativeOn:{}};return n.checkStrictly&&(r.nativeOn.click=m),e(\"el-checkbox\",l()([{attrs:{value:t.checked,indeterminate:t.indeterminate,disabled:i}},r]))},renderRadio:function(e){var t=this.checkedValue,n=this.value,i=this.isDisabled;return Object(_[\"isEqual\"])(n,t)&&(n=t),e(\"el-radio\",{attrs:{value:t,label:n,disabled:i},on:{change:this.handleCheckChange},nativeOn:{click:m}},[e(\"span\")])},renderCheckIcon:function(e){return e(\"i\",{class:\"el-icon-check el-cascader-node__prefix\"})},renderLoadingIcon:function(e){return e(\"i\",{class:\"el-icon-loading el-cascader-node__postfix\"})},renderExpandIcon:function(e){return e(\"i\",{class:\"el-icon-arrow-right el-cascader-node__postfix\"})},renderContent:function(e){var t=this.panel,n=this.node,i=t.renderLabelFn,r=i?i({node:n,data:n.data}):null;return e(\"span\",{class:\"el-cascader-node__label\"},[r||n.label])}},render:function(e){var t=this,n=this.inActivePath,i=this.inCheckedPath,r=this.isChecked,a=this.isLeaf,o=this.isDisabled,s=this.config,c=this.nodeId,u=s.expandTrigger,d=s.checkStrictly,p=s.multiple,h=!d&&o,f={on:{}};return\"click\"===u?f.on.click=this.handleExpand:(f.on.mouseenter=function(e){t.handleExpand(),t.$emit(\"expand\",e)},f.on.focus=function(e){t.handleExpand(),t.$emit(\"expand\",e)}),!a||o||d||p||(f.on.click=this.handleCheckChange),e(\"li\",l()([{attrs:{role:\"menuitem\",id:c,\"aria-expanded\":n,tabindex:h?null:-1},class:{\"el-cascader-node\":!0,\"is-selectable\":d,\"in-active-path\":n,\"in-checked-path\":i,\"is-active\":r,\"is-disabled\":h}},f]),[this.renderPrefix(e),this.renderContent(e),this.renderPostfix(e)])}},b=g,v=n(0),E=Object(v[\"a\"])(b,a,o,!1,null,null,null);E.options.__file=\"packages/cascader-panel/src/cascader-node.vue\";var y,S,C=E.exports,T=n(6),x=n.n(T),w={name:\"ElCascaderMenu\",mixins:[x.a],inject:[\"panel\"],components:{ElScrollbar:u.a,CascaderNode:C},props:{nodes:{type:Array,required:!0},index:Number},data:function(){return{activeNode:null,hoverTimer:null,id:Object(_[\"generateId\"])()}},computed:{isEmpty:function(){return!this.nodes.length},menuId:function(){return\"cascader-menu-\"+this.id+\"-\"+this.index}},methods:{handleExpand:function(e){this.activeNode=e.target},handleMouseMove:function(e){var t=this.activeNode,n=this.hoverTimer,i=this.$refs.hoverZone;if(t&&i)if(t.contains(e.target)){clearTimeout(n);var r=this.$el.getBoundingClientRect(),a=r.left,o=e.clientX-a,s=this.$el,l=s.offsetWidth,c=s.offsetHeight,u=t.offsetTop,d=u+t.offsetHeight;i.innerHTML='\\n          <path style=\"pointer-events: auto;\" fill=\"transparent\" d=\"M'+o+\" \"+u+\" L\"+l+\" 0 V\"+u+' Z\" />\\n          <path style=\"pointer-events: auto;\" fill=\"transparent\" d=\"M'+o+\" \"+d+\" L\"+l+\" \"+c+\" V\"+d+' Z\" />\\n        '}else n||(this.hoverTimer=setTimeout(this.clearHoverZone,this.panel.config.hoverThreshold))},clearHoverZone:function(){var e=this.$refs.hoverZone;e&&(e.innerHTML=\"\")},renderEmptyText:function(e){return e(\"div\",{class:\"el-cascader-menu__empty-text\"},[this.t(\"el.cascader.noData\")])},renderNodeList:function(e){var t=this.menuId,n=this.panel.isHoverMenu,i={on:{}};n&&(i.on.expand=this.handleExpand);var r=this.nodes.map((function(n,r){var a=n.hasChildren;return e(\"cascader-node\",l()([{key:n.uid,attrs:{node:n,\"node-id\":t+\"-\"+r,\"aria-haspopup\":a,\"aria-owns\":a?t:null}},i]))}));return[].concat(r,[n?e(\"svg\",{ref:\"hoverZone\",class:\"el-cascader-menu__hover-zone\"}):null])}},render:function(e){var t=this.isEmpty,n=this.menuId,i={nativeOn:{}};return this.panel.isHoverMenu&&(i.nativeOn.mousemove=this.handleMouseMove),e(\"el-scrollbar\",l()([{attrs:{tag:\"ul\",role:\"menu\",id:n,\"wrap-class\":\"el-cascader-menu__wrap\",\"view-class\":{\"el-cascader-menu__list\":!0,\"is-empty\":t}},class:\"el-cascader-menu\"},i]),[t?this.renderEmptyText(e):this.renderNodeList(e)])}},O=w,N=Object(v[\"a\"])(O,y,S,!1,null,null,null);N.options.__file=\"packages/cascader-panel/src/cascader-menu.vue\";var R=N.exports,k=n(21),A=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,\"value\"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}();function D(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}var I=0,M=function(){function e(t,n,i){D(this,e),this.data=t,this.config=n,this.parent=i||null,this.level=this.parent?this.parent.level+1:1,this.uid=I++,this.initState(),this.initChildren()}return e.prototype.initState=function(){var e=this.config,t=e.value,n=e.label;this.value=this.data[t],this.label=this.data[n],this.pathNodes=this.calculatePathNodes(),this.path=this.pathNodes.map((function(e){return e.value})),this.pathLabels=this.pathNodes.map((function(e){return e.label})),this.loading=!1,this.loaded=!1},e.prototype.initChildren=function(){var t=this,n=this.config,i=n.children,r=this.data[i];this.hasChildren=Array.isArray(r),this.children=(r||[]).map((function(i){return new e(i,n,t)}))},e.prototype.calculatePathNodes=function(){var e=[this],t=this.parent;while(t)e.unshift(t),t=t.parent;return e},e.prototype.getPath=function(){return this.path},e.prototype.getValue=function(){return this.value},e.prototype.getValueByOption=function(){return this.config.emitPath?this.getPath():this.getValue()},e.prototype.getText=function(e,t){return e?this.pathLabels.join(t):this.label},e.prototype.isSameNode=function(e){var t=this.getValueByOption();return this.config.multiple&&Array.isArray(e)?e.some((function(e){return Object(_[\"isEqual\"])(e,t)})):Object(_[\"isEqual\"])(e,t)},e.prototype.broadcast=function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),i=1;i<t;i++)n[i-1]=arguments[i];var r=\"onParent\"+Object(_[\"capitalize\"])(e);this.children.forEach((function(t){t&&(t.broadcast.apply(t,[e].concat(n)),t[r]&&t[r].apply(t,n))}))},e.prototype.emit=function(e){var t=this.parent,n=\"onChild\"+Object(_[\"capitalize\"])(e);if(t){for(var i=arguments.length,r=Array(i>1?i-1:0),a=1;a<i;a++)r[a-1]=arguments[a];t[n]&&t[n].apply(t,r),t.emit.apply(t,[e].concat(r))}},e.prototype.onParentCheck=function(e){this.isDisabled||this.setCheckState(e)},e.prototype.onChildCheck=function(){var e=this.children,t=e.filter((function(e){return!e.isDisabled})),n=!!t.length&&t.every((function(e){return e.checked}));this.setCheckState(n)},e.prototype.setCheckState=function(e){var t=this.children.length,n=this.children.reduce((function(e,t){var n=t.checked?1:t.indeterminate?.5:0;return e+n}),0);this.checked=e,this.indeterminate=n!==t&&n>0},e.prototype.syncCheckState=function(e){var t=this.getValueByOption(),n=this.isSameNode(e,t);this.doCheck(n)},e.prototype.doCheck=function(e){this.checked!==e&&(this.config.checkStrictly?this.checked=e:(this.broadcast(\"check\",e),this.setCheckState(e),this.emit(\"check\")))},A(e,[{key:\"isDisabled\",get:function(){var e=this.data,t=this.parent,n=this.config,i=n.disabled,r=n.checkStrictly;return e[i]||!r&&t&&t.isDisabled}},{key:\"isLeaf\",get:function(){var e=this.data,t=this.loaded,n=this.hasChildren,i=this.children,r=this.config,a=r.lazy,o=r.leaf;if(a){var s=Object(k[\"isDef\"])(e[o])?e[o]:!!t&&!i.length;return this.hasChildren=!s,s}return!n}}]),e}(),L=M;function P(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}var F=function e(t,n){return t.reduce((function(t,i){return i.isLeaf?t.push(i):(!n&&t.push(i),t=t.concat(e(i.children,n))),t}),[])},B=function(){function e(t,n){P(this,e),this.config=n,this.initNodes(t)}return e.prototype.initNodes=function(e){var t=this;e=Object(_[\"coerceTruthyValueToArray\"])(e),this.nodes=e.map((function(e){return new L(e,t.config)})),this.flattedNodes=this.getFlattedNodes(!1,!1),this.leafNodes=this.getFlattedNodes(!0,!1)},e.prototype.appendNode=function(e,t){var n=new L(e,this.config,t),i=t?t.children:this.nodes;i.push(n)},e.prototype.appendNodes=function(e,t){var n=this;e=Object(_[\"coerceTruthyValueToArray\"])(e),e.forEach((function(e){return n.appendNode(e,t)}))},e.prototype.getNodes=function(){return this.nodes},e.prototype.getFlattedNodes=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=e?this.leafNodes:this.flattedNodes;return t?n:F(this.nodes,e)},e.prototype.getNodeByValue=function(e){if(e){var t=this.getFlattedNodes(!1,!this.config.lazy).filter((function(t){return Object(_[\"valueEquals\"])(t.path,e)||t.value===e}));return t&&t.length?t[0]:null}return null},e}(),U=B,$=n(9),j=n.n($),G=n(32),q=n.n(G),H=n(31),V=n.n(H),z=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},Y=q.a.keys,W={expandTrigger:\"click\",multiple:!1,checkStrictly:!1,emitPath:!0,lazy:!1,lazyLoad:_[\"noop\"],value:\"value\",label:\"label\",children:\"children\",leaf:\"leaf\",disabled:\"disabled\",hoverThreshold:500},K=function(e){return!e.getAttribute(\"aria-owns\")},Q=function(e,t){var n=e.parentNode;if(n){var i=n.querySelectorAll('.el-cascader-node[tabindex=\"-1\"]'),r=Array.prototype.indexOf.call(i,e);return i[r+t]||null}return null},X=function(e,t){if(e){var n=e.id.split(\"-\");return Number(n[n.length-2])}},Z=function(e){e&&(e.focus(),!K(e)&&e.click())},J=function(e){if(e){var t=e.querySelector(\"input\");t?t.click():K(e)&&e.click()}},ee={name:\"ElCascaderPanel\",components:{CascaderMenu:R},props:{value:{},options:Array,props:Object,border:{type:Boolean,default:!0},renderLabel:Function},provide:function(){return{panel:this}},data:function(){return{checkedValue:null,checkedNodePaths:[],store:[],menus:[],activePath:[],loadCount:0}},computed:{config:function(){return j()(z({},W),this.props||{})},multiple:function(){return this.config.multiple},checkStrictly:function(){return this.config.checkStrictly},leafOnly:function(){return!this.checkStrictly},isHoverMenu:function(){return\"hover\"===this.config.expandTrigger},renderLabelFn:function(){return this.renderLabel||this.$scopedSlots.default}},watch:{options:{handler:function(){this.initStore()},immediate:!0,deep:!0},value:function(){this.syncCheckedValue(),this.checkStrictly&&this.calculateCheckedNodePaths()},checkedValue:function(e){Object(_[\"isEqual\"])(e,this.value)||(this.checkStrictly&&this.calculateCheckedNodePaths(),this.$emit(\"input\",e),this.$emit(\"change\",e))}},mounted:function(){Object(_[\"isEmpty\"])(this.value)||this.syncCheckedValue()},methods:{initStore:function(){var e=this.config,t=this.options;e.lazy&&Object(_[\"isEmpty\"])(t)?this.lazyLoad():(this.store=new U(t,e),this.menus=[this.store.getNodes()],this.syncMenuState())},syncCheckedValue:function(){var e=this.value,t=this.checkedValue;Object(_[\"isEqual\"])(e,t)||(this.checkedValue=e,this.syncMenuState())},syncMenuState:function(){var e=this.multiple,t=this.checkStrictly;this.syncActivePath(),e&&this.syncMultiCheckState(),t&&this.calculateCheckedNodePaths(),this.$nextTick(this.scrollIntoView)},syncMultiCheckState:function(){var e=this,t=this.getFlattedNodes(this.leafOnly);t.forEach((function(t){t.syncCheckState(e.checkedValue)}))},syncActivePath:function(){var e=this,t=this.store,n=this.multiple,i=this.activePath,r=this.checkedValue;if(Object(_[\"isEmpty\"])(i))if(Object(_[\"isEmpty\"])(r))this.activePath=[],this.menus=[t.getNodes()];else{var a=n?r[0]:r,o=this.getNodeByValue(a)||{},s=(o.pathNodes||[]).slice(0,-1);this.expandNodes(s)}else{var l=i.map((function(t){return e.getNodeByValue(t.getValue())}));this.expandNodes(l)}},expandNodes:function(e){var t=this;e.forEach((function(e){return t.handleExpand(e,!0)}))},calculateCheckedNodePaths:function(){var e=this,t=this.checkedValue,n=this.multiple,i=n?Object(_[\"coerceTruthyValueToArray\"])(t):[t];this.checkedNodePaths=i.map((function(t){var n=e.getNodeByValue(t);return n?n.pathNodes:[]}))},handleKeyDown:function(e){var t=e.target,n=e.keyCode;switch(n){case Y.up:var i=Q(t,-1);Z(i);break;case Y.down:var r=Q(t,1);Z(r);break;case Y.left:var a=this.$refs.menu[X(t)-1];if(a){var o=a.$el.querySelector('.el-cascader-node[aria-expanded=\"true\"]');Z(o)}break;case Y.right:var s=this.$refs.menu[X(t)+1];if(s){var l=s.$el.querySelector('.el-cascader-node[tabindex=\"-1\"]');Z(l)}break;case Y.enter:J(t);break;case Y.esc:case Y.tab:this.$emit(\"close\");break;default:return}},handleExpand:function(e,t){var n=this.activePath,i=e.level,r=n.slice(0,i-1),a=this.menus.slice(0,i);if(e.isLeaf||(r.push(e),a.push(e.children)),this.activePath=r,this.menus=a,!t){var o=r.map((function(e){return e.getValue()})),s=n.map((function(e){return e.getValue()}));Object(_[\"valueEquals\"])(o,s)||(this.$emit(\"active-item-change\",o),this.$emit(\"expand-change\",o))}},handleCheckChange:function(e){this.checkedValue=e},lazyLoad:function(e,t){var n=this,i=this.config;e||(e=e||{root:!0,level:0},this.store=new U([],i),this.menus=[this.store.getNodes()]),e.loading=!0;var r=function(i){var r=e.root?null:e;if(i&&i.length&&n.store.appendNodes(i,r),e.loading=!1,e.loaded=!0,Array.isArray(n.checkedValue)){var a=n.checkedValue[n.loadCount++],o=n.config.value,s=n.config.leaf;if(Array.isArray(i)&&i.filter((function(e){return e[o]===a})).length>0){var l=n.store.getNodeByValue(a);l.data[s]||n.lazyLoad(l,(function(){n.handleExpand(l)})),n.loadCount===n.checkedValue.length&&n.$parent.computePresentText()}}t&&t(i)};i.lazyLoad(e,r)},calculateMultiCheckedValue:function(){this.checkedValue=this.getCheckedNodes(this.leafOnly).map((function(e){return e.getValueByOption()}))},scrollIntoView:function(){if(!this.$isServer){var e=this.$refs.menu||[];e.forEach((function(e){var t=e.$el;if(t){var n=t.querySelector(\".el-scrollbar__wrap\"),i=t.querySelector(\".el-cascader-node.is-active\")||t.querySelector(\".el-cascader-node.in-active-path\");V()(n,i)}}))}},getNodeByValue:function(e){return this.store.getNodeByValue(e)},getFlattedNodes:function(e){var t=!this.config.lazy;return this.store.getFlattedNodes(e,t)},getCheckedNodes:function(e){var t=this.checkedValue,n=this.multiple;if(n){var i=this.getFlattedNodes(e);return i.filter((function(e){return e.checked}))}return Object(_[\"isEmpty\"])(t)?[]:[this.getNodeByValue(t)]},clearCheckedNodes:function(){var e=this.config,t=this.leafOnly,n=e.multiple,i=e.emitPath;n?(this.getCheckedNodes(t).filter((function(e){return!e.isDisabled})).forEach((function(e){return e.doCheck(!1)})),this.calculateMultiCheckedValue()):this.checkedValue=i?[]:null}}},te=ee,ne=Object(v[\"a\"])(te,i,r,!1,null,null,null);ne.options.__file=\"packages/cascader-panel/src/cascader-panel.vue\";var ie=ne.exports;ie.install=function(e){e.component(ie.name,ie)};t[\"default\"]=ie},6:function(e,t){e.exports=n(\"6b7c\")},9:function(e,t){e.exports=n(\"7f4d\")}})},\"47ee\":function(e,t,n){var i=n(\"c3a1\"),r=n(\"9aa9\"),a=n(\"355d\");e.exports=function(e){var t=i(e),n=r.f;if(n){var o,s=n(e),l=a.f,c=0;while(s.length>c)l.call(e,o=s[c++])&&t.push(o)}return t}},\"481b\":function(e,t){e.exports={}},\"485f\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(e){const t={className:\"params\",begin:\"\\\\(\",end:\"\\\\)\"},n={variants:[e.COMMENT(\"!\",\"$\",{relevance:0}),e.COMMENT(\"^C[ ]\",\"$\",{relevance:0}),e.COMMENT(\"^C$\",\"$\",{relevance:0})]},r=/(_[a-z_\\d]+)?/,a=/([de][+-]?\\d+)?/,o={className:\"number\",variants:[{begin:i(/\\b\\d+/,/\\.(\\d*)/,a,r)},{begin:i(/\\b\\d+/,a,r)},{begin:i(/\\.\\d+/,a,r)}],relevance:0},s={className:\"function\",beginKeywords:\"subroutine function program\",illegal:\"[${=\\\\n]\",contains:[e.UNDERSCORE_TITLE_MODE,t]},l={className:\"string\",relevance:0,variants:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},c={literal:\".False. .True.\",keyword:\"kind do concurrent local shared while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then block endblock endassociate public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure impure integer real character complex logical codimension dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_of acosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image sync change team co_broadcast co_max co_min co_sum co_reduce\"};return{name:\"Fortran\",case_insensitive:!0,aliases:[\"f90\",\"f95\"],keywords:c,illegal:/\\/\\*/,contains:[l,s,{begin:/^C\\s*=(?!=)/,relevance:0},n,o]}}e.exports=r},4897:function(e,t,n){\"use strict\";t.__esModule=!0,t.i18n=t.use=t.t=void 0;var i=n(\"f0d9\"),r=d(i),a=n(\"2b0e\"),o=d(a),s=n(\"3c4e\"),l=d(s),c=n(\"9d7e\"),u=d(c);function d(e){return e&&e.__esModule?e:{default:e}}var p=(0,u.default)(o.default),h=r.default,f=!1,_=function(){var e=Object.getPrototypeOf(this||o.default).$t;if(\"function\"===typeof e&&o.default.locale)return f||(f=!0,o.default.locale(o.default.config.lang,(0,l.default)(h,o.default.locale(o.default.config.lang)||{},{clone:!0}))),e.apply(this,arguments)},m=t.t=function(e,t){var n=_.apply(this,arguments);if(null!==n&&void 0!==n)return n;for(var i=e.split(\".\"),r=h,a=0,o=i.length;a<o;a++){var s=i[a];if(n=r[s],a===o-1)return p(n,t);if(!n)return\"\";r=n}return\"\"},g=t.use=function(e){h=e||h},b=t.i18n=function(e){_=e||_};t.default={use:g,t:m,i18n:b}},\"48b8\":function(e,t){function n(e){return{name:\"Diff\",aliases:[\"patch\"],contains:[{className:\"meta\",relevance:10,variants:[{begin:/^@@ +-\\d+,\\d+ +\\+\\d+,\\d+ +@@/},{begin:/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/},{begin:/^--- +\\d+,\\d+ +----$/}]},{className:\"comment\",variants:[{begin:/Index: /,end:/$/},{begin:/^index/,end:/$/},{begin:/={3,}/,end:/$/},{begin:/^-{3}/,end:/$/},{begin:/^\\*{3} /,end:/$/},{begin:/^\\+{3}/,end:/$/},{begin:/^\\*{15}$/},{begin:/^diff --git/,end:/$/}]},{className:\"addition\",begin:/^\\+/,end:/$/},{className:\"deletion\",begin:/^-/,end:/$/},{className:\"addition\",begin:/^!/,end:/$/}]}}e.exports=n},\"4a59\":function(e,t,n){var i=n(\"9b43\"),r=n(\"1fa8\"),a=n(\"33a4\"),o=n(\"cb7c\"),s=n(\"9def\"),l=n(\"27ee\"),c={},u={};t=e.exports=function(e,t,n,d,p){var h,f,_,m,g=p?function(){return e}:l(e),b=i(n,d,t?2:1),v=0;if(\"function\"!=typeof g)throw TypeError(e+\" is not iterable!\");if(a(g)){for(h=s(e.length);h>v;v++)if(m=t?b(o(f=e[v])[0],f[1]):b(e[v]),m===c||m===u)return m}else for(_=g.call(e);!(f=_.next()).done;)if(m=r(_,b,f.value,t),m===c||m===u)return m};t.BREAK=c,t.RETURN=u},\"4a5e\":function(e,t){function n(e){return{name:\"Cap’n Proto\",aliases:[\"capnp\"],keywords:{keyword:\"struct enum interface union group import using const annotation extends in of on as with from fixed\",built_in:\"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List\",literal:\"true false\"},contains:[e.QUOTE_STRING_MODE,e.NUMBER_MODE,e.HASH_COMMENT_MODE,{className:\"meta\",begin:/@0x[\\w\\d]{16};/,illegal:/\\n/},{className:\"symbol\",begin:/@\\d+\\b/},{className:\"class\",beginKeywords:\"struct enum\",end:/\\{/,illegal:/\\n/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]},{className:\"class\",beginKeywords:\"interface\",end:/\\{/,illegal:/\\n/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]}]}}e.exports=n},\"4a7b\":function(e,t,n){\"use strict\";var i=n(\"c532\");e.exports=function(e,t){t=t||{};var n={},r=[\"url\",\"method\",\"params\",\"data\"],a=[\"headers\",\"auth\",\"proxy\"],o=[\"baseURL\",\"url\",\"transformRequest\",\"transformResponse\",\"paramsSerializer\",\"timeout\",\"withCredentials\",\"adapter\",\"responseType\",\"xsrfCookieName\",\"xsrfHeaderName\",\"onUploadProgress\",\"onDownloadProgress\",\"maxContentLength\",\"validateStatus\",\"maxRedirects\",\"httpAgent\",\"httpsAgent\",\"cancelToken\",\"socketPath\"];i.forEach(r,(function(e){\"undefined\"!==typeof t[e]&&(n[e]=t[e])})),i.forEach(a,(function(r){i.isObject(t[r])?n[r]=i.deepMerge(e[r],t[r]):\"undefined\"!==typeof t[r]?n[r]=t[r]:i.isObject(e[r])?n[r]=i.deepMerge(e[r]):\"undefined\"!==typeof e[r]&&(n[r]=e[r])})),i.forEach(o,(function(i){\"undefined\"!==typeof t[i]?n[i]=t[i]:\"undefined\"!==typeof e[i]&&(n[i]=e[i])}));var s=r.concat(a).concat(o),l=Object.keys(t).filter((function(e){return-1===s.indexOf(e)}));return i.forEach(l,(function(i){\"undefined\"!==typeof t[i]?n[i]=t[i]:\"undefined\"!==typeof e[i]&&(n[i]=e[i])})),n}},\"4b26\":function(e,t,n){\"use strict\";t.__esModule=!0;var i=n(\"2b0e\"),r=o(i),a=n(\"5924\");function o(e){return e&&e.__esModule?e:{default:e}}var s=!1,l=!1,c=void 0,u=function(){if(!r.default.prototype.$isServer){var e=p.modalDom;return e?s=!0:(s=!1,e=document.createElement(\"div\"),p.modalDom=e,e.addEventListener(\"touchmove\",(function(e){e.preventDefault(),e.stopPropagation()})),e.addEventListener(\"click\",(function(){p.doOnModalClick&&p.doOnModalClick()}))),e}},d={},p={modalFade:!0,getInstance:function(e){return d[e]},register:function(e,t){e&&t&&(d[e]=t)},deregister:function(e){e&&(d[e]=null,delete d[e])},nextZIndex:function(){return p.zIndex++},modalStack:[],doOnModalClick:function(){var e=p.modalStack[p.modalStack.length-1];if(e){var t=p.getInstance(e.id);t&&t.closeOnClickModal&&t.close()}},openModal:function(e,t,n,i,o){if(!r.default.prototype.$isServer&&e&&void 0!==t){this.modalFade=o;for(var l=this.modalStack,c=0,d=l.length;c<d;c++){var p=l[c];if(p.id===e)return}var h=u();if((0,a.addClass)(h,\"v-modal\"),this.modalFade&&!s&&(0,a.addClass)(h,\"v-modal-enter\"),i){var f=i.trim().split(/\\s+/);f.forEach((function(e){return(0,a.addClass)(h,e)}))}setTimeout((function(){(0,a.removeClass)(h,\"v-modal-enter\")}),200),n&&n.parentNode&&11!==n.parentNode.nodeType?n.parentNode.appendChild(h):document.body.appendChild(h),t&&(h.style.zIndex=t),h.tabIndex=0,h.style.display=\"\",this.modalStack.push({id:e,zIndex:t,modalClass:i})}},closeModal:function(e){var t=this.modalStack,n=u();if(t.length>0){var i=t[t.length-1];if(i.id===e){if(i.modalClass){var r=i.modalClass.trim().split(/\\s+/);r.forEach((function(e){return(0,a.removeClass)(n,e)}))}t.pop(),t.length>0&&(n.style.zIndex=t[t.length-1].zIndex)}else for(var o=t.length-1;o>=0;o--)if(t[o].id===e){t.splice(o,1);break}}0===t.length&&(this.modalFade&&(0,a.addClass)(n,\"v-modal-leave\"),setTimeout((function(){0===t.length&&(n.parentNode&&n.parentNode.removeChild(n),n.style.display=\"none\",p.modalDom=void 0),(0,a.removeClass)(n,\"v-modal-leave\")}),200))}};Object.defineProperty(p,\"zIndex\",{configurable:!0,get:function(){return l||(c=c||(r.default.prototype.$ELEMENT||{}).zIndex||2e3,l=!0),c},set:function(e){c=e}});var h=function(){if(!r.default.prototype.$isServer&&p.modalStack.length>0){var e=p.modalStack[p.modalStack.length-1];if(!e)return;var t=p.getInstance(e.id);return t}};r.default.prototype.$isServer||window.addEventListener(\"keydown\",(function(e){if(27===e.keyCode){var t=h();t&&t.closeOnPressEscape&&(t.handleClose?t.handleClose():t.handleAction?t.handleAction(\"cancel\"):t.close())}})),t.default=p},\"4bf8\":function(e,t,n){var i=n(\"be13\");e.exports=function(e){return Object(i(e))}},\"4dd1\":function(e,t){const n=\"[A-Za-z$_][0-9A-Za-z$_]*\",i=[\"as\",\"in\",\"of\",\"if\",\"for\",\"while\",\"finally\",\"var\",\"new\",\"function\",\"do\",\"return\",\"void\",\"else\",\"break\",\"catch\",\"instanceof\",\"with\",\"throw\",\"case\",\"default\",\"try\",\"switch\",\"continue\",\"typeof\",\"delete\",\"let\",\"yield\",\"const\",\"class\",\"debugger\",\"async\",\"await\",\"static\",\"import\",\"from\",\"export\",\"extends\"],r=[\"true\",\"false\",\"null\",\"undefined\",\"NaN\",\"Infinity\"],a=[\"Intl\",\"DataView\",\"Number\",\"Math\",\"Date\",\"String\",\"RegExp\",\"Object\",\"Function\",\"Boolean\",\"Error\",\"Symbol\",\"Set\",\"Map\",\"WeakSet\",\"WeakMap\",\"Proxy\",\"Reflect\",\"JSON\",\"Promise\",\"Float64Array\",\"Int16Array\",\"Int32Array\",\"Int8Array\",\"Uint16Array\",\"Uint32Array\",\"Float32Array\",\"Array\",\"Uint8Array\",\"Uint8ClampedArray\",\"ArrayBuffer\"],o=[\"EvalError\",\"InternalError\",\"RangeError\",\"ReferenceError\",\"SyntaxError\",\"TypeError\",\"URIError\"],s=[\"setInterval\",\"setTimeout\",\"clearInterval\",\"clearTimeout\",\"require\",\"exports\",\"eval\",\"isFinite\",\"isNaN\",\"parseFloat\",\"parseInt\",\"decodeURI\",\"decodeURIComponent\",\"encodeURI\",\"encodeURIComponent\",\"escape\",\"unescape\"],l=[\"arguments\",\"this\",\"super\",\"console\",\"window\",\"document\",\"localStorage\",\"module\",\"global\"],c=[].concat(s,l,a,o);function u(e){return e?\"string\"===typeof e?e:e.source:null}function d(e){return p(\"(?=\",e,\")\")}function p(...e){const t=e.map(e=>u(e)).join(\"\");return t}function h(e){const t=(e,{after:t})=>{const n=\"</\"+e[0].slice(1),i=e.input.indexOf(n,t);return-1!==i},a=n,o={begin:\"<>\",end:\"</>\"},s={begin:/<[A-Za-z0-9\\\\._:-]+/,end:/\\/[A-Za-z0-9\\\\._:-]+>|\\/>/,isTrulyOpeningTag:(e,n)=>{const i=e[0].length+e.index,r=e.input[i];\"<\"!==r?\">\"===r&&(t(e,{after:i})||n.ignoreMatch()):n.ignoreMatch()}},l={$pattern:n,keyword:i,literal:r,built_in:c},u=\"[0-9](_?[0-9])*\",h=`\\\\.(${u})`,f=\"0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*\",_={className:\"number\",variants:[{begin:`(\\\\b(${f})((${h})|\\\\.)?|(${h}))[eE][+-]?(${u})\\\\b`},{begin:`\\\\b(${f})\\\\b((${h})\\\\b|\\\\.)?|(${h})\\\\b`},{begin:\"\\\\b(0|[1-9](_?[0-9])*)n\\\\b\"},{begin:\"\\\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\\\b\"},{begin:\"\\\\b0[bB][0-1](_?[0-1])*n?\\\\b\"},{begin:\"\\\\b0[oO][0-7](_?[0-7])*n?\\\\b\"},{begin:\"\\\\b0[0-7]+n?\\\\b\"}],relevance:0},m={className:\"subst\",begin:\"\\\\$\\\\{\",end:\"\\\\}\",keywords:l,contains:[]},g={begin:\"html`\",end:\"\",starts:{end:\"`\",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,m],subLanguage:\"xml\"}},b={begin:\"css`\",end:\"\",starts:{end:\"`\",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,m],subLanguage:\"css\"}},v={className:\"string\",begin:\"`\",end:\"`\",contains:[e.BACKSLASH_ESCAPE,m]},E=e.COMMENT(/\\/\\*\\*(?!\\/)/,\"\\\\*/\",{relevance:0,contains:[{className:\"doctag\",begin:\"@[A-Za-z]+\",contains:[{className:\"type\",begin:\"\\\\{\",end:\"\\\\}\",relevance:0},{className:\"variable\",begin:a+\"(?=\\\\s*(-)|$)\",endsParent:!0,relevance:0},{begin:/(?=[^\\n])\\s/,relevance:0}]}]}),y={className:\"comment\",variants:[E,e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},S=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,g,b,v,_,e.REGEXP_MODE];m.contains=S.concat({begin:/\\{/,end:/\\}/,keywords:l,contains:[\"self\"].concat(S)});const C=[].concat(y,m.contains),T=C.concat([{begin:/\\(/,end:/\\)/,keywords:l,contains:[\"self\"].concat(C)}]),x={className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:T};return{name:\"Javascript\",aliases:[\"js\",\"jsx\",\"mjs\",\"cjs\"],keywords:l,exports:{PARAMS_CONTAINS:T},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:\"shebang\",binary:\"node\",relevance:5}),{label:\"use_strict\",className:\"meta\",relevance:10,begin:/^\\s*['\"]use (strict|asm)['\"]/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,g,b,v,y,_,{begin:p(/[{,\\n]\\s*/,d(p(/(((\\/\\/.*$)|(\\/\\*(\\*[^/]|[^*])*\\*\\/))\\s*)*/,a+\"\\\\s*:\"))),relevance:0,contains:[{className:\"attr\",begin:a+d(\"\\\\s*:\"),relevance:0}]},{begin:\"(\"+e.RE_STARTERS_RE+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",keywords:\"return throw case\",contains:[y,e.REGEXP_MODE,{className:\"function\",begin:\"(\\\\([^()]*(\\\\([^()]*(\\\\([^()]*\\\\)[^()]*)*\\\\)[^()]*)*\\\\)|\"+e.UNDERSCORE_IDENT_RE+\")\\\\s*=>\",returnBegin:!0,end:\"\\\\s*=>\",contains:[{className:\"params\",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\\(\\s*\\)/,skip:!0},{begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:T}]}]},{begin:/,/,relevance:0},{className:\"\",begin:/\\s/,end:/\\s*/,skip:!0},{variants:[{begin:o.begin,end:o.end},{begin:s.begin,\"on:begin\":s.isTrulyOpeningTag,end:s.end}],subLanguage:\"xml\",contains:[{begin:s.begin,end:s.end,skip:!0,contains:[\"self\"]}]}],relevance:0},{className:\"function\",beginKeywords:\"function\",end:/[{;]/,excludeEnd:!0,keywords:l,contains:[\"self\",e.inherit(e.TITLE_MODE,{begin:a}),x],illegal:/%/},{beginKeywords:\"while if switch catch for\"},{className:\"function\",begin:e.UNDERSCORE_IDENT_RE+\"\\\\([^()]*(\\\\([^()]*(\\\\([^()]*\\\\)[^()]*)*\\\\)[^()]*)*\\\\)\\\\s*\\\\{\",returnBegin:!0,contains:[x,e.inherit(e.TITLE_MODE,{begin:a})]},{variants:[{begin:\"\\\\.\"+a},{begin:\"\\\\$\"+a}],relevance:0},{className:\"class\",beginKeywords:\"class\",end:/[{;=]/,excludeEnd:!0,illegal:/[:\"[\\]]/,contains:[{beginKeywords:\"extends\"},e.UNDERSCORE_TITLE_MODE]},{begin:/\\b(?=constructor)/,end:/[{;]/,excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:a}),\"self\",x]},{begin:\"(get|set)\\\\s+(?=\"+a+\"\\\\()\",end:/\\{/,keywords:\"get set\",contains:[e.inherit(e.TITLE_MODE,{begin:a}),{begin:/\\(\\)/},x]},{begin:/\\$[(.]/}]}}e.exports=h},\"4e4b\":function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=61)}([function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},,,function(e,t){e.exports=n(\"8122\")},function(e,t){e.exports=n(\"d010\")},function(e,t){e.exports=n(\"e974\")},function(e,t){e.exports=n(\"6b7c\")},,,,function(e,t){e.exports=n(\"f3ad\")},,function(e,t){e.exports=n(\"417f\")},,function(e,t){e.exports=n(\"14e9\")},,function(e,t){e.exports=n(\"4010\")},function(e,t){e.exports=n(\"0e15\")},,function(e,t){e.exports=n(\"4897\")},,function(e,t){e.exports=n(\"d397\")},function(e,t){e.exports=n(\"12f2\")},,,,,,,,,function(e,t){e.exports=n(\"2a5e\")},,,function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"li\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-select-dropdown__item\",class:{selected:e.itemSelected,\"is-disabled\":e.disabled||e.groupDisabled||e.limitReached,hover:e.hover},on:{mouseenter:e.hoverItem,click:function(t){return t.stopPropagation(),e.selectOptionClick(t)}}},[e._t(\"default\",[n(\"span\",[e._v(e._s(e.currentLabel))])])],2)},r=[];i._withStripped=!0;var a=n(4),o=n.n(a),s=n(3),l=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},c={mixins:[o.a],name:\"ElOption\",componentName:\"ElOption\",inject:[\"select\"],props:{value:{required:!0},label:[String,Number],created:Boolean,disabled:{type:Boolean,default:!1}},data:function(){return{index:-1,groupDisabled:!1,visible:!0,hitState:!1,hover:!1}},computed:{isObject:function(){return\"[object object]\"===Object.prototype.toString.call(this.value).toLowerCase()},currentLabel:function(){return this.label||(this.isObject?\"\":this.value)},currentValue:function(){return this.value||this.label||\"\"},itemSelected:function(){return this.select.multiple?this.contains(this.select.value,this.value):this.isEqual(this.value,this.select.value)},limitReached:function(){return!!this.select.multiple&&(!this.itemSelected&&(this.select.value||[]).length>=this.select.multipleLimit&&this.select.multipleLimit>0)}},watch:{currentLabel:function(){this.created||this.select.remote||this.dispatch(\"ElSelect\",\"setSelected\")},value:function(e,t){var n=this.select,i=n.remote,r=n.valueKey;if(!this.created&&!i){if(r&&\"object\"===(\"undefined\"===typeof e?\"undefined\":l(e))&&\"object\"===(\"undefined\"===typeof t?\"undefined\":l(t))&&e[r]===t[r])return;this.dispatch(\"ElSelect\",\"setSelected\")}}},methods:{isEqual:function(e,t){if(this.isObject){var n=this.select.valueKey;return Object(s[\"getValueByPath\"])(e,n)===Object(s[\"getValueByPath\"])(t,n)}return e===t},contains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1];if(this.isObject){var n=this.select.valueKey;return e&&e.some((function(e){return Object(s[\"getValueByPath\"])(e,n)===Object(s[\"getValueByPath\"])(t,n)}))}return e&&e.indexOf(t)>-1},handleGroupDisabled:function(e){this.groupDisabled=e},hoverItem:function(){this.disabled||this.groupDisabled||(this.select.hoverIndex=this.select.options.indexOf(this))},selectOptionClick:function(){!0!==this.disabled&&!0!==this.groupDisabled&&this.dispatch(\"ElSelect\",\"handleOptionClick\",[this,!0])},queryChange:function(e){this.visible=new RegExp(Object(s[\"escapeRegexpString\"])(e),\"i\").test(this.currentLabel)||this.created,this.visible||this.select.filteredOptionsCount--}},created:function(){this.select.options.push(this),this.select.cachedOptions.push(this),this.select.optionsCount++,this.select.filteredOptionsCount++,this.$on(\"queryChange\",this.queryChange),this.$on(\"handleGroupDisabled\",this.handleGroupDisabled)},beforeDestroy:function(){var e=this.select,t=e.selected,n=e.multiple,i=n?t:[t],r=this.select.cachedOptions.indexOf(this),a=i.indexOf(this);r>-1&&a<0&&this.select.cachedOptions.splice(r,1),this.select.onOptionDestroy(this.select.options.indexOf(this))}},u=c,d=n(0),p=Object(d[\"a\"])(u,i,r,!1,null,null,null);p.options.__file=\"packages/select/src/option.vue\";t[\"a\"]=p.exports},,,,function(e,t){e.exports=n(\"8bbc\")},,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){\"use strict\";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{directives:[{name:\"clickoutside\",rawName:\"v-clickoutside\",value:e.handleClose,expression:\"handleClose\"}],staticClass:\"el-select\",class:[e.selectSize?\"el-select--\"+e.selectSize:\"\"],on:{click:function(t){return t.stopPropagation(),e.toggleMenu(t)}}},[e.multiple?n(\"div\",{ref:\"tags\",staticClass:\"el-select__tags\",style:{\"max-width\":e.inputWidth-32+\"px\",width:\"100%\"}},[e.collapseTags&&e.selected.length?n(\"span\",[n(\"el-tag\",{attrs:{closable:!e.selectDisabled,size:e.collapseTagSize,hit:e.selected[0].hitState,type:\"info\",\"disable-transitions\":\"\"},on:{close:function(t){e.deleteTag(t,e.selected[0])}}},[n(\"span\",{staticClass:\"el-select__tags-text\"},[e._v(e._s(e.selected[0].currentLabel))])]),e.selected.length>1?n(\"el-tag\",{attrs:{closable:!1,size:e.collapseTagSize,type:\"info\",\"disable-transitions\":\"\"}},[n(\"span\",{staticClass:\"el-select__tags-text\"},[e._v(\"+ \"+e._s(e.selected.length-1))])]):e._e()],1):e._e(),e.collapseTags?e._e():n(\"transition-group\",{on:{\"after-leave\":e.resetInputHeight}},e._l(e.selected,(function(t){return n(\"el-tag\",{key:e.getValueKey(t),attrs:{closable:!e.selectDisabled,size:e.collapseTagSize,hit:t.hitState,type:\"info\",\"disable-transitions\":\"\"},on:{close:function(n){e.deleteTag(n,t)}}},[n(\"span\",{staticClass:\"el-select__tags-text\"},[e._v(e._s(t.currentLabel))])])})),1),e.filterable?n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.query,expression:\"query\"}],ref:\"input\",staticClass:\"el-select__input\",class:[e.selectSize?\"is-\"+e.selectSize:\"\"],style:{\"flex-grow\":\"1\",width:e.inputLength/(e.inputWidth-32)+\"%\",\"max-width\":e.inputWidth-42+\"px\"},attrs:{type:\"text\",disabled:e.selectDisabled,autocomplete:e.autoComplete||e.autocomplete},domProps:{value:e.query},on:{focus:e.handleFocus,blur:function(t){e.softFocus=!1},keyup:e.managePlaceholder,keydown:[e.resetInputState,function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"]))return null;t.preventDefault(),e.navigateOptions(\"next\")},function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"]))return null;t.preventDefault(),e.navigateOptions(\"prev\")},function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:(t.preventDefault(),e.selectOption(t))},function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"esc\",27,t.key,[\"Esc\",\"Escape\"]))return null;t.stopPropagation(),t.preventDefault(),e.visible=!1},function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"delete\",[8,46],t.key,[\"Backspace\",\"Delete\",\"Del\"])?null:e.deletePrevTag(t)},function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"tab\",9,t.key,\"Tab\"))return null;e.visible=!1}],compositionstart:e.handleComposition,compositionupdate:e.handleComposition,compositionend:e.handleComposition,input:[function(t){t.target.composing||(e.query=t.target.value)},e.debouncedQueryChange]}}):e._e()],1):e._e(),n(\"el-input\",{ref:\"reference\",class:{\"is-focus\":e.visible},attrs:{type:\"text\",placeholder:e.currentPlaceholder,name:e.name,id:e.id,autocomplete:e.autoComplete||e.autocomplete,size:e.selectSize,disabled:e.selectDisabled,readonly:e.readonly,\"validate-event\":!1,tabindex:e.multiple&&e.filterable?\"-1\":null},on:{focus:e.handleFocus,blur:e.handleBlur},nativeOn:{keyup:function(t){return e.debouncedOnInputChange(t)},keydown:[function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"]))return null;t.stopPropagation(),t.preventDefault(),e.navigateOptions(\"next\")},function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"]))return null;t.stopPropagation(),t.preventDefault(),e.navigateOptions(\"prev\")},function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:(t.preventDefault(),e.selectOption(t))},function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"esc\",27,t.key,[\"Esc\",\"Escape\"]))return null;t.stopPropagation(),t.preventDefault(),e.visible=!1},function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"tab\",9,t.key,\"Tab\"))return null;e.visible=!1}],paste:function(t){return e.debouncedOnInputChange(t)},mouseenter:function(t){e.inputHovering=!0},mouseleave:function(t){e.inputHovering=!1}},model:{value:e.selectedLabel,callback:function(t){e.selectedLabel=t},expression:\"selectedLabel\"}},[e.$slots.prefix?n(\"template\",{slot:\"prefix\"},[e._t(\"prefix\")],2):e._e(),n(\"template\",{slot:\"suffix\"},[n(\"i\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.showClose,expression:\"!showClose\"}],class:[\"el-select__caret\",\"el-input__icon\",\"el-icon-\"+e.iconClass]}),e.showClose?n(\"i\",{staticClass:\"el-select__caret el-input__icon el-icon-circle-close\",on:{click:e.handleClearClick}}):e._e()])],2),n(\"transition\",{attrs:{name:\"el-zoom-in-top\"},on:{\"before-enter\":e.handleMenuEnter,\"after-leave\":e.doDestroy}},[n(\"el-select-menu\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible&&!1!==e.emptyText,expression:\"visible && emptyText !== false\"}],ref:\"popper\",attrs:{\"append-to-body\":e.popperAppendToBody}},[n(\"el-scrollbar\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.options.length>0&&!e.loading,expression:\"options.length > 0 && !loading\"}],ref:\"scrollbar\",class:{\"is-empty\":!e.allowCreate&&e.query&&0===e.filteredOptionsCount},attrs:{tag:\"ul\",\"wrap-class\":\"el-select-dropdown__wrap\",\"view-class\":\"el-select-dropdown__list\"}},[e.showNewOption?n(\"el-option\",{attrs:{value:e.query,created:\"\"}}):e._e(),e._t(\"default\")],2),e.emptyText&&(!e.allowCreate||e.loading||e.allowCreate&&0===e.options.length)?[e.$slots.empty?e._t(\"empty\"):n(\"p\",{staticClass:\"el-select-dropdown__empty\"},[e._v(\"\\n          \"+e._s(e.emptyText)+\"\\n        \")])]:e._e()],2)],1)],1)},r=[];i._withStripped=!0;var a=n(4),o=n.n(a),s=n(22),l=n.n(s),c=n(6),u=n.n(c),d=n(10),p=n.n(d),h=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-select-dropdown el-popper\",class:[{\"is-multiple\":e.$parent.multiple},e.popperClass],style:{minWidth:e.minWidth}},[e._t(\"default\")],2)},f=[];h._withStripped=!0;var _=n(5),m=n.n(_),g={name:\"ElSelectDropdown\",componentName:\"ElSelectDropdown\",mixins:[m.a],props:{placement:{default:\"bottom-start\"},boundariesPadding:{default:0},popperOptions:{default:function(){return{gpuAcceleration:!1}}},visibleArrow:{default:!0},appendToBody:{type:Boolean,default:!0}},data:function(){return{minWidth:\"\"}},computed:{popperClass:function(){return this.$parent.popperClass}},watch:{\"$parent.inputWidth\":function(){this.minWidth=this.$parent.$el.getBoundingClientRect().width+\"px\"}},mounted:function(){var e=this;this.referenceElm=this.$parent.$refs.reference.$el,this.$parent.popperElm=this.popperElm=this.$el,this.$on(\"updatePopper\",(function(){e.$parent.visible&&e.updatePopper()})),this.$on(\"destroyPopper\",this.destroyPopper)}},b=g,v=n(0),E=Object(v[\"a\"])(b,h,f,!1,null,null,null);E.options.__file=\"packages/select/src/select-dropdown.vue\";var y=E.exports,S=n(34),C=n(38),T=n.n(C),x=n(14),w=n.n(x),O=n(17),N=n.n(O),R=n(12),k=n.n(R),A=n(16),D=n(19),I=n(31),M=n.n(I),L=n(3),P={data:function(){return{hoverOption:-1}},computed:{optionsAllDisabled:function(){return this.options.filter((function(e){return e.visible})).every((function(e){return e.disabled}))}},watch:{hoverIndex:function(e){var t=this;\"number\"===typeof e&&e>-1&&(this.hoverOption=this.options[e]||{}),this.options.forEach((function(e){e.hover=t.hoverOption===e}))}},methods:{navigateOptions:function(e){var t=this;if(this.visible){if(0!==this.options.length&&0!==this.filteredOptionsCount&&!this.optionsAllDisabled){\"next\"===e?(this.hoverIndex++,this.hoverIndex===this.options.length&&(this.hoverIndex=0)):\"prev\"===e&&(this.hoverIndex--,this.hoverIndex<0&&(this.hoverIndex=this.options.length-1));var n=this.options[this.hoverIndex];!0!==n.disabled&&!0!==n.groupDisabled&&n.visible||this.navigateOptions(e),this.$nextTick((function(){return t.scrollToOption(t.hoverOption)}))}}else this.visible=!0}}},F=n(21),B={mixins:[o.a,u.a,l()(\"reference\"),P],name:\"ElSelect\",componentName:\"ElSelect\",inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},provide:function(){return{select:this}},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},readonly:function(){return!this.filterable||this.multiple||!Object(L[\"isIE\"])()&&!Object(L[\"isEdge\"])()&&!this.visible},showClose:function(){var e=this.multiple?Array.isArray(this.value)&&this.value.length>0:void 0!==this.value&&null!==this.value&&\"\"!==this.value,t=this.clearable&&!this.selectDisabled&&this.inputHovering&&e;return t},iconClass:function(){return this.remote&&this.filterable?\"\":this.visible?\"arrow-up is-reverse\":\"arrow-up\"},debounce:function(){return this.remote?300:0},emptyText:function(){return this.loading?this.loadingText||this.t(\"el.select.loading\"):(!this.remote||\"\"!==this.query||0!==this.options.length)&&(this.filterable&&this.query&&this.options.length>0&&0===this.filteredOptionsCount?this.noMatchText||this.t(\"el.select.noMatch\"):0===this.options.length?this.noDataText||this.t(\"el.select.noData\"):null)},showNewOption:function(){var e=this,t=this.options.filter((function(e){return!e.created})).some((function(t){return t.currentLabel===e.query}));return this.filterable&&this.allowCreate&&\"\"!==this.query&&!t},selectSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},selectDisabled:function(){return this.disabled||(this.elForm||{}).disabled},collapseTagSize:function(){return[\"small\",\"mini\"].indexOf(this.selectSize)>-1?\"mini\":\"small\"}},components:{ElInput:p.a,ElSelectMenu:y,ElOption:S[\"a\"],ElTag:T.a,ElScrollbar:w.a},directives:{Clickoutside:k.a},props:{name:String,id:String,value:{required:!0},autocomplete:{type:String,default:\"off\"},autoComplete:{type:String,validator:function(e){return!0}},automaticDropdown:Boolean,size:String,disabled:Boolean,clearable:Boolean,filterable:Boolean,allowCreate:Boolean,loading:Boolean,popperClass:String,remote:Boolean,loadingText:String,noMatchText:String,noDataText:String,remoteMethod:Function,filterMethod:Function,multiple:Boolean,multipleLimit:{type:Number,default:0},placeholder:{type:String,default:function(){return Object(D[\"t\"])(\"el.select.placeholder\")}},defaultFirstOption:Boolean,reserveKeyword:Boolean,valueKey:{type:String,default:\"value\"},collapseTags:Boolean,popperAppendToBody:{type:Boolean,default:!0}},data:function(){return{options:[],cachedOptions:[],createdLabel:null,createdSelected:!1,selected:this.multiple?[]:{},inputLength:20,inputWidth:0,initialInputHeight:0,cachedPlaceHolder:\"\",optionsCount:0,filteredOptionsCount:0,visible:!1,softFocus:!1,selectedLabel:\"\",hoverIndex:-1,query:\"\",previousQuery:null,inputHovering:!1,currentPlaceholder:\"\",menuVisibleOnFocus:!1,isOnComposition:!1,isSilentBlur:!1}},watch:{selectDisabled:function(){var e=this;this.$nextTick((function(){e.resetInputHeight()}))},placeholder:function(e){this.cachedPlaceHolder=this.currentPlaceholder=e},value:function(e,t){this.multiple&&(this.resetInputHeight(),e&&e.length>0||this.$refs.input&&\"\"!==this.query?this.currentPlaceholder=\"\":this.currentPlaceholder=this.cachedPlaceHolder,this.filterable&&!this.reserveKeyword&&(this.query=\"\",this.handleQueryChange(this.query))),this.setSelected(),this.filterable&&!this.multiple&&(this.inputLength=20),Object(L[\"valueEquals\"])(e,t)||this.dispatch(\"ElFormItem\",\"el.form.change\",e)},visible:function(e){var t=this;e?(this.broadcast(\"ElSelectDropdown\",\"updatePopper\"),this.filterable&&(this.query=this.remote?\"\":this.selectedLabel,this.handleQueryChange(this.query),this.multiple?this.$refs.input.focus():(this.remote||(this.broadcast(\"ElOption\",\"queryChange\",\"\"),this.broadcast(\"ElOptionGroup\",\"queryChange\")),this.selectedLabel&&(this.currentPlaceholder=this.selectedLabel,this.selectedLabel=\"\")))):(this.broadcast(\"ElSelectDropdown\",\"destroyPopper\"),this.$refs.input&&this.$refs.input.blur(),this.query=\"\",this.previousQuery=null,this.selectedLabel=\"\",this.inputLength=20,this.menuVisibleOnFocus=!1,this.resetHoverIndex(),this.$nextTick((function(){t.$refs.input&&\"\"===t.$refs.input.value&&0===t.selected.length&&(t.currentPlaceholder=t.cachedPlaceHolder)})),this.multiple||(this.selected&&(this.filterable&&this.allowCreate&&this.createdSelected&&this.createdLabel?this.selectedLabel=this.createdLabel:this.selectedLabel=this.selected.currentLabel,this.filterable&&(this.query=this.selectedLabel)),this.filterable&&(this.currentPlaceholder=this.cachedPlaceHolder))),this.$emit(\"visible-change\",e)},options:function(){var e=this;if(!this.$isServer){this.$nextTick((function(){e.broadcast(\"ElSelectDropdown\",\"updatePopper\")})),this.multiple&&this.resetInputHeight();var t=this.$el.querySelectorAll(\"input\");-1===[].indexOf.call(t,document.activeElement)&&this.setSelected(),this.defaultFirstOption&&(this.filterable||this.remote)&&this.filteredOptionsCount&&this.checkDefaultFirstOption()}}},methods:{handleComposition:function(e){var t=this,n=e.target.value;if(\"compositionend\"===e.type)this.isOnComposition=!1,this.$nextTick((function(e){return t.handleQueryChange(n)}));else{var i=n[n.length-1]||\"\";this.isOnComposition=!Object(F[\"isKorean\"])(i)}},handleQueryChange:function(e){var t=this;this.previousQuery===e||this.isOnComposition||(null!==this.previousQuery||\"function\"!==typeof this.filterMethod&&\"function\"!==typeof this.remoteMethod?(this.previousQuery=e,this.$nextTick((function(){t.visible&&t.broadcast(\"ElSelectDropdown\",\"updatePopper\")})),this.hoverIndex=-1,this.multiple&&this.filterable&&this.$nextTick((function(){var e=15*t.$refs.input.value.length+20;t.inputLength=t.collapseTags?Math.min(50,e):e,t.managePlaceholder(),t.resetInputHeight()})),this.remote&&\"function\"===typeof this.remoteMethod?(this.hoverIndex=-1,this.remoteMethod(e)):\"function\"===typeof this.filterMethod?(this.filterMethod(e),this.broadcast(\"ElOptionGroup\",\"queryChange\")):(this.filteredOptionsCount=this.optionsCount,this.broadcast(\"ElOption\",\"queryChange\",e),this.broadcast(\"ElOptionGroup\",\"queryChange\")),this.defaultFirstOption&&(this.filterable||this.remote)&&this.filteredOptionsCount&&this.checkDefaultFirstOption()):this.previousQuery=e)},scrollToOption:function(e){var t=Array.isArray(e)&&e[0]?e[0].$el:e.$el;if(this.$refs.popper&&t){var n=this.$refs.popper.$el.querySelector(\".el-select-dropdown__wrap\");M()(n,t)}this.$refs.scrollbar&&this.$refs.scrollbar.handleScroll()},handleMenuEnter:function(){var e=this;this.$nextTick((function(){return e.scrollToOption(e.selected)}))},emitChange:function(e){Object(L[\"valueEquals\"])(this.value,e)||this.$emit(\"change\",e)},getOption:function(e){for(var t=void 0,n=\"[object object]\"===Object.prototype.toString.call(e).toLowerCase(),i=\"[object null]\"===Object.prototype.toString.call(e).toLowerCase(),r=\"[object undefined]\"===Object.prototype.toString.call(e).toLowerCase(),a=this.cachedOptions.length-1;a>=0;a--){var o=this.cachedOptions[a],s=n?Object(L[\"getValueByPath\"])(o.value,this.valueKey)===Object(L[\"getValueByPath\"])(e,this.valueKey):o.value===e;if(s){t=o;break}}if(t)return t;var l=n||i||r?\"\":e,c={value:e,currentLabel:l};return this.multiple&&(c.hitState=!1),c},setSelected:function(){var e=this;if(!this.multiple){var t=this.getOption(this.value);return t.created?(this.createdLabel=t.currentLabel,this.createdSelected=!0):this.createdSelected=!1,this.selectedLabel=t.currentLabel,this.selected=t,void(this.filterable&&(this.query=this.selectedLabel))}var n=[];Array.isArray(this.value)&&this.value.forEach((function(t){n.push(e.getOption(t))})),this.selected=n,this.$nextTick((function(){e.resetInputHeight()}))},handleFocus:function(e){this.softFocus?this.softFocus=!1:((this.automaticDropdown||this.filterable)&&(this.visible=!0,this.filterable&&(this.menuVisibleOnFocus=!0)),this.$emit(\"focus\",e))},blur:function(){this.visible=!1,this.$refs.reference.blur()},handleBlur:function(e){var t=this;setTimeout((function(){t.isSilentBlur?t.isSilentBlur=!1:t.$emit(\"blur\",e)}),50),this.softFocus=!1},handleClearClick:function(e){this.deleteSelected(e)},doDestroy:function(){this.$refs.popper&&this.$refs.popper.doDestroy()},handleClose:function(){this.visible=!1},toggleLastOptionHitState:function(e){if(Array.isArray(this.selected)){var t=this.selected[this.selected.length-1];if(t)return!0===e||!1===e?(t.hitState=e,e):(t.hitState=!t.hitState,t.hitState)}},deletePrevTag:function(e){if(e.target.value.length<=0&&!this.toggleLastOptionHitState()){var t=this.value.slice();t.pop(),this.$emit(\"input\",t),this.emitChange(t)}},managePlaceholder:function(){\"\"!==this.currentPlaceholder&&(this.currentPlaceholder=this.$refs.input.value?\"\":this.cachedPlaceHolder)},resetInputState:function(e){8!==e.keyCode&&this.toggleLastOptionHitState(!1),this.inputLength=15*this.$refs.input.value.length+20,this.resetInputHeight()},resetInputHeight:function(){var e=this;this.collapseTags&&!this.filterable||this.$nextTick((function(){if(e.$refs.reference){var t=e.$refs.reference.$el.childNodes,n=[].filter.call(t,(function(e){return\"INPUT\"===e.tagName}))[0],i=e.$refs.tags,r=e.initialInputHeight||40;n.style.height=0===e.selected.length?r+\"px\":Math.max(i?i.clientHeight+(i.clientHeight>r?6:0):0,r)+\"px\",e.visible&&!1!==e.emptyText&&e.broadcast(\"ElSelectDropdown\",\"updatePopper\")}}))},resetHoverIndex:function(){var e=this;setTimeout((function(){e.multiple?e.selected.length>0?e.hoverIndex=Math.min.apply(null,e.selected.map((function(t){return e.options.indexOf(t)}))):e.hoverIndex=-1:e.hoverIndex=e.options.indexOf(e.selected)}),300)},handleOptionSelect:function(e,t){var n=this;if(this.multiple){var i=(this.value||[]).slice(),r=this.getValueIndex(i,e.value);r>-1?i.splice(r,1):(this.multipleLimit<=0||i.length<this.multipleLimit)&&i.push(e.value),this.$emit(\"input\",i),this.emitChange(i),e.created&&(this.query=\"\",this.handleQueryChange(\"\"),this.inputLength=20),this.filterable&&this.$refs.input.focus()}else this.$emit(\"input\",e.value),this.emitChange(e.value),this.visible=!1;this.isSilentBlur=t,this.setSoftFocus(),this.visible||this.$nextTick((function(){n.scrollToOption(e)}))},setSoftFocus:function(){this.softFocus=!0;var e=this.$refs.input||this.$refs.reference;e&&e.focus()},getValueIndex:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1],n=\"[object object]\"===Object.prototype.toString.call(t).toLowerCase();if(n){var i=this.valueKey,r=-1;return e.some((function(e,n){return Object(L[\"getValueByPath\"])(e,i)===Object(L[\"getValueByPath\"])(t,i)&&(r=n,!0)})),r}return e.indexOf(t)},toggleMenu:function(){this.selectDisabled||(this.menuVisibleOnFocus?this.menuVisibleOnFocus=!1:this.visible=!this.visible,this.visible&&(this.$refs.input||this.$refs.reference).focus())},selectOption:function(){this.visible?this.options[this.hoverIndex]&&this.handleOptionSelect(this.options[this.hoverIndex]):this.toggleMenu()},deleteSelected:function(e){e.stopPropagation();var t=this.multiple?[]:\"\";this.$emit(\"input\",t),this.emitChange(t),this.visible=!1,this.$emit(\"clear\")},deleteTag:function(e,t){var n=this.selected.indexOf(t);if(n>-1&&!this.selectDisabled){var i=this.value.slice();i.splice(n,1),this.$emit(\"input\",i),this.emitChange(i),this.$emit(\"remove-tag\",t.value)}e.stopPropagation()},onInputChange:function(){this.filterable&&this.query!==this.selectedLabel&&(this.query=this.selectedLabel,this.handleQueryChange(this.query))},onOptionDestroy:function(e){e>-1&&(this.optionsCount--,this.filteredOptionsCount--,this.options.splice(e,1))},resetInputWidth:function(){this.inputWidth=this.$refs.reference.$el.getBoundingClientRect().width},handleResize:function(){this.resetInputWidth(),this.multiple&&this.resetInputHeight()},checkDefaultFirstOption:function(){this.hoverIndex=-1;for(var e=!1,t=this.options.length-1;t>=0;t--)if(this.options[t].created){e=!0,this.hoverIndex=t;break}if(!e)for(var n=0;n!==this.options.length;++n){var i=this.options[n];if(this.query){if(!i.disabled&&!i.groupDisabled&&i.visible){this.hoverIndex=n;break}}else if(i.itemSelected){this.hoverIndex=n;break}}},getValueKey:function(e){return\"[object object]\"!==Object.prototype.toString.call(e.value).toLowerCase()?e.value:Object(L[\"getValueByPath\"])(e.value,this.valueKey)}},created:function(){var e=this;this.cachedPlaceHolder=this.currentPlaceholder=this.placeholder,this.multiple&&!Array.isArray(this.value)&&this.$emit(\"input\",[]),!this.multiple&&Array.isArray(this.value)&&this.$emit(\"input\",\"\"),this.debouncedOnInputChange=N()(this.debounce,(function(){e.onInputChange()})),this.debouncedQueryChange=N()(this.debounce,(function(t){e.handleQueryChange(t.target.value)})),this.$on(\"handleOptionClick\",this.handleOptionSelect),this.$on(\"setSelected\",this.setSelected)},mounted:function(){var e=this;this.multiple&&Array.isArray(this.value)&&this.value.length>0&&(this.currentPlaceholder=\"\"),Object(A[\"addResizeListener\"])(this.$el,this.handleResize);var t=this.$refs.reference;if(t&&t.$el){var n={medium:36,small:32,mini:28},i=t.$el.querySelector(\"input\");this.initialInputHeight=i.getBoundingClientRect().height||n[this.selectSize]}this.remote&&this.multiple&&this.resetInputHeight(),this.$nextTick((function(){t&&t.$el&&(e.inputWidth=t.$el.getBoundingClientRect().width)})),this.setSelected()},beforeDestroy:function(){this.$el&&this.handleResize&&Object(A[\"removeResizeListener\"])(this.$el,this.handleResize)}},U=B,$=Object(v[\"a\"])(U,i,r,!1,null,null,null);$.options.__file=\"packages/select/src/select.vue\";var j=$.exports;j.install=function(e){e.component(j.name,j)};t[\"default\"]=j}])},\"4eb5\":function(e,t,n){var i=n(\"6981\"),r={autoSetContainer:!1,appendToBody:!0},a={install:function(e){e.prototype.$clipboardConfig=r,e.prototype.$copyText=function(e,t){return new Promise((function(n,a){var o=document.createElement(\"button\"),s=new i(o,{text:function(){return e},action:function(){return\"copy\"},container:\"object\"===typeof t?t:document.body});s.on(\"success\",(function(e){s.destroy(),n(e)})),s.on(\"error\",(function(e){s.destroy(),a(e)})),r.appendToBody&&document.body.appendChild(o),o.click(),r.appendToBody&&document.body.removeChild(o)}))},e.directive(\"clipboard\",{bind:function(e,t,n){if(\"success\"===t.arg)e._vClipboard_success=t.value;else if(\"error\"===t.arg)e._vClipboard_error=t.value;else{var a=new i(e,{text:function(){return t.value},action:function(){return\"cut\"===t.arg?\"cut\":\"copy\"},container:r.autoSetContainer?e:void 0});a.on(\"success\",(function(t){var n=e._vClipboard_success;n&&n(t)})),a.on(\"error\",(function(t){var n=e._vClipboard_error;n&&n(t)})),e._vClipboard=a}},update:function(e,t){\"success\"===t.arg?e._vClipboard_success=t.value:\"error\"===t.arg?e._vClipboard_error=t.value:(e._vClipboard.text=function(){return t.value},e._vClipboard.action=function(){return\"cut\"===t.arg?\"cut\":\"copy\"})},unbind:function(e,t){\"success\"===t.arg?delete e._vClipboard_success:\"error\"===t.arg?delete e._vClipboard_error:(e._vClipboard.destroy(),delete e._vClipboard)}})},config:r};e.exports=a},\"4f4a\":function(e,t){function n(e){return{name:\"HAML\",case_insensitive:!0,contains:[{className:\"meta\",begin:\"^!!!( (5|1\\\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\\\b.*))?$\",relevance:10},e.COMMENT(\"^\\\\s*(!=#|=#|-#|/).*$\",!1,{relevance:0}),{begin:\"^\\\\s*(-|=|!=)(?!#)\",starts:{end:\"\\\\n\",subLanguage:\"ruby\"}},{className:\"tag\",begin:\"^\\\\s*%\",contains:[{className:\"selector-tag\",begin:\"\\\\w+\"},{className:\"selector-id\",begin:\"#[\\\\w-]+\"},{className:\"selector-class\",begin:\"\\\\.[\\\\w-]+\"},{begin:/\\{\\s*/,end:/\\s*\\}/,contains:[{begin:\":\\\\w+\\\\s*=>\",end:\",\\\\s+\",returnBegin:!0,endsWithParent:!0,contains:[{className:\"attr\",begin:\":\\\\w+\"},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{begin:\"\\\\w+\",relevance:0}]}]},{begin:\"\\\\(\\\\s*\",end:\"\\\\s*\\\\)\",excludeEnd:!0,contains:[{begin:\"\\\\w+\\\\s*=\",end:\"\\\\s+\",returnBegin:!0,endsWithParent:!0,contains:[{className:\"attr\",begin:\"\\\\w+\",relevance:0},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{begin:\"\\\\w+\",relevance:0}]}]}]},{begin:\"^\\\\s*[=~]\\\\s*\"},{begin:/#\\{/,starts:{end:/\\}/,subLanguage:\"ruby\"}}]}}e.exports=n},5027:function(e,t){function n(e){const t={keyword:\"and case default else elsif false if in import enherits node or true undef unless main settings $string \",literal:\"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted\",built_in:\"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version\"},n=e.COMMENT(\"#\",\"$\"),i=\"([A-Za-z_]|::)(\\\\w|::)*\",r=e.inherit(e.TITLE_MODE,{begin:i}),a={className:\"variable\",begin:\"\\\\$\"+i},o={className:\"string\",contains:[e.BACKSLASH_ESCAPE,a],variants:[{begin:/'/,end:/'/},{begin:/\"/,end:/\"/}]};return{name:\"Puppet\",aliases:[\"pp\"],contains:[n,a,o,{beginKeywords:\"class\",end:\"\\\\{|;\",illegal:/=/,contains:[r,n]},{beginKeywords:\"define\",end:/\\{/,contains:[{className:\"section\",begin:e.IDENT_RE,endsParent:!0}]},{begin:e.IDENT_RE+\"\\\\s+\\\\{\",returnBegin:!0,end:/\\S/,contains:[{className:\"keyword\",begin:e.IDENT_RE},{begin:/\\{/,end:/\\}/,keywords:t,relevance:0,contains:[o,n,{begin:\"[a-zA-Z_]+\\\\s*=>\",returnBegin:!0,end:\"=>\",contains:[{className:\"attr\",begin:e.IDENT_RE}]},{className:\"number\",begin:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",relevance:0},a]}],relevance:0}]}}e.exports=n},5051:function(e,t){function n(e){const t={variants:[e.COMMENT(\"--\",\"$\"),e.COMMENT(/\\{-/,/-\\}/,{contains:[\"self\"]})]},n={className:\"type\",begin:\"\\\\b[A-Z][\\\\w']*\",relevance:0},i={begin:\"\\\\(\",end:\"\\\\)\",illegal:'\"',contains:[{className:\"type\",begin:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"},t]},r={begin:/\\{/,end:/\\}/,contains:i.contains},a={className:\"string\",begin:\"'\\\\\\\\?.\",end:\"'\",illegal:\".\"};return{name:\"Elm\",keywords:\"let in if then else case of where module import exposing type alias as infix infixl infixr port effect command subscription\",contains:[{beginKeywords:\"port effect module\",end:\"exposing\",keywords:\"port effect module where command subscription exposing\",contains:[i,t],illegal:\"\\\\W\\\\.|;\"},{begin:\"import\",end:\"$\",keywords:\"import as exposing\",contains:[i,t],illegal:\"\\\\W\\\\.|;\"},{begin:\"type\",end:\"$\",keywords:\"type alias\",contains:[n,i,r,t]},{beginKeywords:\"infix infixl infixr\",end:\"$\",contains:[e.C_NUMBER_MODE,t]},{begin:\"port\",end:\"$\",keywords:\"port\",contains:[t]},a,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,n,e.inherit(e.TITLE_MODE,{begin:\"^[_a-z][\\\\w']*\"}),t,{begin:\"->|<-\"}],illegal:/;/}}e.exports=n},\"508e\":function(e,t){function n(e){const t=[\"string\",\"char\",\"byte\",\"int\",\"long\",\"bool\",\"decimal\",\"single\",\"double\",\"DateTime\",\"xml\",\"array\",\"hashtable\",\"void\"],n=\"Add|Clear|Close|Copy|Enter|Exit|Find|Format|Get|Hide|Join|Lock|Move|New|Open|Optimize|Pop|Push|Redo|Remove|Rename|Reset|Resize|Search|Select|Set|Show|Skip|Split|Step|Switch|Undo|Unlock|Watch|Backup|Checkpoint|Compare|Compress|Convert|ConvertFrom|ConvertTo|Dismount|Edit|Expand|Export|Group|Import|Initialize|Limit|Merge|Mount|Out|Publish|Restore|Save|Sync|Unpublish|Update|Approve|Assert|Build|Complete|Confirm|Deny|Deploy|Disable|Enable|Install|Invoke|Register|Request|Restart|Resume|Start|Stop|Submit|Suspend|Uninstall|Unregister|Wait|Debug|Measure|Ping|Repair|Resolve|Test|Trace|Connect|Disconnect|Read|Receive|Send|Write|Block|Grant|Protect|Revoke|Unblock|Unprotect|Use|ForEach|Sort|Tee|Where\",i=\"-and|-as|-band|-bnot|-bor|-bxor|-casesensitive|-ccontains|-ceq|-cge|-cgt|-cle|-clike|-clt|-cmatch|-cne|-cnotcontains|-cnotlike|-cnotmatch|-contains|-creplace|-csplit|-eq|-exact|-f|-file|-ge|-gt|-icontains|-ieq|-ige|-igt|-ile|-ilike|-ilt|-imatch|-in|-ine|-inotcontains|-inotlike|-inotmatch|-ireplace|-is|-isnot|-isplit|-join|-le|-like|-lt|-match|-ne|-not|-notcontains|-notin|-notlike|-notmatch|-or|-regex|-replace|-shl|-shr|-split|-wildcard|-xor\",r={$pattern:/-?[A-z\\.\\-]+\\b/,keyword:\"if else foreach return do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch hidden static parameter\",built_in:\"ac asnp cat cd CFS chdir clc clear clhy cli clp cls clv cnsn compare copy cp cpi cpp curl cvpa dbp del diff dir dnsn ebp echo|0 epal epcsv epsn erase etsn exsn fc fhx fl ft fw gal gbp gc gcb gci gcm gcs gdr gerr ghy gi gin gjb gl gm gmo gp gps gpv group gsn gsnp gsv gtz gu gv gwmi h history icm iex ihy ii ipal ipcsv ipmo ipsn irm ise iwmi iwr kill lp ls man md measure mi mount move mp mv nal ndr ni nmo npssc nsn nv ogv oh popd ps pushd pwd r rbp rcjb rcsn rd rdr ren ri rjb rm rmdir rmo rni rnp rp rsn rsnp rujb rv rvpa rwmi sajb sal saps sasv sbp sc scb select set shcm si sl sleep sls sort sp spjb spps spsv start stz sujb sv swmi tee trcm type wget where wjb write\"},a=/\\w[\\w\\d]*((-)[\\w\\d]+)*/,o={begin:\"`[\\\\s\\\\S]\",relevance:0},s={className:\"variable\",variants:[{begin:/\\$\\B/},{className:\"keyword\",begin:/\\$this/},{begin:/\\$[\\w\\d][\\w\\d_:]*/}]},l={className:\"literal\",begin:/\\$(null|true|false)\\b/},c={className:\"string\",variants:[{begin:/\"/,end:/\"/},{begin:/@\"/,end:/^\"@/}],contains:[o,s,{className:\"variable\",begin:/\\$[A-z]/,end:/[^A-z]/}]},u={className:\"string\",variants:[{begin:/'/,end:/'/},{begin:/@'/,end:/^'@/}]},d={className:\"doctag\",variants:[{begin:/\\.(synopsis|description|example|inputs|outputs|notes|link|component|role|functionality)/},{begin:/\\.(parameter|forwardhelptargetname|forwardhelpcategory|remotehelprunspace|externalhelp)\\s+\\S+/}]},p=e.inherit(e.COMMENT(null,null),{variants:[{begin:/#/,end:/$/},{begin:/<#/,end:/#>/}],contains:[d]}),h={className:\"built_in\",variants:[{begin:\"(\".concat(n,\")+(-)[\\\\w\\\\d]+\")}]},f={className:\"class\",beginKeywords:\"class enum\",end:/\\s*[{]/,excludeEnd:!0,relevance:0,contains:[e.TITLE_MODE]},_={className:\"function\",begin:/function\\s+/,end:/\\s*\\{|$/,excludeEnd:!0,returnBegin:!0,relevance:0,contains:[{begin:\"function\",relevance:0,className:\"keyword\"},{className:\"title\",begin:a,relevance:0},{begin:/\\(/,end:/\\)/,className:\"params\",relevance:0,contains:[s]}]},m={begin:/using\\s/,end:/$/,returnBegin:!0,contains:[c,u,{className:\"keyword\",begin:/(using|assembly|command|module|namespace|type)/}]},g={variants:[{className:\"operator\",begin:\"(\".concat(i,\")\\\\b\")},{className:\"literal\",begin:/(-)[\\w\\d]+/,relevance:0}]},b={className:\"selector-tag\",begin:/@\\B/,relevance:0},v={className:\"function\",begin:/\\[.*\\]\\s*[\\w]+[ ]??\\(/,end:/$/,returnBegin:!0,relevance:0,contains:[{className:\"keyword\",begin:\"(\".concat(r.keyword.toString().replace(/\\s/g,\"|\"),\")\\\\b\"),endsParent:!0,relevance:0},e.inherit(e.TITLE_MODE,{endsParent:!0})]},E=[v,p,o,e.NUMBER_MODE,c,u,h,s,l,b],y={begin:/\\[/,end:/\\]/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[].concat(\"self\",E,{begin:\"(\"+t.join(\"|\")+\")\",className:\"built_in\",relevance:0},{className:\"type\",begin:/[\\.\\w\\d]+/,relevance:0})};return v.contains.unshift(y),{name:\"PowerShell\",aliases:[\"ps\",\"ps1\"],case_insensitive:!0,keywords:r,contains:E.concat(f,_,m,g,y)}}e.exports=n},\"50ed\":function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},5128:function(e,t,n){\"use strict\";t.__esModule=!0,t.PopupManager=void 0;var i=n(\"2b0e\"),r=p(i),a=n(\"7f4d\"),o=p(a),s=n(\"4b26\"),l=p(s),c=n(\"e62d\"),u=p(c),d=n(\"5924\");function p(e){return e&&e.__esModule?e:{default:e}}var h=1,f=void 0;t.default={props:{visible:{type:Boolean,default:!1},openDelay:{},closeDelay:{},zIndex:{},modal:{type:Boolean,default:!1},modalFade:{type:Boolean,default:!0},modalClass:{},modalAppendToBody:{type:Boolean,default:!1},lockScroll:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!1},closeOnClickModal:{type:Boolean,default:!1}},beforeMount:function(){this._popupId=\"popup-\"+h++,l.default.register(this._popupId,this)},beforeDestroy:function(){l.default.deregister(this._popupId),l.default.closeModal(this._popupId),this.restoreBodyStyle()},data:function(){return{opened:!1,bodyPaddingRight:null,computedBodyPaddingRight:0,withoutHiddenClass:!0,rendered:!1}},watch:{visible:function(e){var t=this;if(e){if(this._opening)return;this.rendered?this.open():(this.rendered=!0,r.default.nextTick((function(){t.open()})))}else this.close()}},methods:{open:function(e){var t=this;this.rendered||(this.rendered=!0);var n=(0,o.default)({},this.$props||this,e);this._closeTimer&&(clearTimeout(this._closeTimer),this._closeTimer=null),clearTimeout(this._openTimer);var i=Number(n.openDelay);i>0?this._openTimer=setTimeout((function(){t._openTimer=null,t.doOpen(n)}),i):this.doOpen(n)},doOpen:function(e){if(!this.$isServer&&(!this.willOpen||this.willOpen())&&!this.opened){this._opening=!0;var t=this.$el,n=e.modal,i=e.zIndex;if(i&&(l.default.zIndex=i),n&&(this._closing&&(l.default.closeModal(this._popupId),this._closing=!1),l.default.openModal(this._popupId,l.default.nextZIndex(),this.modalAppendToBody?void 0:t,e.modalClass,e.modalFade),e.lockScroll)){this.withoutHiddenClass=!(0,d.hasClass)(document.body,\"el-popup-parent--hidden\"),this.withoutHiddenClass&&(this.bodyPaddingRight=document.body.style.paddingRight,this.computedBodyPaddingRight=parseInt((0,d.getStyle)(document.body,\"paddingRight\"),10)),f=(0,u.default)();var r=document.documentElement.clientHeight<document.body.scrollHeight,a=(0,d.getStyle)(document.body,\"overflowY\");f>0&&(r||\"scroll\"===a)&&this.withoutHiddenClass&&(document.body.style.paddingRight=this.computedBodyPaddingRight+f+\"px\"),(0,d.addClass)(document.body,\"el-popup-parent--hidden\")}\"static\"===getComputedStyle(t).position&&(t.style.position=\"absolute\"),t.style.zIndex=l.default.nextZIndex(),this.opened=!0,this.onOpen&&this.onOpen(),this.doAfterOpen()}},doAfterOpen:function(){this._opening=!1},close:function(){var e=this;if(!this.willClose||this.willClose()){null!==this._openTimer&&(clearTimeout(this._openTimer),this._openTimer=null),clearTimeout(this._closeTimer);var t=Number(this.closeDelay);t>0?this._closeTimer=setTimeout((function(){e._closeTimer=null,e.doClose()}),t):this.doClose()}},doClose:function(){this._closing=!0,this.onClose&&this.onClose(),this.lockScroll&&setTimeout(this.restoreBodyStyle,200),this.opened=!1,this.doAfterClose()},doAfterClose:function(){l.default.closeModal(this._popupId),this._closing=!1},restoreBodyStyle:function(){this.modal&&this.withoutHiddenClass&&(document.body.style.paddingRight=this.bodyPaddingRight,(0,d.removeClass)(document.body,\"el-popup-parent--hidden\")),this.withoutHiddenClass=!0}}},t.PopupManager=l.default},5168:function(e,t,n){var i=n(\"dbdb\")(\"wks\"),r=n(\"62a0\"),a=n(\"e53d\").Symbol,o=\"function\"==typeof a,s=e.exports=function(e){return i[e]||(i[e]=o&&a[e]||(o?a:r)(\"Symbol.\"+e))};s.store=i},\"51ab\":function(e,t){function n(e){return{name:\"Clean\",aliases:[\"clean\",\"icl\",\"dcl\"],keywords:{keyword:\"if let in with where case of class instance otherwise implementation definition system module from import qualified as special code inline foreign export ccall stdcall generic derive infix infixl infixr\",built_in:\"Int Real Char Bool\",literal:\"True False\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,{begin:\"->|<-[|:]?|#!?|>>=|\\\\{\\\\||\\\\|\\\\}|:==|=:|<>\"}]}}e.exports=n},\"51b6\":function(e,t,n){n(\"a3c3\"),e.exports=n(\"584a\").Object.assign},5270:function(e,t,n){\"use strict\";var i=n(\"c532\"),r=n(\"c401\"),a=n(\"2e67\"),o=n(\"2444\");function s(e){e.cancelToken&&e.cancelToken.throwIfRequested()}e.exports=function(e){s(e),e.headers=e.headers||{},e.data=r(e.data,e.headers,e.transformRequest),e.headers=i.merge(e.headers.common||{},e.headers[e.method]||{},e.headers),i.forEach([\"delete\",\"get\",\"head\",\"post\",\"put\",\"patch\",\"common\"],(function(t){delete e.headers[t]}));var t=e.adapter||o.adapter;return t(e).then((function(t){return s(e),t.data=r(t.data,t.headers,e.transformResponse),t}),(function(t){return a(t)||(s(e),t&&t.response&&(t.response.data=r(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)}))}},\"52a7\":function(e,t){t.f={}.propertyIsEnumerable},\"53e2\":function(e,t,n){var i=n(\"07e3\"),r=n(\"241e\"),a=n(\"5559\")(\"IE_PROTO\"),o=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=r(e),i(e,a)?e[a]:\"function\"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?o:null}},5488:function(e,t,n){\"use strict\";t.__esModule=!0;var i=n(\"5924\");function r(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}var a=function(){function e(){r(this,e)}return e.prototype.beforeEnter=function(e){(0,i.addClass)(e,\"collapse-transition\"),e.dataset||(e.dataset={}),e.dataset.oldPaddingTop=e.style.paddingTop,e.dataset.oldPaddingBottom=e.style.paddingBottom,e.style.height=\"0\",e.style.paddingTop=0,e.style.paddingBottom=0},e.prototype.enter=function(e){e.dataset.oldOverflow=e.style.overflow,0!==e.scrollHeight?(e.style.height=e.scrollHeight+\"px\",e.style.paddingTop=e.dataset.oldPaddingTop,e.style.paddingBottom=e.dataset.oldPaddingBottom):(e.style.height=\"\",e.style.paddingTop=e.dataset.oldPaddingTop,e.style.paddingBottom=e.dataset.oldPaddingBottom),e.style.overflow=\"hidden\"},e.prototype.afterEnter=function(e){(0,i.removeClass)(e,\"collapse-transition\"),e.style.height=\"\",e.style.overflow=e.dataset.oldOverflow},e.prototype.beforeLeave=function(e){e.dataset||(e.dataset={}),e.dataset.oldPaddingTop=e.style.paddingTop,e.dataset.oldPaddingBottom=e.style.paddingBottom,e.dataset.oldOverflow=e.style.overflow,e.style.height=e.scrollHeight+\"px\",e.style.overflow=\"hidden\"},e.prototype.leave=function(e){0!==e.scrollHeight&&((0,i.addClass)(e,\"collapse-transition\"),e.style.height=0,e.style.paddingTop=0,e.style.paddingBottom=0)},e.prototype.afterLeave=function(e){(0,i.removeClass)(e,\"collapse-transition\"),e.style.height=\"\",e.style.overflow=e.dataset.oldOverflow,e.style.paddingTop=e.dataset.oldPaddingTop,e.style.paddingBottom=e.dataset.oldPaddingBottom},e}();t.default={name:\"ElCollapseTransition\",functional:!0,render:function(e,t){var n=t.children,i={on:new a};return e(\"transition\",i,n)}}},\"551c\":function(e,t,n){\"use strict\";var i,r,a,o,s=n(\"2d00\"),l=n(\"7726\"),c=n(\"9b43\"),u=n(\"23c6\"),d=n(\"5ca1\"),p=n(\"d3f4\"),h=n(\"d8e8\"),f=n(\"f605\"),_=n(\"4a59\"),m=n(\"ebd6\"),g=n(\"1991\").set,b=n(\"8079\")(),v=n(\"a5b8\"),E=n(\"9c80\"),y=n(\"a25f\"),S=n(\"bcaa\"),C=\"Promise\",T=l.TypeError,x=l.process,w=x&&x.versions,O=w&&w.v8||\"\",N=l[C],R=\"process\"==u(x),k=function(){},A=r=v.f,D=!!function(){try{var e=N.resolve(1),t=(e.constructor={})[n(\"2b4c\")(\"species\")]=function(e){e(k,k)};return(R||\"function\"==typeof PromiseRejectionEvent)&&e.then(k)instanceof t&&0!==O.indexOf(\"6.6\")&&-1===y.indexOf(\"Chrome/66\")}catch(i){}}(),I=function(e){var t;return!(!p(e)||\"function\"!=typeof(t=e.then))&&t},M=function(e,t){if(!e._n){e._n=!0;var n=e._c;b((function(){var i=e._v,r=1==e._s,a=0,o=function(t){var n,a,o,s=r?t.ok:t.fail,l=t.resolve,c=t.reject,u=t.domain;try{s?(r||(2==e._h&&F(e),e._h=1),!0===s?n=i:(u&&u.enter(),n=s(i),u&&(u.exit(),o=!0)),n===t.promise?c(T(\"Promise-chain cycle\")):(a=I(n))?a.call(n,l,c):l(n)):c(i)}catch(d){u&&!o&&u.exit(),c(d)}};while(n.length>a)o(n[a++]);e._c=[],e._n=!1,t&&!e._h&&L(e)}))}},L=function(e){g.call(l,(function(){var t,n,i,r=e._v,a=P(e);if(a&&(t=E((function(){R?x.emit(\"unhandledRejection\",r,e):(n=l.onunhandledrejection)?n({promise:e,reason:r}):(i=l.console)&&i.error&&i.error(\"Unhandled promise rejection\",r)})),e._h=R||P(e)?2:1),e._a=void 0,a&&t.e)throw t.v}))},P=function(e){return 1!==e._h&&0===(e._a||e._c).length},F=function(e){g.call(l,(function(){var t;R?x.emit(\"rejectionHandled\",e):(t=l.onrejectionhandled)&&t({promise:e,reason:e._v})}))},B=function(e){var t=this;t._d||(t._d=!0,t=t._w||t,t._v=e,t._s=2,t._a||(t._a=t._c.slice()),M(t,!0))},U=function(e){var t,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===e)throw T(\"Promise can't be resolved itself\");(t=I(e))?b((function(){var i={_w:n,_d:!1};try{t.call(e,c(U,i,1),c(B,i,1))}catch(r){B.call(i,r)}})):(n._v=e,n._s=1,M(n,!1))}catch(i){B.call({_w:n,_d:!1},i)}}};D||(N=function(e){f(this,N,C,\"_h\"),h(e),i.call(this);try{e(c(U,this,1),c(B,this,1))}catch(t){B.call(this,t)}},i=function(e){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1},i.prototype=n(\"dcbc\")(N.prototype,{then:function(e,t){var n=A(m(this,N));return n.ok=\"function\"!=typeof e||e,n.fail=\"function\"==typeof t&&t,n.domain=R?x.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&M(this,!1),n.promise},catch:function(e){return this.then(void 0,e)}}),a=function(){var e=new i;this.promise=e,this.resolve=c(U,e,1),this.reject=c(B,e,1)},v.f=A=function(e){return e===N||e===o?new a(e):r(e)}),d(d.G+d.W+d.F*!D,{Promise:N}),n(\"7f20\")(N,C),n(\"7a56\")(C),o=n(\"8378\")[C],d(d.S+d.F*!D,C,{reject:function(e){var t=A(this),n=t.reject;return n(e),t.promise}}),d(d.S+d.F*(s||!D),C,{resolve:function(e){return S(s&&this===o?N:this,e)}}),d(d.S+d.F*!(D&&n(\"5cc5\")((function(e){N.all(e)[\"catch\"](k)}))),C,{all:function(e){var t=this,n=A(t),i=n.resolve,r=n.reject,a=E((function(){var n=[],a=0,o=1;_(e,!1,(function(e){var s=a++,l=!1;n.push(void 0),o++,t.resolve(e).then((function(e){l||(l=!0,n[s]=e,--o||i(n))}),r)})),--o||i(n)}));return a.e&&r(a.v),n.promise},race:function(e){var t=this,n=A(t),i=n.reject,r=E((function(){_(e,!1,(function(e){t.resolve(e).then(n.resolve,i)}))}));return r.e&&i(r.v),n.promise}})},5537:function(e,t,n){var i=n(\"8378\"),r=n(\"7726\"),a=\"__core-js_shared__\",o=r[a]||(r[a]={});(e.exports=function(e,t){return o[e]||(o[e]=void 0!==t?t:{})})(\"versions\",[]).push({version:i.version,mode:n(\"2d00\")?\"pure\":\"global\",copyright:\"© 2020 Denis Pushkarev (zloirock.ru)\"})},5559:function(e,t,n){var i=n(\"dbdb\")(\"keys\"),r=n(\"62a0\");e.exports=function(e){return i[e]||(i[e]=r(e))}},\"56b2\":function(e,t){function n(e){var t=\"[ \\\\t\\\\f]*\",n=\"[ \\\\t\\\\f]+\",i=t+\"[:=]\"+t,r=n,a=\"(\"+i+\"|\"+r+\")\",o=\"([^\\\\\\\\\\\\W:= \\\\t\\\\f\\\\n]|\\\\\\\\.)+\",s=\"([^\\\\\\\\:= \\\\t\\\\f\\\\n]|\\\\\\\\.)+\",l={end:a,relevance:0,starts:{className:\"string\",end:/$/,relevance:0,contains:[{begin:\"\\\\\\\\\\\\\\\\\"},{begin:\"\\\\\\\\\\\\n\"}]}};return{name:\".properties\",case_insensitive:!0,illegal:/\\S/,contains:[e.COMMENT(\"^\\\\s*[!#]\",\"$\"),{returnBegin:!0,variants:[{begin:o+i,relevance:1},{begin:o+r,relevance:0}],contains:[{className:\"attr\",begin:o,endsParent:!0,relevance:0}],starts:l},{begin:s+a,returnBegin:!0,relevance:0,contains:[{className:\"meta\",begin:s,endsParent:!0,relevance:0}],starts:l},{className:\"attr\",relevance:0,begin:s+t+\"$\"}]}}e.exports=n},\"584a\":function(e,t){var n=e.exports={version:\"2.6.12\"};\"number\"==typeof __e&&(__e=n)},5921:function(e,t){function n(e){const t={className:\"literal\",begin:/[+-]/,relevance:0};return{name:\"Brainfuck\",aliases:[\"bf\"],contains:[e.COMMENT(\"[^\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",\"[\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",{returnEnd:!0,relevance:0}),{className:\"title\",begin:\"[\\\\[\\\\]]\",relevance:0},{className:\"string\",begin:\"[\\\\.,]\",relevance:0},{begin:/(?:\\+\\+|--)/,contains:[t]},t]}}e.exports=n},5924:function(e,t,n){\"use strict\";t.__esModule=!0,t.isInContainer=t.getScrollContainer=t.isScroll=t.getStyle=t.once=t.off=t.on=void 0;var i=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e};t.hasClass=_,t.addClass=m,t.removeClass=g,t.setStyle=v;var r=n(\"2b0e\"),a=o(r);function o(e){return e&&e.__esModule?e:{default:e}}var s=a.default.prototype.$isServer,l=/([\\:\\-\\_]+(.))/g,c=/^moz([A-Z])/,u=s?0:Number(document.documentMode),d=function(e){return(e||\"\").replace(/^[\\s\\uFEFF]+|[\\s\\uFEFF]+$/g,\"\")},p=function(e){return e.replace(l,(function(e,t,n,i){return i?n.toUpperCase():n})).replace(c,\"Moz$1\")},h=t.on=function(){return!s&&document.addEventListener?function(e,t,n){e&&t&&n&&e.addEventListener(t,n,!1)}:function(e,t,n){e&&t&&n&&e.attachEvent(\"on\"+t,n)}}(),f=t.off=function(){return!s&&document.removeEventListener?function(e,t,n){e&&t&&e.removeEventListener(t,n,!1)}:function(e,t,n){e&&t&&e.detachEvent(\"on\"+t,n)}}();t.once=function(e,t,n){var i=function i(){n&&n.apply(this,arguments),f(e,t,i)};h(e,t,i)};function _(e,t){if(!e||!t)return!1;if(-1!==t.indexOf(\" \"))throw new Error(\"className should not contain space.\");return e.classList?e.classList.contains(t):(\" \"+e.className+\" \").indexOf(\" \"+t+\" \")>-1}function m(e,t){if(e){for(var n=e.className,i=(t||\"\").split(\" \"),r=0,a=i.length;r<a;r++){var o=i[r];o&&(e.classList?e.classList.add(o):_(e,o)||(n+=\" \"+o))}e.classList||(e.className=n)}}function g(e,t){if(e&&t){for(var n=t.split(\" \"),i=\" \"+e.className+\" \",r=0,a=n.length;r<a;r++){var o=n[r];o&&(e.classList?e.classList.remove(o):_(e,o)&&(i=i.replace(\" \"+o+\" \",\" \")))}e.classList||(e.className=d(i))}}var b=t.getStyle=u<9?function(e,t){if(!s){if(!e||!t)return null;t=p(t),\"float\"===t&&(t=\"styleFloat\");try{switch(t){case\"opacity\":try{return e.filters.item(\"alpha\").opacity/100}catch(n){return 1}default:return e.style[t]||e.currentStyle?e.currentStyle[t]:null}}catch(n){return e.style[t]}}}:function(e,t){if(!s){if(!e||!t)return null;t=p(t),\"float\"===t&&(t=\"cssFloat\");try{var n=document.defaultView.getComputedStyle(e,\"\");return e.style[t]||n?n[t]:null}catch(i){return e.style[t]}}};function v(e,t,n){if(e&&t)if(\"object\"===(\"undefined\"===typeof t?\"undefined\":i(t)))for(var r in t)t.hasOwnProperty(r)&&v(e,r,t[r]);else t=p(t),\"opacity\"===t&&u<9?e.style.filter=isNaN(n)?\"\":\"alpha(opacity=\"+100*n+\")\":e.style[t]=n}var E=t.isScroll=function(e,t){if(!s){var n=null!==t||void 0!==t,i=b(e,n?t?\"overflow-y\":\"overflow-x\":\"overflow\");return i.match(/(scroll|auto)/)}};t.getScrollContainer=function(e,t){if(!s){var n=e;while(n){if([window,document,document.documentElement].includes(n))return window;if(E(n,t))return n;n=n.parentNode}return n}},t.isInContainer=function(e,t){if(s||!e||!t)return!1;var n=e.getBoundingClientRect(),i=void 0;return i=[window,document,document.documentElement,null,void 0].includes(t)?{top:0,right:window.innerWidth,bottom:window.innerHeight,left:0}:t.getBoundingClientRect(),n.top<i.bottom&&n.bottom>i.top&&n.right>i.left&&n.left<i.right}},\"597f\":function(e,t){e.exports=function(e,t,n,i){var r,a=0;function o(){var o=this,s=Number(new Date)-a,l=arguments;function c(){a=Number(new Date),n.apply(o,l)}function u(){r=void 0}i&&!r&&c(),r&&clearTimeout(r),void 0===i&&s>e?c():!0!==t&&(r=setTimeout(i?u:c,void 0===i?e-s:e))}return\"boolean\"!==typeof t&&(i=n,n=t,t=void 0),o}},\"5a3e\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(...e){const t=\"(\"+e.map(e=>n(e)).join(\"|\")+\")\";return t}function a(e){const t=\"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid split  cint sin datepart ltrim sqr time derived eval date formatpercent exp inputbox left ascw chrw regexp cstr err\".split(\" \"),n=[\"server\",\"response\",\"request\",\"scriptengine\",\"scriptenginebuildversion\",\"scriptengineminorversion\",\"scriptenginemajorversion\"],a={begin:i(r(...t),\"\\\\s*\\\\(\"),relevance:0,keywords:{built_in:t}};return{name:\"VBScript\",aliases:[\"vbs\"],case_insensitive:!0,keywords:{keyword:\"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto\",built_in:n,literal:\"true false null nothing empty\"},illegal:\"//\",contains:[a,e.inherit(e.QUOTE_STRING_MODE,{contains:[{begin:'\"\"'}]}),e.COMMENT(/'/,/$/,{relevance:0}),e.C_NUMBER_MODE]}}e.exports=a},\"5ad2\":function(e,t){function n(e){const t={literal:\"true false null\"},n=[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],i=[e.QUOTE_STRING_MODE,e.C_NUMBER_MODE],r={end:\",\",endsWithParent:!0,excludeEnd:!0,contains:i,keywords:t},a={begin:/\\{/,end:/\\}/,contains:[{className:\"attr\",begin:/\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE],illegal:\"\\\\n\"},e.inherit(r,{begin:/:/})].concat(n),illegal:\"\\\\S\"},o={begin:\"\\\\[\",end:\"\\\\]\",contains:[e.inherit(r)],illegal:\"\\\\S\"};return i.push(a,o),n.forEach((function(e){i.push(e)})),{name:\"JSON\",contains:i,keywords:t,illegal:\"\\\\S\"}}e.exports=n},\"5b4e\":function(e,t,n){var i=n(\"36c3\"),r=n(\"b447\"),a=n(\"0fc9\");e.exports=function(e){return function(t,n,o){var s,l=i(t),c=r(l.length),u=a(o,c);if(e&&n!=n){while(c>u)if(s=l[u++],s!=s)return!0}else for(;c>u;u++)if((e||u in l)&&l[u]===n)return e||u||0;return!e&&-1}}},\"5c96\":function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=45)}([function(e,t){e.exports=n(\"d940\")},function(e,t){e.exports=n(\"5924\")},function(e,t){e.exports=n(\"8122\")},function(e,t){e.exports=n(\"d010\")},function(e,t){e.exports=n(\"6b7c\")},function(e,t){e.exports=n(\"e974\")},function(e,t){e.exports=n(\"2b0e\")},function(e,t){e.exports=n(\"7f4d\")},function(e,t){e.exports=n(\"f3ad\")},function(e,t){e.exports=n(\"2bb5\")},function(e,t){e.exports=n(\"417f\")},function(e,t){e.exports=n(\"4897\")},function(e,t){e.exports=n(\"eedf\")},function(e,t){e.exports=n(\"4010\")},function(e,t){e.exports=n(\"5128\")},function(e,t){e.exports=n(\"0e15\")},function(e,t){e.exports=n(\"dcdc\")},function(e,t){e.exports=n(\"14e9\")},function(e,t){e.exports=n(\"a742\")},function(e,t){e.exports=n(\"d397\")},function(e,t){e.exports=n(\"d7d1\")},function(e,t){e.exports=n(\"5488\")},function(e,t){e.exports=n(\"12f2\")},function(e,t){e.exports=n(\"41f8\")},function(e,t){e.exports=n(\"92fa\")},function(e,t){e.exports=n(\"597f\")},function(e,t){e.exports=n(\"299c\")},function(e,t){e.exports=n(\"2a5e\")},function(e,t){e.exports=n(\"e452\")},function(e,t){e.exports=n(\"845f\")},function(e,t){e.exports=n(\"8bbc\")},function(e,t){e.exports=n(\"e62d\")},function(e,t){e.exports=n(\"7fc1\")},function(e,t){e.exports=n(\"c56a\")},function(e,t){e.exports=n(\"c284\")},function(e,t){e.exports=n(\"9619\")},function(e,t){e.exports=n(\"4e4b\")},function(e,t){e.exports=n(\"e772\")},function(e,t){e.exports=n(\"c098\")},function(e,t){e.exports=n(\"722f\")},function(e,t){e.exports=n(\"a15e\")},function(e,t){e.exports=n(\"e450\")},function(e,t){e.exports=n(\"4726\")},function(e,t){e.exports=n(\"f494\")},function(e,t){e.exports=n(\"6ac9\")},function(e,t,n){e.exports=n(46)},function(e,t,n){\"use strict\";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"ul\",{staticClass:\"el-pager\",on:{click:e.onPagerClick}},[e.pageCount>0?n(\"li\",{staticClass:\"number\",class:{active:1===e.currentPage,disabled:e.disabled}},[e._v(\"1\")]):e._e(),e.showPrevMore?n(\"li\",{staticClass:\"el-icon more btn-quickprev\",class:[e.quickprevIconClass,{disabled:e.disabled}],on:{mouseenter:function(t){e.onMouseenter(\"left\")},mouseleave:function(t){e.quickprevIconClass=\"el-icon-more\"}}}):e._e(),e._l(e.pagers,(function(t){return n(\"li\",{key:t,staticClass:\"number\",class:{active:e.currentPage===t,disabled:e.disabled}},[e._v(e._s(t))])})),e.showNextMore?n(\"li\",{staticClass:\"el-icon more btn-quicknext\",class:[e.quicknextIconClass,{disabled:e.disabled}],on:{mouseenter:function(t){e.onMouseenter(\"right\")},mouseleave:function(t){e.quicknextIconClass=\"el-icon-more\"}}}):e._e(),e.pageCount>1?n(\"li\",{staticClass:\"number\",class:{active:e.currentPage===e.pageCount,disabled:e.disabled}},[e._v(e._s(e.pageCount))]):e._e()],2)},r=[];i._withStripped=!0;var a={name:\"ElPager\",props:{currentPage:Number,pageCount:Number,pagerCount:Number,disabled:Boolean},watch:{showPrevMore:function(e){e||(this.quickprevIconClass=\"el-icon-more\")},showNextMore:function(e){e||(this.quicknextIconClass=\"el-icon-more\")}},methods:{onPagerClick:function(e){var t=e.target;if(\"UL\"!==t.tagName&&!this.disabled){var n=Number(e.target.textContent),i=this.pageCount,r=this.currentPage,a=this.pagerCount-2;-1!==t.className.indexOf(\"more\")&&(-1!==t.className.indexOf(\"quickprev\")?n=r-a:-1!==t.className.indexOf(\"quicknext\")&&(n=r+a)),isNaN(n)||(n<1&&(n=1),n>i&&(n=i)),n!==r&&this.$emit(\"change\",n)}},onMouseenter:function(e){this.disabled||(\"left\"===e?this.quickprevIconClass=\"el-icon-d-arrow-left\":this.quicknextIconClass=\"el-icon-d-arrow-right\")}},computed:{pagers:function(){var e=this.pagerCount,t=(e-1)/2,n=Number(this.currentPage),i=Number(this.pageCount),r=!1,a=!1;i>e&&(n>e-t&&(r=!0),n<i-t&&(a=!0));var o=[];if(r&&!a)for(var s=i-(e-2),l=s;l<i;l++)o.push(l);else if(!r&&a)for(var c=2;c<e;c++)o.push(c);else if(r&&a)for(var u=Math.floor(e/2)-1,d=n-u;d<=n+u;d++)o.push(d);else for(var p=2;p<i;p++)o.push(p);return this.showPrevMore=r,this.showNextMore=a,o}},data:function(){return{current:null,showPrevMore:!1,showNextMore:!1,quicknextIconClass:\"el-icon-more\",quickprevIconClass:\"el-icon-more\"}}},o=a;function s(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}var l=s(o,i,r,!1,null,null,null);l.options.__file=\"packages/pagination/src/pager.vue\";var c=l.exports,u=n(36),d=n.n(u),p=n(37),h=n.n(p),f=n(8),_=n.n(f),m=n(4),g=n.n(m),b=n(2),v={name:\"ElPagination\",props:{pageSize:{type:Number,default:10},small:Boolean,total:Number,pageCount:Number,pagerCount:{type:Number,validator:function(e){return(0|e)===e&&e>4&&e<22&&e%2===1},default:7},currentPage:{type:Number,default:1},layout:{default:\"prev, pager, next, jumper, ->, total\"},pageSizes:{type:Array,default:function(){return[10,20,30,40,50,100]}},popperClass:String,prevText:String,nextText:String,background:Boolean,disabled:Boolean,hideOnSinglePage:Boolean},data:function(){return{internalCurrentPage:1,internalPageSize:0,lastEmittedPage:-1,userChangePageSize:!1}},render:function(e){var t=this.layout;if(!t)return null;if(this.hideOnSinglePage&&(!this.internalPageCount||1===this.internalPageCount))return null;var n=e(\"div\",{class:[\"el-pagination\",{\"is-background\":this.background,\"el-pagination--small\":this.small}]}),i={prev:e(\"prev\"),jumper:e(\"jumper\"),pager:e(\"pager\",{attrs:{currentPage:this.internalCurrentPage,pageCount:this.internalPageCount,pagerCount:this.pagerCount,disabled:this.disabled},on:{change:this.handleCurrentChange}}),next:e(\"next\"),sizes:e(\"sizes\",{attrs:{pageSizes:this.pageSizes}}),slot:e(\"slot\",[this.$slots.default?this.$slots.default:\"\"]),total:e(\"total\")},r=t.split(\",\").map((function(e){return e.trim()})),a=e(\"div\",{class:\"el-pagination__rightwrapper\"}),o=!1;return n.children=n.children||[],a.children=a.children||[],r.forEach((function(e){\"->\"!==e?o?a.children.push(i[e]):n.children.push(i[e]):o=!0})),o&&n.children.unshift(a),n},components:{Prev:{render:function(e){return e(\"button\",{attrs:{type:\"button\",disabled:this.$parent.disabled||this.$parent.internalCurrentPage<=1},class:\"btn-prev\",on:{click:this.$parent.prev}},[this.$parent.prevText?e(\"span\",[this.$parent.prevText]):e(\"i\",{class:\"el-icon el-icon-arrow-left\"})])}},Next:{render:function(e){return e(\"button\",{attrs:{type:\"button\",disabled:this.$parent.disabled||this.$parent.internalCurrentPage===this.$parent.internalPageCount||0===this.$parent.internalPageCount},class:\"btn-next\",on:{click:this.$parent.next}},[this.$parent.nextText?e(\"span\",[this.$parent.nextText]):e(\"i\",{class:\"el-icon el-icon-arrow-right\"})])}},Sizes:{mixins:[g.a],props:{pageSizes:Array},watch:{pageSizes:{immediate:!0,handler:function(e,t){Object(b[\"valueEquals\"])(e,t)||Array.isArray(e)&&(this.$parent.internalPageSize=e.indexOf(this.$parent.pageSize)>-1?this.$parent.pageSize:this.pageSizes[0])}}},render:function(e){var t=this;return e(\"span\",{class:\"el-pagination__sizes\"},[e(\"el-select\",{attrs:{value:this.$parent.internalPageSize,popperClass:this.$parent.popperClass||\"\",size:\"mini\",disabled:this.$parent.disabled},on:{input:this.handleChange}},[this.pageSizes.map((function(n){return e(\"el-option\",{attrs:{value:n,label:n+t.t(\"el.pagination.pagesize\")}})}))])])},components:{ElSelect:d.a,ElOption:h.a},methods:{handleChange:function(e){e!==this.$parent.internalPageSize&&(this.$parent.internalPageSize=e=parseInt(e,10),this.$parent.userChangePageSize=!0,this.$parent.$emit(\"update:pageSize\",e),this.$parent.$emit(\"size-change\",e))}}},Jumper:{mixins:[g.a],components:{ElInput:_.a},data:function(){return{userInput:null}},watch:{\"$parent.internalCurrentPage\":function(){this.userInput=null}},methods:{handleKeyup:function(e){var t=e.keyCode,n=e.target;13===t&&this.handleChange(n.value)},handleInput:function(e){this.userInput=e},handleChange:function(e){this.$parent.internalCurrentPage=this.$parent.getValidCurrentPage(e),this.$parent.emitChange(),this.userInput=null}},render:function(e){return e(\"span\",{class:\"el-pagination__jump\"},[this.t(\"el.pagination.goto\"),e(\"el-input\",{class:\"el-pagination__editor is-in-pagination\",attrs:{min:1,max:this.$parent.internalPageCount,value:null!==this.userInput?this.userInput:this.$parent.internalCurrentPage,type:\"number\",disabled:this.$parent.disabled},nativeOn:{keyup:this.handleKeyup},on:{input:this.handleInput,change:this.handleChange}}),this.t(\"el.pagination.pageClassifier\")])}},Total:{mixins:[g.a],render:function(e){return\"number\"===typeof this.$parent.total?e(\"span\",{class:\"el-pagination__total\"},[this.t(\"el.pagination.total\",{total:this.$parent.total})]):\"\"}},Pager:c},methods:{handleCurrentChange:function(e){this.internalCurrentPage=this.getValidCurrentPage(e),this.userChangePageSize=!0,this.emitChange()},prev:function(){if(!this.disabled){var e=this.internalCurrentPage-1;this.internalCurrentPage=this.getValidCurrentPage(e),this.$emit(\"prev-click\",this.internalCurrentPage),this.emitChange()}},next:function(){if(!this.disabled){var e=this.internalCurrentPage+1;this.internalCurrentPage=this.getValidCurrentPage(e),this.$emit(\"next-click\",this.internalCurrentPage),this.emitChange()}},getValidCurrentPage:function(e){e=parseInt(e,10);var t=\"number\"===typeof this.internalPageCount,n=void 0;return t?e<1?n=1:e>this.internalPageCount&&(n=this.internalPageCount):(isNaN(e)||e<1)&&(n=1),(void 0===n&&isNaN(e)||0===n)&&(n=1),void 0===n?e:n},emitChange:function(){var e=this;this.$nextTick((function(){(e.internalCurrentPage!==e.lastEmittedPage||e.userChangePageSize)&&(e.$emit(\"current-change\",e.internalCurrentPage),e.lastEmittedPage=e.internalCurrentPage,e.userChangePageSize=!1)}))}},computed:{internalPageCount:function(){return\"number\"===typeof this.total?Math.max(1,Math.ceil(this.total/this.internalPageSize)):\"number\"===typeof this.pageCount?Math.max(1,this.pageCount):null}},watch:{currentPage:{immediate:!0,handler:function(e){this.internalCurrentPage=this.getValidCurrentPage(e)}},pageSize:{immediate:!0,handler:function(e){this.internalPageSize=isNaN(e)?10:e}},internalCurrentPage:{immediate:!0,handler:function(e){this.$emit(\"update:currentPage\",e),this.lastEmittedPage=-1}},internalPageCount:function(e){var t=this.internalCurrentPage;e>0&&0===t?this.internalCurrentPage=1:t>e&&(this.internalCurrentPage=0===e?1:e,this.userChangePageSize&&this.emitChange()),this.userChangePageSize=!1}},install:function(e){e.component(v.name,v)}},E=v,y=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"dialog-fade\"},on:{\"after-enter\":e.afterEnter,\"after-leave\":e.afterLeave}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-dialog__wrapper\",on:{click:function(t){return t.target!==t.currentTarget?null:e.handleWrapperClick(t)}}},[n(\"div\",{key:e.key,ref:\"dialog\",class:[\"el-dialog\",{\"is-fullscreen\":e.fullscreen,\"el-dialog--center\":e.center},e.customClass],style:e.style,attrs:{role:\"dialog\",\"aria-modal\":\"true\",\"aria-label\":e.title||\"dialog\"}},[n(\"div\",{staticClass:\"el-dialog__header\"},[e._t(\"title\",[n(\"span\",{staticClass:\"el-dialog__title\"},[e._v(e._s(e.title))])]),e.showClose?n(\"button\",{staticClass:\"el-dialog__headerbtn\",attrs:{type:\"button\",\"aria-label\":\"Close\"},on:{click:e.handleClose}},[n(\"i\",{staticClass:\"el-dialog__close el-icon el-icon-close\"})]):e._e()],2),e.rendered?n(\"div\",{staticClass:\"el-dialog__body\"},[e._t(\"default\")],2):e._e(),e.$slots.footer?n(\"div\",{staticClass:\"el-dialog__footer\"},[e._t(\"footer\")],2):e._e()])])])},S=[];y._withStripped=!0;var C=n(14),T=n.n(C),x=n(9),w=n.n(x),O=n(3),N=n.n(O),R={name:\"ElDialog\",mixins:[T.a,N.a,w.a],props:{title:{type:String,default:\"\"},modal:{type:Boolean,default:!0},modalAppendToBody:{type:Boolean,default:!0},appendToBody:{type:Boolean,default:!1},lockScroll:{type:Boolean,default:!0},closeOnClickModal:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!0},showClose:{type:Boolean,default:!0},width:String,fullscreen:Boolean,customClass:{type:String,default:\"\"},top:{type:String,default:\"15vh\"},beforeClose:Function,center:{type:Boolean,default:!1},destroyOnClose:Boolean},data:function(){return{closed:!1,key:0}},watch:{visible:function(e){var t=this;e?(this.closed=!1,this.$emit(\"open\"),this.$el.addEventListener(\"scroll\",this.updatePopper),this.$nextTick((function(){t.$refs.dialog.scrollTop=0})),this.appendToBody&&document.body.appendChild(this.$el)):(this.$el.removeEventListener(\"scroll\",this.updatePopper),this.closed||this.$emit(\"close\"),this.destroyOnClose&&this.$nextTick((function(){t.key++})))}},computed:{style:function(){var e={};return this.fullscreen||(e.marginTop=this.top,this.width&&(e.width=this.width)),e}},methods:{getMigratingConfig:function(){return{props:{size:\"size is removed.\"}}},handleWrapperClick:function(){this.closeOnClickModal&&this.handleClose()},handleClose:function(){\"function\"===typeof this.beforeClose?this.beforeClose(this.hide):this.hide()},hide:function(e){!1!==e&&(this.$emit(\"update:visible\",!1),this.$emit(\"close\"),this.closed=!0)},updatePopper:function(){this.broadcast(\"ElSelectDropdown\",\"updatePopper\"),this.broadcast(\"ElDropdownMenu\",\"updatePopper\")},afterEnter:function(){this.$emit(\"opened\")},afterLeave:function(){this.$emit(\"closed\")}},mounted:function(){this.visible&&(this.rendered=!0,this.open(),this.appendToBody&&document.body.appendChild(this.$el))},destroyed:function(){this.appendToBody&&this.$el&&this.$el.parentNode&&this.$el.parentNode.removeChild(this.$el)}},k=R,A=s(k,y,S,!1,null,null,null);A.options.__file=\"packages/dialog/src/component.vue\";var D=A.exports;D.install=function(e){e.component(D.name,D)};var I=D,M=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{directives:[{name:\"clickoutside\",rawName:\"v-clickoutside\",value:e.close,expression:\"close\"}],staticClass:\"el-autocomplete\",attrs:{\"aria-haspopup\":\"listbox\",role:\"combobox\",\"aria-expanded\":e.suggestionVisible,\"aria-owns\":e.id}},[n(\"el-input\",e._b({ref:\"input\",on:{input:e.handleInput,change:e.handleChange,focus:e.handleFocus,blur:e.handleBlur,clear:e.handleClear},nativeOn:{keydown:[function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"]))return null;t.preventDefault(),e.highlight(e.highlightedIndex-1)},function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"]))return null;t.preventDefault(),e.highlight(e.highlightedIndex+1)},function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.handleKeyEnter(t)},function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"tab\",9,t.key,\"Tab\")?null:e.close(t)}]}},\"el-input\",[e.$props,e.$attrs],!1),[e.$slots.prepend?n(\"template\",{slot:\"prepend\"},[e._t(\"prepend\")],2):e._e(),e.$slots.append?n(\"template\",{slot:\"append\"},[e._t(\"append\")],2):e._e(),e.$slots.prefix?n(\"template\",{slot:\"prefix\"},[e._t(\"prefix\")],2):e._e(),e.$slots.suffix?n(\"template\",{slot:\"suffix\"},[e._t(\"suffix\")],2):e._e()],2),n(\"el-autocomplete-suggestions\",{ref:\"suggestions\",class:[e.popperClass?e.popperClass:\"\"],attrs:{\"visible-arrow\":\"\",\"popper-options\":e.popperOptions,\"append-to-body\":e.popperAppendToBody,placement:e.placement,id:e.id}},e._l(e.suggestions,(function(t,i){return n(\"li\",{key:i,class:{highlighted:e.highlightedIndex===i},attrs:{id:e.id+\"-item-\"+i,role:\"option\",\"aria-selected\":e.highlightedIndex===i},on:{click:function(n){e.select(t)}}},[e._t(\"default\",[e._v(\"\\n        \"+e._s(t[e.valueKey])+\"\\n      \")],{item:t})],2)})),0)],1)},L=[];M._withStripped=!0;var P=n(15),F=n.n(P),B=n(10),U=n.n(B),$=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-zoom-in-top\"},on:{\"after-leave\":e.doDestroy}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.showPopper,expression:\"showPopper\"}],staticClass:\"el-autocomplete-suggestion el-popper\",class:{\"is-loading\":!e.parent.hideLoading&&e.parent.loading},style:{width:e.dropdownWidth},attrs:{role:\"region\"}},[n(\"el-scrollbar\",{attrs:{tag:\"ul\",\"wrap-class\":\"el-autocomplete-suggestion__wrap\",\"view-class\":\"el-autocomplete-suggestion__list\"}},[!e.parent.hideLoading&&e.parent.loading?n(\"li\",[n(\"i\",{staticClass:\"el-icon-loading\"})]):e._t(\"default\")],2)],1)])},j=[];$._withStripped=!0;var G=n(5),q=n.n(G),H=n(17),V=n.n(H),z={components:{ElScrollbar:V.a},mixins:[q.a,N.a],componentName:\"ElAutocompleteSuggestions\",data:function(){return{parent:this.$parent,dropdownWidth:\"\"}},props:{options:{default:function(){return{gpuAcceleration:!1}}},id:String},methods:{select:function(e){this.dispatch(\"ElAutocomplete\",\"item-click\",e)}},updated:function(){var e=this;this.$nextTick((function(t){e.popperJS&&e.updatePopper()}))},mounted:function(){this.$parent.popperElm=this.popperElm=this.$el,this.referenceElm=this.$parent.$refs.input.$refs.input||this.$parent.$refs.input.$refs.textarea,this.referenceList=this.$el.querySelector(\".el-autocomplete-suggestion__list\"),this.referenceList.setAttribute(\"role\",\"listbox\"),this.referenceList.setAttribute(\"id\",this.id)},created:function(){var e=this;this.$on(\"visible\",(function(t,n){e.dropdownWidth=n+\"px\",e.showPopper=t}))}},Y=z,W=s(Y,$,j,!1,null,null,null);W.options.__file=\"packages/autocomplete/src/autocomplete-suggestions.vue\";var K=W.exports,Q=n(22),X=n.n(Q),Z={name:\"ElAutocomplete\",mixins:[N.a,X()(\"input\"),w.a],inheritAttrs:!1,componentName:\"ElAutocomplete\",components:{ElInput:_.a,ElAutocompleteSuggestions:K},directives:{Clickoutside:U.a},props:{valueKey:{type:String,default:\"value\"},popperClass:String,popperOptions:Object,placeholder:String,clearable:{type:Boolean,default:!1},disabled:Boolean,name:String,size:String,value:String,maxlength:Number,minlength:Number,autofocus:Boolean,fetchSuggestions:Function,triggerOnFocus:{type:Boolean,default:!0},customItem:String,selectWhenUnmatched:{type:Boolean,default:!1},prefixIcon:String,suffixIcon:String,label:String,debounce:{type:Number,default:300},placement:{type:String,default:\"bottom-start\"},hideLoading:Boolean,popperAppendToBody:{type:Boolean,default:!0},highlightFirstItem:{type:Boolean,default:!1}},data:function(){return{activated:!1,suggestions:[],loading:!1,highlightedIndex:-1,suggestionDisabled:!1}},computed:{suggestionVisible:function(){var e=this.suggestions,t=Array.isArray(e)&&e.length>0;return(t||this.loading)&&this.activated},id:function(){return\"el-autocomplete-\"+Object(b[\"generateId\"])()}},watch:{suggestionVisible:function(e){var t=this.getInput();t&&this.broadcast(\"ElAutocompleteSuggestions\",\"visible\",[e,t.offsetWidth])}},methods:{getMigratingConfig:function(){return{props:{\"custom-item\":\"custom-item is removed, use scoped slot instead.\",props:\"props is removed, use value-key instead.\"}}},getData:function(e){var t=this;this.suggestionDisabled||(this.loading=!0,this.fetchSuggestions(e,(function(e){t.loading=!1,t.suggestionDisabled||Array.isArray(e)&&(t.suggestions=e,t.highlightedIndex=t.highlightFirstItem?0:-1)})))},handleInput:function(e){if(this.$emit(\"input\",e),this.suggestionDisabled=!1,!this.triggerOnFocus&&!e)return this.suggestionDisabled=!0,void(this.suggestions=[]);this.debouncedGetData(e)},handleChange:function(e){this.$emit(\"change\",e)},handleFocus:function(e){this.activated=!0,this.$emit(\"focus\",e),this.triggerOnFocus&&this.debouncedGetData(this.value)},handleBlur:function(e){this.$emit(\"blur\",e)},handleClear:function(){this.activated=!1,this.$emit(\"clear\")},close:function(e){this.activated=!1},handleKeyEnter:function(e){var t=this;this.suggestionVisible&&this.highlightedIndex>=0&&this.highlightedIndex<this.suggestions.length?(e.preventDefault(),this.select(this.suggestions[this.highlightedIndex])):this.selectWhenUnmatched&&(this.$emit(\"select\",{value:this.value}),this.$nextTick((function(e){t.suggestions=[],t.highlightedIndex=-1})))},select:function(e){var t=this;this.$emit(\"input\",e[this.valueKey]),this.$emit(\"select\",e),this.$nextTick((function(e){t.suggestions=[],t.highlightedIndex=-1}))},highlight:function(e){if(this.suggestionVisible&&!this.loading)if(e<0)this.highlightedIndex=-1;else{e>=this.suggestions.length&&(e=this.suggestions.length-1);var t=this.$refs.suggestions.$el.querySelector(\".el-autocomplete-suggestion__wrap\"),n=t.querySelectorAll(\".el-autocomplete-suggestion__list li\"),i=n[e],r=t.scrollTop,a=i.offsetTop;a+i.scrollHeight>r+t.clientHeight&&(t.scrollTop+=i.scrollHeight),a<r&&(t.scrollTop-=i.scrollHeight),this.highlightedIndex=e;var o=this.getInput();o.setAttribute(\"aria-activedescendant\",this.id+\"-item-\"+this.highlightedIndex)}},getInput:function(){return this.$refs.input.getInput()}},mounted:function(){var e=this;this.debouncedGetData=F()(this.debounce,this.getData),this.$on(\"item-click\",(function(t){e.select(t)}));var t=this.getInput();t.setAttribute(\"role\",\"textbox\"),t.setAttribute(\"aria-autocomplete\",\"list\"),t.setAttribute(\"aria-controls\",\"id\"),t.setAttribute(\"aria-activedescendant\",this.id+\"-item-\"+this.highlightedIndex)},beforeDestroy:function(){this.$refs.suggestions.$destroy()}},J=Z,ee=s(J,M,L,!1,null,null,null);ee.options.__file=\"packages/autocomplete/src/autocomplete.vue\";var te=ee.exports;te.install=function(e){e.component(te.name,te)};var ne,ie,re=te,ae=n(12),oe=n.n(ae),se=n(29),le=n.n(se),ce={name:\"ElDropdown\",componentName:\"ElDropdown\",mixins:[N.a,w.a],directives:{Clickoutside:U.a},components:{ElButton:oe.a,ElButtonGroup:le.a},provide:function(){return{dropdown:this}},props:{trigger:{type:String,default:\"hover\"},type:String,size:{type:String,default:\"\"},splitButton:Boolean,hideOnClick:{type:Boolean,default:!0},placement:{type:String,default:\"bottom-end\"},visibleArrow:{default:!0},showTimeout:{type:Number,default:250},hideTimeout:{type:Number,default:150},tabindex:{type:Number,default:0}},data:function(){return{timeout:null,visible:!1,triggerElm:null,menuItems:null,menuItemsArray:null,dropdownElm:null,focusing:!1,listId:\"dropdown-menu-\"+Object(b[\"generateId\"])()}},computed:{dropdownSize:function(){return this.size||(this.$ELEMENT||{}).size}},mounted:function(){this.$on(\"menu-item-click\",this.handleMenuItemClick)},watch:{visible:function(e){this.broadcast(\"ElDropdownMenu\",\"visible\",e),this.$emit(\"visible-change\",e)},focusing:function(e){var t=this.$el.querySelector(\".el-dropdown-selfdefine\");t&&(e?t.className+=\" focusing\":t.className=t.className.replace(\"focusing\",\"\"))}},methods:{getMigratingConfig:function(){return{props:{\"menu-align\":\"menu-align is renamed to placement.\"}}},show:function(){var e=this;this.triggerElm.disabled||(clearTimeout(this.timeout),this.timeout=setTimeout((function(){e.visible=!0}),\"click\"===this.trigger?0:this.showTimeout))},hide:function(){var e=this;this.triggerElm.disabled||(this.removeTabindex(),this.tabindex>=0&&this.resetTabindex(this.triggerElm),clearTimeout(this.timeout),this.timeout=setTimeout((function(){e.visible=!1}),\"click\"===this.trigger?0:this.hideTimeout))},handleClick:function(){this.triggerElm.disabled||(this.visible?this.hide():this.show())},handleTriggerKeyDown:function(e){var t=e.keyCode;[38,40].indexOf(t)>-1?(this.removeTabindex(),this.resetTabindex(this.menuItems[0]),this.menuItems[0].focus(),e.preventDefault(),e.stopPropagation()):13===t?this.handleClick():[9,27].indexOf(t)>-1&&this.hide()},handleItemKeyDown:function(e){var t=e.keyCode,n=e.target,i=this.menuItemsArray.indexOf(n),r=this.menuItemsArray.length-1,a=void 0;[38,40].indexOf(t)>-1?(a=38===t?0!==i?i-1:0:i<r?i+1:r,this.removeTabindex(),this.resetTabindex(this.menuItems[a]),this.menuItems[a].focus(),e.preventDefault(),e.stopPropagation()):13===t?(this.triggerElmFocus(),n.click(),this.hideOnClick&&(this.visible=!1)):[9,27].indexOf(t)>-1&&(this.hide(),this.triggerElmFocus())},resetTabindex:function(e){this.removeTabindex(),e.setAttribute(\"tabindex\",\"0\")},removeTabindex:function(){this.triggerElm.setAttribute(\"tabindex\",\"-1\"),this.menuItemsArray.forEach((function(e){e.setAttribute(\"tabindex\",\"-1\")}))},initAria:function(){this.dropdownElm.setAttribute(\"id\",this.listId),this.triggerElm.setAttribute(\"aria-haspopup\",\"list\"),this.triggerElm.setAttribute(\"aria-controls\",this.listId),this.splitButton||(this.triggerElm.setAttribute(\"role\",\"button\"),this.triggerElm.setAttribute(\"tabindex\",this.tabindex),this.triggerElm.setAttribute(\"class\",(this.triggerElm.getAttribute(\"class\")||\"\")+\" el-dropdown-selfdefine\"))},initEvent:function(){var e=this,t=this.trigger,n=this.show,i=this.hide,r=this.handleClick,a=this.splitButton,o=this.handleTriggerKeyDown,s=this.handleItemKeyDown;this.triggerElm=a?this.$refs.trigger.$el:this.$slots.default[0].elm;var l=this.dropdownElm;this.triggerElm.addEventListener(\"keydown\",o),l.addEventListener(\"keydown\",s,!0),a||(this.triggerElm.addEventListener(\"focus\",(function(){e.focusing=!0})),this.triggerElm.addEventListener(\"blur\",(function(){e.focusing=!1})),this.triggerElm.addEventListener(\"click\",(function(){e.focusing=!1}))),\"hover\"===t?(this.triggerElm.addEventListener(\"mouseenter\",n),this.triggerElm.addEventListener(\"mouseleave\",i),l.addEventListener(\"mouseenter\",n),l.addEventListener(\"mouseleave\",i)):\"click\"===t&&this.triggerElm.addEventListener(\"click\",r)},handleMenuItemClick:function(e,t){this.hideOnClick&&(this.visible=!1),this.$emit(\"command\",e,t)},triggerElmFocus:function(){this.triggerElm.focus&&this.triggerElm.focus()},initDomOperation:function(){this.dropdownElm=this.popperElm,this.menuItems=this.dropdownElm.querySelectorAll(\"[tabindex='-1']\"),this.menuItemsArray=[].slice.call(this.menuItems),this.initEvent(),this.initAria()}},render:function(e){var t=this,n=this.hide,i=this.splitButton,r=this.type,a=this.dropdownSize,o=function(e){t.$emit(\"click\",e),n()},s=i?e(\"el-button-group\",[e(\"el-button\",{attrs:{type:r,size:a},nativeOn:{click:o}},[this.$slots.default]),e(\"el-button\",{ref:\"trigger\",attrs:{type:r,size:a},class:\"el-dropdown__caret-button\"},[e(\"i\",{class:\"el-dropdown__icon el-icon-arrow-down\"})])]):this.$slots.default;return e(\"div\",{class:\"el-dropdown\",directives:[{name:\"clickoutside\",value:n}]},[s,this.$slots.dropdown])}},ue=ce,de=s(ue,ne,ie,!1,null,null,null);de.options.__file=\"packages/dropdown/src/dropdown.vue\";var pe=de.exports;pe.install=function(e){e.component(pe.name,pe)};var he=pe,fe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-zoom-in-top\"},on:{\"after-leave\":e.doDestroy}},[n(\"ul\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.showPopper,expression:\"showPopper\"}],staticClass:\"el-dropdown-menu el-popper\",class:[e.size&&\"el-dropdown-menu--\"+e.size]},[e._t(\"default\")],2)])},_e=[];fe._withStripped=!0;var me={name:\"ElDropdownMenu\",componentName:\"ElDropdownMenu\",mixins:[q.a],props:{visibleArrow:{type:Boolean,default:!0},arrowOffset:{type:Number,default:0}},data:function(){return{size:this.dropdown.dropdownSize}},inject:[\"dropdown\"],created:function(){var e=this;this.$on(\"updatePopper\",(function(){e.showPopper&&e.updatePopper()})),this.$on(\"visible\",(function(t){e.showPopper=t}))},mounted:function(){this.dropdown.popperElm=this.popperElm=this.$el,this.referenceElm=this.dropdown.$el,this.dropdown.initDomOperation()},watch:{\"dropdown.placement\":{immediate:!0,handler:function(e){this.currentPlacement=e}}}},ge=me,be=s(ge,fe,_e,!1,null,null,null);be.options.__file=\"packages/dropdown/src/dropdown-menu.vue\";var ve=be.exports;ve.install=function(e){e.component(ve.name,ve)};var Ee=ve,ye=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"li\",{staticClass:\"el-dropdown-menu__item\",class:{\"is-disabled\":e.disabled,\"el-dropdown-menu__item--divided\":e.divided},attrs:{\"aria-disabled\":e.disabled,tabindex:e.disabled?null:-1},on:{click:e.handleClick}},[e.icon?n(\"i\",{class:e.icon}):e._e(),e._t(\"default\")],2)},Se=[];ye._withStripped=!0;var Ce={name:\"ElDropdownItem\",mixins:[N.a],props:{command:{},disabled:Boolean,divided:Boolean,icon:String},methods:{handleClick:function(e){this.dispatch(\"ElDropdown\",\"menu-item-click\",[this.command,this])}}},Te=Ce,xe=s(Te,ye,Se,!1,null,null,null);xe.options.__file=\"packages/dropdown/src/dropdown-item.vue\";var we=xe.exports;we.install=function(e){e.component(we.name,we)};var Oe=we,Ne=Ne||{};Ne.Utils=Ne.Utils||{},Ne.Utils.focusFirstDescendant=function(e){for(var t=0;t<e.childNodes.length;t++){var n=e.childNodes[t];if(Ne.Utils.attemptFocus(n)||Ne.Utils.focusFirstDescendant(n))return!0}return!1},Ne.Utils.focusLastDescendant=function(e){for(var t=e.childNodes.length-1;t>=0;t--){var n=e.childNodes[t];if(Ne.Utils.attemptFocus(n)||Ne.Utils.focusLastDescendant(n))return!0}return!1},Ne.Utils.attemptFocus=function(e){if(!Ne.Utils.isFocusable(e))return!1;Ne.Utils.IgnoreUtilFocusChanges=!0;try{e.focus()}catch(t){}return Ne.Utils.IgnoreUtilFocusChanges=!1,document.activeElement===e},Ne.Utils.isFocusable=function(e){if(e.tabIndex>0||0===e.tabIndex&&null!==e.getAttribute(\"tabIndex\"))return!0;if(e.disabled)return!1;switch(e.nodeName){case\"A\":return!!e.href&&\"ignore\"!==e.rel;case\"INPUT\":return\"hidden\"!==e.type&&\"file\"!==e.type;case\"BUTTON\":case\"SELECT\":case\"TEXTAREA\":return!0;default:return!1}},Ne.Utils.triggerEvent=function(e,t){var n=void 0;n=/^mouse|click/.test(t)?\"MouseEvents\":/^key/.test(t)?\"KeyboardEvent\":\"HTMLEvents\";for(var i=document.createEvent(n),r=arguments.length,a=Array(r>2?r-2:0),o=2;o<r;o++)a[o-2]=arguments[o];return i.initEvent.apply(i,[t].concat(a)),e.dispatchEvent?e.dispatchEvent(i):e.fireEvent(\"on\"+t,i),e},Ne.Utils.keys={tab:9,enter:13,space:32,left:37,up:38,right:39,down:40,esc:27};var Re=Ne.Utils,ke=function(e,t){this.domNode=t,this.parent=e,this.subMenuItems=[],this.subIndex=0,this.init()};ke.prototype.init=function(){this.subMenuItems=this.domNode.querySelectorAll(\"li\"),this.addListeners()},ke.prototype.gotoSubIndex=function(e){e===this.subMenuItems.length?e=0:e<0&&(e=this.subMenuItems.length-1),this.subMenuItems[e].focus(),this.subIndex=e},ke.prototype.addListeners=function(){var e=this,t=Re.keys,n=this.parent.domNode;Array.prototype.forEach.call(this.subMenuItems,(function(i){i.addEventListener(\"keydown\",(function(i){var r=!1;switch(i.keyCode){case t.down:e.gotoSubIndex(e.subIndex+1),r=!0;break;case t.up:e.gotoSubIndex(e.subIndex-1),r=!0;break;case t.tab:Re.triggerEvent(n,\"mouseleave\");break;case t.enter:case t.space:r=!0,i.currentTarget.click();break}return r&&(i.preventDefault(),i.stopPropagation()),!1}))}))};var Ae=ke,De=function(e){this.domNode=e,this.submenu=null,this.init()};De.prototype.init=function(){this.domNode.setAttribute(\"tabindex\",\"0\");var e=this.domNode.querySelector(\".el-menu\");e&&(this.submenu=new Ae(this,e)),this.addListeners()},De.prototype.addListeners=function(){var e=this,t=Re.keys;this.domNode.addEventListener(\"keydown\",(function(n){var i=!1;switch(n.keyCode){case t.down:Re.triggerEvent(n.currentTarget,\"mouseenter\"),e.submenu&&e.submenu.gotoSubIndex(0),i=!0;break;case t.up:Re.triggerEvent(n.currentTarget,\"mouseenter\"),e.submenu&&e.submenu.gotoSubIndex(e.submenu.subMenuItems.length-1),i=!0;break;case t.tab:Re.triggerEvent(n.currentTarget,\"mouseleave\");break;case t.enter:case t.space:i=!0,n.currentTarget.click();break}i&&n.preventDefault()}))};var Ie=De,Me=function(e){this.domNode=e,this.init()};Me.prototype.init=function(){var e=this.domNode.childNodes;[].filter.call(e,(function(e){return 1===e.nodeType})).forEach((function(e){new Ie(e)}))};var Le,Pe,Fe=Me,Be=n(1),Ue={name:\"ElMenu\",render:function(e){var t=e(\"ul\",{attrs:{role:\"menubar\"},key:+this.collapse,style:{backgroundColor:this.backgroundColor||\"\"},class:{\"el-menu--horizontal\":\"horizontal\"===this.mode,\"el-menu--collapse\":this.collapse,\"el-menu\":!0}},[this.$slots.default]);return this.collapseTransition?e(\"el-menu-collapse-transition\",[t]):t},componentName:\"ElMenu\",mixins:[N.a,w.a],provide:function(){return{rootMenu:this}},components:{\"el-menu-collapse-transition\":{functional:!0,render:function(e,t){var n={props:{mode:\"out-in\"},on:{beforeEnter:function(e){e.style.opacity=.2},enter:function(e){Object(Be[\"addClass\"])(e,\"el-opacity-transition\"),e.style.opacity=1},afterEnter:function(e){Object(Be[\"removeClass\"])(e,\"el-opacity-transition\"),e.style.opacity=\"\"},beforeLeave:function(e){e.dataset||(e.dataset={}),Object(Be[\"hasClass\"])(e,\"el-menu--collapse\")?(Object(Be[\"removeClass\"])(e,\"el-menu--collapse\"),e.dataset.oldOverflow=e.style.overflow,e.dataset.scrollWidth=e.clientWidth,Object(Be[\"addClass\"])(e,\"el-menu--collapse\")):(Object(Be[\"addClass\"])(e,\"el-menu--collapse\"),e.dataset.oldOverflow=e.style.overflow,e.dataset.scrollWidth=e.clientWidth,Object(Be[\"removeClass\"])(e,\"el-menu--collapse\")),e.style.width=e.scrollWidth+\"px\",e.style.overflow=\"hidden\"},leave:function(e){Object(Be[\"addClass\"])(e,\"horizontal-collapse-transition\"),e.style.width=e.dataset.scrollWidth+\"px\"}}};return e(\"transition\",n,t.children)}}},props:{mode:{type:String,default:\"vertical\"},defaultActive:{type:String,default:\"\"},defaultOpeneds:Array,uniqueOpened:Boolean,router:Boolean,menuTrigger:{type:String,default:\"hover\"},collapse:Boolean,backgroundColor:String,textColor:String,activeTextColor:String,collapseTransition:{type:Boolean,default:!0}},data:function(){return{activeIndex:this.defaultActive,openedMenus:this.defaultOpeneds&&!this.collapse?this.defaultOpeneds.slice(0):[],items:{},submenus:{}}},computed:{hoverBackground:function(){return this.backgroundColor?this.mixColor(this.backgroundColor,.2):\"\"},isMenuPopup:function(){return\"horizontal\"===this.mode||\"vertical\"===this.mode&&this.collapse}},watch:{defaultActive:function(e){this.items[e]||(this.activeIndex=null),this.updateActiveIndex(e)},defaultOpeneds:function(e){this.collapse||(this.openedMenus=e)},collapse:function(e){e&&(this.openedMenus=[]),this.broadcast(\"ElSubmenu\",\"toggle-collapse\",e)}},methods:{updateActiveIndex:function(e){var t=this.items[e]||this.items[this.activeIndex]||this.items[this.defaultActive];t?(this.activeIndex=t.index,this.initOpenedMenu()):this.activeIndex=null},getMigratingConfig:function(){return{props:{theme:\"theme is removed.\"}}},getColorChannels:function(e){if(e=e.replace(\"#\",\"\"),/^[0-9a-fA-F]{3}$/.test(e)){e=e.split(\"\");for(var t=2;t>=0;t--)e.splice(t,0,e[t]);e=e.join(\"\")}return/^[0-9a-fA-F]{6}$/.test(e)?{red:parseInt(e.slice(0,2),16),green:parseInt(e.slice(2,4),16),blue:parseInt(e.slice(4,6),16)}:{red:255,green:255,blue:255}},mixColor:function(e,t){var n=this.getColorChannels(e),i=n.red,r=n.green,a=n.blue;return t>0?(i*=1-t,r*=1-t,a*=1-t):(i+=(255-i)*t,r+=(255-r)*t,a+=(255-a)*t),\"rgb(\"+Math.round(i)+\", \"+Math.round(r)+\", \"+Math.round(a)+\")\"},addItem:function(e){this.$set(this.items,e.index,e)},removeItem:function(e){delete this.items[e.index]},addSubmenu:function(e){this.$set(this.submenus,e.index,e)},removeSubmenu:function(e){delete this.submenus[e.index]},openMenu:function(e,t){var n=this.openedMenus;-1===n.indexOf(e)&&(this.uniqueOpened&&(this.openedMenus=n.filter((function(e){return-1!==t.indexOf(e)}))),this.openedMenus.push(e))},closeMenu:function(e){var t=this.openedMenus.indexOf(e);-1!==t&&this.openedMenus.splice(t,1)},handleSubmenuClick:function(e){var t=e.index,n=e.indexPath,i=-1!==this.openedMenus.indexOf(t);i?(this.closeMenu(t),this.$emit(\"close\",t,n)):(this.openMenu(t,n),this.$emit(\"open\",t,n))},handleItemClick:function(e){var t=this,n=e.index,i=e.indexPath,r=this.activeIndex,a=null!==e.index;a&&(this.activeIndex=e.index),this.$emit(\"select\",n,i,e),(\"horizontal\"===this.mode||this.collapse)&&(this.openedMenus=[]),this.router&&a&&this.routeToItem(e,(function(e){t.activeIndex=r,!e||e.name}))},initOpenedMenu:function(){var e=this,t=this.activeIndex,n=this.items[t];if(n&&\"horizontal\"!==this.mode&&!this.collapse){var i=n.indexPath;i.forEach((function(t){var n=e.submenus[t];n&&e.openMenu(t,n.indexPath)}))}},routeToItem:function(e,t){var n=e.route||e.index;try{this.$router.push(n,(function(){}),t)}catch(i){}},open:function(e){var t=this,n=this.submenus[e.toString()].indexPath;n.forEach((function(e){return t.openMenu(e,n)}))},close:function(e){this.closeMenu(e)}},mounted:function(){this.initOpenedMenu(),this.$on(\"item-click\",this.handleItemClick),this.$on(\"submenu-click\",this.handleSubmenuClick),\"horizontal\"===this.mode&&new Fe(this.$el),this.$watch(\"items\",this.updateActiveIndex)}},$e=Ue,je=s($e,Le,Pe,!1,null,null,null);je.options.__file=\"packages/menu/src/menu.vue\";var Ge=je.exports;Ge.install=function(e){e.component(Ge.name,Ge)};var qe,He,Ve=Ge,ze=n(21),Ye=n.n(ze),We={inject:[\"rootMenu\"],computed:{indexPath:function(){var e=[this.index],t=this.$parent;while(\"ElMenu\"!==t.$options.componentName)t.index&&e.unshift(t.index),t=t.$parent;return e},parentMenu:function(){var e=this.$parent;while(e&&-1===[\"ElMenu\",\"ElSubmenu\"].indexOf(e.$options.componentName))e=e.$parent;return e},paddingStyle:function(){if(\"vertical\"!==this.rootMenu.mode)return{};var e=20,t=this.$parent;if(this.rootMenu.collapse)e=20;else while(t&&\"ElMenu\"!==t.$options.componentName)\"ElSubmenu\"===t.$options.componentName&&(e+=20),t=t.$parent;return{paddingLeft:e+\"px\"}}}},Ke={props:{transformOrigin:{type:[Boolean,String],default:!1},offset:q.a.props.offset,boundariesPadding:q.a.props.boundariesPadding,popperOptions:q.a.props.popperOptions},data:q.a.data,methods:q.a.methods,beforeDestroy:q.a.beforeDestroy,deactivated:q.a.deactivated},Qe={name:\"ElSubmenu\",componentName:\"ElSubmenu\",mixins:[We,N.a,Ke],components:{ElCollapseTransition:Ye.a},props:{index:{type:String,required:!0},showTimeout:{type:Number,default:300},hideTimeout:{type:Number,default:300},popperClass:String,disabled:Boolean,popperAppendToBody:{type:Boolean,default:void 0}},data:function(){return{popperJS:null,timeout:null,items:{},submenus:{},mouseInChild:!1}},watch:{opened:function(e){var t=this;this.isMenuPopup&&this.$nextTick((function(e){t.updatePopper()}))}},computed:{appendToBody:function(){return void 0===this.popperAppendToBody?this.isFirstLevel:this.popperAppendToBody},menuTransitionName:function(){return this.rootMenu.collapse?\"el-zoom-in-left\":\"el-zoom-in-top\"},opened:function(){return this.rootMenu.openedMenus.indexOf(this.index)>-1},active:function(){var e=!1,t=this.submenus,n=this.items;return Object.keys(n).forEach((function(t){n[t].active&&(e=!0)})),Object.keys(t).forEach((function(n){t[n].active&&(e=!0)})),e},hoverBackground:function(){return this.rootMenu.hoverBackground},backgroundColor:function(){return this.rootMenu.backgroundColor||\"\"},activeTextColor:function(){return this.rootMenu.activeTextColor||\"\"},textColor:function(){return this.rootMenu.textColor||\"\"},mode:function(){return this.rootMenu.mode},isMenuPopup:function(){return this.rootMenu.isMenuPopup},titleStyle:function(){return\"horizontal\"!==this.mode?{color:this.textColor}:{borderBottomColor:this.active?this.rootMenu.activeTextColor?this.activeTextColor:\"\":\"transparent\",color:this.active?this.activeTextColor:this.textColor}},isFirstLevel:function(){var e=!0,t=this.$parent;while(t&&t!==this.rootMenu){if([\"ElSubmenu\",\"ElMenuItemGroup\"].indexOf(t.$options.componentName)>-1){e=!1;break}t=t.$parent}return e}},methods:{handleCollapseToggle:function(e){e?this.initPopper():this.doDestroy()},addItem:function(e){this.$set(this.items,e.index,e)},removeItem:function(e){delete this.items[e.index]},addSubmenu:function(e){this.$set(this.submenus,e.index,e)},removeSubmenu:function(e){delete this.submenus[e.index]},handleClick:function(){var e=this.rootMenu,t=this.disabled;\"hover\"===e.menuTrigger&&\"horizontal\"===e.mode||e.collapse&&\"vertical\"===e.mode||t||this.dispatch(\"ElMenu\",\"submenu-click\",this)},handleMouseenter:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.showTimeout;if(\"ActiveXObject\"in window||\"focus\"!==e.type||e.relatedTarget){var i=this.rootMenu,r=this.disabled;\"click\"===i.menuTrigger&&\"horizontal\"===i.mode||!i.collapse&&\"vertical\"===i.mode||r||(this.dispatch(\"ElSubmenu\",\"mouse-enter-child\"),clearTimeout(this.timeout),this.timeout=setTimeout((function(){t.rootMenu.openMenu(t.index,t.indexPath)}),n),this.appendToBody&&this.$parent.$el.dispatchEvent(new MouseEvent(\"mouseenter\")))}},handleMouseleave:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],n=this.rootMenu;\"click\"===n.menuTrigger&&\"horizontal\"===n.mode||!n.collapse&&\"vertical\"===n.mode||(this.dispatch(\"ElSubmenu\",\"mouse-leave-child\"),clearTimeout(this.timeout),this.timeout=setTimeout((function(){!e.mouseInChild&&e.rootMenu.closeMenu(e.index)}),this.hideTimeout),this.appendToBody&&t&&\"ElSubmenu\"===this.$parent.$options.name&&this.$parent.handleMouseleave(!0))},handleTitleMouseenter:function(){if(\"horizontal\"!==this.mode||this.rootMenu.backgroundColor){var e=this.$refs[\"submenu-title\"];e&&(e.style.backgroundColor=this.rootMenu.hoverBackground)}},handleTitleMouseleave:function(){if(\"horizontal\"!==this.mode||this.rootMenu.backgroundColor){var e=this.$refs[\"submenu-title\"];e&&(e.style.backgroundColor=this.rootMenu.backgroundColor||\"\")}},updatePlacement:function(){this.currentPlacement=\"horizontal\"===this.mode&&this.isFirstLevel?\"bottom-start\":\"right-start\"},initPopper:function(){this.referenceElm=this.$el,this.popperElm=this.$refs.menu,this.updatePlacement()}},created:function(){var e=this;this.$on(\"toggle-collapse\",this.handleCollapseToggle),this.$on(\"mouse-enter-child\",(function(){e.mouseInChild=!0,clearTimeout(e.timeout)})),this.$on(\"mouse-leave-child\",(function(){e.mouseInChild=!1,clearTimeout(e.timeout)}))},mounted:function(){this.parentMenu.addSubmenu(this),this.rootMenu.addSubmenu(this),this.initPopper()},beforeDestroy:function(){this.parentMenu.removeSubmenu(this),this.rootMenu.removeSubmenu(this)},render:function(e){var t=this,n=this.active,i=this.opened,r=this.paddingStyle,a=this.titleStyle,o=this.backgroundColor,s=this.rootMenu,l=this.currentPlacement,c=this.menuTransitionName,u=this.mode,d=this.disabled,p=this.popperClass,h=this.$slots,f=this.isFirstLevel,_=e(\"transition\",{attrs:{name:c}},[e(\"div\",{ref:\"menu\",directives:[{name:\"show\",value:i}],class:[\"el-menu--\"+u,p],on:{mouseenter:function(e){return t.handleMouseenter(e,100)},mouseleave:function(){return t.handleMouseleave(!0)},focus:function(e){return t.handleMouseenter(e,100)}}},[e(\"ul\",{attrs:{role:\"menu\"},class:[\"el-menu el-menu--popup\",\"el-menu--popup-\"+l],style:{backgroundColor:s.backgroundColor||\"\"}},[h.default])])]),m=e(\"el-collapse-transition\",[e(\"ul\",{attrs:{role:\"menu\"},class:\"el-menu el-menu--inline\",directives:[{name:\"show\",value:i}],style:{backgroundColor:s.backgroundColor||\"\"}},[h.default])]),g=\"horizontal\"===s.mode&&f||\"vertical\"===s.mode&&!s.collapse?\"el-icon-arrow-down\":\"el-icon-arrow-right\";return e(\"li\",{class:{\"el-submenu\":!0,\"is-active\":n,\"is-opened\":i,\"is-disabled\":d},attrs:{role:\"menuitem\",\"aria-haspopup\":\"true\",\"aria-expanded\":i},on:{mouseenter:this.handleMouseenter,mouseleave:function(){return t.handleMouseleave(!1)},focus:this.handleMouseenter}},[e(\"div\",{class:\"el-submenu__title\",ref:\"submenu-title\",on:{click:this.handleClick,mouseenter:this.handleTitleMouseenter,mouseleave:this.handleTitleMouseleave},style:[r,a,{backgroundColor:o}]},[h.title,e(\"i\",{class:[\"el-submenu__icon-arrow\",g]})]),this.isMenuPopup?_:m])}},Xe=Qe,Ze=s(Xe,qe,He,!1,null,null,null);Ze.options.__file=\"packages/menu/src/submenu.vue\";var Je=Ze.exports;Je.install=function(e){e.component(Je.name,Je)};var et=Je,tt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"li\",{staticClass:\"el-menu-item\",class:{\"is-active\":e.active,\"is-disabled\":e.disabled},style:[e.paddingStyle,e.itemStyle,{backgroundColor:e.backgroundColor}],attrs:{role:\"menuitem\",tabindex:\"-1\"},on:{click:e.handleClick,mouseenter:e.onMouseEnter,focus:e.onMouseEnter,blur:e.onMouseLeave,mouseleave:e.onMouseLeave}},[\"ElMenu\"===e.parentMenu.$options.componentName&&e.rootMenu.collapse&&e.$slots.title?n(\"el-tooltip\",{attrs:{effect:\"dark\",placement:\"right\"}},[n(\"div\",{attrs:{slot:\"content\"},slot:\"content\"},[e._t(\"title\")],2),n(\"div\",{staticStyle:{position:\"absolute\",left:\"0\",top:\"0\",height:\"100%\",width:\"100%\",display:\"inline-block\",\"box-sizing\":\"border-box\",padding:\"0 20px\"}},[e._t(\"default\")],2)]):[e._t(\"default\"),e._t(\"title\")]],2)},nt=[];tt._withStripped=!0;var it=n(26),rt=n.n(it),at={name:\"ElMenuItem\",componentName:\"ElMenuItem\",mixins:[We,N.a],components:{ElTooltip:rt.a},props:{index:{default:null,validator:function(e){return\"string\"===typeof e||null===e}},route:[String,Object],disabled:Boolean},computed:{active:function(){return this.index===this.rootMenu.activeIndex},hoverBackground:function(){return this.rootMenu.hoverBackground},backgroundColor:function(){return this.rootMenu.backgroundColor||\"\"},activeTextColor:function(){return this.rootMenu.activeTextColor||\"\"},textColor:function(){return this.rootMenu.textColor||\"\"},mode:function(){return this.rootMenu.mode},itemStyle:function(){var e={color:this.active?this.activeTextColor:this.textColor};return\"horizontal\"!==this.mode||this.isNested||(e.borderBottomColor=this.active?this.rootMenu.activeTextColor?this.activeTextColor:\"\":\"transparent\"),e},isNested:function(){return this.parentMenu!==this.rootMenu}},methods:{onMouseEnter:function(){(\"horizontal\"!==this.mode||this.rootMenu.backgroundColor)&&(this.$el.style.backgroundColor=this.hoverBackground)},onMouseLeave:function(){(\"horizontal\"!==this.mode||this.rootMenu.backgroundColor)&&(this.$el.style.backgroundColor=this.backgroundColor)},handleClick:function(){this.disabled||(this.dispatch(\"ElMenu\",\"item-click\",this),this.$emit(\"click\",this))}},mounted:function(){this.parentMenu.addItem(this),this.rootMenu.addItem(this)},beforeDestroy:function(){this.parentMenu.removeItem(this),this.rootMenu.removeItem(this)}},ot=at,st=s(ot,tt,nt,!1,null,null,null);st.options.__file=\"packages/menu/src/menu-item.vue\";var lt=st.exports;lt.install=function(e){e.component(lt.name,lt)};var ct=lt,ut=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"li\",{staticClass:\"el-menu-item-group\"},[n(\"div\",{staticClass:\"el-menu-item-group__title\",style:{paddingLeft:e.levelPadding+\"px\"}},[e.$slots.title?e._t(\"title\"):[e._v(e._s(e.title))]],2),n(\"ul\",[e._t(\"default\")],2)])},dt=[];ut._withStripped=!0;var pt={name:\"ElMenuItemGroup\",componentName:\"ElMenuItemGroup\",inject:[\"rootMenu\"],props:{title:{type:String}},data:function(){return{paddingLeft:20}},computed:{levelPadding:function(){var e=20,t=this.$parent;if(this.rootMenu.collapse)return 20;while(t&&\"ElMenu\"!==t.$options.componentName)\"ElSubmenu\"===t.$options.componentName&&(e+=20),t=t.$parent;return e}}},ht=pt,ft=s(ht,ut,dt,!1,null,null,null);ft.options.__file=\"packages/menu/src/menu-item-group.vue\";var _t=ft.exports;_t.install=function(e){e.component(_t.name,_t)};var mt=_t,gt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{class:[\"textarea\"===e.type?\"el-textarea\":\"el-input\",e.inputSize?\"el-input--\"+e.inputSize:\"\",{\"is-disabled\":e.inputDisabled,\"is-exceed\":e.inputExceed,\"el-input-group\":e.$slots.prepend||e.$slots.append,\"el-input-group--append\":e.$slots.append,\"el-input-group--prepend\":e.$slots.prepend,\"el-input--prefix\":e.$slots.prefix||e.prefixIcon,\"el-input--suffix\":e.$slots.suffix||e.suffixIcon||e.clearable||e.showPassword}],on:{mouseenter:function(t){e.hovering=!0},mouseleave:function(t){e.hovering=!1}}},[\"textarea\"!==e.type?[e.$slots.prepend?n(\"div\",{staticClass:\"el-input-group__prepend\"},[e._t(\"prepend\")],2):e._e(),\"textarea\"!==e.type?n(\"input\",e._b({ref:\"input\",staticClass:\"el-input__inner\",attrs:{tabindex:e.tabindex,type:e.showPassword?e.passwordVisible?\"text\":\"password\":e.type,disabled:e.inputDisabled,readonly:e.readonly,autocomplete:e.autoComplete||e.autocomplete,\"aria-label\":e.label},on:{compositionstart:e.handleCompositionStart,compositionupdate:e.handleCompositionUpdate,compositionend:e.handleCompositionEnd,input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur,change:e.handleChange}},\"input\",e.$attrs,!1)):e._e(),e.$slots.prefix||e.prefixIcon?n(\"span\",{staticClass:\"el-input__prefix\"},[e._t(\"prefix\"),e.prefixIcon?n(\"i\",{staticClass:\"el-input__icon\",class:e.prefixIcon}):e._e()],2):e._e(),e.getSuffixVisible()?n(\"span\",{staticClass:\"el-input__suffix\"},[n(\"span\",{staticClass:\"el-input__suffix-inner\"},[e.showClear&&e.showPwdVisible&&e.isWordLimitVisible?e._e():[e._t(\"suffix\"),e.suffixIcon?n(\"i\",{staticClass:\"el-input__icon\",class:e.suffixIcon}):e._e()],e.showClear?n(\"i\",{staticClass:\"el-input__icon el-icon-circle-close el-input__clear\",on:{mousedown:function(e){e.preventDefault()},click:e.clear}}):e._e(),e.showPwdVisible?n(\"i\",{staticClass:\"el-input__icon el-icon-view el-input__clear\",on:{click:e.handlePasswordVisible}}):e._e(),e.isWordLimitVisible?n(\"span\",{staticClass:\"el-input__count\"},[n(\"span\",{staticClass:\"el-input__count-inner\"},[e._v(\"\\n            \"+e._s(e.textLength)+\"/\"+e._s(e.upperLimit)+\"\\n          \")])]):e._e()],2),e.validateState?n(\"i\",{staticClass:\"el-input__icon\",class:[\"el-input__validateIcon\",e.validateIcon]}):e._e()]):e._e(),e.$slots.append?n(\"div\",{staticClass:\"el-input-group__append\"},[e._t(\"append\")],2):e._e()]:n(\"textarea\",e._b({ref:\"textarea\",staticClass:\"el-textarea__inner\",style:e.textareaStyle,attrs:{tabindex:e.tabindex,disabled:e.inputDisabled,readonly:e.readonly,autocomplete:e.autoComplete||e.autocomplete,\"aria-label\":e.label},on:{compositionstart:e.handleCompositionStart,compositionupdate:e.handleCompositionUpdate,compositionend:e.handleCompositionEnd,input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur,change:e.handleChange}},\"textarea\",e.$attrs,!1)),e.isWordLimitVisible&&\"textarea\"===e.type?n(\"span\",{staticClass:\"el-input__count\"},[e._v(e._s(e.textLength)+\"/\"+e._s(e.upperLimit))]):e._e()],2)},bt=[];gt._withStripped=!0;var vt=void 0,Et=\"\\n  height:0 !important;\\n  visibility:hidden !important;\\n  overflow:hidden !important;\\n  position:absolute !important;\\n  z-index:-1000 !important;\\n  top:0 !important;\\n  right:0 !important\\n\",yt=[\"letter-spacing\",\"line-height\",\"padding-top\",\"padding-bottom\",\"font-family\",\"font-weight\",\"font-size\",\"text-rendering\",\"text-transform\",\"width\",\"text-indent\",\"padding-left\",\"padding-right\",\"border-width\",\"box-sizing\"];function St(e){var t=window.getComputedStyle(e),n=t.getPropertyValue(\"box-sizing\"),i=parseFloat(t.getPropertyValue(\"padding-bottom\"))+parseFloat(t.getPropertyValue(\"padding-top\")),r=parseFloat(t.getPropertyValue(\"border-bottom-width\"))+parseFloat(t.getPropertyValue(\"border-top-width\")),a=yt.map((function(e){return e+\":\"+t.getPropertyValue(e)})).join(\";\");return{contextStyle:a,paddingSize:i,borderSize:r,boxSizing:n}}function Ct(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;vt||(vt=document.createElement(\"textarea\"),document.body.appendChild(vt));var i=St(e),r=i.paddingSize,a=i.borderSize,o=i.boxSizing,s=i.contextStyle;vt.setAttribute(\"style\",s+\";\"+Et),vt.value=e.value||e.placeholder||\"\";var l=vt.scrollHeight,c={};\"border-box\"===o?l+=a:\"content-box\"===o&&(l-=r),vt.value=\"\";var u=vt.scrollHeight-r;if(null!==t){var d=u*t;\"border-box\"===o&&(d=d+r+a),l=Math.max(d,l),c.minHeight=d+\"px\"}if(null!==n){var p=u*n;\"border-box\"===o&&(p=p+r+a),l=Math.min(p,l)}return c.height=l+\"px\",vt.parentNode&&vt.parentNode.removeChild(vt),vt=null,c}var Tt=n(7),xt=n.n(Tt),wt=n(19),Ot={name:\"ElInput\",componentName:\"ElInput\",mixins:[N.a,w.a],inheritAttrs:!1,inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},data:function(){return{textareaCalcStyle:{},hovering:!1,focused:!1,isComposing:!1,passwordVisible:!1}},props:{value:[String,Number],size:String,resize:String,form:String,disabled:Boolean,readonly:Boolean,type:{type:String,default:\"text\"},autosize:{type:[Boolean,Object],default:!1},autocomplete:{type:String,default:\"off\"},autoComplete:{type:String,validator:function(e){return!0}},validateEvent:{type:Boolean,default:!0},suffixIcon:String,prefixIcon:String,label:String,clearable:{type:Boolean,default:!1},showPassword:{type:Boolean,default:!1},showWordLimit:{type:Boolean,default:!1},tabindex:String},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},validateState:function(){return this.elFormItem?this.elFormItem.validateState:\"\"},needStatusIcon:function(){return!!this.elForm&&this.elForm.statusIcon},validateIcon:function(){return{validating:\"el-icon-loading\",success:\"el-icon-circle-check\",error:\"el-icon-circle-close\"}[this.validateState]},textareaStyle:function(){return xt()({},this.textareaCalcStyle,{resize:this.resize})},inputSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},inputDisabled:function(){return this.disabled||(this.elForm||{}).disabled},nativeInputValue:function(){return null===this.value||void 0===this.value?\"\":String(this.value)},showClear:function(){return this.clearable&&!this.inputDisabled&&!this.readonly&&this.nativeInputValue&&(this.focused||this.hovering)},showPwdVisible:function(){return this.showPassword&&!this.inputDisabled&&!this.readonly&&(!!this.nativeInputValue||this.focused)},isWordLimitVisible:function(){return this.showWordLimit&&this.$attrs.maxlength&&(\"text\"===this.type||\"textarea\"===this.type)&&!this.inputDisabled&&!this.readonly&&!this.showPassword},upperLimit:function(){return this.$attrs.maxlength},textLength:function(){return\"number\"===typeof this.value?String(this.value).length:(this.value||\"\").length},inputExceed:function(){return this.isWordLimitVisible&&this.textLength>this.upperLimit}},watch:{value:function(e){this.$nextTick(this.resizeTextarea),this.validateEvent&&this.dispatch(\"ElFormItem\",\"el.form.change\",[e])},nativeInputValue:function(){this.setNativeInputValue()},type:function(){var e=this;this.$nextTick((function(){e.setNativeInputValue(),e.resizeTextarea(),e.updateIconOffset()}))}},methods:{focus:function(){this.getInput().focus()},blur:function(){this.getInput().blur()},getMigratingConfig:function(){return{props:{icon:\"icon is removed, use suffix-icon / prefix-icon instead.\",\"on-icon-click\":\"on-icon-click is removed.\"},events:{click:\"click is removed.\"}}},handleBlur:function(e){this.focused=!1,this.$emit(\"blur\",e),this.validateEvent&&this.dispatch(\"ElFormItem\",\"el.form.blur\",[this.value])},select:function(){this.getInput().select()},resizeTextarea:function(){if(!this.$isServer){var e=this.autosize,t=this.type;if(\"textarea\"===t)if(e){var n=e.minRows,i=e.maxRows;this.textareaCalcStyle=Ct(this.$refs.textarea,n,i)}else this.textareaCalcStyle={minHeight:Ct(this.$refs.textarea).minHeight}}},setNativeInputValue:function(){var e=this.getInput();e&&e.value!==this.nativeInputValue&&(e.value=this.nativeInputValue)},handleFocus:function(e){this.focused=!0,this.$emit(\"focus\",e)},handleCompositionStart:function(){this.isComposing=!0},handleCompositionUpdate:function(e){var t=e.target.value,n=t[t.length-1]||\"\";this.isComposing=!Object(wt[\"isKorean\"])(n)},handleCompositionEnd:function(e){this.isComposing&&(this.isComposing=!1,this.handleInput(e))},handleInput:function(e){this.isComposing||e.target.value!==this.nativeInputValue&&(this.$emit(\"input\",e.target.value),this.$nextTick(this.setNativeInputValue))},handleChange:function(e){this.$emit(\"change\",e.target.value)},calcIconOffset:function(e){var t=[].slice.call(this.$el.querySelectorAll(\".el-input__\"+e)||[]);if(t.length){for(var n=null,i=0;i<t.length;i++)if(t[i].parentNode===this.$el){n=t[i];break}if(n){var r={suffix:\"append\",prefix:\"prepend\"},a=r[e];this.$slots[a]?n.style.transform=\"translateX(\"+(\"suffix\"===e?\"-\":\"\")+this.$el.querySelector(\".el-input-group__\"+a).offsetWidth+\"px)\":n.removeAttribute(\"style\")}}},updateIconOffset:function(){this.calcIconOffset(\"prefix\"),this.calcIconOffset(\"suffix\")},clear:function(){this.$emit(\"input\",\"\"),this.$emit(\"change\",\"\"),this.$emit(\"clear\")},handlePasswordVisible:function(){this.passwordVisible=!this.passwordVisible,this.focus()},getInput:function(){return this.$refs.input||this.$refs.textarea},getSuffixVisible:function(){return this.$slots.suffix||this.suffixIcon||this.showClear||this.showPassword||this.isWordLimitVisible||this.validateState&&this.needStatusIcon}},created:function(){this.$on(\"inputSelect\",this.select)},mounted:function(){this.setNativeInputValue(),this.resizeTextarea(),this.updateIconOffset()},updated:function(){this.$nextTick(this.updateIconOffset)}},Nt=Ot,Rt=s(Nt,gt,bt,!1,null,null,null);Rt.options.__file=\"packages/input/src/input.vue\";var kt=Rt.exports;kt.install=function(e){e.component(kt.name,kt)};var At=kt,Dt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{class:[\"el-input-number\",e.inputNumberSize?\"el-input-number--\"+e.inputNumberSize:\"\",{\"is-disabled\":e.inputNumberDisabled},{\"is-without-controls\":!e.controls},{\"is-controls-right\":e.controlsAtRight}],on:{dragstart:function(e){e.preventDefault()}}},[e.controls?n(\"span\",{directives:[{name:\"repeat-click\",rawName:\"v-repeat-click\",value:e.decrease,expression:\"decrease\"}],staticClass:\"el-input-number__decrease\",class:{\"is-disabled\":e.minDisabled},attrs:{role:\"button\"},on:{keydown:function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.decrease(t)}}},[n(\"i\",{class:\"el-icon-\"+(e.controlsAtRight?\"arrow-down\":\"minus\")})]):e._e(),e.controls?n(\"span\",{directives:[{name:\"repeat-click\",rawName:\"v-repeat-click\",value:e.increase,expression:\"increase\"}],staticClass:\"el-input-number__increase\",class:{\"is-disabled\":e.maxDisabled},attrs:{role:\"button\"},on:{keydown:function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.increase(t)}}},[n(\"i\",{class:\"el-icon-\"+(e.controlsAtRight?\"arrow-up\":\"plus\")})]):e._e(),n(\"el-input\",{ref:\"input\",attrs:{value:e.displayValue,placeholder:e.placeholder,disabled:e.inputNumberDisabled,size:e.inputNumberSize,max:e.max,min:e.min,name:e.name,label:e.label},on:{blur:e.handleBlur,focus:e.handleFocus,input:e.handleInput,change:e.handleInputChange},nativeOn:{keydown:[function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"])?null:(t.preventDefault(),e.increase(t))},function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"])?null:(t.preventDefault(),e.decrease(t))}]}})],1)},It=[];Dt._withStripped=!0;var Mt={bind:function(e,t,n){var i=null,r=void 0,a=function(){return n.context[t.expression].apply()},o=function(){Date.now()-r<100&&a(),clearInterval(i),i=null};Object(Be[\"on\"])(e,\"mousedown\",(function(e){0===e.button&&(r=Date.now(),Object(Be[\"once\"])(document,\"mouseup\",o),clearInterval(i),i=setInterval(a,100))}))}},Lt={name:\"ElInputNumber\",mixins:[X()(\"input\")],inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},directives:{repeatClick:Mt},components:{ElInput:_.a},props:{step:{type:Number,default:1},stepStrictly:{type:Boolean,default:!1},max:{type:Number,default:1/0},min:{type:Number,default:-1/0},value:{},disabled:Boolean,size:String,controls:{type:Boolean,default:!0},controlsPosition:{type:String,default:\"\"},name:String,label:String,placeholder:String,precision:{type:Number,validator:function(e){return e>=0&&e===parseInt(e,10)}}},data:function(){return{currentValue:0,userInput:null}},watch:{value:{immediate:!0,handler:function(e){var t=void 0===e?e:Number(e);if(void 0!==t){if(isNaN(t))return;if(this.stepStrictly){var n=this.getPrecision(this.step),i=Math.pow(10,n);t=Math.round(t/this.step)*i*this.step/i}void 0!==this.precision&&(t=this.toPrecision(t,this.precision))}t>=this.max&&(t=this.max),t<=this.min&&(t=this.min),this.currentValue=t,this.userInput=null,this.$emit(\"input\",t)}}},computed:{minDisabled:function(){return this._decrease(this.value,this.step)<this.min},maxDisabled:function(){return this._increase(this.value,this.step)>this.max},numPrecision:function(){var e=this.value,t=this.step,n=this.getPrecision,i=this.precision,r=n(t);return void 0!==i?i:Math.max(n(e),r)},controlsAtRight:function(){return this.controls&&\"right\"===this.controlsPosition},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},inputNumberSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},inputNumberDisabled:function(){return this.disabled||!!(this.elForm||{}).disabled},displayValue:function(){if(null!==this.userInput)return this.userInput;var e=this.currentValue;if(\"number\"===typeof e){if(this.stepStrictly){var t=this.getPrecision(this.step),n=Math.pow(10,t);e=Math.round(e/this.step)*n*this.step/n}void 0!==this.precision&&(e=e.toFixed(this.precision))}return e}},methods:{toPrecision:function(e,t){return void 0===t&&(t=this.numPrecision),parseFloat(Math.round(e*Math.pow(10,t))/Math.pow(10,t))},getPrecision:function(e){if(void 0===e)return 0;var t=e.toString(),n=t.indexOf(\".\"),i=0;return-1!==n&&(i=t.length-n-1),i},_increase:function(e,t){if(\"number\"!==typeof e&&void 0!==e)return this.currentValue;var n=Math.pow(10,this.numPrecision);return this.toPrecision((n*e+n*t)/n)},_decrease:function(e,t){if(\"number\"!==typeof e&&void 0!==e)return this.currentValue;var n=Math.pow(10,this.numPrecision);return this.toPrecision((n*e-n*t)/n)},increase:function(){if(!this.inputNumberDisabled&&!this.maxDisabled){var e=this.value||0,t=this._increase(e,this.step);this.setCurrentValue(t)}},decrease:function(){if(!this.inputNumberDisabled&&!this.minDisabled){var e=this.value||0,t=this._decrease(e,this.step);this.setCurrentValue(t)}},handleBlur:function(e){this.$emit(\"blur\",e)},handleFocus:function(e){this.$emit(\"focus\",e)},setCurrentValue:function(e){var t=this.currentValue;\"number\"===typeof e&&void 0!==this.precision&&(e=this.toPrecision(e,this.precision)),e>=this.max&&(e=this.max),e<=this.min&&(e=this.min),t!==e&&(this.userInput=null,this.$emit(\"input\",e),this.$emit(\"change\",e,t),this.currentValue=e)},handleInput:function(e){this.userInput=e},handleInputChange:function(e){var t=\"\"===e?void 0:Number(e);isNaN(t)&&\"\"!==e||this.setCurrentValue(t),this.userInput=null},select:function(){this.$refs.input.select()}},mounted:function(){var e=this.$refs.input.$refs.input;e.setAttribute(\"role\",\"spinbutton\"),e.setAttribute(\"aria-valuemax\",this.max),e.setAttribute(\"aria-valuemin\",this.min),e.setAttribute(\"aria-valuenow\",this.currentValue),e.setAttribute(\"aria-disabled\",this.inputNumberDisabled)},updated:function(){if(this.$refs&&this.$refs.input){var e=this.$refs.input.$refs.input;e.setAttribute(\"aria-valuenow\",this.currentValue)}}},Pt=Lt,Ft=s(Pt,Dt,It,!1,null,null,null);Ft.options.__file=\"packages/input-number/src/input-number.vue\";var Bt=Ft.exports;Bt.install=function(e){e.component(Bt.name,Bt)};var Ut=Bt,$t=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"label\",{staticClass:\"el-radio\",class:[e.border&&e.radioSize?\"el-radio--\"+e.radioSize:\"\",{\"is-disabled\":e.isDisabled},{\"is-focus\":e.focus},{\"is-bordered\":e.border},{\"is-checked\":e.model===e.label}],attrs:{role:\"radio\",\"aria-checked\":e.model===e.label,\"aria-disabled\":e.isDisabled,tabindex:e.tabIndex},on:{keydown:function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"space\",32,t.key,[\" \",\"Spacebar\"]))return null;t.stopPropagation(),t.preventDefault(),e.model=e.isDisabled?e.model:e.label}}},[n(\"span\",{staticClass:\"el-radio__input\",class:{\"is-disabled\":e.isDisabled,\"is-checked\":e.model===e.label}},[n(\"span\",{staticClass:\"el-radio__inner\"}),n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.model,expression:\"model\"}],ref:\"radio\",staticClass:\"el-radio__original\",attrs:{type:\"radio\",\"aria-hidden\":\"true\",name:e.name,disabled:e.isDisabled,tabindex:\"-1\"},domProps:{value:e.label,checked:e._q(e.model,e.label)},on:{focus:function(t){e.focus=!0},blur:function(t){e.focus=!1},change:[function(t){e.model=e.label},e.handleChange]}})]),n(\"span\",{staticClass:\"el-radio__label\",on:{keydown:function(e){e.stopPropagation()}}},[e._t(\"default\"),e.$slots.default?e._e():[e._v(e._s(e.label))]],2)])},jt=[];$t._withStripped=!0;var Gt={name:\"ElRadio\",mixins:[N.a],inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},componentName:\"ElRadio\",props:{value:{},label:{},disabled:Boolean,name:String,border:Boolean,size:String},data:function(){return{focus:!1}},computed:{isGroup:function(){var e=this.$parent;while(e){if(\"ElRadioGroup\"===e.$options.componentName)return this._radioGroup=e,!0;e=e.$parent}return!1},model:{get:function(){return this.isGroup?this._radioGroup.value:this.value},set:function(e){this.isGroup?this.dispatch(\"ElRadioGroup\",\"input\",[e]):this.$emit(\"input\",e),this.$refs.radio&&(this.$refs.radio.checked=this.model===this.label)}},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},radioSize:function(){var e=this.size||this._elFormItemSize||(this.$ELEMENT||{}).size;return this.isGroup&&this._radioGroup.radioGroupSize||e},isDisabled:function(){return this.isGroup?this._radioGroup.disabled||this.disabled||(this.elForm||{}).disabled:this.disabled||(this.elForm||{}).disabled},tabIndex:function(){return this.isDisabled||this.isGroup&&this.model!==this.label?-1:0}},methods:{handleChange:function(){var e=this;this.$nextTick((function(){e.$emit(\"change\",e.model),e.isGroup&&e.dispatch(\"ElRadioGroup\",\"handleChange\",e.model)}))}}},qt=Gt,Ht=s(qt,$t,jt,!1,null,null,null);Ht.options.__file=\"packages/radio/src/radio.vue\";var Vt=Ht.exports;Vt.install=function(e){e.component(Vt.name,Vt)};var zt=Vt,Yt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e._elTag,{tag:\"component\",staticClass:\"el-radio-group\",attrs:{role:\"radiogroup\"},on:{keydown:e.handleKeydown}},[e._t(\"default\")],2)},Wt=[];Yt._withStripped=!0;var Kt=Object.freeze({LEFT:37,UP:38,RIGHT:39,DOWN:40}),Qt={name:\"ElRadioGroup\",componentName:\"ElRadioGroup\",inject:{elFormItem:{default:\"\"}},mixins:[N.a],props:{value:{},size:String,fill:String,textColor:String,disabled:Boolean},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},_elTag:function(){return(this.$vnode.data||{}).tag||\"div\"},radioGroupSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size}},created:function(){var e=this;this.$on(\"handleChange\",(function(t){e.$emit(\"change\",t)}))},mounted:function(){var e=this.$el.querySelectorAll(\"[type=radio]\"),t=this.$el.querySelectorAll(\"[role=radio]\")[0];![].some.call(e,(function(e){return e.checked}))&&t&&(t.tabIndex=0)},methods:{handleKeydown:function(e){var t=e.target,n=\"INPUT\"===t.nodeName?\"[type=radio]\":\"[role=radio]\",i=this.$el.querySelectorAll(n),r=i.length,a=[].indexOf.call(i,t),o=this.$el.querySelectorAll(\"[role=radio]\");switch(e.keyCode){case Kt.LEFT:case Kt.UP:e.stopPropagation(),e.preventDefault(),0===a?(o[r-1].click(),o[r-1].focus()):(o[a-1].click(),o[a-1].focus());break;case Kt.RIGHT:case Kt.DOWN:a===r-1?(e.stopPropagation(),e.preventDefault(),o[0].click(),o[0].focus()):(o[a+1].click(),o[a+1].focus());break;default:break}}},watch:{value:function(e){this.dispatch(\"ElFormItem\",\"el.form.change\",[this.value])}}},Xt=Qt,Zt=s(Xt,Yt,Wt,!1,null,null,null);Zt.options.__file=\"packages/radio/src/radio-group.vue\";var Jt=Zt.exports;Jt.install=function(e){e.component(Jt.name,Jt)};var en=Jt,tn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"label\",{staticClass:\"el-radio-button\",class:[e.size?\"el-radio-button--\"+e.size:\"\",{\"is-active\":e.value===e.label},{\"is-disabled\":e.isDisabled},{\"is-focus\":e.focus}],attrs:{role:\"radio\",\"aria-checked\":e.value===e.label,\"aria-disabled\":e.isDisabled,tabindex:e.tabIndex},on:{keydown:function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"space\",32,t.key,[\" \",\"Spacebar\"]))return null;t.stopPropagation(),t.preventDefault(),e.value=e.isDisabled?e.value:e.label}}},[n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.value,expression:\"value\"}],staticClass:\"el-radio-button__orig-radio\",attrs:{type:\"radio\",name:e.name,disabled:e.isDisabled,tabindex:\"-1\"},domProps:{value:e.label,checked:e._q(e.value,e.label)},on:{change:[function(t){e.value=e.label},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}}),n(\"span\",{staticClass:\"el-radio-button__inner\",style:e.value===e.label?e.activeStyle:null,on:{keydown:function(e){e.stopPropagation()}}},[e._t(\"default\"),e.$slots.default?e._e():[e._v(e._s(e.label))]],2)])},nn=[];tn._withStripped=!0;var rn={name:\"ElRadioButton\",mixins:[N.a],inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},props:{label:{},disabled:Boolean,name:String},data:function(){return{focus:!1}},computed:{value:{get:function(){return this._radioGroup.value},set:function(e){this._radioGroup.$emit(\"input\",e)}},_radioGroup:function(){var e=this.$parent;while(e){if(\"ElRadioGroup\"===e.$options.componentName)return e;e=e.$parent}return!1},activeStyle:function(){return{backgroundColor:this._radioGroup.fill||\"\",borderColor:this._radioGroup.fill||\"\",boxShadow:this._radioGroup.fill?\"-1px 0 0 0 \"+this._radioGroup.fill:\"\",color:this._radioGroup.textColor||\"\"}},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},size:function(){return this._radioGroup.radioGroupSize||this._elFormItemSize||(this.$ELEMENT||{}).size},isDisabled:function(){return this.disabled||this._radioGroup.disabled||(this.elForm||{}).disabled},tabIndex:function(){return this.isDisabled||this._radioGroup&&this.value!==this.label?-1:0}},methods:{handleChange:function(){var e=this;this.$nextTick((function(){e.dispatch(\"ElRadioGroup\",\"handleChange\",e.value)}))}}},an=rn,on=s(an,tn,nn,!1,null,null,null);on.options.__file=\"packages/radio/src/radio-button.vue\";var sn=on.exports;sn.install=function(e){e.component(sn.name,sn)};var ln=sn,cn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"label\",{staticClass:\"el-checkbox\",class:[e.border&&e.checkboxSize?\"el-checkbox--\"+e.checkboxSize:\"\",{\"is-disabled\":e.isDisabled},{\"is-bordered\":e.border},{\"is-checked\":e.isChecked}],attrs:{id:e.id}},[n(\"span\",{staticClass:\"el-checkbox__input\",class:{\"is-disabled\":e.isDisabled,\"is-checked\":e.isChecked,\"is-indeterminate\":e.indeterminate,\"is-focus\":e.focus},attrs:{tabindex:!!e.indeterminate&&0,role:!!e.indeterminate&&\"checkbox\",\"aria-checked\":!!e.indeterminate&&\"mixed\"}},[n(\"span\",{staticClass:\"el-checkbox__inner\"}),e.trueLabel||e.falseLabel?n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.model,expression:\"model\"}],staticClass:\"el-checkbox__original\",attrs:{type:\"checkbox\",\"aria-hidden\":e.indeterminate?\"true\":\"false\",name:e.name,disabled:e.isDisabled,\"true-value\":e.trueLabel,\"false-value\":e.falseLabel},domProps:{checked:Array.isArray(e.model)?e._i(e.model,null)>-1:e._q(e.model,e.trueLabel)},on:{change:[function(t){var n=e.model,i=t.target,r=i.checked?e.trueLabel:e.falseLabel;if(Array.isArray(n)){var a=null,o=e._i(n,a);i.checked?o<0&&(e.model=n.concat([a])):o>-1&&(e.model=n.slice(0,o).concat(n.slice(o+1)))}else e.model=r},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}}):n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.model,expression:\"model\"}],staticClass:\"el-checkbox__original\",attrs:{type:\"checkbox\",\"aria-hidden\":e.indeterminate?\"true\":\"false\",disabled:e.isDisabled,name:e.name},domProps:{value:e.label,checked:Array.isArray(e.model)?e._i(e.model,e.label)>-1:e.model},on:{change:[function(t){var n=e.model,i=t.target,r=!!i.checked;if(Array.isArray(n)){var a=e.label,o=e._i(n,a);i.checked?o<0&&(e.model=n.concat([a])):o>-1&&(e.model=n.slice(0,o).concat(n.slice(o+1)))}else e.model=r},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}})]),e.$slots.default||e.label?n(\"span\",{staticClass:\"el-checkbox__label\"},[e._t(\"default\"),e.$slots.default?e._e():[e._v(e._s(e.label))]],2):e._e()])},un=[];cn._withStripped=!0;var dn={name:\"ElCheckbox\",mixins:[N.a],inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},componentName:\"ElCheckbox\",data:function(){return{selfModel:!1,focus:!1,isLimitExceeded:!1}},computed:{model:{get:function(){return this.isGroup?this.store:void 0!==this.value?this.value:this.selfModel},set:function(e){this.isGroup?(this.isLimitExceeded=!1,void 0!==this._checkboxGroup.min&&e.length<this._checkboxGroup.min&&(this.isLimitExceeded=!0),void 0!==this._checkboxGroup.max&&e.length>this._checkboxGroup.max&&(this.isLimitExceeded=!0),!1===this.isLimitExceeded&&this.dispatch(\"ElCheckboxGroup\",\"input\",[e])):(this.$emit(\"input\",e),this.selfModel=e)}},isChecked:function(){return\"[object Boolean]\"==={}.toString.call(this.model)?this.model:Array.isArray(this.model)?this.model.indexOf(this.label)>-1:null!==this.model&&void 0!==this.model?this.model===this.trueLabel:void 0},isGroup:function(){var e=this.$parent;while(e){if(\"ElCheckboxGroup\"===e.$options.componentName)return this._checkboxGroup=e,!0;e=e.$parent}return!1},store:function(){return this._checkboxGroup?this._checkboxGroup.value:this.value},isLimitDisabled:function(){var e=this._checkboxGroup,t=e.max,n=e.min;return!(!t&&!n)&&this.model.length>=t&&!this.isChecked||this.model.length<=n&&this.isChecked},isDisabled:function(){return this.isGroup?this._checkboxGroup.disabled||this.disabled||(this.elForm||{}).disabled||this.isLimitDisabled:this.disabled||(this.elForm||{}).disabled},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},checkboxSize:function(){var e=this.size||this._elFormItemSize||(this.$ELEMENT||{}).size;return this.isGroup&&this._checkboxGroup.checkboxGroupSize||e}},props:{value:{},label:{},indeterminate:Boolean,disabled:Boolean,checked:Boolean,name:String,trueLabel:[String,Number],falseLabel:[String,Number],id:String,controls:String,border:Boolean,size:String},methods:{addToStore:function(){Array.isArray(this.model)&&-1===this.model.indexOf(this.label)?this.model.push(this.label):this.model=this.trueLabel||!0},handleChange:function(e){var t=this;if(!this.isLimitExceeded){var n=void 0;n=e.target.checked?void 0===this.trueLabel||this.trueLabel:void 0!==this.falseLabel&&this.falseLabel,this.$emit(\"change\",n,e),this.$nextTick((function(){t.isGroup&&t.dispatch(\"ElCheckboxGroup\",\"change\",[t._checkboxGroup.value])}))}}},created:function(){this.checked&&this.addToStore()},mounted:function(){this.indeterminate&&this.$el.setAttribute(\"aria-controls\",this.controls)},watch:{value:function(e){this.dispatch(\"ElFormItem\",\"el.form.change\",e)}}},pn=dn,hn=s(pn,cn,un,!1,null,null,null);hn.options.__file=\"packages/checkbox/src/checkbox.vue\";var fn=hn.exports;fn.install=function(e){e.component(fn.name,fn)};var _n=fn,mn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"label\",{staticClass:\"el-checkbox-button\",class:[e.size?\"el-checkbox-button--\"+e.size:\"\",{\"is-disabled\":e.isDisabled},{\"is-checked\":e.isChecked},{\"is-focus\":e.focus}],attrs:{role:\"checkbox\",\"aria-checked\":e.isChecked,\"aria-disabled\":e.isDisabled}},[e.trueLabel||e.falseLabel?n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.model,expression:\"model\"}],staticClass:\"el-checkbox-button__original\",attrs:{type:\"checkbox\",name:e.name,disabled:e.isDisabled,\"true-value\":e.trueLabel,\"false-value\":e.falseLabel},domProps:{checked:Array.isArray(e.model)?e._i(e.model,null)>-1:e._q(e.model,e.trueLabel)},on:{change:[function(t){var n=e.model,i=t.target,r=i.checked?e.trueLabel:e.falseLabel;if(Array.isArray(n)){var a=null,o=e._i(n,a);i.checked?o<0&&(e.model=n.concat([a])):o>-1&&(e.model=n.slice(0,o).concat(n.slice(o+1)))}else e.model=r},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}}):n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.model,expression:\"model\"}],staticClass:\"el-checkbox-button__original\",attrs:{type:\"checkbox\",name:e.name,disabled:e.isDisabled},domProps:{value:e.label,checked:Array.isArray(e.model)?e._i(e.model,e.label)>-1:e.model},on:{change:[function(t){var n=e.model,i=t.target,r=!!i.checked;if(Array.isArray(n)){var a=e.label,o=e._i(n,a);i.checked?o<0&&(e.model=n.concat([a])):o>-1&&(e.model=n.slice(0,o).concat(n.slice(o+1)))}else e.model=r},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}}),e.$slots.default||e.label?n(\"span\",{staticClass:\"el-checkbox-button__inner\",style:e.isChecked?e.activeStyle:null},[e._t(\"default\",[e._v(e._s(e.label))])],2):e._e()])},gn=[];mn._withStripped=!0;var bn={name:\"ElCheckboxButton\",mixins:[N.a],inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},data:function(){return{selfModel:!1,focus:!1,isLimitExceeded:!1}},props:{value:{},label:{},disabled:Boolean,checked:Boolean,name:String,trueLabel:[String,Number],falseLabel:[String,Number]},computed:{model:{get:function(){return this._checkboxGroup?this.store:void 0!==this.value?this.value:this.selfModel},set:function(e){this._checkboxGroup?(this.isLimitExceeded=!1,void 0!==this._checkboxGroup.min&&e.length<this._checkboxGroup.min&&(this.isLimitExceeded=!0),void 0!==this._checkboxGroup.max&&e.length>this._checkboxGroup.max&&(this.isLimitExceeded=!0),!1===this.isLimitExceeded&&this.dispatch(\"ElCheckboxGroup\",\"input\",[e])):void 0!==this.value?this.$emit(\"input\",e):this.selfModel=e}},isChecked:function(){return\"[object Boolean]\"==={}.toString.call(this.model)?this.model:Array.isArray(this.model)?this.model.indexOf(this.label)>-1:null!==this.model&&void 0!==this.model?this.model===this.trueLabel:void 0},_checkboxGroup:function(){var e=this.$parent;while(e){if(\"ElCheckboxGroup\"===e.$options.componentName)return e;e=e.$parent}return!1},store:function(){return this._checkboxGroup?this._checkboxGroup.value:this.value},activeStyle:function(){return{backgroundColor:this._checkboxGroup.fill||\"\",borderColor:this._checkboxGroup.fill||\"\",color:this._checkboxGroup.textColor||\"\",\"box-shadow\":\"-1px 0 0 0 \"+this._checkboxGroup.fill}},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},size:function(){return this._checkboxGroup.checkboxGroupSize||this._elFormItemSize||(this.$ELEMENT||{}).size},isLimitDisabled:function(){var e=this._checkboxGroup,t=e.max,n=e.min;return!(!t&&!n)&&this.model.length>=t&&!this.isChecked||this.model.length<=n&&this.isChecked},isDisabled:function(){return this._checkboxGroup?this._checkboxGroup.disabled||this.disabled||(this.elForm||{}).disabled||this.isLimitDisabled:this.disabled||(this.elForm||{}).disabled}},methods:{addToStore:function(){Array.isArray(this.model)&&-1===this.model.indexOf(this.label)?this.model.push(this.label):this.model=this.trueLabel||!0},handleChange:function(e){var t=this;if(!this.isLimitExceeded){var n=void 0;n=e.target.checked?void 0===this.trueLabel||this.trueLabel:void 0!==this.falseLabel&&this.falseLabel,this.$emit(\"change\",n,e),this.$nextTick((function(){t._checkboxGroup&&t.dispatch(\"ElCheckboxGroup\",\"change\",[t._checkboxGroup.value])}))}}},created:function(){this.checked&&this.addToStore()}},vn=bn,En=s(vn,mn,gn,!1,null,null,null);En.options.__file=\"packages/checkbox/src/checkbox-button.vue\";var yn=En.exports;yn.install=function(e){e.component(yn.name,yn)};var Sn=yn,Cn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-checkbox-group\",attrs:{role:\"group\",\"aria-label\":\"checkbox-group\"}},[e._t(\"default\")],2)},Tn=[];Cn._withStripped=!0;var xn={name:\"ElCheckboxGroup\",componentName:\"ElCheckboxGroup\",mixins:[N.a],inject:{elFormItem:{default:\"\"}},props:{value:{},disabled:Boolean,min:Number,max:Number,size:String,fill:String,textColor:String},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},checkboxGroupSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size}},watch:{value:function(e){this.dispatch(\"ElFormItem\",\"el.form.change\",[e])}}},wn=xn,On=s(wn,Cn,Tn,!1,null,null,null);On.options.__file=\"packages/checkbox/src/checkbox-group.vue\";var Nn=On.exports;Nn.install=function(e){e.component(Nn.name,Nn)};var Rn=Nn,kn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-switch\",class:{\"is-disabled\":e.switchDisabled,\"is-checked\":e.checked},attrs:{role:\"switch\",\"aria-checked\":e.checked,\"aria-disabled\":e.switchDisabled},on:{click:function(t){return t.preventDefault(),e.switchValue(t)}}},[n(\"input\",{ref:\"input\",staticClass:\"el-switch__input\",attrs:{type:\"checkbox\",id:e.id,name:e.name,\"true-value\":e.activeValue,\"false-value\":e.inactiveValue,disabled:e.switchDisabled},on:{change:e.handleChange,keydown:function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.switchValue(t)}}}),e.inactiveIconClass||e.inactiveText?n(\"span\",{class:[\"el-switch__label\",\"el-switch__label--left\",e.checked?\"\":\"is-active\"]},[e.inactiveIconClass?n(\"i\",{class:[e.inactiveIconClass]}):e._e(),!e.inactiveIconClass&&e.inactiveText?n(\"span\",{attrs:{\"aria-hidden\":e.checked}},[e._v(e._s(e.inactiveText))]):e._e()]):e._e(),n(\"span\",{ref:\"core\",staticClass:\"el-switch__core\",style:{width:e.coreWidth+\"px\"}}),e.activeIconClass||e.activeText?n(\"span\",{class:[\"el-switch__label\",\"el-switch__label--right\",e.checked?\"is-active\":\"\"]},[e.activeIconClass?n(\"i\",{class:[e.activeIconClass]}):e._e(),!e.activeIconClass&&e.activeText?n(\"span\",{attrs:{\"aria-hidden\":!e.checked}},[e._v(e._s(e.activeText))]):e._e()]):e._e()])},An=[];kn._withStripped=!0;var Dn={name:\"ElSwitch\",mixins:[X()(\"input\"),w.a,N.a],inject:{elForm:{default:\"\"}},props:{value:{type:[Boolean,String,Number],default:!1},disabled:{type:Boolean,default:!1},width:{type:Number,default:40},activeIconClass:{type:String,default:\"\"},inactiveIconClass:{type:String,default:\"\"},activeText:String,inactiveText:String,activeColor:{type:String,default:\"\"},inactiveColor:{type:String,default:\"\"},activeValue:{type:[Boolean,String,Number],default:!0},inactiveValue:{type:[Boolean,String,Number],default:!1},name:{type:String,default:\"\"},validateEvent:{type:Boolean,default:!0},id:String},data:function(){return{coreWidth:this.width}},created:function(){~[this.activeValue,this.inactiveValue].indexOf(this.value)||this.$emit(\"input\",this.inactiveValue)},computed:{checked:function(){return this.value===this.activeValue},switchDisabled:function(){return this.disabled||(this.elForm||{}).disabled}},watch:{checked:function(){this.$refs.input.checked=this.checked,(this.activeColor||this.inactiveColor)&&this.setBackgroundColor(),this.validateEvent&&this.dispatch(\"ElFormItem\",\"el.form.change\",[this.value])}},methods:{handleChange:function(e){var t=this,n=this.checked?this.inactiveValue:this.activeValue;this.$emit(\"input\",n),this.$emit(\"change\",n),this.$nextTick((function(){t.$refs.input.checked=t.checked}))},setBackgroundColor:function(){var e=this.checked?this.activeColor:this.inactiveColor;this.$refs.core.style.borderColor=e,this.$refs.core.style.backgroundColor=e},switchValue:function(){!this.switchDisabled&&this.handleChange()},getMigratingConfig:function(){return{props:{\"on-color\":\"on-color is renamed to active-color.\",\"off-color\":\"off-color is renamed to inactive-color.\",\"on-text\":\"on-text is renamed to active-text.\",\"off-text\":\"off-text is renamed to inactive-text.\",\"on-value\":\"on-value is renamed to active-value.\",\"off-value\":\"off-value is renamed to inactive-value.\",\"on-icon-class\":\"on-icon-class is renamed to active-icon-class.\",\"off-icon-class\":\"off-icon-class is renamed to inactive-icon-class.\"}}}},mounted:function(){this.coreWidth=this.width||40,(this.activeColor||this.inactiveColor)&&this.setBackgroundColor(),this.$refs.input.checked=this.checked}},In=Dn,Mn=s(In,kn,An,!1,null,null,null);Mn.options.__file=\"packages/switch/src/component.vue\";var Ln=Mn.exports;Ln.install=function(e){e.component(Ln.name,Ln)};var Pn=Ln,Fn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{directives:[{name:\"clickoutside\",rawName:\"v-clickoutside\",value:e.handleClose,expression:\"handleClose\"}],staticClass:\"el-select\",class:[e.selectSize?\"el-select--\"+e.selectSize:\"\"],on:{click:function(t){return t.stopPropagation(),e.toggleMenu(t)}}},[e.multiple?n(\"div\",{ref:\"tags\",staticClass:\"el-select__tags\",style:{\"max-width\":e.inputWidth-32+\"px\",width:\"100%\"}},[e.collapseTags&&e.selected.length?n(\"span\",[n(\"el-tag\",{attrs:{closable:!e.selectDisabled,size:e.collapseTagSize,hit:e.selected[0].hitState,type:\"info\",\"disable-transitions\":\"\"},on:{close:function(t){e.deleteTag(t,e.selected[0])}}},[n(\"span\",{staticClass:\"el-select__tags-text\"},[e._v(e._s(e.selected[0].currentLabel))])]),e.selected.length>1?n(\"el-tag\",{attrs:{closable:!1,size:e.collapseTagSize,type:\"info\",\"disable-transitions\":\"\"}},[n(\"span\",{staticClass:\"el-select__tags-text\"},[e._v(\"+ \"+e._s(e.selected.length-1))])]):e._e()],1):e._e(),e.collapseTags?e._e():n(\"transition-group\",{on:{\"after-leave\":e.resetInputHeight}},e._l(e.selected,(function(t){return n(\"el-tag\",{key:e.getValueKey(t),attrs:{closable:!e.selectDisabled,size:e.collapseTagSize,hit:t.hitState,type:\"info\",\"disable-transitions\":\"\"},on:{close:function(n){e.deleteTag(n,t)}}},[n(\"span\",{staticClass:\"el-select__tags-text\"},[e._v(e._s(t.currentLabel))])])})),1),e.filterable?n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.query,expression:\"query\"}],ref:\"input\",staticClass:\"el-select__input\",class:[e.selectSize?\"is-\"+e.selectSize:\"\"],style:{\"flex-grow\":\"1\",width:e.inputLength/(e.inputWidth-32)+\"%\",\"max-width\":e.inputWidth-42+\"px\"},attrs:{type:\"text\",disabled:e.selectDisabled,autocomplete:e.autoComplete||e.autocomplete},domProps:{value:e.query},on:{focus:e.handleFocus,blur:function(t){e.softFocus=!1},keyup:e.managePlaceholder,keydown:[e.resetInputState,function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"]))return null;t.preventDefault(),e.navigateOptions(\"next\")},function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"]))return null;t.preventDefault(),e.navigateOptions(\"prev\")},function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:(t.preventDefault(),e.selectOption(t))},function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"esc\",27,t.key,[\"Esc\",\"Escape\"]))return null;t.stopPropagation(),t.preventDefault(),e.visible=!1},function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"delete\",[8,46],t.key,[\"Backspace\",\"Delete\",\"Del\"])?null:e.deletePrevTag(t)},function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"tab\",9,t.key,\"Tab\"))return null;e.visible=!1}],compositionstart:e.handleComposition,compositionupdate:e.handleComposition,compositionend:e.handleComposition,input:[function(t){t.target.composing||(e.query=t.target.value)},e.debouncedQueryChange]}}):e._e()],1):e._e(),n(\"el-input\",{ref:\"reference\",class:{\"is-focus\":e.visible},attrs:{type:\"text\",placeholder:e.currentPlaceholder,name:e.name,id:e.id,autocomplete:e.autoComplete||e.autocomplete,size:e.selectSize,disabled:e.selectDisabled,readonly:e.readonly,\"validate-event\":!1,tabindex:e.multiple&&e.filterable?\"-1\":null},on:{focus:e.handleFocus,blur:e.handleBlur},nativeOn:{keyup:function(t){return e.debouncedOnInputChange(t)},keydown:[function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"]))return null;t.stopPropagation(),t.preventDefault(),e.navigateOptions(\"next\")},function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"]))return null;t.stopPropagation(),t.preventDefault(),e.navigateOptions(\"prev\")},function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:(t.preventDefault(),e.selectOption(t))},function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"esc\",27,t.key,[\"Esc\",\"Escape\"]))return null;t.stopPropagation(),t.preventDefault(),e.visible=!1},function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"tab\",9,t.key,\"Tab\"))return null;e.visible=!1}],paste:function(t){return e.debouncedOnInputChange(t)},mouseenter:function(t){e.inputHovering=!0},mouseleave:function(t){e.inputHovering=!1}},model:{value:e.selectedLabel,callback:function(t){e.selectedLabel=t},expression:\"selectedLabel\"}},[e.$slots.prefix?n(\"template\",{slot:\"prefix\"},[e._t(\"prefix\")],2):e._e(),n(\"template\",{slot:\"suffix\"},[n(\"i\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.showClose,expression:\"!showClose\"}],class:[\"el-select__caret\",\"el-input__icon\",\"el-icon-\"+e.iconClass]}),e.showClose?n(\"i\",{staticClass:\"el-select__caret el-input__icon el-icon-circle-close\",on:{click:e.handleClearClick}}):e._e()])],2),n(\"transition\",{attrs:{name:\"el-zoom-in-top\"},on:{\"before-enter\":e.handleMenuEnter,\"after-leave\":e.doDestroy}},[n(\"el-select-menu\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible&&!1!==e.emptyText,expression:\"visible && emptyText !== false\"}],ref:\"popper\",attrs:{\"append-to-body\":e.popperAppendToBody}},[n(\"el-scrollbar\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.options.length>0&&!e.loading,expression:\"options.length > 0 && !loading\"}],ref:\"scrollbar\",class:{\"is-empty\":!e.allowCreate&&e.query&&0===e.filteredOptionsCount},attrs:{tag:\"ul\",\"wrap-class\":\"el-select-dropdown__wrap\",\"view-class\":\"el-select-dropdown__list\"}},[e.showNewOption?n(\"el-option\",{attrs:{value:e.query,created:\"\"}}):e._e(),e._t(\"default\")],2),e.emptyText&&(!e.allowCreate||e.loading||e.allowCreate&&0===e.options.length)?[e.$slots.empty?e._t(\"empty\"):n(\"p\",{staticClass:\"el-select-dropdown__empty\"},[e._v(\"\\n          \"+e._s(e.emptyText)+\"\\n        \")])]:e._e()],2)],1)],1)},Bn=[];Fn._withStripped=!0;var Un=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-select-dropdown el-popper\",class:[{\"is-multiple\":e.$parent.multiple},e.popperClass],style:{minWidth:e.minWidth}},[e._t(\"default\")],2)},$n=[];Un._withStripped=!0;var jn={name:\"ElSelectDropdown\",componentName:\"ElSelectDropdown\",mixins:[q.a],props:{placement:{default:\"bottom-start\"},boundariesPadding:{default:0},popperOptions:{default:function(){return{gpuAcceleration:!1}}},visibleArrow:{default:!0},appendToBody:{type:Boolean,default:!0}},data:function(){return{minWidth:\"\"}},computed:{popperClass:function(){return this.$parent.popperClass}},watch:{\"$parent.inputWidth\":function(){this.minWidth=this.$parent.$el.getBoundingClientRect().width+\"px\"}},mounted:function(){var e=this;this.referenceElm=this.$parent.$refs.reference.$el,this.$parent.popperElm=this.popperElm=this.$el,this.$on(\"updatePopper\",(function(){e.$parent.visible&&e.updatePopper()})),this.$on(\"destroyPopper\",this.destroyPopper)}},Gn=jn,qn=s(Gn,Un,$n,!1,null,null,null);qn.options.__file=\"packages/select/src/select-dropdown.vue\";var Hn=qn.exports,Vn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"li\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-select-dropdown__item\",class:{selected:e.itemSelected,\"is-disabled\":e.disabled||e.groupDisabled||e.limitReached,hover:e.hover},on:{mouseenter:e.hoverItem,click:function(t){return t.stopPropagation(),e.selectOptionClick(t)}}},[e._t(\"default\",[n(\"span\",[e._v(e._s(e.currentLabel))])])],2)},zn=[];Vn._withStripped=!0;var Yn=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},Wn={mixins:[N.a],name:\"ElOption\",componentName:\"ElOption\",inject:[\"select\"],props:{value:{required:!0},label:[String,Number],created:Boolean,disabled:{type:Boolean,default:!1}},data:function(){return{index:-1,groupDisabled:!1,visible:!0,hitState:!1,hover:!1}},computed:{isObject:function(){return\"[object object]\"===Object.prototype.toString.call(this.value).toLowerCase()},currentLabel:function(){return this.label||(this.isObject?\"\":this.value)},currentValue:function(){return this.value||this.label||\"\"},itemSelected:function(){return this.select.multiple?this.contains(this.select.value,this.value):this.isEqual(this.value,this.select.value)},limitReached:function(){return!!this.select.multiple&&(!this.itemSelected&&(this.select.value||[]).length>=this.select.multipleLimit&&this.select.multipleLimit>0)}},watch:{currentLabel:function(){this.created||this.select.remote||this.dispatch(\"ElSelect\",\"setSelected\")},value:function(e,t){var n=this.select,i=n.remote,r=n.valueKey;if(!this.created&&!i){if(r&&\"object\"===(\"undefined\"===typeof e?\"undefined\":Yn(e))&&\"object\"===(\"undefined\"===typeof t?\"undefined\":Yn(t))&&e[r]===t[r])return;this.dispatch(\"ElSelect\",\"setSelected\")}}},methods:{isEqual:function(e,t){if(this.isObject){var n=this.select.valueKey;return Object(b[\"getValueByPath\"])(e,n)===Object(b[\"getValueByPath\"])(t,n)}return e===t},contains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1];if(this.isObject){var n=this.select.valueKey;return e&&e.some((function(e){return Object(b[\"getValueByPath\"])(e,n)===Object(b[\"getValueByPath\"])(t,n)}))}return e&&e.indexOf(t)>-1},handleGroupDisabled:function(e){this.groupDisabled=e},hoverItem:function(){this.disabled||this.groupDisabled||(this.select.hoverIndex=this.select.options.indexOf(this))},selectOptionClick:function(){!0!==this.disabled&&!0!==this.groupDisabled&&this.dispatch(\"ElSelect\",\"handleOptionClick\",[this,!0])},queryChange:function(e){this.visible=new RegExp(Object(b[\"escapeRegexpString\"])(e),\"i\").test(this.currentLabel)||this.created,this.visible||this.select.filteredOptionsCount--}},created:function(){this.select.options.push(this),this.select.cachedOptions.push(this),this.select.optionsCount++,this.select.filteredOptionsCount++,this.$on(\"queryChange\",this.queryChange),this.$on(\"handleGroupDisabled\",this.handleGroupDisabled)},beforeDestroy:function(){var e=this.select,t=e.selected,n=e.multiple,i=n?t:[t],r=this.select.cachedOptions.indexOf(this),a=i.indexOf(this);r>-1&&a<0&&this.select.cachedOptions.splice(r,1),this.select.onOptionDestroy(this.select.options.indexOf(this))}},Kn=Wn,Qn=s(Kn,Vn,zn,!1,null,null,null);Qn.options.__file=\"packages/select/src/option.vue\";var Xn=Qn.exports,Zn=n(30),Jn=n.n(Zn),ei=n(13),ti=n(11),ni=n.n(ti),ii=n(27),ri=n.n(ii),ai={data:function(){return{hoverOption:-1}},computed:{optionsAllDisabled:function(){return this.options.filter((function(e){return e.visible})).every((function(e){return e.disabled}))}},watch:{hoverIndex:function(e){var t=this;\"number\"===typeof e&&e>-1&&(this.hoverOption=this.options[e]||{}),this.options.forEach((function(e){e.hover=t.hoverOption===e}))}},methods:{navigateOptions:function(e){var t=this;if(this.visible){if(0!==this.options.length&&0!==this.filteredOptionsCount&&!this.optionsAllDisabled){\"next\"===e?(this.hoverIndex++,this.hoverIndex===this.options.length&&(this.hoverIndex=0)):\"prev\"===e&&(this.hoverIndex--,this.hoverIndex<0&&(this.hoverIndex=this.options.length-1));var n=this.options[this.hoverIndex];!0!==n.disabled&&!0!==n.groupDisabled&&n.visible||this.navigateOptions(e),this.$nextTick((function(){return t.scrollToOption(t.hoverOption)}))}}else this.visible=!0}}},oi={mixins:[N.a,g.a,X()(\"reference\"),ai],name:\"ElSelect\",componentName:\"ElSelect\",inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},provide:function(){return{select:this}},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},readonly:function(){return!this.filterable||this.multiple||!Object(b[\"isIE\"])()&&!Object(b[\"isEdge\"])()&&!this.visible},showClose:function(){var e=this.multiple?Array.isArray(this.value)&&this.value.length>0:void 0!==this.value&&null!==this.value&&\"\"!==this.value,t=this.clearable&&!this.selectDisabled&&this.inputHovering&&e;return t},iconClass:function(){return this.remote&&this.filterable?\"\":this.visible?\"arrow-up is-reverse\":\"arrow-up\"},debounce:function(){return this.remote?300:0},emptyText:function(){return this.loading?this.loadingText||this.t(\"el.select.loading\"):(!this.remote||\"\"!==this.query||0!==this.options.length)&&(this.filterable&&this.query&&this.options.length>0&&0===this.filteredOptionsCount?this.noMatchText||this.t(\"el.select.noMatch\"):0===this.options.length?this.noDataText||this.t(\"el.select.noData\"):null)},showNewOption:function(){var e=this,t=this.options.filter((function(e){return!e.created})).some((function(t){return t.currentLabel===e.query}));return this.filterable&&this.allowCreate&&\"\"!==this.query&&!t},selectSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},selectDisabled:function(){return this.disabled||(this.elForm||{}).disabled},collapseTagSize:function(){return[\"small\",\"mini\"].indexOf(this.selectSize)>-1?\"mini\":\"small\"}},components:{ElInput:_.a,ElSelectMenu:Hn,ElOption:Xn,ElTag:Jn.a,ElScrollbar:V.a},directives:{Clickoutside:U.a},props:{name:String,id:String,value:{required:!0},autocomplete:{type:String,default:\"off\"},autoComplete:{type:String,validator:function(e){return!0}},automaticDropdown:Boolean,size:String,disabled:Boolean,clearable:Boolean,filterable:Boolean,allowCreate:Boolean,loading:Boolean,popperClass:String,remote:Boolean,loadingText:String,noMatchText:String,noDataText:String,remoteMethod:Function,filterMethod:Function,multiple:Boolean,multipleLimit:{type:Number,default:0},placeholder:{type:String,default:function(){return Object(ti[\"t\"])(\"el.select.placeholder\")}},defaultFirstOption:Boolean,reserveKeyword:Boolean,valueKey:{type:String,default:\"value\"},collapseTags:Boolean,popperAppendToBody:{type:Boolean,default:!0}},data:function(){return{options:[],cachedOptions:[],createdLabel:null,createdSelected:!1,selected:this.multiple?[]:{},inputLength:20,inputWidth:0,initialInputHeight:0,cachedPlaceHolder:\"\",optionsCount:0,filteredOptionsCount:0,visible:!1,softFocus:!1,selectedLabel:\"\",hoverIndex:-1,query:\"\",previousQuery:null,inputHovering:!1,currentPlaceholder:\"\",menuVisibleOnFocus:!1,isOnComposition:!1,isSilentBlur:!1}},watch:{selectDisabled:function(){var e=this;this.$nextTick((function(){e.resetInputHeight()}))},placeholder:function(e){this.cachedPlaceHolder=this.currentPlaceholder=e},value:function(e,t){this.multiple&&(this.resetInputHeight(),e&&e.length>0||this.$refs.input&&\"\"!==this.query?this.currentPlaceholder=\"\":this.currentPlaceholder=this.cachedPlaceHolder,this.filterable&&!this.reserveKeyword&&(this.query=\"\",this.handleQueryChange(this.query))),this.setSelected(),this.filterable&&!this.multiple&&(this.inputLength=20),Object(b[\"valueEquals\"])(e,t)||this.dispatch(\"ElFormItem\",\"el.form.change\",e)},visible:function(e){var t=this;e?(this.broadcast(\"ElSelectDropdown\",\"updatePopper\"),this.filterable&&(this.query=this.remote?\"\":this.selectedLabel,this.handleQueryChange(this.query),this.multiple?this.$refs.input.focus():(this.remote||(this.broadcast(\"ElOption\",\"queryChange\",\"\"),this.broadcast(\"ElOptionGroup\",\"queryChange\")),this.selectedLabel&&(this.currentPlaceholder=this.selectedLabel,this.selectedLabel=\"\")))):(this.broadcast(\"ElSelectDropdown\",\"destroyPopper\"),this.$refs.input&&this.$refs.input.blur(),this.query=\"\",this.previousQuery=null,this.selectedLabel=\"\",this.inputLength=20,this.menuVisibleOnFocus=!1,this.resetHoverIndex(),this.$nextTick((function(){t.$refs.input&&\"\"===t.$refs.input.value&&0===t.selected.length&&(t.currentPlaceholder=t.cachedPlaceHolder)})),this.multiple||(this.selected&&(this.filterable&&this.allowCreate&&this.createdSelected&&this.createdLabel?this.selectedLabel=this.createdLabel:this.selectedLabel=this.selected.currentLabel,this.filterable&&(this.query=this.selectedLabel)),this.filterable&&(this.currentPlaceholder=this.cachedPlaceHolder))),this.$emit(\"visible-change\",e)},options:function(){var e=this;if(!this.$isServer){this.$nextTick((function(){e.broadcast(\"ElSelectDropdown\",\"updatePopper\")})),this.multiple&&this.resetInputHeight();var t=this.$el.querySelectorAll(\"input\");-1===[].indexOf.call(t,document.activeElement)&&this.setSelected(),this.defaultFirstOption&&(this.filterable||this.remote)&&this.filteredOptionsCount&&this.checkDefaultFirstOption()}}},methods:{handleComposition:function(e){var t=this,n=e.target.value;if(\"compositionend\"===e.type)this.isOnComposition=!1,this.$nextTick((function(e){return t.handleQueryChange(n)}));else{var i=n[n.length-1]||\"\";this.isOnComposition=!Object(wt[\"isKorean\"])(i)}},handleQueryChange:function(e){var t=this;this.previousQuery===e||this.isOnComposition||(null!==this.previousQuery||\"function\"!==typeof this.filterMethod&&\"function\"!==typeof this.remoteMethod?(this.previousQuery=e,this.$nextTick((function(){t.visible&&t.broadcast(\"ElSelectDropdown\",\"updatePopper\")})),this.hoverIndex=-1,this.multiple&&this.filterable&&this.$nextTick((function(){var e=15*t.$refs.input.value.length+20;t.inputLength=t.collapseTags?Math.min(50,e):e,t.managePlaceholder(),t.resetInputHeight()})),this.remote&&\"function\"===typeof this.remoteMethod?(this.hoverIndex=-1,this.remoteMethod(e)):\"function\"===typeof this.filterMethod?(this.filterMethod(e),this.broadcast(\"ElOptionGroup\",\"queryChange\")):(this.filteredOptionsCount=this.optionsCount,this.broadcast(\"ElOption\",\"queryChange\",e),this.broadcast(\"ElOptionGroup\",\"queryChange\")),this.defaultFirstOption&&(this.filterable||this.remote)&&this.filteredOptionsCount&&this.checkDefaultFirstOption()):this.previousQuery=e)},scrollToOption:function(e){var t=Array.isArray(e)&&e[0]?e[0].$el:e.$el;if(this.$refs.popper&&t){var n=this.$refs.popper.$el.querySelector(\".el-select-dropdown__wrap\");ri()(n,t)}this.$refs.scrollbar&&this.$refs.scrollbar.handleScroll()},handleMenuEnter:function(){var e=this;this.$nextTick((function(){return e.scrollToOption(e.selected)}))},emitChange:function(e){Object(b[\"valueEquals\"])(this.value,e)||this.$emit(\"change\",e)},getOption:function(e){for(var t=void 0,n=\"[object object]\"===Object.prototype.toString.call(e).toLowerCase(),i=\"[object null]\"===Object.prototype.toString.call(e).toLowerCase(),r=\"[object undefined]\"===Object.prototype.toString.call(e).toLowerCase(),a=this.cachedOptions.length-1;a>=0;a--){var o=this.cachedOptions[a],s=n?Object(b[\"getValueByPath\"])(o.value,this.valueKey)===Object(b[\"getValueByPath\"])(e,this.valueKey):o.value===e;if(s){t=o;break}}if(t)return t;var l=n||i||r?\"\":e,c={value:e,currentLabel:l};return this.multiple&&(c.hitState=!1),c},setSelected:function(){var e=this;if(!this.multiple){var t=this.getOption(this.value);return t.created?(this.createdLabel=t.currentLabel,this.createdSelected=!0):this.createdSelected=!1,this.selectedLabel=t.currentLabel,this.selected=t,void(this.filterable&&(this.query=this.selectedLabel))}var n=[];Array.isArray(this.value)&&this.value.forEach((function(t){n.push(e.getOption(t))})),this.selected=n,this.$nextTick((function(){e.resetInputHeight()}))},handleFocus:function(e){this.softFocus?this.softFocus=!1:((this.automaticDropdown||this.filterable)&&(this.visible=!0,this.filterable&&(this.menuVisibleOnFocus=!0)),this.$emit(\"focus\",e))},blur:function(){this.visible=!1,this.$refs.reference.blur()},handleBlur:function(e){var t=this;setTimeout((function(){t.isSilentBlur?t.isSilentBlur=!1:t.$emit(\"blur\",e)}),50),this.softFocus=!1},handleClearClick:function(e){this.deleteSelected(e)},doDestroy:function(){this.$refs.popper&&this.$refs.popper.doDestroy()},handleClose:function(){this.visible=!1},toggleLastOptionHitState:function(e){if(Array.isArray(this.selected)){var t=this.selected[this.selected.length-1];if(t)return!0===e||!1===e?(t.hitState=e,e):(t.hitState=!t.hitState,t.hitState)}},deletePrevTag:function(e){if(e.target.value.length<=0&&!this.toggleLastOptionHitState()){var t=this.value.slice();t.pop(),this.$emit(\"input\",t),this.emitChange(t)}},managePlaceholder:function(){\"\"!==this.currentPlaceholder&&(this.currentPlaceholder=this.$refs.input.value?\"\":this.cachedPlaceHolder)},resetInputState:function(e){8!==e.keyCode&&this.toggleLastOptionHitState(!1),this.inputLength=15*this.$refs.input.value.length+20,this.resetInputHeight()},resetInputHeight:function(){var e=this;this.collapseTags&&!this.filterable||this.$nextTick((function(){if(e.$refs.reference){var t=e.$refs.reference.$el.childNodes,n=[].filter.call(t,(function(e){return\"INPUT\"===e.tagName}))[0],i=e.$refs.tags,r=e.initialInputHeight||40;n.style.height=0===e.selected.length?r+\"px\":Math.max(i?i.clientHeight+(i.clientHeight>r?6:0):0,r)+\"px\",e.visible&&!1!==e.emptyText&&e.broadcast(\"ElSelectDropdown\",\"updatePopper\")}}))},resetHoverIndex:function(){var e=this;setTimeout((function(){e.multiple?e.selected.length>0?e.hoverIndex=Math.min.apply(null,e.selected.map((function(t){return e.options.indexOf(t)}))):e.hoverIndex=-1:e.hoverIndex=e.options.indexOf(e.selected)}),300)},handleOptionSelect:function(e,t){var n=this;if(this.multiple){var i=(this.value||[]).slice(),r=this.getValueIndex(i,e.value);r>-1?i.splice(r,1):(this.multipleLimit<=0||i.length<this.multipleLimit)&&i.push(e.value),this.$emit(\"input\",i),this.emitChange(i),e.created&&(this.query=\"\",this.handleQueryChange(\"\"),this.inputLength=20),this.filterable&&this.$refs.input.focus()}else this.$emit(\"input\",e.value),this.emitChange(e.value),this.visible=!1;this.isSilentBlur=t,this.setSoftFocus(),this.visible||this.$nextTick((function(){n.scrollToOption(e)}))},setSoftFocus:function(){this.softFocus=!0;var e=this.$refs.input||this.$refs.reference;e&&e.focus()},getValueIndex:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1],n=\"[object object]\"===Object.prototype.toString.call(t).toLowerCase();if(n){var i=this.valueKey,r=-1;return e.some((function(e,n){return Object(b[\"getValueByPath\"])(e,i)===Object(b[\"getValueByPath\"])(t,i)&&(r=n,!0)})),r}return e.indexOf(t)},toggleMenu:function(){this.selectDisabled||(this.menuVisibleOnFocus?this.menuVisibleOnFocus=!1:this.visible=!this.visible,this.visible&&(this.$refs.input||this.$refs.reference).focus())},selectOption:function(){this.visible?this.options[this.hoverIndex]&&this.handleOptionSelect(this.options[this.hoverIndex]):this.toggleMenu()},deleteSelected:function(e){e.stopPropagation();var t=this.multiple?[]:\"\";this.$emit(\"input\",t),this.emitChange(t),this.visible=!1,this.$emit(\"clear\")},deleteTag:function(e,t){var n=this.selected.indexOf(t);if(n>-1&&!this.selectDisabled){var i=this.value.slice();i.splice(n,1),this.$emit(\"input\",i),this.emitChange(i),this.$emit(\"remove-tag\",t.value)}e.stopPropagation()},onInputChange:function(){this.filterable&&this.query!==this.selectedLabel&&(this.query=this.selectedLabel,this.handleQueryChange(this.query))},onOptionDestroy:function(e){e>-1&&(this.optionsCount--,this.filteredOptionsCount--,this.options.splice(e,1))},resetInputWidth:function(){this.inputWidth=this.$refs.reference.$el.getBoundingClientRect().width},handleResize:function(){this.resetInputWidth(),this.multiple&&this.resetInputHeight()},checkDefaultFirstOption:function(){this.hoverIndex=-1;for(var e=!1,t=this.options.length-1;t>=0;t--)if(this.options[t].created){e=!0,this.hoverIndex=t;break}if(!e)for(var n=0;n!==this.options.length;++n){var i=this.options[n];if(this.query){if(!i.disabled&&!i.groupDisabled&&i.visible){this.hoverIndex=n;break}}else if(i.itemSelected){this.hoverIndex=n;break}}},getValueKey:function(e){return\"[object object]\"!==Object.prototype.toString.call(e.value).toLowerCase()?e.value:Object(b[\"getValueByPath\"])(e.value,this.valueKey)}},created:function(){var e=this;this.cachedPlaceHolder=this.currentPlaceholder=this.placeholder,this.multiple&&!Array.isArray(this.value)&&this.$emit(\"input\",[]),!this.multiple&&Array.isArray(this.value)&&this.$emit(\"input\",\"\"),this.debouncedOnInputChange=F()(this.debounce,(function(){e.onInputChange()})),this.debouncedQueryChange=F()(this.debounce,(function(t){e.handleQueryChange(t.target.value)})),this.$on(\"handleOptionClick\",this.handleOptionSelect),this.$on(\"setSelected\",this.setSelected)},mounted:function(){var e=this;this.multiple&&Array.isArray(this.value)&&this.value.length>0&&(this.currentPlaceholder=\"\"),Object(ei[\"addResizeListener\"])(this.$el,this.handleResize);var t=this.$refs.reference;if(t&&t.$el){var n={medium:36,small:32,mini:28},i=t.$el.querySelector(\"input\");this.initialInputHeight=i.getBoundingClientRect().height||n[this.selectSize]}this.remote&&this.multiple&&this.resetInputHeight(),this.$nextTick((function(){t&&t.$el&&(e.inputWidth=t.$el.getBoundingClientRect().width)})),this.setSelected()},beforeDestroy:function(){this.$el&&this.handleResize&&Object(ei[\"removeResizeListener\"])(this.$el,this.handleResize)}},si=oi,li=s(si,Fn,Bn,!1,null,null,null);li.options.__file=\"packages/select/src/select.vue\";var ci=li.exports;ci.install=function(e){e.component(ci.name,ci)};var ui=ci;Xn.install=function(e){e.component(Xn.name,Xn)};var di=Xn,pi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"ul\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-select-group__wrap\"},[n(\"li\",{staticClass:\"el-select-group__title\"},[e._v(e._s(e.label))]),n(\"li\",[n(\"ul\",{staticClass:\"el-select-group\"},[e._t(\"default\")],2)])])},hi=[];pi._withStripped=!0;var fi={mixins:[N.a],name:\"ElOptionGroup\",componentName:\"ElOptionGroup\",props:{label:String,disabled:{type:Boolean,default:!1}},data:function(){return{visible:!0}},watch:{disabled:function(e){this.broadcast(\"ElOption\",\"handleGroupDisabled\",e)}},methods:{queryChange:function(){this.visible=this.$children&&Array.isArray(this.$children)&&this.$children.some((function(e){return!0===e.visible}))}},created:function(){this.$on(\"queryChange\",this.queryChange)},mounted:function(){this.disabled&&this.broadcast(\"ElOption\",\"handleGroupDisabled\",this.disabled)}},_i=fi,mi=s(_i,pi,hi,!1,null,null,null);mi.options.__file=\"packages/select/src/option-group.vue\";var gi=mi.exports;gi.install=function(e){e.component(gi.name,gi)};var bi=gi,vi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"button\",{staticClass:\"el-button\",class:[e.type?\"el-button--\"+e.type:\"\",e.buttonSize?\"el-button--\"+e.buttonSize:\"\",{\"is-disabled\":e.buttonDisabled,\"is-loading\":e.loading,\"is-plain\":e.plain,\"is-round\":e.round,\"is-circle\":e.circle}],attrs:{disabled:e.buttonDisabled||e.loading,autofocus:e.autofocus,type:e.nativeType},on:{click:e.handleClick}},[e.loading?n(\"i\",{staticClass:\"el-icon-loading\"}):e._e(),e.icon&&!e.loading?n(\"i\",{class:e.icon}):e._e(),e.$slots.default?n(\"span\",[e._t(\"default\")],2):e._e()])},Ei=[];vi._withStripped=!0;var yi={name:\"ElButton\",inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},props:{type:{type:String,default:\"default\"},size:String,icon:{type:String,default:\"\"},nativeType:{type:String,default:\"button\"},loading:Boolean,disabled:Boolean,plain:Boolean,autofocus:Boolean,round:Boolean,circle:Boolean},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},buttonSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},buttonDisabled:function(){return this.disabled||(this.elForm||{}).disabled}},methods:{handleClick:function(e){this.$emit(\"click\",e)}}},Si=yi,Ci=s(Si,vi,Ei,!1,null,null,null);Ci.options.__file=\"packages/button/src/button.vue\";var Ti=Ci.exports;Ti.install=function(e){e.component(Ti.name,Ti)};var xi=Ti,wi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-button-group\"},[e._t(\"default\")],2)},Oi=[];wi._withStripped=!0;var Ni={name:\"ElButtonGroup\"},Ri=Ni,ki=s(Ri,wi,Oi,!1,null,null,null);ki.options.__file=\"packages/button/src/button-group.vue\";var Ai=ki.exports;Ai.install=function(e){e.component(Ai.name,Ai)};var Di=Ai,Ii=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-table\",class:[{\"el-table--fit\":e.fit,\"el-table--striped\":e.stripe,\"el-table--border\":e.border||e.isGroup,\"el-table--hidden\":e.isHidden,\"el-table--group\":e.isGroup,\"el-table--fluid-height\":e.maxHeight,\"el-table--scrollable-x\":e.layout.scrollX,\"el-table--scrollable-y\":e.layout.scrollY,\"el-table--enable-row-hover\":!e.store.states.isComplex,\"el-table--enable-row-transition\":0!==(e.store.states.data||[]).length&&(e.store.states.data||[]).length<100},e.tableSize?\"el-table--\"+e.tableSize:\"\"],on:{mouseleave:function(t){e.handleMouseLeave(t)}}},[n(\"div\",{ref:\"hiddenColumns\",staticClass:\"hidden-columns\"},[e._t(\"default\")],2),e.showHeader?n(\"div\",{directives:[{name:\"mousewheel\",rawName:\"v-mousewheel\",value:e.handleHeaderFooterMousewheel,expression:\"handleHeaderFooterMousewheel\"}],ref:\"headerWrapper\",staticClass:\"el-table__header-wrapper\"},[n(\"table-header\",{ref:\"tableHeader\",style:{width:e.layout.bodyWidth?e.layout.bodyWidth+\"px\":\"\"},attrs:{store:e.store,border:e.border,\"default-sort\":e.defaultSort}})],1):e._e(),n(\"div\",{ref:\"bodyWrapper\",staticClass:\"el-table__body-wrapper\",class:[e.layout.scrollX?\"is-scrolling-\"+e.scrollPosition:\"is-scrolling-none\"],style:[e.bodyHeight]},[n(\"table-body\",{style:{width:e.bodyWidth},attrs:{context:e.context,store:e.store,stripe:e.stripe,\"row-class-name\":e.rowClassName,\"row-style\":e.rowStyle,highlight:e.highlightCurrentRow}}),e.data&&0!==e.data.length?e._e():n(\"div\",{ref:\"emptyBlock\",staticClass:\"el-table__empty-block\",style:e.emptyBlockStyle},[n(\"span\",{staticClass:\"el-table__empty-text\"},[e._t(\"empty\",[e._v(e._s(e.emptyText||e.t(\"el.table.emptyText\")))])],2)]),e.$slots.append?n(\"div\",{ref:\"appendWrapper\",staticClass:\"el-table__append-wrapper\"},[e._t(\"append\")],2):e._e()],1),e.showSummary?n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.data&&e.data.length>0,expression:\"data && data.length > 0\"},{name:\"mousewheel\",rawName:\"v-mousewheel\",value:e.handleHeaderFooterMousewheel,expression:\"handleHeaderFooterMousewheel\"}],ref:\"footerWrapper\",staticClass:\"el-table__footer-wrapper\"},[n(\"table-footer\",{style:{width:e.layout.bodyWidth?e.layout.bodyWidth+\"px\":\"\"},attrs:{store:e.store,border:e.border,\"sum-text\":e.sumText||e.t(\"el.table.sumText\"),\"summary-method\":e.summaryMethod,\"default-sort\":e.defaultSort}})],1):e._e(),e.fixedColumns.length>0?n(\"div\",{directives:[{name:\"mousewheel\",rawName:\"v-mousewheel\",value:e.handleFixedMousewheel,expression:\"handleFixedMousewheel\"}],ref:\"fixedWrapper\",staticClass:\"el-table__fixed\",style:[{width:e.layout.fixedWidth?e.layout.fixedWidth+\"px\":\"\"},e.fixedHeight]},[e.showHeader?n(\"div\",{ref:\"fixedHeaderWrapper\",staticClass:\"el-table__fixed-header-wrapper\"},[n(\"table-header\",{ref:\"fixedTableHeader\",style:{width:e.bodyWidth},attrs:{fixed:\"left\",border:e.border,store:e.store}})],1):e._e(),n(\"div\",{ref:\"fixedBodyWrapper\",staticClass:\"el-table__fixed-body-wrapper\",style:[{top:e.layout.headerHeight+\"px\"},e.fixedBodyHeight]},[n(\"table-body\",{style:{width:e.bodyWidth},attrs:{fixed:\"left\",store:e.store,stripe:e.stripe,highlight:e.highlightCurrentRow,\"row-class-name\":e.rowClassName,\"row-style\":e.rowStyle}}),e.$slots.append?n(\"div\",{staticClass:\"el-table__append-gutter\",style:{height:e.layout.appendHeight+\"px\"}}):e._e()],1),e.showSummary?n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.data&&e.data.length>0,expression:\"data && data.length > 0\"}],ref:\"fixedFooterWrapper\",staticClass:\"el-table__fixed-footer-wrapper\"},[n(\"table-footer\",{style:{width:e.bodyWidth},attrs:{fixed:\"left\",border:e.border,\"sum-text\":e.sumText||e.t(\"el.table.sumText\"),\"summary-method\":e.summaryMethod,store:e.store}})],1):e._e()]):e._e(),e.rightFixedColumns.length>0?n(\"div\",{directives:[{name:\"mousewheel\",rawName:\"v-mousewheel\",value:e.handleFixedMousewheel,expression:\"handleFixedMousewheel\"}],ref:\"rightFixedWrapper\",staticClass:\"el-table__fixed-right\",style:[{width:e.layout.rightFixedWidth?e.layout.rightFixedWidth+\"px\":\"\",right:e.layout.scrollY?(e.border?e.layout.gutterWidth:e.layout.gutterWidth||0)+\"px\":\"\"},e.fixedHeight]},[e.showHeader?n(\"div\",{ref:\"rightFixedHeaderWrapper\",staticClass:\"el-table__fixed-header-wrapper\"},[n(\"table-header\",{ref:\"rightFixedTableHeader\",style:{width:e.bodyWidth},attrs:{fixed:\"right\",border:e.border,store:e.store}})],1):e._e(),n(\"div\",{ref:\"rightFixedBodyWrapper\",staticClass:\"el-table__fixed-body-wrapper\",style:[{top:e.layout.headerHeight+\"px\"},e.fixedBodyHeight]},[n(\"table-body\",{style:{width:e.bodyWidth},attrs:{fixed:\"right\",store:e.store,stripe:e.stripe,\"row-class-name\":e.rowClassName,\"row-style\":e.rowStyle,highlight:e.highlightCurrentRow}}),e.$slots.append?n(\"div\",{staticClass:\"el-table__append-gutter\",style:{height:e.layout.appendHeight+\"px\"}}):e._e()],1),e.showSummary?n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.data&&e.data.length>0,expression:\"data && data.length > 0\"}],ref:\"rightFixedFooterWrapper\",staticClass:\"el-table__fixed-footer-wrapper\"},[n(\"table-footer\",{style:{width:e.bodyWidth},attrs:{fixed:\"right\",border:e.border,\"sum-text\":e.sumText||e.t(\"el.table.sumText\"),\"summary-method\":e.summaryMethod,store:e.store}})],1):e._e()]):e._e(),e.rightFixedColumns.length>0?n(\"div\",{ref:\"rightFixedPatch\",staticClass:\"el-table__fixed-right-patch\",style:{width:e.layout.scrollY?e.layout.gutterWidth+\"px\":\"0\",height:e.layout.headerHeight+\"px\"}}):e._e(),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.resizeProxyVisible,expression:\"resizeProxyVisible\"}],ref:\"resizeProxy\",staticClass:\"el-table__column-resize-proxy\"})])},Mi=[];Ii._withStripped=!0;var Li=n(16),Pi=n.n(Li),Fi=n(35),Bi=n(38),Ui=n.n(Bi),$i=\"undefined\"!==typeof navigator&&navigator.userAgent.toLowerCase().indexOf(\"firefox\")>-1,ji=function(e,t){e&&e.addEventListener&&e.addEventListener($i?\"DOMMouseScroll\":\"mousewheel\",(function(e){var n=Ui()(e);t&&t.apply(this,[e,n])}))},Gi={bind:function(e,t){ji(e,t.value)}},qi=n(6),Hi=n.n(qi),Vi=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},zi=function(e){var t=e.target;while(t&&\"HTML\"!==t.tagName.toUpperCase()){if(\"TD\"===t.tagName.toUpperCase())return t;t=t.parentNode}return null},Yi=function(e){return null!==e&&\"object\"===(\"undefined\"===typeof e?\"undefined\":Vi(e))},Wi=function(e,t,n,i,r){if(!t&&!i&&(!r||Array.isArray(r)&&!r.length))return e;n=\"string\"===typeof n?\"descending\"===n?-1:1:n&&n<0?-1:1;var a=i?null:function(n,i){return r?(Array.isArray(r)||(r=[r]),r.map((function(t){return\"string\"===typeof t?Object(b[\"getValueByPath\"])(n,t):t(n,i,e)}))):(\"$key\"!==t&&Yi(n)&&\"$value\"in n&&(n=n.$value),[Yi(n)?Object(b[\"getValueByPath\"])(n,t):n])},o=function(e,t){if(i)return i(e.value,t.value);for(var n=0,r=e.key.length;n<r;n++){if(e.key[n]<t.key[n])return-1;if(e.key[n]>t.key[n])return 1}return 0};return e.map((function(e,t){return{value:e,index:t,key:a?a(e,t):null}})).sort((function(e,t){var i=o(e,t);return i||(i=e.index-t.index),i*n})).map((function(e){return e.value}))},Ki=function(e,t){var n=null;return e.columns.forEach((function(e){e.id===t&&(n=e)})),n},Qi=function(e,t){for(var n=null,i=0;i<e.columns.length;i++){var r=e.columns[i];if(r.columnKey===t){n=r;break}}return n},Xi=function(e,t){var n=(t.className||\"\").match(/el-table_[^\\s]+/gm);return n?Ki(e,n[0]):null},Zi=function(e,t){if(!e)throw new Error(\"row is required when get row identity\");if(\"string\"===typeof t){if(t.indexOf(\".\")<0)return e[t];for(var n=t.split(\".\"),i=e,r=0;r<n.length;r++)i=i[n[r]];return i}if(\"function\"===typeof t)return t.call(null,e)},Ji=function(e,t){var n={};return(e||[]).forEach((function(e,i){n[Zi(e,t)]={row:e,index:i}})),n};function er(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function tr(e,t){var n={},i=void 0;for(i in e)n[i]=e[i];for(i in t)if(er(t,i)){var r=t[i];\"undefined\"!==typeof r&&(n[i]=r)}return n}function nr(e){return void 0!==e&&(e=parseInt(e,10),isNaN(e)&&(e=null)),e}function ir(e){return\"undefined\"!==typeof e&&(e=nr(e),isNaN(e)&&(e=80)),e}function rr(e){return\"number\"===typeof e?e:\"string\"===typeof e?/^\\d+(?:px)?$/.test(e)?parseInt(e,10):e:null}function ar(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return 0===t.length?function(e){return e}:1===t.length?t[0]:t.reduce((function(e,t){return function(){return e(t.apply(void 0,arguments))}}))}function or(e,t,n){var i=!1,r=e.indexOf(t),a=-1!==r,o=function(){e.push(t),i=!0},s=function(){e.splice(r,1),i=!0};return\"boolean\"===typeof n?n&&!a?o():!n&&a&&s():a?s():o(),i}function sr(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"children\",i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:\"hasChildren\",r=function(e){return!(Array.isArray(e)&&e.length)};function a(e,o,s){t(e,o,s),o.forEach((function(e){if(e[i])t(e,null,s+1);else{var o=e[n];r(o)||a(e,o,s+1)}}))}e.forEach((function(e){if(e[i])t(e,null,0);else{var o=e[n];r(o)||a(e,o,0)}}))}var lr={data:function(){return{states:{defaultExpandAll:!1,expandRows:[]}}},methods:{updateExpandRows:function(){var e=this.states,t=e.data,n=void 0===t?[]:t,i=e.rowKey,r=e.defaultExpandAll,a=e.expandRows;if(r)this.states.expandRows=n.slice();else if(i){var o=Ji(a,i);this.states.expandRows=n.reduce((function(e,t){var n=Zi(t,i),r=o[n];return r&&e.push(t),e}),[])}else this.states.expandRows=[]},toggleRowExpansion:function(e,t){var n=or(this.states.expandRows,e,t);n&&(this.table.$emit(\"expand-change\",e,this.states.expandRows.slice()),this.scheduleLayout())},setExpandRowKeys:function(e){this.assertRowKey();var t=this.states,n=t.data,i=t.rowKey,r=Ji(n,i);this.states.expandRows=e.reduce((function(e,t){var n=r[t];return n&&e.push(n.row),e}),[])},isRowExpanded:function(e){var t=this.states,n=t.expandRows,i=void 0===n?[]:n,r=t.rowKey;if(r){var a=Ji(i,r);return!!a[Zi(e,r)]}return-1!==i.indexOf(e)}}},cr={data:function(){return{states:{_currentRowKey:null,currentRow:null}}},methods:{setCurrentRowKey:function(e){this.assertRowKey(),this.states._currentRowKey=e,this.setCurrentRowByKey(e)},restoreCurrentRowKey:function(){this.states._currentRowKey=null},setCurrentRowByKey:function(e){var t=this.states,n=t.data,i=void 0===n?[]:n,r=t.rowKey,a=null;r&&(a=Object(b[\"arrayFind\"])(i,(function(t){return Zi(t,r)===e}))),t.currentRow=a},updateCurrentRow:function(e){var t=this.states,n=this.table,i=t.currentRow;if(e&&e!==i)return t.currentRow=e,void n.$emit(\"current-change\",e,i);!e&&i&&(t.currentRow=null,n.$emit(\"current-change\",null,i))},updateCurrentRowData:function(){var e=this.states,t=this.table,n=e.rowKey,i=e._currentRowKey,r=e.data||[],a=e.currentRow;if(-1===r.indexOf(a)&&a){if(n){var o=Zi(a,n);this.setCurrentRowByKey(o)}else e.currentRow=null;null===e.currentRow&&t.$emit(\"current-change\",null,a)}else i&&(this.setCurrentRowByKey(i),this.restoreCurrentRowKey())}}},ur=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},dr={data:function(){return{states:{expandRowKeys:[],treeData:{},indent:16,lazy:!1,lazyTreeNodeMap:{},lazyColumnIdentifier:\"hasChildren\",childrenColumnName:\"children\"}}},computed:{normalizedData:function(){if(!this.states.rowKey)return{};var e=this.states.data||[];return this.normalize(e)},normalizedLazyNode:function(){var e=this.states,t=e.rowKey,n=e.lazyTreeNodeMap,i=e.lazyColumnIdentifier,r=Object.keys(n),a={};return r.length?(r.forEach((function(e){if(n[e].length){var r={children:[]};n[e].forEach((function(e){var n=Zi(e,t);r.children.push(n),e[i]&&!a[n]&&(a[n]={children:[]})})),a[e]=r}})),a):a}},watch:{normalizedData:\"updateTreeData\",normalizedLazyNode:\"updateTreeData\"},methods:{normalize:function(e){var t=this.states,n=t.childrenColumnName,i=t.lazyColumnIdentifier,r=t.rowKey,a=t.lazy,o={};return sr(e,(function(e,t,n){var i=Zi(e,r);Array.isArray(t)?o[i]={children:t.map((function(e){return Zi(e,r)})),level:n}:a&&(o[i]={children:[],lazy:!0,level:n})}),n,i),o},updateTreeData:function(){var e=this.normalizedData,t=this.normalizedLazyNode,n=Object.keys(e),i={};if(n.length){var r=this.states,a=r.treeData,o=r.defaultExpandAll,s=r.expandRowKeys,l=r.lazy,c=[],u=function(e,t){var n=o||s&&-1!==s.indexOf(t);return!!(e&&e.expanded||n)};n.forEach((function(t){var n=a[t],r=ur({},e[t]);if(r.expanded=u(n,t),r.lazy){var o=n||{},s=o.loaded,l=void 0!==s&&s,d=o.loading,p=void 0!==d&&d;r.loaded=!!l,r.loading=!!p,c.push(t)}i[t]=r}));var d=Object.keys(t);l&&d.length&&c.length&&d.forEach((function(e){var n=a[e],r=t[e].children;if(-1!==c.indexOf(e)){if(0!==i[e].children.length)throw new Error(\"[ElTable]children must be an empty array.\");i[e].children=r}else{var o=n||{},s=o.loaded,l=void 0!==s&&s,d=o.loading,p=void 0!==d&&d;i[e]={lazy:!0,loaded:!!l,loading:!!p,expanded:u(n,e),children:r,level:\"\"}}}))}this.states.treeData=i,this.updateTableScrollY()},updateTreeExpandKeys:function(e){this.states.expandRowKeys=e,this.updateTreeData()},toggleTreeExpansion:function(e,t){this.assertRowKey();var n=this.states,i=n.rowKey,r=n.treeData,a=Zi(e,i),o=a&&r[a];if(a&&o&&\"expanded\"in o){var s=o.expanded;t=\"undefined\"===typeof t?!o.expanded:t,r[a].expanded=t,s!==t&&this.table.$emit(\"expand-change\",e,t),this.updateTableScrollY()}},loadOrToggle:function(e){this.assertRowKey();var t=this.states,n=t.lazy,i=t.treeData,r=t.rowKey,a=Zi(e,r),o=i[a];n&&o&&\"loaded\"in o&&!o.loaded?this.loadData(e,a,o):this.toggleTreeExpansion(e)},loadData:function(e,t,n){var i=this,r=this.table.load,a=this.states,o=a.lazyTreeNodeMap,s=a.treeData;r&&!s[t].loaded&&(s[t].loading=!0,r(e,n,(function(n){if(!Array.isArray(n))throw new Error(\"[ElTable] data must be an array\");s[t].loading=!1,s[t].loaded=!0,s[t].expanded=!0,n.length&&i.$set(o,t,n),i.table.$emit(\"expand-change\",e,!0)})))}}},pr=function(e,t){var n=t.sortingColumn;return n&&\"string\"!==typeof n.sortable?Wi(e,t.sortProp,t.sortOrder,n.sortMethod,n.sortBy):e},hr=function e(t){var n=[];return t.forEach((function(t){t.children?n.push.apply(n,e(t.children)):n.push(t)})),n},fr=Hi.a.extend({data:function(){return{states:{rowKey:null,data:[],isComplex:!1,_columns:[],originColumns:[],columns:[],fixedColumns:[],rightFixedColumns:[],leafColumns:[],fixedLeafColumns:[],rightFixedLeafColumns:[],leafColumnsLength:0,fixedLeafColumnsLength:0,rightFixedLeafColumnsLength:0,isAllSelected:!1,selection:[],reserveSelection:!1,selectOnIndeterminate:!1,selectable:null,filters:{},filteredData:null,sortingColumn:null,sortProp:null,sortOrder:null,hoverRow:null}}},mixins:[lr,cr,dr],methods:{assertRowKey:function(){var e=this.states.rowKey;if(!e)throw new Error(\"[ElTable] prop row-key is required\")},updateColumns:function(){var e=this.states,t=e._columns||[];e.fixedColumns=t.filter((function(e){return!0===e.fixed||\"left\"===e.fixed})),e.rightFixedColumns=t.filter((function(e){return\"right\"===e.fixed})),e.fixedColumns.length>0&&t[0]&&\"selection\"===t[0].type&&!t[0].fixed&&(t[0].fixed=!0,e.fixedColumns.unshift(t[0]));var n=t.filter((function(e){return!e.fixed}));e.originColumns=[].concat(e.fixedColumns).concat(n).concat(e.rightFixedColumns);var i=hr(n),r=hr(e.fixedColumns),a=hr(e.rightFixedColumns);e.leafColumnsLength=i.length,e.fixedLeafColumnsLength=r.length,e.rightFixedLeafColumnsLength=a.length,e.columns=[].concat(r).concat(i).concat(a),e.isComplex=e.fixedColumns.length>0||e.rightFixedColumns.length>0},scheduleLayout:function(e){e&&this.updateColumns(),this.table.debouncedUpdateLayout()},isSelected:function(e){var t=this.states.selection,n=void 0===t?[]:t;return n.indexOf(e)>-1},clearSelection:function(){var e=this.states;e.isAllSelected=!1;var t=e.selection;t.length&&(e.selection=[],this.table.$emit(\"selection-change\",[]))},cleanSelection:function(){var e=this.states,t=e.data,n=e.rowKey,i=e.selection,r=void 0;if(n){r=[];var a=Ji(i,n),o=Ji(t,n);for(var s in a)a.hasOwnProperty(s)&&!o[s]&&r.push(a[s].row)}else r=i.filter((function(e){return-1===t.indexOf(e)}));if(r.length){var l=i.filter((function(e){return-1===r.indexOf(e)}));e.selection=l,this.table.$emit(\"selection-change\",l.slice())}},toggleRowSelection:function(e,t){var n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],i=or(this.states.selection,e,t);if(i){var r=(this.states.selection||[]).slice();n&&this.table.$emit(\"select\",r,e),this.table.$emit(\"selection-change\",r)}},_toggleAllSelection:function(){var e=this.states,t=e.data,n=void 0===t?[]:t,i=e.selection,r=e.selectOnIndeterminate?!e.isAllSelected:!(e.isAllSelected||i.length);e.isAllSelected=r;var a=!1;n.forEach((function(t,n){e.selectable?e.selectable.call(null,t,n)&&or(i,t,r)&&(a=!0):or(i,t,r)&&(a=!0)})),a&&this.table.$emit(\"selection-change\",i?i.slice():[]),this.table.$emit(\"select-all\",i)},updateSelectionByRowKey:function(){var e=this.states,t=e.selection,n=e.rowKey,i=e.data,r=Ji(t,n);i.forEach((function(e){var i=Zi(e,n),a=r[i];a&&(t[a.index]=e)}))},updateAllSelected:function(){var e=this.states,t=e.selection,n=e.rowKey,i=e.selectable,r=e.data||[];if(0!==r.length){var a=void 0;n&&(a=Ji(t,n));for(var o=function(e){return a?!!a[Zi(e,n)]:-1!==t.indexOf(e)},s=!0,l=0,c=0,u=r.length;c<u;c++){var d=r[c],p=i&&i.call(null,d,c);if(o(d))l++;else if(!i||p){s=!1;break}}0===l&&(s=!1),e.isAllSelected=s}else e.isAllSelected=!1},updateFilters:function(e,t){Array.isArray(e)||(e=[e]);var n=this.states,i={};return e.forEach((function(e){n.filters[e.id]=t,i[e.columnKey||e.id]=t})),i},updateSort:function(e,t,n){this.states.sortingColumn&&this.states.sortingColumn!==e&&(this.states.sortingColumn.order=null),this.states.sortingColumn=e,this.states.sortProp=t,this.states.sortOrder=n},execFilter:function(){var e=this,t=this.states,n=t._data,i=t.filters,r=n;Object.keys(i).forEach((function(n){var i=t.filters[n];if(i&&0!==i.length){var a=Ki(e.states,n);a&&a.filterMethod&&(r=r.filter((function(e){return i.some((function(t){return a.filterMethod.call(null,t,e,a)}))})))}})),t.filteredData=r},execSort:function(){var e=this.states;e.data=pr(e.filteredData,e)},execQuery:function(e){e&&e.filter||this.execFilter(),this.execSort()},clearFilter:function(e){var t=this.states,n=this.table.$refs,i=n.tableHeader,r=n.fixedTableHeader,a=n.rightFixedTableHeader,o={};i&&(o=xt()(o,i.filterPanels)),r&&(o=xt()(o,r.filterPanels)),a&&(o=xt()(o,a.filterPanels));var s=Object.keys(o);if(s.length)if(\"string\"===typeof e&&(e=[e]),Array.isArray(e)){var l=e.map((function(e){return Qi(t,e)}));s.forEach((function(e){var t=l.find((function(t){return t.id===e}));t&&(o[e].filteredValue=[])})),this.commit(\"filterChange\",{column:l,values:[],silent:!0,multi:!0})}else s.forEach((function(e){o[e].filteredValue=[]})),t.filters={},this.commit(\"filterChange\",{column:{},values:[],silent:!0})},clearSort:function(){var e=this.states;e.sortingColumn&&(this.updateSort(null,null,null),this.commit(\"changeSortCondition\",{silent:!0}))},setExpandRowKeysAdapter:function(e){this.setExpandRowKeys(e),this.updateTreeExpandKeys(e)},toggleRowExpansionAdapter:function(e,t){var n=this.states.columns.some((function(e){var t=e.type;return\"expand\"===t}));n?this.toggleRowExpansion(e,t):this.toggleTreeExpansion(e,t)}}});fr.prototype.mutations={setData:function(e,t){var n=e._data!==t;e._data=t,this.execQuery(),this.updateCurrentRowData(),this.updateExpandRows(),e.reserveSelection?(this.assertRowKey(),this.updateSelectionByRowKey()):n?this.clearSelection():this.cleanSelection(),this.updateAllSelected(),this.updateTableScrollY()},insertColumn:function(e,t,n,i){var r=e._columns;i&&(r=i.children,r||(r=i.children=[])),\"undefined\"!==typeof n?r.splice(n,0,t):r.push(t),\"selection\"===t.type&&(e.selectable=t.selectable,e.reserveSelection=t.reserveSelection),this.table.$ready&&(this.updateColumns(),this.scheduleLayout())},removeColumn:function(e,t,n){var i=e._columns;n&&(i=n.children,i||(i=n.children=[])),i&&i.splice(i.indexOf(t),1),this.table.$ready&&(this.updateColumns(),this.scheduleLayout())},sort:function(e,t){var n=t.prop,i=t.order,r=t.init;if(n){var a=Object(b[\"arrayFind\"])(e.columns,(function(e){return e.property===n}));a&&(a.order=i,this.updateSort(a,n,i),this.commit(\"changeSortCondition\",{init:r}))}},changeSortCondition:function(e,t){var n=e.sortingColumn,i=e.sortProp,r=e.sortOrder;null===r&&(e.sortingColumn=null,e.sortProp=null);var a={filter:!0};this.execQuery(a),t&&(t.silent||t.init)||this.table.$emit(\"sort-change\",{column:n,prop:i,order:r}),this.updateTableScrollY()},filterChange:function(e,t){var n=t.column,i=t.values,r=t.silent,a=this.updateFilters(n,i);this.execQuery(),r||this.table.$emit(\"filter-change\",a),this.updateTableScrollY()},toggleAllSelection:function(){this.toggleAllSelection()},rowSelectedChanged:function(e,t){this.toggleRowSelection(t),this.updateAllSelected()},setHoverRow:function(e,t){e.hoverRow=t},setCurrentRow:function(e,t){this.updateCurrentRow(t)}},fr.prototype.commit=function(e){var t=this.mutations;if(!t[e])throw new Error(\"Action not found: \"+e);for(var n=arguments.length,i=Array(n>1?n-1:0),r=1;r<n;r++)i[r-1]=arguments[r];t[e].apply(this,[this.states].concat(i))},fr.prototype.updateTableScrollY=function(){Hi.a.nextTick(this.table.updateScrollY)};var _r=fr;function mr(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!e)throw new Error(\"Table is required.\");var n=new _r;return n.table=e,n.toggleAllSelection=F()(10,n._toggleAllSelection),Object.keys(t).forEach((function(e){n.states[e]=t[e]})),n}function gr(e){var t={};return Object.keys(e).forEach((function(n){var i=e[n],r=void 0;\"string\"===typeof i?r=function(){return this.store.states[i]}:\"function\"===typeof i&&(r=function(){return i.call(this,this.store.states)}),r&&(t[n]=r)})),t}var br=n(31),vr=n.n(br);function Er(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}var yr=function(){function e(t){for(var n in Er(this,e),this.observers=[],this.table=null,this.store=null,this.columns=null,this.fit=!0,this.showHeader=!0,this.height=null,this.scrollX=!1,this.scrollY=!1,this.bodyWidth=null,this.fixedWidth=null,this.rightFixedWidth=null,this.tableHeight=null,this.headerHeight=44,this.appendHeight=0,this.footerHeight=44,this.viewportHeight=null,this.bodyHeight=null,this.fixedBodyHeight=null,this.gutterWidth=vr()(),t)t.hasOwnProperty(n)&&(this[n]=t[n]);if(!this.table)throw new Error(\"table is required for Table Layout\");if(!this.store)throw new Error(\"store is required for Table Layout\")}return e.prototype.updateScrollY=function(){var e=this.height;if(null===e)return!1;var t=this.table.bodyWrapper;if(this.table.$el&&t){var n=t.querySelector(\".el-table__body\"),i=this.scrollY,r=n.offsetHeight>this.bodyHeight;return this.scrollY=r,i!==r}return!1},e.prototype.setHeight=function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"height\";if(!Hi.a.prototype.$isServer){var i=this.table.$el;if(e=rr(e),this.height=e,!i&&(e||0===e))return Hi.a.nextTick((function(){return t.setHeight(e,n)}));\"number\"===typeof e?(i.style[n]=e+\"px\",this.updateElsHeight()):\"string\"===typeof e&&(i.style[n]=e,this.updateElsHeight())}},e.prototype.setMaxHeight=function(e){this.setHeight(e,\"max-height\")},e.prototype.getFlattenColumns=function(){var e=[],t=this.table.columns;return t.forEach((function(t){t.isColumnGroup?e.push.apply(e,t.columns):e.push(t)})),e},e.prototype.updateElsHeight=function(){var e=this;if(!this.table.$ready)return Hi.a.nextTick((function(){return e.updateElsHeight()}));var t=this.table.$refs,n=t.headerWrapper,i=t.appendWrapper,r=t.footerWrapper;if(this.appendHeight=i?i.offsetHeight:0,!this.showHeader||n){var a=n?n.querySelector(\".el-table__header tr\"):null,o=this.headerDisplayNone(a),s=this.headerHeight=this.showHeader?n.offsetHeight:0;if(this.showHeader&&!o&&n.offsetWidth>0&&(this.table.columns||[]).length>0&&s<2)return Hi.a.nextTick((function(){return e.updateElsHeight()}));var l=this.tableHeight=this.table.$el.clientHeight,c=this.footerHeight=r?r.offsetHeight:0;null!==this.height&&(this.bodyHeight=l-s-c+(r?1:0)),this.fixedBodyHeight=this.scrollX?this.bodyHeight-this.gutterWidth:this.bodyHeight;var u=!(this.store.states.data&&this.store.states.data.length);this.viewportHeight=this.scrollX?l-(u?0:this.gutterWidth):l,this.updateScrollY(),this.notifyObservers(\"scrollable\")}},e.prototype.headerDisplayNone=function(e){if(!e)return!0;var t=e;while(\"DIV\"!==t.tagName){if(\"none\"===getComputedStyle(t).display)return!0;t=t.parentElement}return!1},e.prototype.updateColumnsWidth=function(){if(!Hi.a.prototype.$isServer){var e=this.fit,t=this.table.$el.clientWidth,n=0,i=this.getFlattenColumns(),r=i.filter((function(e){return\"number\"!==typeof e.width}));if(i.forEach((function(e){\"number\"===typeof e.width&&e.realWidth&&(e.realWidth=null)})),r.length>0&&e){i.forEach((function(e){n+=e.width||e.minWidth||80}));var a=this.scrollY?this.gutterWidth:0;if(n<=t-a){this.scrollX=!1;var o=t-a-n;if(1===r.length)r[0].realWidth=(r[0].minWidth||80)+o;else{var s=r.reduce((function(e,t){return e+(t.minWidth||80)}),0),l=o/s,c=0;r.forEach((function(e,t){if(0!==t){var n=Math.floor((e.minWidth||80)*l);c+=n,e.realWidth=(e.minWidth||80)+n}})),r[0].realWidth=(r[0].minWidth||80)+o-c}}else this.scrollX=!0,r.forEach((function(e){e.realWidth=e.minWidth}));this.bodyWidth=Math.max(n,t),this.table.resizeState.width=this.bodyWidth}else i.forEach((function(e){e.width||e.minWidth?e.realWidth=e.width||e.minWidth:e.realWidth=80,n+=e.realWidth})),this.scrollX=n>t,this.bodyWidth=n;var u=this.store.states.fixedColumns;if(u.length>0){var d=0;u.forEach((function(e){d+=e.realWidth||e.width})),this.fixedWidth=d}var p=this.store.states.rightFixedColumns;if(p.length>0){var h=0;p.forEach((function(e){h+=e.realWidth||e.width})),this.rightFixedWidth=h}this.notifyObservers(\"columns\")}},e.prototype.addObserver=function(e){this.observers.push(e)},e.prototype.removeObserver=function(e){var t=this.observers.indexOf(e);-1!==t&&this.observers.splice(t,1)},e.prototype.notifyObservers=function(e){var t=this,n=this.observers;n.forEach((function(n){switch(e){case\"columns\":n.onColumnsChange(t);break;case\"scrollable\":n.onScrollableChange(t);break;default:throw new Error(\"Table Layout don't have event \"+e+\".\")}}))},e}(),Sr=yr,Cr={created:function(){this.tableLayout.addObserver(this)},destroyed:function(){this.tableLayout.removeObserver(this)},computed:{tableLayout:function(){var e=this.layout;if(!e&&this.table&&(e=this.table.layout),!e)throw new Error(\"Can not find table layout.\");return e}},mounted:function(){this.onColumnsChange(this.tableLayout),this.onScrollableChange(this.tableLayout)},updated:function(){this.__updated__||(this.onColumnsChange(this.tableLayout),this.onScrollableChange(this.tableLayout),this.__updated__=!0)},methods:{onColumnsChange:function(e){var t=this.$el.querySelectorAll(\"colgroup > col\");if(t.length){var n=e.getFlattenColumns(),i={};n.forEach((function(e){i[e.id]=e}));for(var r=0,a=t.length;r<a;r++){var o=t[r],s=o.getAttribute(\"name\"),l=i[s];l&&o.setAttribute(\"width\",l.realWidth||l.width)}}},onScrollableChange:function(e){for(var t=this.$el.querySelectorAll(\"colgroup > col[name=gutter]\"),n=0,i=t.length;n<i;n++){var r=t[n];r.setAttribute(\"width\",e.scrollY?e.gutterWidth:\"0\")}for(var a=this.$el.querySelectorAll(\"th.gutter\"),o=0,s=a.length;o<s;o++){var l=a[o];l.style.width=e.scrollY?e.gutterWidth+\"px\":\"0\",l.style.display=e.scrollY?\"\":\"none\"}}}},Tr=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},xr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},wr={name:\"ElTableBody\",mixins:[Cr],components:{ElCheckbox:Pi.a,ElTooltip:rt.a},props:{store:{required:!0},stripe:Boolean,context:{},rowClassName:[String,Function],rowStyle:[Object,Function],fixed:String,highlight:Boolean},render:function(e){var t=this,n=this.data||[];return e(\"table\",{class:\"el-table__body\",attrs:{cellspacing:\"0\",cellpadding:\"0\",border:\"0\"}},[e(\"colgroup\",[this.columns.map((function(t){return e(\"col\",{attrs:{name:t.id},key:t.id})}))]),e(\"tbody\",[n.reduce((function(e,n){return e.concat(t.wrappedRowRender(n,e.length))}),[]),e(\"el-tooltip\",{attrs:{effect:this.table.tooltipEffect,placement:\"top\",content:this.tooltipContent},ref:\"tooltip\"})])])},computed:xr({table:function(){return this.$parent}},gr({data:\"data\",columns:\"columns\",treeIndent:\"indent\",leftFixedLeafCount:\"fixedLeafColumnsLength\",rightFixedLeafCount:\"rightFixedLeafColumnsLength\",columnsCount:function(e){return e.columns.length},leftFixedCount:function(e){return e.fixedColumns.length},rightFixedCount:function(e){return e.rightFixedColumns.length},hasExpandColumn:function(e){return e.columns.some((function(e){var t=e.type;return\"expand\"===t}))}}),{firstDefaultColumnIndex:function(){return Object(b[\"arrayFindIndex\"])(this.columns,(function(e){var t=e.type;return\"default\"===t}))}}),watch:{\"store.states.hoverRow\":function(e,t){var n=this;if(this.store.states.isComplex&&!this.$isServer){var i=window.requestAnimationFrame;i||(i=function(e){return setTimeout(e,16)}),i((function(){var i=n.$el.querySelectorAll(\".el-table__row\"),r=i[t],a=i[e];r&&Object(Be[\"removeClass\"])(r,\"hover-row\"),a&&Object(Be[\"addClass\"])(a,\"hover-row\")}))}}},data:function(){return{tooltipContent:\"\"}},created:function(){this.activateTooltip=F()(50,(function(e){return e.handleShowPopper()}))},methods:{getKeyOfRow:function(e,t){var n=this.table.rowKey;return n?Zi(e,n):t},isColumnHidden:function(e){return!0===this.fixed||\"left\"===this.fixed?e>=this.leftFixedLeafCount:\"right\"===this.fixed?e<this.columnsCount-this.rightFixedLeafCount:e<this.leftFixedLeafCount||e>=this.columnsCount-this.rightFixedLeafCount},getSpan:function(e,t,n,i){var r=1,a=1,o=this.table.spanMethod;if(\"function\"===typeof o){var s=o({row:e,column:t,rowIndex:n,columnIndex:i});Array.isArray(s)?(r=s[0],a=s[1]):\"object\"===(\"undefined\"===typeof s?\"undefined\":Tr(s))&&(r=s.rowspan,a=s.colspan)}return{rowspan:r,colspan:a}},getRowStyle:function(e,t){var n=this.table.rowStyle;return\"function\"===typeof n?n.call(null,{row:e,rowIndex:t}):n||null},getRowClass:function(e,t){var n=[\"el-table__row\"];this.table.highlightCurrentRow&&e===this.store.states.currentRow&&n.push(\"current-row\"),this.stripe&&t%2===1&&n.push(\"el-table__row--striped\");var i=this.table.rowClassName;return\"string\"===typeof i?n.push(i):\"function\"===typeof i&&n.push(i.call(null,{row:e,rowIndex:t})),this.store.states.expandRows.indexOf(e)>-1&&n.push(\"expanded\"),n},getCellStyle:function(e,t,n,i){var r=this.table.cellStyle;return\"function\"===typeof r?r.call(null,{rowIndex:e,columnIndex:t,row:n,column:i}):r},getCellClass:function(e,t,n,i){var r=[i.id,i.align,i.className];this.isColumnHidden(t)&&r.push(\"is-hidden\");var a=this.table.cellClassName;return\"string\"===typeof a?r.push(a):\"function\"===typeof a&&r.push(a.call(null,{rowIndex:e,columnIndex:t,row:n,column:i})),r.join(\" \")},getColspanRealWidth:function(e,t,n){if(t<1)return e[n].realWidth;var i=e.map((function(e){var t=e.realWidth;return t})).slice(n,n+t);return i.reduce((function(e,t){return e+t}),-1)},handleCellMouseEnter:function(e,t){var n=this.table,i=zi(e);if(i){var r=Xi(n,i),a=n.hoverState={cell:i,column:r,row:t};n.$emit(\"cell-mouse-enter\",a.row,a.column,a.cell,e)}var o=e.target.querySelector(\".cell\");if(Object(Be[\"hasClass\"])(o,\"el-tooltip\")&&o.childNodes.length){var s=document.createRange();s.setStart(o,0),s.setEnd(o,o.childNodes.length);var l=s.getBoundingClientRect().width,c=(parseInt(Object(Be[\"getStyle\"])(o,\"paddingLeft\"),10)||0)+(parseInt(Object(Be[\"getStyle\"])(o,\"paddingRight\"),10)||0);if((l+c>o.offsetWidth||o.scrollWidth>o.offsetWidth)&&this.$refs.tooltip){var u=this.$refs.tooltip;this.tooltipContent=i.innerText||i.textContent,u.referenceElm=i,u.$refs.popper&&(u.$refs.popper.style.display=\"none\"),u.doDestroy(),u.setExpectedState(!0),this.activateTooltip(u)}}},handleCellMouseLeave:function(e){var t=this.$refs.tooltip;t&&(t.setExpectedState(!1),t.handleClosePopper());var n=zi(e);if(n){var i=this.table.hoverState||{};this.table.$emit(\"cell-mouse-leave\",i.row,i.column,i.cell,e)}},handleMouseEnter:F()(30,(function(e){this.store.commit(\"setHoverRow\",e)})),handleMouseLeave:F()(30,(function(){this.store.commit(\"setHoverRow\",null)})),handleContextMenu:function(e,t){this.handleEvent(e,t,\"contextmenu\")},handleDoubleClick:function(e,t){this.handleEvent(e,t,\"dblclick\")},handleClick:function(e,t){this.store.commit(\"setCurrentRow\",t),this.handleEvent(e,t,\"click\")},handleEvent:function(e,t,n){var i=this.table,r=zi(e),a=void 0;r&&(a=Xi(i,r),a&&i.$emit(\"cell-\"+n,t,a,r,e)),i.$emit(\"row-\"+n,t,a,e)},rowRender:function(e,t,n){var i=this,r=this.$createElement,a=this.treeIndent,o=this.columns,s=this.firstDefaultColumnIndex,l=o.map((function(e,t){return i.isColumnHidden(t)})),c=this.getRowClass(e,t),u=!0;n&&(c.push(\"el-table__row--level-\"+n.level),u=n.display);var d=u?null:{display:\"none\"};return r(\"tr\",{style:[d,this.getRowStyle(e,t)],class:c,key:this.getKeyOfRow(e,t),on:{dblclick:function(t){return i.handleDoubleClick(t,e)},click:function(t){return i.handleClick(t,e)},contextmenu:function(t){return i.handleContextMenu(t,e)},mouseenter:function(e){return i.handleMouseEnter(t)},mouseleave:this.handleMouseLeave}},[o.map((function(c,u){var d=i.getSpan(e,c,t,u),p=d.rowspan,h=d.colspan;if(!p||!h)return null;var f=xr({},c);f.realWidth=i.getColspanRealWidth(o,h,u);var _={store:i.store,_self:i.context||i.table.$vnode.context,column:f,row:e,$index:t};return u===s&&n&&(_.treeNode={indent:n.level*a,level:n.level},\"boolean\"===typeof n.expanded&&(_.treeNode.expanded=n.expanded,\"loading\"in n&&(_.treeNode.loading=n.loading),\"noLazyChildren\"in n&&(_.treeNode.noLazyChildren=n.noLazyChildren))),r(\"td\",{style:i.getCellStyle(t,u,e,c),class:i.getCellClass(t,u,e,c),attrs:{rowspan:p,colspan:h},on:{mouseenter:function(t){return i.handleCellMouseEnter(t,e)},mouseleave:i.handleCellMouseLeave}},[c.renderCell.call(i._renderProxy,i.$createElement,_,l[u])])}))])},wrappedRowRender:function(e,t){var n=this,i=this.$createElement,r=this.store,a=r.isRowExpanded,o=r.assertRowKey,s=r.states,l=s.treeData,c=s.lazyTreeNodeMap,u=s.childrenColumnName,d=s.rowKey;if(this.hasExpandColumn&&a(e)){var p=this.table.renderExpanded,h=this.rowRender(e,t);return p?[[h,i(\"tr\",{key:\"expanded-row__\"+h.key},[i(\"td\",{attrs:{colspan:this.columnsCount},class:\"el-table__expanded-cell\"},[p(this.$createElement,{row:e,$index:t,store:this.store})])])]]:h}if(Object.keys(l).length){o();var f=Zi(e,d),_=l[f],m=null;_&&(m={expanded:_.expanded,level:_.level,display:!0},\"boolean\"===typeof _.lazy&&(\"boolean\"===typeof _.loaded&&_.loaded&&(m.noLazyChildren=!(_.children&&_.children.length)),m.loading=_.loading));var g=[this.rowRender(e,t,m)];if(_){var b=0,v=function e(i,r){i&&i.length&&r&&i.forEach((function(i){var a={display:r.display&&r.expanded,level:r.level+1},o=Zi(i,d);if(void 0===o||null===o)throw new Error(\"for nested data item, row-key is required.\");if(_=xr({},l[o]),_&&(a.expanded=_.expanded,_.level=_.level||a.level,_.display=!(!_.expanded||!a.display),\"boolean\"===typeof _.lazy&&(\"boolean\"===typeof _.loaded&&_.loaded&&(a.noLazyChildren=!(_.children&&_.children.length)),a.loading=_.loading)),b++,g.push(n.rowRender(i,t+b,a)),_){var s=c[o]||i[u];e(s,_)}}))};_.display=!0;var E=c[f]||e[u];v(E,_)}return g}return this.rowRender(e,t)}}},Or=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-zoom-in-top\"}},[e.multiple?n(\"div\",{directives:[{name:\"clickoutside\",rawName:\"v-clickoutside\",value:e.handleOutsideClick,expression:\"handleOutsideClick\"},{name:\"show\",rawName:\"v-show\",value:e.showPopper,expression:\"showPopper\"}],staticClass:\"el-table-filter\"},[n(\"div\",{staticClass:\"el-table-filter__content\"},[n(\"el-scrollbar\",{attrs:{\"wrap-class\":\"el-table-filter__wrap\"}},[n(\"el-checkbox-group\",{staticClass:\"el-table-filter__checkbox-group\",model:{value:e.filteredValue,callback:function(t){e.filteredValue=t},expression:\"filteredValue\"}},e._l(e.filters,(function(t){return n(\"el-checkbox\",{key:t.value,attrs:{label:t.value}},[e._v(e._s(t.text))])})),1)],1)],1),n(\"div\",{staticClass:\"el-table-filter__bottom\"},[n(\"button\",{class:{\"is-disabled\":0===e.filteredValue.length},attrs:{disabled:0===e.filteredValue.length},on:{click:e.handleConfirm}},[e._v(e._s(e.t(\"el.table.confirmFilter\")))]),n(\"button\",{on:{click:e.handleReset}},[e._v(e._s(e.t(\"el.table.resetFilter\")))])])]):n(\"div\",{directives:[{name:\"clickoutside\",rawName:\"v-clickoutside\",value:e.handleOutsideClick,expression:\"handleOutsideClick\"},{name:\"show\",rawName:\"v-show\",value:e.showPopper,expression:\"showPopper\"}],staticClass:\"el-table-filter\"},[n(\"ul\",{staticClass:\"el-table-filter__list\"},[n(\"li\",{staticClass:\"el-table-filter__list-item\",class:{\"is-active\":void 0===e.filterValue||null===e.filterValue},on:{click:function(t){e.handleSelect(null)}}},[e._v(e._s(e.t(\"el.table.clearFilter\")))]),e._l(e.filters,(function(t){return n(\"li\",{key:t.value,staticClass:\"el-table-filter__list-item\",class:{\"is-active\":e.isActive(t)},attrs:{label:t.value},on:{click:function(n){e.handleSelect(t.value)}}},[e._v(e._s(t.text))])}))],2)])])},Nr=[];Or._withStripped=!0;var Rr=[];!Hi.a.prototype.$isServer&&document.addEventListener(\"click\",(function(e){Rr.forEach((function(t){var n=e.target;t&&t.$el&&(n===t.$el||t.$el.contains(n)||t.handleOutsideClick&&t.handleOutsideClick(e))}))}));var kr={open:function(e){e&&Rr.push(e)},close:function(e){var t=Rr.indexOf(e);-1!==t&&Rr.splice(e,1)}},Ar=n(32),Dr=n.n(Ar),Ir={name:\"ElTableFilterPanel\",mixins:[q.a,g.a],directives:{Clickoutside:U.a},components:{ElCheckbox:Pi.a,ElCheckboxGroup:Dr.a,ElScrollbar:V.a},props:{placement:{type:String,default:\"bottom-end\"}},methods:{isActive:function(e){return e.value===this.filterValue},handleOutsideClick:function(){var e=this;setTimeout((function(){e.showPopper=!1}),16)},handleConfirm:function(){this.confirmFilter(this.filteredValue),this.handleOutsideClick()},handleReset:function(){this.filteredValue=[],this.confirmFilter(this.filteredValue),this.handleOutsideClick()},handleSelect:function(e){this.filterValue=e,\"undefined\"!==typeof e&&null!==e?this.confirmFilter(this.filteredValue):this.confirmFilter([]),this.handleOutsideClick()},confirmFilter:function(e){this.table.store.commit(\"filterChange\",{column:this.column,values:e}),this.table.store.updateAllSelected()}},data:function(){return{table:null,cell:null,column:null}},computed:{filters:function(){return this.column&&this.column.filters},filterValue:{get:function(){return(this.column.filteredValue||[])[0]},set:function(e){this.filteredValue&&(\"undefined\"!==typeof e&&null!==e?this.filteredValue.splice(0,1,e):this.filteredValue.splice(0,1))}},filteredValue:{get:function(){return this.column&&this.column.filteredValue||[]},set:function(e){this.column&&(this.column.filteredValue=e)}},multiple:function(){return!this.column||this.column.filterMultiple}},mounted:function(){var e=this;this.popperElm=this.$el,this.referenceElm=this.cell,this.table.bodyWrapper.addEventListener(\"scroll\",(function(){e.updatePopper()})),this.$watch(\"showPopper\",(function(t){e.column&&(e.column.filterOpened=t),t?kr.open(e):kr.close(e)}))},watch:{showPopper:function(e){!0===e&&parseInt(this.popperJS._popper.style.zIndex,10)<C[\"PopupManager\"].zIndex&&(this.popperJS._popper.style.zIndex=C[\"PopupManager\"].nextZIndex())}}},Mr=Ir,Lr=s(Mr,Or,Nr,!1,null,null,null);Lr.options.__file=\"packages/table/src/filter-panel.vue\";var Pr=Lr.exports,Fr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},Br=function e(t){var n=[];return t.forEach((function(t){t.children?(n.push(t),n.push.apply(n,e(t.children))):n.push(t)})),n},Ur=function(e){var t=1,n=function e(n,i){if(i&&(n.level=i.level+1,t<n.level&&(t=n.level)),n.children){var r=0;n.children.forEach((function(t){e(t,n),r+=t.colSpan})),n.colSpan=r}else n.colSpan=1};e.forEach((function(e){e.level=1,n(e)}));for(var i=[],r=0;r<t;r++)i.push([]);var a=Br(e);return a.forEach((function(e){e.children?e.rowSpan=1:e.rowSpan=t-e.level+1,i[e.level-1].push(e)})),i},$r={name:\"ElTableHeader\",mixins:[Cr],render:function(e){var t=this,n=this.store.states.originColumns,i=Ur(n,this.columns),r=i.length>1;return r&&(this.$parent.isGroup=!0),e(\"table\",{class:\"el-table__header\",attrs:{cellspacing:\"0\",cellpadding:\"0\",border:\"0\"}},[e(\"colgroup\",[this.columns.map((function(t){return e(\"col\",{attrs:{name:t.id},key:t.id})})),this.hasGutter?e(\"col\",{attrs:{name:\"gutter\"}}):\"\"]),e(\"thead\",{class:[{\"is-group\":r,\"has-gutter\":this.hasGutter}]},[this._l(i,(function(n,i){return e(\"tr\",{style:t.getHeaderRowStyle(i),class:t.getHeaderRowClass(i)},[n.map((function(r,a){return e(\"th\",{attrs:{colspan:r.colSpan,rowspan:r.rowSpan},on:{mousemove:function(e){return t.handleMouseMove(e,r)},mouseout:t.handleMouseOut,mousedown:function(e){return t.handleMouseDown(e,r)},click:function(e){return t.handleHeaderClick(e,r)},contextmenu:function(e){return t.handleHeaderContextMenu(e,r)}},style:t.getHeaderCellStyle(i,a,n,r),class:t.getHeaderCellClass(i,a,n,r),key:r.id},[e(\"div\",{class:[\"cell\",r.filteredValue&&r.filteredValue.length>0?\"highlight\":\"\",r.labelClassName]},[r.renderHeader?r.renderHeader.call(t._renderProxy,e,{column:r,$index:a,store:t.store,_self:t.$parent.$vnode.context}):r.label,r.sortable?e(\"span\",{class:\"caret-wrapper\",on:{click:function(e){return t.handleSortClick(e,r)}}},[e(\"i\",{class:\"sort-caret ascending\",on:{click:function(e){return t.handleSortClick(e,r,\"ascending\")}}}),e(\"i\",{class:\"sort-caret descending\",on:{click:function(e){return t.handleSortClick(e,r,\"descending\")}}})]):\"\",r.filterable?e(\"span\",{class:\"el-table__column-filter-trigger\",on:{click:function(e){return t.handleFilterClick(e,r)}}},[e(\"i\",{class:[\"el-icon-arrow-down\",r.filterOpened?\"el-icon-arrow-up\":\"\"]})]):\"\"])])})),t.hasGutter?e(\"th\",{class:\"gutter\"}):\"\"])}))])])},props:{fixed:String,store:{required:!0},border:Boolean,defaultSort:{type:Object,default:function(){return{prop:\"\",order:\"\"}}}},components:{ElCheckbox:Pi.a},computed:Fr({table:function(){return this.$parent},hasGutter:function(){return!this.fixed&&this.tableLayout.gutterWidth}},gr({columns:\"columns\",isAllSelected:\"isAllSelected\",leftFixedLeafCount:\"fixedLeafColumnsLength\",rightFixedLeafCount:\"rightFixedLeafColumnsLength\",columnsCount:function(e){return e.columns.length},leftFixedCount:function(e){return e.fixedColumns.length},rightFixedCount:function(e){return e.rightFixedColumns.length}})),created:function(){this.filterPanels={}},mounted:function(){var e=this;this.$nextTick((function(){var t=e.defaultSort,n=t.prop,i=t.order,r=!0;e.store.commit(\"sort\",{prop:n,order:i,init:r})}))},beforeDestroy:function(){var e=this.filterPanels;for(var t in e)e.hasOwnProperty(t)&&e[t]&&e[t].$destroy(!0)},methods:{isCellHidden:function(e,t){for(var n=0,i=0;i<e;i++)n+=t[i].colSpan;var r=n+t[e].colSpan-1;return!0===this.fixed||\"left\"===this.fixed?r>=this.leftFixedLeafCount:\"right\"===this.fixed?n<this.columnsCount-this.rightFixedLeafCount:r<this.leftFixedLeafCount||n>=this.columnsCount-this.rightFixedLeafCount},getHeaderRowStyle:function(e){var t=this.table.headerRowStyle;return\"function\"===typeof t?t.call(null,{rowIndex:e}):t},getHeaderRowClass:function(e){var t=[],n=this.table.headerRowClassName;return\"string\"===typeof n?t.push(n):\"function\"===typeof n&&t.push(n.call(null,{rowIndex:e})),t.join(\" \")},getHeaderCellStyle:function(e,t,n,i){var r=this.table.headerCellStyle;return\"function\"===typeof r?r.call(null,{rowIndex:e,columnIndex:t,row:n,column:i}):r},getHeaderCellClass:function(e,t,n,i){var r=[i.id,i.order,i.headerAlign,i.className,i.labelClassName];0===e&&this.isCellHidden(t,n)&&r.push(\"is-hidden\"),i.children||r.push(\"is-leaf\"),i.sortable&&r.push(\"is-sortable\");var a=this.table.headerCellClassName;return\"string\"===typeof a?r.push(a):\"function\"===typeof a&&r.push(a.call(null,{rowIndex:e,columnIndex:t,row:n,column:i})),r.join(\" \")},toggleAllSelection:function(e){e.stopPropagation(),this.store.commit(\"toggleAllSelection\")},handleFilterClick:function(e,t){e.stopPropagation();var n=e.target,i=\"TH\"===n.tagName?n:n.parentNode;if(!Object(Be[\"hasClass\"])(i,\"noclick\")){i=i.querySelector(\".el-table__column-filter-trigger\")||i;var r=this.$parent,a=this.filterPanels[t.id];a&&t.filterOpened?a.showPopper=!1:(a||(a=new Hi.a(Pr),this.filterPanels[t.id]=a,t.filterPlacement&&(a.placement=t.filterPlacement),a.table=r,a.cell=i,a.column=t,!this.$isServer&&a.$mount(document.createElement(\"div\"))),setTimeout((function(){a.showPopper=!0}),16))}},handleHeaderClick:function(e,t){!t.filters&&t.sortable?this.handleSortClick(e,t):t.filterable&&!t.sortable&&this.handleFilterClick(e,t),this.$parent.$emit(\"header-click\",t,e)},handleHeaderContextMenu:function(e,t){this.$parent.$emit(\"header-contextmenu\",t,e)},handleMouseDown:function(e,t){var n=this;if(!this.$isServer&&!(t.children&&t.children.length>0)&&this.draggingColumn&&this.border){this.dragging=!0,this.$parent.resizeProxyVisible=!0;var i=this.$parent,r=i.$el,a=r.getBoundingClientRect().left,o=this.$el.querySelector(\"th.\"+t.id),s=o.getBoundingClientRect(),l=s.left-a+30;Object(Be[\"addClass\"])(o,\"noclick\"),this.dragState={startMouseLeft:e.clientX,startLeft:s.right-a,startColumnLeft:s.left-a,tableLeft:a};var c=i.$refs.resizeProxy;c.style.left=this.dragState.startLeft+\"px\",document.onselectstart=function(){return!1},document.ondragstart=function(){return!1};var u=function(e){var t=e.clientX-n.dragState.startMouseLeft,i=n.dragState.startLeft+t;c.style.left=Math.max(l,i)+\"px\"},d=function r(){if(n.dragging){var a=n.dragState,s=a.startColumnLeft,l=a.startLeft,d=parseInt(c.style.left,10),p=d-s;t.width=t.realWidth=p,i.$emit(\"header-dragend\",t.width,l-s,t,e),n.store.scheduleLayout(),document.body.style.cursor=\"\",n.dragging=!1,n.draggingColumn=null,n.dragState={},i.resizeProxyVisible=!1}document.removeEventListener(\"mousemove\",u),document.removeEventListener(\"mouseup\",r),document.onselectstart=null,document.ondragstart=null,setTimeout((function(){Object(Be[\"removeClass\"])(o,\"noclick\")}),0)};document.addEventListener(\"mousemove\",u),document.addEventListener(\"mouseup\",d)}},handleMouseMove:function(e,t){if(!(t.children&&t.children.length>0)){var n=e.target;while(n&&\"TH\"!==n.tagName)n=n.parentNode;if(t&&t.resizable&&!this.dragging&&this.border){var i=n.getBoundingClientRect(),r=document.body.style;i.width>12&&i.right-e.pageX<8?(r.cursor=\"col-resize\",Object(Be[\"hasClass\"])(n,\"is-sortable\")&&(n.style.cursor=\"col-resize\"),this.draggingColumn=t):this.dragging||(r.cursor=\"\",Object(Be[\"hasClass\"])(n,\"is-sortable\")&&(n.style.cursor=\"pointer\"),this.draggingColumn=null)}}},handleMouseOut:function(){this.$isServer||(document.body.style.cursor=\"\")},toggleOrder:function(e){var t=e.order,n=e.sortOrders;if(\"\"===t)return n[0];var i=n.indexOf(t||null);return n[i>n.length-2?0:i+1]},handleSortClick:function(e,t,n){e.stopPropagation();var i=t.order===n?null:n||this.toggleOrder(t),r=e.target;while(r&&\"TH\"!==r.tagName)r=r.parentNode;if(r&&\"TH\"===r.tagName&&Object(Be[\"hasClass\"])(r,\"noclick\"))Object(Be[\"removeClass\"])(r,\"noclick\");else if(t.sortable){var a=this.store.states,o=a.sortProp,s=void 0,l=a.sortingColumn;(l!==t||l===t&&null===l.order)&&(l&&(l.order=null),a.sortingColumn=t,o=t.property),s=t.order=i||null,a.sortProp=o,a.sortOrder=s,this.store.commit(\"changeSortCondition\")}}},data:function(){return{draggingColumn:null,dragging:!1,dragState:{}}}},jr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},Gr={name:\"ElTableFooter\",mixins:[Cr],render:function(e){var t=this,n=[];return this.summaryMethod?n=this.summaryMethod({columns:this.columns,data:this.store.states.data}):this.columns.forEach((function(e,i){if(0!==i){var r=t.store.states.data.map((function(t){return Number(t[e.property])})),a=[],o=!0;r.forEach((function(e){if(!isNaN(e)){o=!1;var t=(\"\"+e).split(\".\")[1];a.push(t?t.length:0)}}));var s=Math.max.apply(null,a);n[i]=o?\"\":r.reduce((function(e,t){var n=Number(t);return isNaN(n)?e:parseFloat((e+t).toFixed(Math.min(s,20)))}),0)}else n[i]=t.sumText})),e(\"table\",{class:\"el-table__footer\",attrs:{cellspacing:\"0\",cellpadding:\"0\",border:\"0\"}},[e(\"colgroup\",[this.columns.map((function(t){return e(\"col\",{attrs:{name:t.id},key:t.id})})),this.hasGutter?e(\"col\",{attrs:{name:\"gutter\"}}):\"\"]),e(\"tbody\",{class:[{\"has-gutter\":this.hasGutter}]},[e(\"tr\",[this.columns.map((function(i,r){return e(\"td\",{key:r,attrs:{colspan:i.colSpan,rowspan:i.rowSpan},class:t.getRowClasses(i,r)},[e(\"div\",{class:[\"cell\",i.labelClassName]},[n[r]])])})),this.hasGutter?e(\"th\",{class:\"gutter\"}):\"\"])])])},props:{fixed:String,store:{required:!0},summaryMethod:Function,sumText:String,border:Boolean,defaultSort:{type:Object,default:function(){return{prop:\"\",order:\"\"}}}},computed:jr({table:function(){return this.$parent},hasGutter:function(){return!this.fixed&&this.tableLayout.gutterWidth}},gr({columns:\"columns\",isAllSelected:\"isAllSelected\",leftFixedLeafCount:\"fixedLeafColumnsLength\",rightFixedLeafCount:\"rightFixedLeafColumnsLength\",columnsCount:function(e){return e.columns.length},leftFixedCount:function(e){return e.fixedColumns.length},rightFixedCount:function(e){return e.rightFixedColumns.length}})),methods:{isCellHidden:function(e,t,n){if(!0===this.fixed||\"left\"===this.fixed)return e>=this.leftFixedLeafCount;if(\"right\"===this.fixed){for(var i=0,r=0;r<e;r++)i+=t[r].colSpan;return i<this.columnsCount-this.rightFixedLeafCount}return!(this.fixed||!n.fixed)||(e<this.leftFixedCount||e>=this.columnsCount-this.rightFixedCount)},getRowClasses:function(e,t){var n=[e.id,e.align,e.labelClassName];return e.className&&n.push(e.className),this.isCellHidden(t,this.columns,e)&&n.push(\"is-hidden\"),e.children||n.push(\"is-leaf\"),n}}},qr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},Hr=1,Vr={name:\"ElTable\",mixins:[g.a,w.a],directives:{Mousewheel:Gi},props:{data:{type:Array,default:function(){return[]}},size:String,width:[String,Number],height:[String,Number],maxHeight:[String,Number],fit:{type:Boolean,default:!0},stripe:Boolean,border:Boolean,rowKey:[String,Function],context:{},showHeader:{type:Boolean,default:!0},showSummary:Boolean,sumText:String,summaryMethod:Function,rowClassName:[String,Function],rowStyle:[Object,Function],cellClassName:[String,Function],cellStyle:[Object,Function],headerRowClassName:[String,Function],headerRowStyle:[Object,Function],headerCellClassName:[String,Function],headerCellStyle:[Object,Function],highlightCurrentRow:Boolean,currentRowKey:[String,Number],emptyText:String,expandRowKeys:Array,defaultExpandAll:Boolean,defaultSort:Object,tooltipEffect:String,spanMethod:Function,selectOnIndeterminate:{type:Boolean,default:!0},indent:{type:Number,default:16},treeProps:{type:Object,default:function(){return{hasChildren:\"hasChildren\",children:\"children\"}}},lazy:Boolean,load:Function},components:{TableHeader:$r,TableFooter:Gr,TableBody:wr,ElCheckbox:Pi.a},methods:{getMigratingConfig:function(){return{events:{expand:\"expand is renamed to expand-change\"}}},setCurrentRow:function(e){this.store.commit(\"setCurrentRow\",e)},toggleRowSelection:function(e,t){this.store.toggleRowSelection(e,t,!1),this.store.updateAllSelected()},toggleRowExpansion:function(e,t){this.store.toggleRowExpansionAdapter(e,t)},clearSelection:function(){this.store.clearSelection()},clearFilter:function(e){this.store.clearFilter(e)},clearSort:function(){this.store.clearSort()},handleMouseLeave:function(){this.store.commit(\"setHoverRow\",null),this.hoverState&&(this.hoverState=null)},updateScrollY:function(){var e=this.layout.updateScrollY();e&&(this.layout.notifyObservers(\"scrollable\"),this.layout.updateColumnsWidth())},handleFixedMousewheel:function(e,t){var n=this.bodyWrapper;if(Math.abs(t.spinY)>0){var i=n.scrollTop;t.pixelY<0&&0!==i&&e.preventDefault(),t.pixelY>0&&n.scrollHeight-n.clientHeight>i&&e.preventDefault(),n.scrollTop+=Math.ceil(t.pixelY/5)}else n.scrollLeft+=Math.ceil(t.pixelX/5)},handleHeaderFooterMousewheel:function(e,t){var n=t.pixelX,i=t.pixelY;Math.abs(n)>=Math.abs(i)&&(this.bodyWrapper.scrollLeft+=t.pixelX/5)},syncPostion:Object(Fi[\"throttle\"])(20,(function(){var e=this.bodyWrapper,t=e.scrollLeft,n=e.scrollTop,i=e.offsetWidth,r=e.scrollWidth,a=this.$refs,o=a.headerWrapper,s=a.footerWrapper,l=a.fixedBodyWrapper,c=a.rightFixedBodyWrapper;o&&(o.scrollLeft=t),s&&(s.scrollLeft=t),l&&(l.scrollTop=n),c&&(c.scrollTop=n);var u=r-i-1;this.scrollPosition=t>=u?\"right\":0===t?\"left\":\"middle\"})),bindEvents:function(){this.bodyWrapper.addEventListener(\"scroll\",this.syncPostion,{passive:!0}),this.fit&&Object(ei[\"addResizeListener\"])(this.$el,this.resizeListener)},unbindEvents:function(){this.bodyWrapper.removeEventListener(\"scroll\",this.syncPostion,{passive:!0}),this.fit&&Object(ei[\"removeResizeListener\"])(this.$el,this.resizeListener)},resizeListener:function(){if(this.$ready){var e=!1,t=this.$el,n=this.resizeState,i=n.width,r=n.height,a=t.offsetWidth;i!==a&&(e=!0);var o=t.offsetHeight;(this.height||this.shouldUpdateHeight)&&r!==o&&(e=!0),e&&(this.resizeState.width=a,this.resizeState.height=o,this.doLayout())}},doLayout:function(){this.shouldUpdateHeight&&this.layout.updateElsHeight(),this.layout.updateColumnsWidth()},sort:function(e,t){this.store.commit(\"sort\",{prop:e,order:t})},toggleAllSelection:function(){this.store.commit(\"toggleAllSelection\")}},computed:qr({tableSize:function(){return this.size||(this.$ELEMENT||{}).size},bodyWrapper:function(){return this.$refs.bodyWrapper},shouldUpdateHeight:function(){return this.height||this.maxHeight||this.fixedColumns.length>0||this.rightFixedColumns.length>0},bodyWidth:function(){var e=this.layout,t=e.bodyWidth,n=e.scrollY,i=e.gutterWidth;return t?t-(n?i:0)+\"px\":\"\"},bodyHeight:function(){var e=this.layout,t=e.headerHeight,n=void 0===t?0:t,i=e.bodyHeight,r=e.footerHeight,a=void 0===r?0:r;if(this.height)return{height:i?i+\"px\":\"\"};if(this.maxHeight){var o=rr(this.maxHeight);if(\"number\"===typeof o)return{\"max-height\":o-a-(this.showHeader?n:0)+\"px\"}}return{}},fixedBodyHeight:function(){if(this.height)return{height:this.layout.fixedBodyHeight?this.layout.fixedBodyHeight+\"px\":\"\"};if(this.maxHeight){var e=rr(this.maxHeight);if(\"number\"===typeof e)return e=this.layout.scrollX?e-this.layout.gutterWidth:e,this.showHeader&&(e-=this.layout.headerHeight),e-=this.layout.footerHeight,{\"max-height\":e+\"px\"}}return{}},fixedHeight:function(){return this.maxHeight?this.showSummary?{bottom:0}:{bottom:this.layout.scrollX&&this.data.length?this.layout.gutterWidth+\"px\":\"\"}:this.showSummary?{height:this.layout.tableHeight?this.layout.tableHeight+\"px\":\"\"}:{height:this.layout.viewportHeight?this.layout.viewportHeight+\"px\":\"\"}},emptyBlockStyle:function(){if(this.data&&this.data.length)return null;var e=\"100%\";return this.layout.appendHeight&&(e=\"calc(100% - \"+this.layout.appendHeight+\"px)\"),{width:this.bodyWidth,height:e}}},gr({selection:\"selection\",columns:\"columns\",tableData:\"data\",fixedColumns:\"fixedColumns\",rightFixedColumns:\"rightFixedColumns\"})),watch:{height:{immediate:!0,handler:function(e){this.layout.setHeight(e)}},maxHeight:{immediate:!0,handler:function(e){this.layout.setMaxHeight(e)}},currentRowKey:{immediate:!0,handler:function(e){this.rowKey&&this.store.setCurrentRowKey(e)}},data:{immediate:!0,handler:function(e){this.store.commit(\"setData\",e)}},expandRowKeys:{immediate:!0,handler:function(e){e&&this.store.setExpandRowKeysAdapter(e)}}},created:function(){var e=this;this.tableId=\"el-table_\"+Hr++,this.debouncedUpdateLayout=Object(Fi[\"debounce\"])(50,(function(){return e.doLayout()}))},mounted:function(){var e=this;this.bindEvents(),this.store.updateColumns(),this.doLayout(),this.resizeState={width:this.$el.offsetWidth,height:this.$el.offsetHeight},this.store.states.columns.forEach((function(t){t.filteredValue&&t.filteredValue.length&&e.store.commit(\"filterChange\",{column:t,values:t.filteredValue,silent:!0})})),this.$ready=!0},destroyed:function(){this.unbindEvents()},data:function(){var e=this.treeProps,t=e.hasChildren,n=void 0===t?\"hasChildren\":t,i=e.children,r=void 0===i?\"children\":i;this.store=mr(this,{rowKey:this.rowKey,defaultExpandAll:this.defaultExpandAll,selectOnIndeterminate:this.selectOnIndeterminate,indent:this.indent,lazy:this.lazy,lazyColumnIdentifier:n,childrenColumnName:r});var a=new Sr({store:this.store,table:this,fit:this.fit,showHeader:this.showHeader});return{layout:a,isHidden:!1,renderExpanded:null,resizeProxyVisible:!1,resizeState:{width:null,height:null},isGroup:!1,scrollPosition:\"left\"}}},zr=Vr,Yr=s(zr,Ii,Mi,!1,null,null,null);Yr.options.__file=\"packages/table/src/table.vue\";var Wr=Yr.exports;Wr.install=function(e){e.component(Wr.name,Wr)};var Kr=Wr,Qr={default:{order:\"\"},selection:{width:48,minWidth:48,realWidth:48,order:\"\",className:\"el-table-column--selection\"},expand:{width:48,minWidth:48,realWidth:48,order:\"\"},index:{width:48,minWidth:48,realWidth:48,order:\"\"}},Xr={selection:{renderHeader:function(e,t){var n=t.store;return e(\"el-checkbox\",{attrs:{disabled:n.states.data&&0===n.states.data.length,indeterminate:n.states.selection.length>0&&!this.isAllSelected,value:this.isAllSelected},nativeOn:{click:this.toggleAllSelection}})},renderCell:function(e,t){var n=t.row,i=t.column,r=t.store,a=t.$index;return e(\"el-checkbox\",{nativeOn:{click:function(e){return e.stopPropagation()}},attrs:{value:r.isSelected(n),disabled:!!i.selectable&&!i.selectable.call(null,n,a)},on:{input:function(){r.commit(\"rowSelectedChanged\",n)}}})},sortable:!1,resizable:!1},index:{renderHeader:function(e,t){var n=t.column;return n.label||\"#\"},renderCell:function(e,t){var n=t.$index,i=t.column,r=n+1,a=i.index;return\"number\"===typeof a?r=n+a:\"function\"===typeof a&&(r=a(n)),e(\"div\",[r])},sortable:!1},expand:{renderHeader:function(e,t){var n=t.column;return n.label||\"\"},renderCell:function(e,t){var n=t.row,i=t.store,r=[\"el-table__expand-icon\"];i.states.expandRows.indexOf(n)>-1&&r.push(\"el-table__expand-icon--expanded\");var a=function(e){e.stopPropagation(),i.toggleRowExpansion(n)};return e(\"div\",{class:r,on:{click:a}},[e(\"i\",{class:\"el-icon el-icon-arrow-right\"})])},sortable:!1,resizable:!1,className:\"el-table__expand-column\"}};function Zr(e,t){var n=t.row,i=t.column,r=t.$index,a=i.property,o=a&&Object(b[\"getPropByPath\"])(n,a).v;return i&&i.formatter?i.formatter(n,i,o,r):o}function Jr(e,t){var n=t.row,i=t.treeNode,r=t.store;if(!i)return null;var a=[],o=function(e){e.stopPropagation(),r.loadOrToggle(n)};if(i.indent&&a.push(e(\"span\",{class:\"el-table__indent\",style:{\"padding-left\":i.indent+\"px\"}})),\"boolean\"!==typeof i.expanded||i.noLazyChildren)a.push(e(\"span\",{class:\"el-table__placeholder\"}));else{var s=[\"el-table__expand-icon\",i.expanded?\"el-table__expand-icon--expanded\":\"\"],l=[\"el-icon-arrow-right\"];i.loading&&(l=[\"el-icon-loading\"]),a.push(e(\"div\",{class:s,on:{click:o}},[e(\"i\",{class:l})]))}return a}var ea=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},ta=1,na={name:\"ElTableColumn\",props:{type:{type:String,default:\"default\"},label:String,className:String,labelClassName:String,property:String,prop:String,width:{},minWidth:{},renderHeader:Function,sortable:{type:[Boolean,String],default:!1},sortMethod:Function,sortBy:[String,Function,Array],resizable:{type:Boolean,default:!0},columnKey:String,align:String,headerAlign:String,showTooltipWhenOverflow:Boolean,showOverflowTooltip:Boolean,fixed:[Boolean,String],formatter:Function,selectable:Function,reserveSelection:Boolean,filterMethod:Function,filteredValue:Array,filters:Array,filterPlacement:String,filterMultiple:{type:Boolean,default:!0},index:[Number,Function],sortOrders:{type:Array,default:function(){return[\"ascending\",\"descending\",null]},validator:function(e){return e.every((function(e){return[\"ascending\",\"descending\",null].indexOf(e)>-1}))}}},data:function(){return{isSubColumn:!1,columns:[]}},computed:{owner:function(){var e=this.$parent;while(e&&!e.tableId)e=e.$parent;return e},columnOrTableParent:function(){var e=this.$parent;while(e&&!e.tableId&&!e.columnId)e=e.$parent;return e},realWidth:function(){return nr(this.width)},realMinWidth:function(){return ir(this.minWidth)},realAlign:function(){return this.align?\"is-\"+this.align:null},realHeaderAlign:function(){return this.headerAlign?\"is-\"+this.headerAlign:this.realAlign}},methods:{getPropsData:function(){for(var e=this,t=arguments.length,n=Array(t),i=0;i<t;i++)n[i]=arguments[i];return n.reduce((function(t,n){return Array.isArray(n)&&n.forEach((function(n){t[n]=e[n]})),t}),{})},getColumnElIndex:function(e,t){return[].indexOf.call(e,t)},setColumnWidth:function(e){return this.realWidth&&(e.width=this.realWidth),this.realMinWidth&&(e.minWidth=this.realMinWidth),e.minWidth||(e.minWidth=80),e.realWidth=void 0===e.width?e.minWidth:e.width,e},setColumnForcedProps:function(e){var t=e.type,n=Xr[t]||{};return Object.keys(n).forEach((function(t){var i=n[t];void 0!==i&&(e[t]=\"className\"===t?e[t]+\" \"+i:i)})),e},setColumnRenders:function(e){var t=this;this.$createElement;this.renderHeader||\"selection\"!==e.type&&(e.renderHeader=function(n,i){var r=t.$scopedSlots.header;return r?r(i):e.label});var n=e.renderCell;return\"expand\"===e.type?(e.renderCell=function(e,t){return e(\"div\",{class:\"cell\"},[n(e,t)])},this.owner.renderExpanded=function(e,n){return t.$scopedSlots.default?t.$scopedSlots.default(n):t.$slots.default}):(n=n||Zr,e.renderCell=function(i,r){var a=null;a=t.$scopedSlots.default?t.$scopedSlots.default(r):n(i,r);var o=Jr(i,r),s={class:\"cell\",style:{}};return e.showOverflowTooltip&&(s.class+=\" el-tooltip\",s.style={width:(r.column.realWidth||r.column.width)-1+\"px\"}),i(\"div\",s,[o,a])}),e},registerNormalWatchers:function(){var e=this,t=[\"label\",\"property\",\"filters\",\"filterMultiple\",\"sortable\",\"index\",\"formatter\",\"className\",\"labelClassName\",\"showOverflowTooltip\"],n={prop:\"property\",realAlign:\"align\",realHeaderAlign:\"headerAlign\",realWidth:\"width\"},i=t.reduce((function(e,t){return e[t]=t,e}),n);Object.keys(i).forEach((function(t){var i=n[t];e.$watch(t,(function(t){e.columnConfig[i]=t}))}))},registerComplexWatchers:function(){var e=this,t=[\"fixed\"],n={realWidth:\"width\",realMinWidth:\"minWidth\"},i=t.reduce((function(e,t){return e[t]=t,e}),n);Object.keys(i).forEach((function(t){var i=n[t];e.$watch(t,(function(t){e.columnConfig[i]=t;var n=\"fixed\"===i;e.owner.store.scheduleLayout(n)}))}))}},components:{ElCheckbox:Pi.a},beforeCreate:function(){this.row={},this.column={},this.$index=0,this.columnId=\"\"},created:function(){var e=this.columnOrTableParent;this.isSubColumn=this.owner!==e,this.columnId=(e.tableId||e.columnId)+\"_column_\"+ta++;var t=this.type||\"default\",n=\"\"===this.sortable||this.sortable,i=ea({},Qr[t],{id:this.columnId,type:t,property:this.prop||this.property,align:this.realAlign,headerAlign:this.realHeaderAlign,showOverflowTooltip:this.showOverflowTooltip||this.showTooltipWhenOverflow,filterable:this.filters||this.filterMethod,filteredValue:[],filterPlacement:\"\",isColumnGroup:!1,filterOpened:!1,sortable:n,index:this.index}),r=[\"columnKey\",\"label\",\"className\",\"labelClassName\",\"type\",\"renderHeader\",\"formatter\",\"fixed\",\"resizable\"],a=[\"sortMethod\",\"sortBy\",\"sortOrders\"],o=[\"selectable\",\"reserveSelection\"],s=[\"filterMethod\",\"filters\",\"filterMultiple\",\"filterOpened\",\"filteredValue\",\"filterPlacement\"],l=this.getPropsData(r,a,o,s);l=tr(i,l);var c=ar(this.setColumnRenders,this.setColumnWidth,this.setColumnForcedProps);l=c(l),this.columnConfig=l,this.registerNormalWatchers(),this.registerComplexWatchers()},mounted:function(){var e=this.owner,t=this.columnOrTableParent,n=this.isSubColumn?t.$el.children:t.$refs.hiddenColumns.children,i=this.getColumnElIndex(n,this.$el);e.store.commit(\"insertColumn\",this.columnConfig,i,this.isSubColumn?t.columnConfig:null)},destroyed:function(){if(this.$parent){var e=this.$parent;this.owner.store.commit(\"removeColumn\",this.columnConfig,this.isSubColumn?e.columnConfig:null)}},render:function(e){return e(\"div\",this.$slots.default)},install:function(e){e.component(na.name,na)}},ia=na,ra=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.ranged?n(\"div\",{directives:[{name:\"clickoutside\",rawName:\"v-clickoutside\",value:e.handleClose,expression:\"handleClose\"}],ref:\"reference\",staticClass:\"el-date-editor el-range-editor el-input__inner\",class:[\"el-date-editor--\"+e.type,e.pickerSize?\"el-range-editor--\"+e.pickerSize:\"\",e.pickerDisabled?\"is-disabled\":\"\",e.pickerVisible?\"is-active\":\"\"],on:{click:e.handleRangeClick,mouseenter:e.handleMouseEnter,mouseleave:function(t){e.showClose=!1},keydown:e.handleKeydown}},[n(\"i\",{class:[\"el-input__icon\",\"el-range__icon\",e.triggerClass]}),n(\"input\",e._b({staticClass:\"el-range-input\",attrs:{autocomplete:\"off\",placeholder:e.startPlaceholder,disabled:e.pickerDisabled,readonly:!e.editable||e.readonly,name:e.name&&e.name[0]},domProps:{value:e.displayValue&&e.displayValue[0]},on:{input:e.handleStartInput,change:e.handleStartChange,focus:e.handleFocus}},\"input\",e.firstInputId,!1)),e._t(\"range-separator\",[n(\"span\",{staticClass:\"el-range-separator\"},[e._v(e._s(e.rangeSeparator))])]),n(\"input\",e._b({staticClass:\"el-range-input\",attrs:{autocomplete:\"off\",placeholder:e.endPlaceholder,disabled:e.pickerDisabled,readonly:!e.editable||e.readonly,name:e.name&&e.name[1]},domProps:{value:e.displayValue&&e.displayValue[1]},on:{input:e.handleEndInput,change:e.handleEndChange,focus:e.handleFocus}},\"input\",e.secondInputId,!1)),e.haveTrigger?n(\"i\",{staticClass:\"el-input__icon el-range__close-icon\",class:[e.showClose?\"\"+e.clearIcon:\"\"],on:{click:e.handleClickIcon}}):e._e()],2):n(\"el-input\",e._b({directives:[{name:\"clickoutside\",rawName:\"v-clickoutside\",value:e.handleClose,expression:\"handleClose\"}],ref:\"reference\",staticClass:\"el-date-editor\",class:\"el-date-editor--\"+e.type,attrs:{readonly:!e.editable||e.readonly||\"dates\"===e.type||\"week\"===e.type,disabled:e.pickerDisabled,size:e.pickerSize,name:e.name,placeholder:e.placeholder,value:e.displayValue,validateEvent:!1},on:{focus:e.handleFocus,input:function(t){return e.userInput=t},change:e.handleChange},nativeOn:{keydown:function(t){return e.handleKeydown(t)},mouseenter:function(t){return e.handleMouseEnter(t)},mouseleave:function(t){e.showClose=!1}}},\"el-input\",e.firstInputId,!1),[n(\"i\",{staticClass:\"el-input__icon\",class:e.triggerClass,attrs:{slot:\"prefix\"},on:{click:e.handleFocus},slot:\"prefix\"}),e.haveTrigger?n(\"i\",{staticClass:\"el-input__icon\",class:[e.showClose?\"\"+e.clearIcon:\"\"],attrs:{slot:\"suffix\"},on:{click:e.handleClickIcon},slot:\"suffix\"}):e._e()])},aa=[];ra._withStripped=!0;var oa=n(0),sa={props:{appendToBody:q.a.props.appendToBody,offset:q.a.props.offset,boundariesPadding:q.a.props.boundariesPadding,arrowOffset:q.a.props.arrowOffset},methods:q.a.methods,data:function(){return xt()({visibleArrow:!0},q.a.data)},beforeDestroy:q.a.beforeDestroy},la={date:\"yyyy-MM-dd\",month:\"yyyy-MM\",datetime:\"yyyy-MM-dd HH:mm:ss\",time:\"HH:mm:ss\",week:\"yyyywWW\",timerange:\"HH:mm:ss\",daterange:\"yyyy-MM-dd\",monthrange:\"yyyy-MM\",datetimerange:\"yyyy-MM-dd HH:mm:ss\",year:\"yyyy\"},ca=[\"date\",\"datetime\",\"time\",\"time-select\",\"week\",\"month\",\"year\",\"daterange\",\"monthrange\",\"timerange\",\"datetimerange\",\"dates\"],ua=function(e,t){return\"timestamp\"===t?e.getTime():Object(oa[\"formatDate\"])(e,t)},da=function(e,t){return\"timestamp\"===t?new Date(Number(e)):Object(oa[\"parseDate\"])(e,t)},pa=function(e,t){if(Array.isArray(e)&&2===e.length){var n=e[0],i=e[1];if(n&&i)return[ua(n,t),ua(i,t)]}return\"\"},ha=function(e,t,n){if(Array.isArray(e)||(e=e.split(n)),2===e.length){var i=e[0],r=e[1];return[da(i,t),da(r,t)]}return[]},fa={default:{formatter:function(e){return e?\"\"+e:\"\"},parser:function(e){return void 0===e||\"\"===e?null:e}},week:{formatter:function(e,t){var n=Object(oa[\"getWeekNumber\"])(e),i=e.getMonth(),r=new Date(e);1===n&&11===i&&(r.setHours(0,0,0,0),r.setDate(r.getDate()+3-(r.getDay()+6)%7));var a=Object(oa[\"formatDate\"])(r,t);return a=/WW/.test(a)?a.replace(/WW/,n<10?\"0\"+n:n):a.replace(/W/,n),a},parser:function(e,t){return fa.date.parser(e,t)}},date:{formatter:ua,parser:da},datetime:{formatter:ua,parser:da},daterange:{formatter:pa,parser:ha},monthrange:{formatter:pa,parser:ha},datetimerange:{formatter:pa,parser:ha},timerange:{formatter:pa,parser:ha},time:{formatter:ua,parser:da},month:{formatter:ua,parser:da},year:{formatter:ua,parser:da},number:{formatter:function(e){return e?\"\"+e:\"\"},parser:function(e){var t=Number(e);return isNaN(e)?null:t}},dates:{formatter:function(e,t){return e.map((function(e){return ua(e,t)}))},parser:function(e,t){return(\"string\"===typeof e?e.split(\", \"):e).map((function(e){return e instanceof Date?e:da(e,t)}))}}},_a={left:\"bottom-start\",center:\"bottom\",right:\"bottom-end\"},ma=function(e,t,n){var i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:\"-\";if(!e)return null;var r=(fa[n]||fa[\"default\"]).parser,a=t||la[n];return r(e,a,i)},ga=function(e,t,n){if(!e)return null;var i=(fa[n]||fa[\"default\"]).formatter,r=t||la[n];return i(e,r)},ba=function(e,t){var n=function(e,t){var n=e instanceof Date,i=t instanceof Date;return n&&i?e.getTime()===t.getTime():!n&&!i&&e===t},i=e instanceof Array,r=t instanceof Array;return i&&r?e.length===t.length&&e.every((function(e,i){return n(e,t[i])})):!i&&!r&&n(e,t)},va=function(e){return\"string\"===typeof e||e instanceof String},Ea=function(e){return null===e||void 0===e||va(e)||Array.isArray(e)&&2===e.length&&e.every(va)},ya={mixins:[N.a,sa],inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},props:{size:String,format:String,valueFormat:String,readonly:Boolean,placeholder:String,startPlaceholder:String,endPlaceholder:String,prefixIcon:String,clearIcon:{type:String,default:\"el-icon-circle-close\"},name:{default:\"\",validator:Ea},disabled:Boolean,clearable:{type:Boolean,default:!0},id:{default:\"\",validator:Ea},popperClass:String,editable:{type:Boolean,default:!0},align:{type:String,default:\"left\"},value:{},defaultValue:{},defaultTime:{},rangeSeparator:{default:\"-\"},pickerOptions:{},unlinkPanels:Boolean,validateEvent:{type:Boolean,default:!0}},components:{ElInput:_.a},directives:{Clickoutside:U.a},data:function(){return{pickerVisible:!1,showClose:!1,userInput:null,valueOnOpen:null,unwatchPickerOptions:null}},watch:{pickerVisible:function(e){this.readonly||this.pickerDisabled||(e?(this.showPicker(),this.valueOnOpen=Array.isArray(this.value)?[].concat(this.value):this.value):(this.hidePicker(),this.emitChange(this.value),this.userInput=null,this.validateEvent&&this.dispatch(\"ElFormItem\",\"el.form.blur\"),this.$emit(\"blur\",this),this.blur()))},parsedValue:{immediate:!0,handler:function(e){this.picker&&(this.picker.value=e)}},defaultValue:function(e){this.picker&&(this.picker.defaultValue=e)},value:function(e,t){ba(e,t)||this.pickerVisible||!this.validateEvent||this.dispatch(\"ElFormItem\",\"el.form.change\",e)}},computed:{ranged:function(){return this.type.indexOf(\"range\")>-1},reference:function(){var e=this.$refs.reference;return e.$el||e},refInput:function(){return this.reference?[].slice.call(this.reference.querySelectorAll(\"input\")):[]},valueIsEmpty:function(){var e=this.value;if(Array.isArray(e)){for(var t=0,n=e.length;t<n;t++)if(e[t])return!1}else if(e)return!1;return!0},triggerClass:function(){return this.prefixIcon||(-1!==this.type.indexOf(\"time\")?\"el-icon-time\":\"el-icon-date\")},selectionMode:function(){return\"week\"===this.type?\"week\":\"month\"===this.type?\"month\":\"year\"===this.type?\"year\":\"dates\"===this.type?\"dates\":\"day\"},haveTrigger:function(){return\"undefined\"!==typeof this.showTrigger?this.showTrigger:-1!==ca.indexOf(this.type)},displayValue:function(){var e=ga(this.parsedValue,this.format,this.type,this.rangeSeparator);return Array.isArray(this.userInput)?[this.userInput[0]||e&&e[0]||\"\",this.userInput[1]||e&&e[1]||\"\"]:null!==this.userInput?this.userInput:e?\"dates\"===this.type?e.join(\", \"):e:\"\"},parsedValue:function(){if(!this.value)return this.value;if(\"time-select\"===this.type)return this.value;var e=Object(oa[\"isDateObject\"])(this.value)||Array.isArray(this.value)&&this.value.every(oa[\"isDateObject\"]);return e?this.value:this.valueFormat?ma(this.value,this.valueFormat,this.type,this.rangeSeparator)||this.value:Array.isArray(this.value)?this.value.map((function(e){return new Date(e)})):new Date(this.value)},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},pickerSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},pickerDisabled:function(){return this.disabled||(this.elForm||{}).disabled},firstInputId:function(){var e={},t=void 0;return t=this.ranged?this.id&&this.id[0]:this.id,t&&(e.id=t),e},secondInputId:function(){var e={},t=void 0;return this.ranged&&(t=this.id&&this.id[1]),t&&(e.id=t),e}},created:function(){this.popperOptions={boundariesPadding:0,gpuAcceleration:!1},this.placement=_a[this.align]||_a.left,this.$on(\"fieldReset\",this.handleFieldReset)},methods:{focus:function(){this.ranged?this.handleFocus():this.$refs.reference.focus()},blur:function(){this.refInput.forEach((function(e){return e.blur()}))},parseValue:function(e){var t=Object(oa[\"isDateObject\"])(e)||Array.isArray(e)&&e.every(oa[\"isDateObject\"]);return this.valueFormat&&!t&&ma(e,this.valueFormat,this.type,this.rangeSeparator)||e},formatToValue:function(e){var t=Object(oa[\"isDateObject\"])(e)||Array.isArray(e)&&e.every(oa[\"isDateObject\"]);return this.valueFormat&&t?ga(e,this.valueFormat,this.type,this.rangeSeparator):e},parseString:function(e){var t=Array.isArray(e)?this.type:this.type.replace(\"range\",\"\");return ma(e,this.format,t)},formatToString:function(e){var t=Array.isArray(e)?this.type:this.type.replace(\"range\",\"\");return ga(e,this.format,t)},handleMouseEnter:function(){this.readonly||this.pickerDisabled||!this.valueIsEmpty&&this.clearable&&(this.showClose=!0)},handleChange:function(){if(this.userInput){var e=this.parseString(this.displayValue);e&&(this.picker.value=e,this.isValidValue(e)&&(this.emitInput(e),this.userInput=null))}\"\"===this.userInput&&(this.emitInput(null),this.emitChange(null),this.userInput=null)},handleStartInput:function(e){this.userInput?this.userInput=[e.target.value,this.userInput[1]]:this.userInput=[e.target.value,null]},handleEndInput:function(e){this.userInput?this.userInput=[this.userInput[0],e.target.value]:this.userInput=[null,e.target.value]},handleStartChange:function(e){var t=this.parseString(this.userInput&&this.userInput[0]);if(t){this.userInput=[this.formatToString(t),this.displayValue[1]];var n=[t,this.picker.value&&this.picker.value[1]];this.picker.value=n,this.isValidValue(n)&&(this.emitInput(n),this.userInput=null)}},handleEndChange:function(e){var t=this.parseString(this.userInput&&this.userInput[1]);if(t){this.userInput=[this.displayValue[0],this.formatToString(t)];var n=[this.picker.value&&this.picker.value[0],t];this.picker.value=n,this.isValidValue(n)&&(this.emitInput(n),this.userInput=null)}},handleClickIcon:function(e){this.readonly||this.pickerDisabled||(this.showClose?(this.valueOnOpen=this.value,e.stopPropagation(),this.emitInput(null),this.emitChange(null),this.showClose=!1,this.picker&&\"function\"===typeof this.picker.handleClear&&this.picker.handleClear()):this.pickerVisible=!this.pickerVisible)},handleClose:function(){if(this.pickerVisible&&(this.pickerVisible=!1,\"dates\"===this.type)){var e=ma(this.valueOnOpen,this.valueFormat,this.type,this.rangeSeparator)||this.valueOnOpen;this.emitInput(e)}},handleFieldReset:function(e){this.userInput=\"\"===e?null:e},handleFocus:function(){var e=this.type;-1===ca.indexOf(e)||this.pickerVisible||(this.pickerVisible=!0),this.$emit(\"focus\",this)},handleKeydown:function(e){var t=this,n=e.keyCode;return 27===n?(this.pickerVisible=!1,void e.stopPropagation()):9!==n?13===n?((\"\"===this.userInput||this.isValidValue(this.parseString(this.displayValue)))&&(this.handleChange(),this.pickerVisible=this.picker.visible=!1,this.blur()),void e.stopPropagation()):void(this.userInput?e.stopPropagation():this.picker&&this.picker.handleKeydown&&this.picker.handleKeydown(e)):void(this.ranged?setTimeout((function(){-1===t.refInput.indexOf(document.activeElement)&&(t.pickerVisible=!1,t.blur(),e.stopPropagation())}),0):(this.handleChange(),this.pickerVisible=this.picker.visible=!1,this.blur(),e.stopPropagation()))},handleRangeClick:function(){var e=this.type;-1===ca.indexOf(e)||this.pickerVisible||(this.pickerVisible=!0),this.$emit(\"focus\",this)},hidePicker:function(){this.picker&&(this.picker.resetView&&this.picker.resetView(),this.pickerVisible=this.picker.visible=!1,this.destroyPopper())},showPicker:function(){var e=this;this.$isServer||(this.picker||this.mountPicker(),this.pickerVisible=this.picker.visible=!0,this.updatePopper(),this.picker.value=this.parsedValue,this.picker.resetView&&this.picker.resetView(),this.$nextTick((function(){e.picker.adjustSpinners&&e.picker.adjustSpinners()})))},mountPicker:function(){var e=this;this.picker=new Hi.a(this.panel).$mount(),this.picker.defaultValue=this.defaultValue,this.picker.defaultTime=this.defaultTime,this.picker.popperClass=this.popperClass,this.popperElm=this.picker.$el,this.picker.width=this.reference.getBoundingClientRect().width,this.picker.showTime=\"datetime\"===this.type||\"datetimerange\"===this.type,this.picker.selectionMode=this.selectionMode,this.picker.unlinkPanels=this.unlinkPanels,this.picker.arrowControl=this.arrowControl||this.timeArrowControl||!1,this.$watch(\"format\",(function(t){e.picker.format=t}));var t=function(){var t=e.pickerOptions;if(t&&t.selectableRange){var n=t.selectableRange,i=fa.datetimerange.parser,r=la.timerange;n=Array.isArray(n)?n:[n],e.picker.selectableRange=n.map((function(t){return i(t,r,e.rangeSeparator)}))}for(var a in t)t.hasOwnProperty(a)&&\"selectableRange\"!==a&&(e.picker[a]=t[a]);e.format&&(e.picker.format=e.format)};t(),this.unwatchPickerOptions=this.$watch(\"pickerOptions\",(function(){return t()}),{deep:!0}),this.$el.appendChild(this.picker.$el),this.picker.resetView&&this.picker.resetView(),this.picker.$on(\"dodestroy\",this.doDestroy),this.picker.$on(\"pick\",(function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];e.userInput=null,e.pickerVisible=e.picker.visible=n,e.emitInput(t),e.picker.resetView&&e.picker.resetView()})),this.picker.$on(\"select-range\",(function(t,n,i){0!==e.refInput.length&&(i&&\"min\"!==i?\"max\"===i&&(e.refInput[1].setSelectionRange(t,n),e.refInput[1].focus()):(e.refInput[0].setSelectionRange(t,n),e.refInput[0].focus()))}))},unmountPicker:function(){this.picker&&(this.picker.$destroy(),this.picker.$off(),\"function\"===typeof this.unwatchPickerOptions&&this.unwatchPickerOptions(),this.picker.$el.parentNode.removeChild(this.picker.$el))},emitChange:function(e){ba(e,this.valueOnOpen)||(this.$emit(\"change\",e),this.valueOnOpen=e,this.validateEvent&&this.dispatch(\"ElFormItem\",\"el.form.change\",e))},emitInput:function(e){var t=this.formatToValue(e);ba(this.value,t)||this.$emit(\"input\",t)},isValidValue:function(e){return this.picker||this.mountPicker(),!this.picker.isValidValue||e&&this.picker.isValidValue(e)}}},Sa=ya,Ca=s(Sa,ra,aa,!1,null,null,null);Ca.options.__file=\"packages/date-picker/src/picker.vue\";var Ta=Ca.exports,xa=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-zoom-in-top\"},on:{\"after-enter\":e.handleEnter,\"after-leave\":e.handleLeave}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-picker-panel el-date-picker el-popper\",class:[{\"has-sidebar\":e.$slots.sidebar||e.shortcuts,\"has-time\":e.showTime},e.popperClass]},[n(\"div\",{staticClass:\"el-picker-panel__body-wrapper\"},[e._t(\"sidebar\"),e.shortcuts?n(\"div\",{staticClass:\"el-picker-panel__sidebar\"},e._l(e.shortcuts,(function(t,i){return n(\"button\",{key:i,staticClass:\"el-picker-panel__shortcut\",attrs:{type:\"button\"},on:{click:function(n){e.handleShortcutClick(t)}}},[e._v(e._s(t.text))])})),0):e._e(),n(\"div\",{staticClass:\"el-picker-panel__body\"},[e.showTime?n(\"div\",{staticClass:\"el-date-picker__time-header\"},[n(\"span\",{staticClass:\"el-date-picker__editor-wrap\"},[n(\"el-input\",{attrs:{placeholder:e.t(\"el.datepicker.selectDate\"),value:e.visibleDate,size:\"small\"},on:{input:function(t){return e.userInputDate=t},change:e.handleVisibleDateChange}})],1),n(\"span\",{directives:[{name:\"clickoutside\",rawName:\"v-clickoutside\",value:e.handleTimePickClose,expression:\"handleTimePickClose\"}],staticClass:\"el-date-picker__editor-wrap\"},[n(\"el-input\",{ref:\"input\",attrs:{placeholder:e.t(\"el.datepicker.selectTime\"),value:e.visibleTime,size:\"small\"},on:{focus:function(t){e.timePickerVisible=!0},input:function(t){return e.userInputTime=t},change:e.handleVisibleTimeChange}}),n(\"time-picker\",{ref:\"timepicker\",attrs:{\"time-arrow-control\":e.arrowControl,visible:e.timePickerVisible},on:{pick:e.handleTimePick,mounted:e.proxyTimePickerDataProperties}})],1)]):e._e(),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"time\"!==e.currentView,expression:\"currentView !== 'time'\"}],staticClass:\"el-date-picker__header\",class:{\"el-date-picker__header--bordered\":\"year\"===e.currentView||\"month\"===e.currentView}},[n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-date-picker__prev-btn el-icon-d-arrow-left\",attrs:{type:\"button\",\"aria-label\":e.t(\"el.datepicker.prevYear\")},on:{click:e.prevYear}}),n(\"button\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"date\"===e.currentView,expression:\"currentView === 'date'\"}],staticClass:\"el-picker-panel__icon-btn el-date-picker__prev-btn el-icon-arrow-left\",attrs:{type:\"button\",\"aria-label\":e.t(\"el.datepicker.prevMonth\")},on:{click:e.prevMonth}}),n(\"span\",{staticClass:\"el-date-picker__header-label\",attrs:{role:\"button\"},on:{click:e.showYearPicker}},[e._v(e._s(e.yearLabel))]),n(\"span\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"date\"===e.currentView,expression:\"currentView === 'date'\"}],staticClass:\"el-date-picker__header-label\",class:{active:\"month\"===e.currentView},attrs:{role:\"button\"},on:{click:e.showMonthPicker}},[e._v(e._s(e.t(\"el.datepicker.month\"+(e.month+1))))]),n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-date-picker__next-btn el-icon-d-arrow-right\",attrs:{type:\"button\",\"aria-label\":e.t(\"el.datepicker.nextYear\")},on:{click:e.nextYear}}),n(\"button\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"date\"===e.currentView,expression:\"currentView === 'date'\"}],staticClass:\"el-picker-panel__icon-btn el-date-picker__next-btn el-icon-arrow-right\",attrs:{type:\"button\",\"aria-label\":e.t(\"el.datepicker.nextMonth\")},on:{click:e.nextMonth}})]),n(\"div\",{staticClass:\"el-picker-panel__content\"},[n(\"date-table\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"date\"===e.currentView,expression:\"currentView === 'date'\"}],attrs:{\"selection-mode\":e.selectionMode,\"first-day-of-week\":e.firstDayOfWeek,value:e.value,\"default-value\":e.defaultValue?new Date(e.defaultValue):null,date:e.date,\"cell-class-name\":e.cellClassName,\"disabled-date\":e.disabledDate},on:{pick:e.handleDatePick}}),n(\"year-table\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"year\"===e.currentView,expression:\"currentView === 'year'\"}],attrs:{value:e.value,\"default-value\":e.defaultValue?new Date(e.defaultValue):null,date:e.date,\"disabled-date\":e.disabledDate},on:{pick:e.handleYearPick}}),n(\"month-table\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"month\"===e.currentView,expression:\"currentView === 'month'\"}],attrs:{value:e.value,\"default-value\":e.defaultValue?new Date(e.defaultValue):null,date:e.date,\"disabled-date\":e.disabledDate},on:{pick:e.handleMonthPick}})],1)])],2),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.footerVisible&&\"date\"===e.currentView,expression:\"footerVisible && currentView === 'date'\"}],staticClass:\"el-picker-panel__footer\"},[n(\"el-button\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"dates\"!==e.selectionMode,expression:\"selectionMode !== 'dates'\"}],staticClass:\"el-picker-panel__link-btn\",attrs:{size:\"mini\",type:\"text\"},on:{click:e.changeToNow}},[e._v(\"\\n        \"+e._s(e.t(\"el.datepicker.now\"))+\"\\n      \")]),n(\"el-button\",{staticClass:\"el-picker-panel__link-btn\",attrs:{plain:\"\",size:\"mini\"},on:{click:e.confirm}},[e._v(\"\\n        \"+e._s(e.t(\"el.datepicker.confirm\"))+\"\\n      \")])],1)])])},wa=[];xa._withStripped=!0;var Oa=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-zoom-in-top\"},on:{\"after-leave\":function(t){e.$emit(\"dodestroy\")}}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-time-panel el-popper\",class:e.popperClass},[n(\"div\",{staticClass:\"el-time-panel__content\",class:{\"has-seconds\":e.showSeconds}},[n(\"time-spinner\",{ref:\"spinner\",attrs:{\"arrow-control\":e.useArrow,\"show-seconds\":e.showSeconds,\"am-pm-mode\":e.amPmMode,date:e.date},on:{change:e.handleChange,\"select-range\":e.setSelectionRange}})],1),n(\"div\",{staticClass:\"el-time-panel__footer\"},[n(\"button\",{staticClass:\"el-time-panel__btn cancel\",attrs:{type:\"button\"},on:{click:e.handleCancel}},[e._v(e._s(e.t(\"el.datepicker.cancel\")))]),n(\"button\",{staticClass:\"el-time-panel__btn\",class:{confirm:!e.disabled},attrs:{type:\"button\"},on:{click:function(t){e.handleConfirm()}}},[e._v(e._s(e.t(\"el.datepicker.confirm\")))])])])])},Na=[];Oa._withStripped=!0;var Ra=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-time-spinner\",class:{\"has-seconds\":e.showSeconds}},[e.arrowControl?e._e():[n(\"el-scrollbar\",{ref:\"hours\",staticClass:\"el-time-spinner__wrapper\",attrs:{\"wrap-style\":\"max-height: inherit;\",\"view-class\":\"el-time-spinner__list\",noresize:\"\",tag:\"ul\"},nativeOn:{mouseenter:function(t){e.emitSelectRange(\"hours\")},mousemove:function(t){e.adjustCurrentSpinner(\"hours\")}}},e._l(e.hoursList,(function(t,i){return n(\"li\",{key:i,staticClass:\"el-time-spinner__item\",class:{active:i===e.hours,disabled:t},on:{click:function(n){e.handleClick(\"hours\",{value:i,disabled:t})}}},[e._v(e._s((\"0\"+(e.amPmMode?i%12||12:i)).slice(-2))+e._s(e.amPm(i)))])})),0),n(\"el-scrollbar\",{ref:\"minutes\",staticClass:\"el-time-spinner__wrapper\",attrs:{\"wrap-style\":\"max-height: inherit;\",\"view-class\":\"el-time-spinner__list\",noresize:\"\",tag:\"ul\"},nativeOn:{mouseenter:function(t){e.emitSelectRange(\"minutes\")},mousemove:function(t){e.adjustCurrentSpinner(\"minutes\")}}},e._l(e.minutesList,(function(t,i){return n(\"li\",{key:i,staticClass:\"el-time-spinner__item\",class:{active:i===e.minutes,disabled:!t},on:{click:function(t){e.handleClick(\"minutes\",{value:i,disabled:!1})}}},[e._v(e._s((\"0\"+i).slice(-2)))])})),0),n(\"el-scrollbar\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.showSeconds,expression:\"showSeconds\"}],ref:\"seconds\",staticClass:\"el-time-spinner__wrapper\",attrs:{\"wrap-style\":\"max-height: inherit;\",\"view-class\":\"el-time-spinner__list\",noresize:\"\",tag:\"ul\"},nativeOn:{mouseenter:function(t){e.emitSelectRange(\"seconds\")},mousemove:function(t){e.adjustCurrentSpinner(\"seconds\")}}},e._l(60,(function(t,i){return n(\"li\",{key:i,staticClass:\"el-time-spinner__item\",class:{active:i===e.seconds},on:{click:function(t){e.handleClick(\"seconds\",{value:i,disabled:!1})}}},[e._v(e._s((\"0\"+i).slice(-2)))])})),0)],e.arrowControl?[n(\"div\",{staticClass:\"el-time-spinner__wrapper is-arrow\",on:{mouseenter:function(t){e.emitSelectRange(\"hours\")}}},[n(\"i\",{directives:[{name:\"repeat-click\",rawName:\"v-repeat-click\",value:e.decrease,expression:\"decrease\"}],staticClass:\"el-time-spinner__arrow el-icon-arrow-up\"}),n(\"i\",{directives:[{name:\"repeat-click\",rawName:\"v-repeat-click\",value:e.increase,expression:\"increase\"}],staticClass:\"el-time-spinner__arrow el-icon-arrow-down\"}),n(\"ul\",{ref:\"hours\",staticClass:\"el-time-spinner__list\"},e._l(e.arrowHourList,(function(t,i){return n(\"li\",{key:i,staticClass:\"el-time-spinner__item\",class:{active:t===e.hours,disabled:e.hoursList[t]}},[e._v(e._s(void 0===t?\"\":(\"0\"+(e.amPmMode?t%12||12:t)).slice(-2)+e.amPm(t)))])})),0)]),n(\"div\",{staticClass:\"el-time-spinner__wrapper is-arrow\",on:{mouseenter:function(t){e.emitSelectRange(\"minutes\")}}},[n(\"i\",{directives:[{name:\"repeat-click\",rawName:\"v-repeat-click\",value:e.decrease,expression:\"decrease\"}],staticClass:\"el-time-spinner__arrow el-icon-arrow-up\"}),n(\"i\",{directives:[{name:\"repeat-click\",rawName:\"v-repeat-click\",value:e.increase,expression:\"increase\"}],staticClass:\"el-time-spinner__arrow el-icon-arrow-down\"}),n(\"ul\",{ref:\"minutes\",staticClass:\"el-time-spinner__list\"},e._l(e.arrowMinuteList,(function(t,i){return n(\"li\",{key:i,staticClass:\"el-time-spinner__item\",class:{active:t===e.minutes}},[e._v(\"\\n          \"+e._s(void 0===t?\"\":(\"0\"+t).slice(-2))+\"\\n        \")])})),0)]),e.showSeconds?n(\"div\",{staticClass:\"el-time-spinner__wrapper is-arrow\",on:{mouseenter:function(t){e.emitSelectRange(\"seconds\")}}},[n(\"i\",{directives:[{name:\"repeat-click\",rawName:\"v-repeat-click\",value:e.decrease,expression:\"decrease\"}],staticClass:\"el-time-spinner__arrow el-icon-arrow-up\"}),n(\"i\",{directives:[{name:\"repeat-click\",rawName:\"v-repeat-click\",value:e.increase,expression:\"increase\"}],staticClass:\"el-time-spinner__arrow el-icon-arrow-down\"}),n(\"ul\",{ref:\"seconds\",staticClass:\"el-time-spinner__list\"},e._l(e.arrowSecondList,(function(t,i){return n(\"li\",{key:i,staticClass:\"el-time-spinner__item\",class:{active:t===e.seconds}},[e._v(\"\\n          \"+e._s(void 0===t?\"\":(\"0\"+t).slice(-2))+\"\\n        \")])})),0)]):e._e()]:e._e()],2)},ka=[];Ra._withStripped=!0;var Aa={components:{ElScrollbar:V.a},directives:{repeatClick:Mt},props:{date:{},defaultValue:{},showSeconds:{type:Boolean,default:!0},arrowControl:Boolean,amPmMode:{type:String,default:\"\"}},computed:{hours:function(){return this.date.getHours()},minutes:function(){return this.date.getMinutes()},seconds:function(){return this.date.getSeconds()},hoursList:function(){return Object(oa[\"getRangeHours\"])(this.selectableRange)},minutesList:function(){return Object(oa[\"getRangeMinutes\"])(this.selectableRange,this.hours)},arrowHourList:function(){var e=this.hours;return[e>0?e-1:void 0,e,e<23?e+1:void 0]},arrowMinuteList:function(){var e=this.minutes;return[e>0?e-1:void 0,e,e<59?e+1:void 0]},arrowSecondList:function(){var e=this.seconds;return[e>0?e-1:void 0,e,e<59?e+1:void 0]}},data:function(){return{selectableRange:[],currentScrollbar:null}},mounted:function(){var e=this;this.$nextTick((function(){!e.arrowControl&&e.bindScrollEvent()}))},methods:{increase:function(){this.scrollDown(1)},decrease:function(){this.scrollDown(-1)},modifyDateField:function(e,t){switch(e){case\"hours\":this.$emit(\"change\",Object(oa[\"modifyTime\"])(this.date,t,this.minutes,this.seconds));break;case\"minutes\":this.$emit(\"change\",Object(oa[\"modifyTime\"])(this.date,this.hours,t,this.seconds));break;case\"seconds\":this.$emit(\"change\",Object(oa[\"modifyTime\"])(this.date,this.hours,this.minutes,t));break}},handleClick:function(e,t){var n=t.value,i=t.disabled;i||(this.modifyDateField(e,n),this.emitSelectRange(e),this.adjustSpinner(e,n))},emitSelectRange:function(e){\"hours\"===e?this.$emit(\"select-range\",0,2):\"minutes\"===e?this.$emit(\"select-range\",3,5):\"seconds\"===e&&this.$emit(\"select-range\",6,8),this.currentScrollbar=e},bindScrollEvent:function(){var e=this,t=function(t){e.$refs[t].wrap.onscroll=function(n){e.handleScroll(t,n)}};t(\"hours\"),t(\"minutes\"),t(\"seconds\")},handleScroll:function(e){var t=Math.min(Math.round((this.$refs[e].wrap.scrollTop-(.5*this.scrollBarHeight(e)-10)/this.typeItemHeight(e)+3)/this.typeItemHeight(e)),\"hours\"===e?23:59);this.modifyDateField(e,t)},adjustSpinners:function(){this.adjustSpinner(\"hours\",this.hours),this.adjustSpinner(\"minutes\",this.minutes),this.adjustSpinner(\"seconds\",this.seconds)},adjustCurrentSpinner:function(e){this.adjustSpinner(e,this[e])},adjustSpinner:function(e,t){if(!this.arrowControl){var n=this.$refs[e].wrap;n&&(n.scrollTop=Math.max(0,t*this.typeItemHeight(e)))}},scrollDown:function(e){var t=this;this.currentScrollbar||this.emitSelectRange(\"hours\");var n=this.currentScrollbar,i=this.hoursList,r=this[n];if(\"hours\"===this.currentScrollbar){var a=Math.abs(e);e=e>0?1:-1;var o=i.length;while(o--&&a)r=(r+e+i.length)%i.length,i[r]||a--;if(i[r])return}else r=(r+e+60)%60;this.modifyDateField(n,r),this.adjustSpinner(n,r),this.$nextTick((function(){return t.emitSelectRange(t.currentScrollbar)}))},amPm:function(e){var t=\"a\"===this.amPmMode.toLowerCase();if(!t)return\"\";var n=\"A\"===this.amPmMode,i=e<12?\" am\":\" pm\";return n&&(i=i.toUpperCase()),i},typeItemHeight:function(e){return this.$refs[e].$el.querySelector(\"li\").offsetHeight},scrollBarHeight:function(e){return this.$refs[e].$el.offsetHeight}}},Da=Aa,Ia=s(Da,Ra,ka,!1,null,null,null);Ia.options.__file=\"packages/date-picker/src/basic/time-spinner.vue\";var Ma=Ia.exports,La={mixins:[g.a],components:{TimeSpinner:Ma},props:{visible:Boolean,timeArrowControl:Boolean},watch:{visible:function(e){var t=this;e?(this.oldValue=this.value,this.$nextTick((function(){return t.$refs.spinner.emitSelectRange(\"hours\")}))):this.needInitAdjust=!0},value:function(e){var t=this,n=void 0;e instanceof Date?n=Object(oa[\"limitTimeRange\"])(e,this.selectableRange,this.format):e||(n=this.defaultValue?new Date(this.defaultValue):new Date),this.date=n,this.visible&&this.needInitAdjust&&(this.$nextTick((function(e){return t.adjustSpinners()})),this.needInitAdjust=!1)},selectableRange:function(e){this.$refs.spinner.selectableRange=e},defaultValue:function(e){Object(oa[\"isDate\"])(this.value)||(this.date=e?new Date(e):new Date)}},data:function(){return{popperClass:\"\",format:\"HH:mm:ss\",value:\"\",defaultValue:null,date:new Date,oldValue:new Date,selectableRange:[],selectionRange:[0,2],disabled:!1,arrowControl:!1,needInitAdjust:!0}},computed:{showSeconds:function(){return-1!==(this.format||\"\").indexOf(\"ss\")},useArrow:function(){return this.arrowControl||this.timeArrowControl||!1},amPmMode:function(){return-1!==(this.format||\"\").indexOf(\"A\")?\"A\":-1!==(this.format||\"\").indexOf(\"a\")?\"a\":\"\"}},methods:{handleCancel:function(){this.$emit(\"pick\",this.oldValue,!1)},handleChange:function(e){this.visible&&(this.date=Object(oa[\"clearMilliseconds\"])(e),this.isValidValue(this.date)&&this.$emit(\"pick\",this.date,!0))},setSelectionRange:function(e,t){this.$emit(\"select-range\",e,t),this.selectionRange=[e,t]},handleConfirm:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments[1];if(!t){var n=Object(oa[\"clearMilliseconds\"])(Object(oa[\"limitTimeRange\"])(this.date,this.selectableRange,this.format));this.$emit(\"pick\",n,e,t)}},handleKeydown:function(e){var t=e.keyCode,n={38:-1,40:1,37:-1,39:1};if(37===t||39===t){var i=n[t];return this.changeSelectionRange(i),void e.preventDefault()}if(38===t||40===t){var r=n[t];return this.$refs.spinner.scrollDown(r),void e.preventDefault()}},isValidValue:function(e){return Object(oa[\"timeWithinRange\"])(e,this.selectableRange,this.format)},adjustSpinners:function(){return this.$refs.spinner.adjustSpinners()},changeSelectionRange:function(e){var t=[0,3].concat(this.showSeconds?[6]:[]),n=[\"hours\",\"minutes\"].concat(this.showSeconds?[\"seconds\"]:[]),i=t.indexOf(this.selectionRange[0]),r=(i+e+t.length)%t.length;this.$refs.spinner.emitSelectRange(n[r])}},mounted:function(){var e=this;this.$nextTick((function(){return e.handleConfirm(!0,!0)})),this.$emit(\"mounted\")}},Pa=La,Fa=s(Pa,Oa,Na,!1,null,null,null);Fa.options.__file=\"packages/date-picker/src/panel/time.vue\";var Ba=Fa.exports,Ua=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"table\",{staticClass:\"el-year-table\",on:{click:e.handleYearTableClick}},[n(\"tbody\",[n(\"tr\",[n(\"td\",{staticClass:\"available\",class:e.getCellStyle(e.startYear+0)},[n(\"a\",{staticClass:\"cell\"},[e._v(e._s(e.startYear))])]),n(\"td\",{staticClass:\"available\",class:e.getCellStyle(e.startYear+1)},[n(\"a\",{staticClass:\"cell\"},[e._v(e._s(e.startYear+1))])]),n(\"td\",{staticClass:\"available\",class:e.getCellStyle(e.startYear+2)},[n(\"a\",{staticClass:\"cell\"},[e._v(e._s(e.startYear+2))])]),n(\"td\",{staticClass:\"available\",class:e.getCellStyle(e.startYear+3)},[n(\"a\",{staticClass:\"cell\"},[e._v(e._s(e.startYear+3))])])]),n(\"tr\",[n(\"td\",{staticClass:\"available\",class:e.getCellStyle(e.startYear+4)},[n(\"a\",{staticClass:\"cell\"},[e._v(e._s(e.startYear+4))])]),n(\"td\",{staticClass:\"available\",class:e.getCellStyle(e.startYear+5)},[n(\"a\",{staticClass:\"cell\"},[e._v(e._s(e.startYear+5))])]),n(\"td\",{staticClass:\"available\",class:e.getCellStyle(e.startYear+6)},[n(\"a\",{staticClass:\"cell\"},[e._v(e._s(e.startYear+6))])]),n(\"td\",{staticClass:\"available\",class:e.getCellStyle(e.startYear+7)},[n(\"a\",{staticClass:\"cell\"},[e._v(e._s(e.startYear+7))])])]),n(\"tr\",[n(\"td\",{staticClass:\"available\",class:e.getCellStyle(e.startYear+8)},[n(\"a\",{staticClass:\"cell\"},[e._v(e._s(e.startYear+8))])]),n(\"td\",{staticClass:\"available\",class:e.getCellStyle(e.startYear+9)},[n(\"a\",{staticClass:\"cell\"},[e._v(e._s(e.startYear+9))])]),n(\"td\"),n(\"td\")])])])},$a=[];Ua._withStripped=!0;var ja=function(e){var t=Object(oa[\"getDayCountOfYear\"])(e),n=new Date(e,0,1);return Object(oa[\"range\"])(t).map((function(e){return Object(oa[\"nextDate\"])(n,e)}))},Ga={props:{disabledDate:{},value:{},defaultValue:{validator:function(e){return null===e||e instanceof Date&&Object(oa[\"isDate\"])(e)}},date:{}},computed:{startYear:function(){return 10*Math.floor(this.date.getFullYear()/10)}},methods:{getCellStyle:function(e){var t={},n=new Date;return t.disabled=\"function\"===typeof this.disabledDate&&ja(e).every(this.disabledDate),t.current=Object(b[\"arrayFindIndex\"])(Object(b[\"coerceTruthyValueToArray\"])(this.value),(function(t){return t.getFullYear()===e}))>=0,t.today=n.getFullYear()===e,t.default=this.defaultValue&&this.defaultValue.getFullYear()===e,t},handleYearTableClick:function(e){var t=e.target;if(\"A\"===t.tagName){if(Object(Be[\"hasClass\"])(t.parentNode,\"disabled\"))return;var n=t.textContent||t.innerText;this.$emit(\"pick\",Number(n))}}}},qa=Ga,Ha=s(qa,Ua,$a,!1,null,null,null);Ha.options.__file=\"packages/date-picker/src/basic/year-table.vue\";var Va=Ha.exports,za=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"table\",{staticClass:\"el-month-table\",on:{click:e.handleMonthTableClick,mousemove:e.handleMouseMove}},[n(\"tbody\",e._l(e.rows,(function(t,i){return n(\"tr\",{key:i},e._l(t,(function(t,i){return n(\"td\",{key:i,class:e.getCellStyle(t)},[n(\"div\",[n(\"a\",{staticClass:\"cell\"},[e._v(e._s(e.t(\"el.datepicker.months.\"+e.months[t.text])))])])])})),0)})),0)])},Ya=[];za._withStripped=!0;var Wa=function(e,t){var n=Object(oa[\"getDayCountOfMonth\"])(e,t),i=new Date(e,t,1);return Object(oa[\"range\"])(n).map((function(e){return Object(oa[\"nextDate\"])(i,e)}))},Ka=function(e){return new Date(e.getFullYear(),e.getMonth())},Qa=function(e){return\"number\"===typeof e||\"string\"===typeof e?Ka(new Date(e)).getTime():e instanceof Date?Ka(e).getTime():NaN},Xa={props:{disabledDate:{},value:{},selectionMode:{default:\"month\"},minDate:{},maxDate:{},defaultValue:{validator:function(e){return null===e||Object(oa[\"isDate\"])(e)||Array.isArray(e)&&e.every(oa[\"isDate\"])}},date:{},rangeState:{default:function(){return{endDate:null,selecting:!1}}}},mixins:[g.a],watch:{\"rangeState.endDate\":function(e){this.markRange(this.minDate,e)},minDate:function(e,t){Qa(e)!==Qa(t)&&this.markRange(this.minDate,this.maxDate)},maxDate:function(e,t){Qa(e)!==Qa(t)&&this.markRange(this.minDate,this.maxDate)}},data:function(){return{months:[\"jan\",\"feb\",\"mar\",\"apr\",\"may\",\"jun\",\"jul\",\"aug\",\"sep\",\"oct\",\"nov\",\"dec\"],tableRows:[[],[],[]],lastRow:null,lastColumn:null}},methods:{cellMatchesDate:function(e,t){var n=new Date(t);return this.date.getFullYear()===n.getFullYear()&&Number(e.text)===n.getMonth()},getCellStyle:function(e){var t=this,n={},i=this.date.getFullYear(),r=new Date,a=e.text,o=this.defaultValue?Array.isArray(this.defaultValue)?this.defaultValue:[this.defaultValue]:[];return n.disabled=\"function\"===typeof this.disabledDate&&Wa(i,a).every(this.disabledDate),n.current=Object(b[\"arrayFindIndex\"])(Object(b[\"coerceTruthyValueToArray\"])(this.value),(function(e){return e.getFullYear()===i&&e.getMonth()===a}))>=0,n.today=r.getFullYear()===i&&r.getMonth()===a,n.default=o.some((function(n){return t.cellMatchesDate(e,n)})),e.inRange&&(n[\"in-range\"]=!0,e.start&&(n[\"start-date\"]=!0),e.end&&(n[\"end-date\"]=!0)),n},getMonthOfCell:function(e){var t=this.date.getFullYear();return new Date(t,e,1)},markRange:function(e,t){e=Qa(e),t=Qa(t)||e;var n=[Math.min(e,t),Math.max(e,t)];e=n[0],t=n[1];for(var i=this.rows,r=0,a=i.length;r<a;r++)for(var o=i[r],s=0,l=o.length;s<l;s++){var c=o[s],u=4*r+s,d=new Date(this.date.getFullYear(),u).getTime();c.inRange=e&&d>=e&&d<=t,c.start=e&&d===e,c.end=t&&d===t}},handleMouseMove:function(e){if(this.rangeState.selecting){var t=e.target;if(\"A\"===t.tagName&&(t=t.parentNode.parentNode),\"DIV\"===t.tagName&&(t=t.parentNode),\"TD\"===t.tagName){var n=t.parentNode.rowIndex,i=t.cellIndex;this.rows[n][i].disabled||n===this.lastRow&&i===this.lastColumn||(this.lastRow=n,this.lastColumn=i,this.$emit(\"changerange\",{minDate:this.minDate,maxDate:this.maxDate,rangeState:{selecting:!0,endDate:this.getMonthOfCell(4*n+i)}}))}}},handleMonthTableClick:function(e){var t=e.target;if(\"A\"===t.tagName&&(t=t.parentNode.parentNode),\"DIV\"===t.tagName&&(t=t.parentNode),\"TD\"===t.tagName&&!Object(Be[\"hasClass\"])(t,\"disabled\")){var n=t.cellIndex,i=t.parentNode.rowIndex,r=4*i+n,a=this.getMonthOfCell(r);\"range\"===this.selectionMode?this.rangeState.selecting?(a>=this.minDate?this.$emit(\"pick\",{minDate:this.minDate,maxDate:a}):this.$emit(\"pick\",{minDate:a,maxDate:this.minDate}),this.rangeState.selecting=!1):(this.$emit(\"pick\",{minDate:a,maxDate:null}),this.rangeState.selecting=!0):this.$emit(\"pick\",r)}}},computed:{rows:function(){for(var e=this,t=this.tableRows,n=this.disabledDate,i=[],r=Qa(new Date),a=0;a<3;a++)for(var o=t[a],s=function(t){var s=o[t];s||(s={row:a,column:t,type:\"normal\",inRange:!1,start:!1,end:!1}),s.type=\"normal\";var l=4*a+t,c=new Date(e.date.getFullYear(),l).getTime();s.inRange=c>=Qa(e.minDate)&&c<=Qa(e.maxDate),s.start=e.minDate&&c===Qa(e.minDate),s.end=e.maxDate&&c===Qa(e.maxDate);var u=c===r;u&&(s.type=\"today\"),s.text=l;var d=new Date(c);s.disabled=\"function\"===typeof n&&n(d),s.selected=Object(b[\"arrayFind\"])(i,(function(e){return e.getTime()===d.getTime()})),e.$set(o,t,s)},l=0;l<4;l++)s(l);return t}}},Za=Xa,Ja=s(Za,za,Ya,!1,null,null,null);Ja.options.__file=\"packages/date-picker/src/basic/month-table.vue\";var eo=Ja.exports,to=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"table\",{staticClass:\"el-date-table\",class:{\"is-week-mode\":\"week\"===e.selectionMode},attrs:{cellspacing:\"0\",cellpadding:\"0\"},on:{click:e.handleClick,mousemove:e.handleMouseMove}},[n(\"tbody\",[n(\"tr\",[e.showWeekNumber?n(\"th\",[e._v(e._s(e.t(\"el.datepicker.week\")))]):e._e(),e._l(e.WEEKS,(function(t,i){return n(\"th\",{key:i},[e._v(e._s(e.t(\"el.datepicker.weeks.\"+t)))])}))],2),e._l(e.rows,(function(t,i){return n(\"tr\",{key:i,staticClass:\"el-date-table__row\",class:{current:e.isWeekActive(t[1])}},e._l(t,(function(t,i){return n(\"td\",{key:i,class:e.getCellClasses(t)},[n(\"div\",[n(\"span\",[e._v(\"\\n          \"+e._s(t.text)+\"\\n        \")])])])})),0)}))],2)])},no=[];to._withStripped=!0;var io=[\"sun\",\"mon\",\"tue\",\"wed\",\"thu\",\"fri\",\"sat\"],ro=function(e){return\"number\"===typeof e||\"string\"===typeof e?Object(oa[\"clearTime\"])(new Date(e)).getTime():e instanceof Date?Object(oa[\"clearTime\"])(e).getTime():NaN},ao=function(e,t){var n=\"function\"===typeof t?Object(b[\"arrayFindIndex\"])(e,t):e.indexOf(t);return n>=0?[].concat(e.slice(0,n),e.slice(n+1)):e},oo={mixins:[g.a],props:{firstDayOfWeek:{default:7,type:Number,validator:function(e){return e>=1&&e<=7}},value:{},defaultValue:{validator:function(e){return null===e||Object(oa[\"isDate\"])(e)||Array.isArray(e)&&e.every(oa[\"isDate\"])}},date:{},selectionMode:{default:\"day\"},showWeekNumber:{type:Boolean,default:!1},disabledDate:{},cellClassName:{},minDate:{},maxDate:{},rangeState:{default:function(){return{endDate:null,selecting:!1}}}},computed:{offsetDay:function(){var e=this.firstDayOfWeek;return e>3?7-e:-e},WEEKS:function(){var e=this.firstDayOfWeek;return io.concat(io).slice(e,e+7)},year:function(){return this.date.getFullYear()},month:function(){return this.date.getMonth()},startDate:function(){return Object(oa[\"getStartDateOfMonth\"])(this.year,this.month)},rows:function(){var e=this,t=new Date(this.year,this.month,1),n=Object(oa[\"getFirstDayOfMonth\"])(t),i=Object(oa[\"getDayCountOfMonth\"])(t.getFullYear(),t.getMonth()),r=Object(oa[\"getDayCountOfMonth\"])(t.getFullYear(),0===t.getMonth()?11:t.getMonth()-1);n=0===n?7:n;for(var a=this.offsetDay,o=this.tableRows,s=1,l=this.startDate,c=this.disabledDate,u=this.cellClassName,d=\"dates\"===this.selectionMode?Object(b[\"coerceTruthyValueToArray\"])(this.value):[],p=ro(new Date),h=0;h<6;h++){var f=o[h];this.showWeekNumber&&(f[0]||(f[0]={type:\"week\",text:Object(oa[\"getWeekNumber\"])(Object(oa[\"nextDate\"])(l,7*h+1))}));for(var _=function(t){var o=f[e.showWeekNumber?t+1:t];o||(o={row:h,column:t,type:\"normal\",inRange:!1,start:!1,end:!1}),o.type=\"normal\";var _=7*h+t,m=Object(oa[\"nextDate\"])(l,_-a).getTime();o.inRange=m>=ro(e.minDate)&&m<=ro(e.maxDate),o.start=e.minDate&&m===ro(e.minDate),o.end=e.maxDate&&m===ro(e.maxDate);var g=m===p;if(g&&(o.type=\"today\"),h>=0&&h<=1){var v=n+a<0?7+n+a:n+a;t+7*h>=v?o.text=s++:(o.text=r-(v-t%7)+1+7*h,o.type=\"prev-month\")}else s<=i?o.text=s++:(o.text=s++-i,o.type=\"next-month\");var E=new Date(m);o.disabled=\"function\"===typeof c&&c(E),o.selected=Object(b[\"arrayFind\"])(d,(function(e){return e.getTime()===E.getTime()})),o.customClass=\"function\"===typeof u&&u(E),e.$set(f,e.showWeekNumber?t+1:t,o)},m=0;m<7;m++)_(m);if(\"week\"===this.selectionMode){var g=this.showWeekNumber?1:0,v=this.showWeekNumber?7:6,E=this.isWeekActive(f[g+1]);f[g].inRange=E,f[g].start=E,f[v].inRange=E,f[v].end=E}}return o}},watch:{\"rangeState.endDate\":function(e){this.markRange(this.minDate,e)},minDate:function(e,t){ro(e)!==ro(t)&&this.markRange(this.minDate,this.maxDate)},maxDate:function(e,t){ro(e)!==ro(t)&&this.markRange(this.minDate,this.maxDate)}},data:function(){return{tableRows:[[],[],[],[],[],[]],lastRow:null,lastColumn:null}},methods:{cellMatchesDate:function(e,t){var n=new Date(t);return this.year===n.getFullYear()&&this.month===n.getMonth()&&Number(e.text)===n.getDate()},getCellClasses:function(e){var t=this,n=this.selectionMode,i=this.defaultValue?Array.isArray(this.defaultValue)?this.defaultValue:[this.defaultValue]:[],r=[];return\"normal\"!==e.type&&\"today\"!==e.type||e.disabled?r.push(e.type):(r.push(\"available\"),\"today\"===e.type&&r.push(\"today\")),\"normal\"===e.type&&i.some((function(n){return t.cellMatchesDate(e,n)}))&&r.push(\"default\"),\"day\"!==n||\"normal\"!==e.type&&\"today\"!==e.type||!this.cellMatchesDate(e,this.value)||r.push(\"current\"),!e.inRange||\"normal\"!==e.type&&\"today\"!==e.type&&\"week\"!==this.selectionMode||(r.push(\"in-range\"),e.start&&r.push(\"start-date\"),e.end&&r.push(\"end-date\")),e.disabled&&r.push(\"disabled\"),e.selected&&r.push(\"selected\"),e.customClass&&r.push(e.customClass),r.join(\" \")},getDateOfCell:function(e,t){var n=7*e+(t-(this.showWeekNumber?1:0))-this.offsetDay;return Object(oa[\"nextDate\"])(this.startDate,n)},isWeekActive:function(e){if(\"week\"!==this.selectionMode)return!1;var t=new Date(this.year,this.month,1),n=t.getFullYear(),i=t.getMonth();if(\"prev-month\"===e.type&&(t.setMonth(0===i?11:i-1),t.setFullYear(0===i?n-1:n)),\"next-month\"===e.type&&(t.setMonth(11===i?0:i+1),t.setFullYear(11===i?n+1:n)),t.setDate(parseInt(e.text,10)),Object(oa[\"isDate\"])(this.value)){var r=(this.value.getDay()-this.firstDayOfWeek+7)%7-1,a=Object(oa[\"prevDate\"])(this.value,r);return a.getTime()===t.getTime()}return!1},markRange:function(e,t){e=ro(e),t=ro(t)||e;var n=[Math.min(e,t),Math.max(e,t)];e=n[0],t=n[1];for(var i=this.startDate,r=this.rows,a=0,o=r.length;a<o;a++)for(var s=r[a],l=0,c=s.length;l<c;l++)if(!this.showWeekNumber||0!==l){var u=s[l],d=7*a+l+(this.showWeekNumber?-1:0),p=Object(oa[\"nextDate\"])(i,d-this.offsetDay).getTime();u.inRange=e&&p>=e&&p<=t,u.start=e&&p===e,u.end=t&&p===t}},handleMouseMove:function(e){if(this.rangeState.selecting){var t=e.target;if(\"SPAN\"===t.tagName&&(t=t.parentNode.parentNode),\"DIV\"===t.tagName&&(t=t.parentNode),\"TD\"===t.tagName){var n=t.parentNode.rowIndex-1,i=t.cellIndex;this.rows[n][i].disabled||n===this.lastRow&&i===this.lastColumn||(this.lastRow=n,this.lastColumn=i,this.$emit(\"changerange\",{minDate:this.minDate,maxDate:this.maxDate,rangeState:{selecting:!0,endDate:this.getDateOfCell(n,i)}}))}}},handleClick:function(e){var t=e.target;if(\"SPAN\"===t.tagName&&(t=t.parentNode.parentNode),\"DIV\"===t.tagName&&(t=t.parentNode),\"TD\"===t.tagName){var n=t.parentNode.rowIndex-1,i=\"week\"===this.selectionMode?1:t.cellIndex,r=this.rows[n][i];if(!r.disabled&&\"week\"!==r.type){var a=this.getDateOfCell(n,i);if(\"range\"===this.selectionMode)this.rangeState.selecting?(a>=this.minDate?this.$emit(\"pick\",{minDate:this.minDate,maxDate:a}):this.$emit(\"pick\",{minDate:a,maxDate:this.minDate}),this.rangeState.selecting=!1):(this.$emit(\"pick\",{minDate:a,maxDate:null}),this.rangeState.selecting=!0);else if(\"day\"===this.selectionMode)this.$emit(\"pick\",a);else if(\"week\"===this.selectionMode){var o=Object(oa[\"getWeekNumber\"])(a),s=a.getFullYear()+\"w\"+o;this.$emit(\"pick\",{year:a.getFullYear(),week:o,value:s,date:a})}else if(\"dates\"===this.selectionMode){var l=this.value||[],c=r.selected?ao(l,(function(e){return e.getTime()===a.getTime()})):[].concat(l,[a]);this.$emit(\"pick\",c)}}}}}},so=oo,lo=s(so,to,no,!1,null,null,null);lo.options.__file=\"packages/date-picker/src/basic/date-table.vue\";var co=lo.exports,uo={mixins:[g.a],directives:{Clickoutside:U.a},watch:{showTime:function(e){var t=this;e&&this.$nextTick((function(e){var n=t.$refs.input.$el;n&&(t.pickerWidth=n.getBoundingClientRect().width+10)}))},value:function(e){\"dates\"===this.selectionMode&&this.value||(Object(oa[\"isDate\"])(e)?this.date=new Date(e):this.date=this.getDefaultValue())},defaultValue:function(e){Object(oa[\"isDate\"])(this.value)||(this.date=e?new Date(e):new Date)},timePickerVisible:function(e){var t=this;e&&this.$nextTick((function(){return t.$refs.timepicker.adjustSpinners()}))},selectionMode:function(e){\"month\"===e?\"year\"===this.currentView&&\"month\"===this.currentView||(this.currentView=\"month\"):\"dates\"===e&&(this.currentView=\"date\")}},methods:{proxyTimePickerDataProperties:function(){var e=this,t=function(t){e.$refs.timepicker.format=t},n=function(t){e.$refs.timepicker.value=t},i=function(t){e.$refs.timepicker.date=t},r=function(t){e.$refs.timepicker.selectableRange=t};this.$watch(\"value\",n),this.$watch(\"date\",i),this.$watch(\"selectableRange\",r),t(this.timeFormat),n(this.value),i(this.date),r(this.selectableRange)},handleClear:function(){this.date=this.getDefaultValue(),this.$emit(\"pick\",null)},emit:function(e){for(var t=this,n=arguments.length,i=Array(n>1?n-1:0),r=1;r<n;r++)i[r-1]=arguments[r];if(e)if(Array.isArray(e)){var a=e.map((function(e){return t.showTime?Object(oa[\"clearMilliseconds\"])(e):Object(oa[\"clearTime\"])(e)}));this.$emit.apply(this,[\"pick\",a].concat(i))}else this.$emit.apply(this,[\"pick\",this.showTime?Object(oa[\"clearMilliseconds\"])(e):Object(oa[\"clearTime\"])(e)].concat(i));else this.$emit.apply(this,[\"pick\",e].concat(i));this.userInputDate=null,this.userInputTime=null},showMonthPicker:function(){this.currentView=\"month\"},showYearPicker:function(){this.currentView=\"year\"},prevMonth:function(){this.date=Object(oa[\"prevMonth\"])(this.date)},nextMonth:function(){this.date=Object(oa[\"nextMonth\"])(this.date)},prevYear:function(){\"year\"===this.currentView?this.date=Object(oa[\"prevYear\"])(this.date,10):this.date=Object(oa[\"prevYear\"])(this.date)},nextYear:function(){\"year\"===this.currentView?this.date=Object(oa[\"nextYear\"])(this.date,10):this.date=Object(oa[\"nextYear\"])(this.date)},handleShortcutClick:function(e){e.onClick&&e.onClick(this)},handleTimePick:function(e,t,n){if(Object(oa[\"isDate\"])(e)){var i=this.value?Object(oa[\"modifyTime\"])(this.value,e.getHours(),e.getMinutes(),e.getSeconds()):Object(oa[\"modifyWithTimeString\"])(this.getDefaultValue(),this.defaultTime);this.date=i,this.emit(this.date,!0)}else this.emit(e,!0);n||(this.timePickerVisible=t)},handleTimePickClose:function(){this.timePickerVisible=!1},handleMonthPick:function(e){\"month\"===this.selectionMode?(this.date=Object(oa[\"modifyDate\"])(this.date,this.year,e,1),this.emit(this.date)):(this.date=Object(oa[\"changeYearMonthAndClampDate\"])(this.date,this.year,e),this.currentView=\"date\")},handleDatePick:function(e){if(\"day\"===this.selectionMode){var t=this.value?Object(oa[\"modifyDate\"])(this.value,e.getFullYear(),e.getMonth(),e.getDate()):Object(oa[\"modifyWithTimeString\"])(e,this.defaultTime);this.checkDateWithinRange(t)||(t=Object(oa[\"modifyDate\"])(this.selectableRange[0][0],e.getFullYear(),e.getMonth(),e.getDate())),this.date=t,this.emit(this.date,this.showTime)}else\"week\"===this.selectionMode?this.emit(e.date):\"dates\"===this.selectionMode&&this.emit(e,!0)},handleYearPick:function(e){\"year\"===this.selectionMode?(this.date=Object(oa[\"modifyDate\"])(this.date,e,0,1),this.emit(this.date)):(this.date=Object(oa[\"changeYearMonthAndClampDate\"])(this.date,e,this.month),this.currentView=\"month\")},changeToNow:function(){this.disabledDate&&this.disabledDate(new Date)||!this.checkDateWithinRange(new Date)||(this.date=new Date,this.emit(this.date))},confirm:function(){if(\"dates\"===this.selectionMode)this.emit(this.value);else{var e=this.value?this.value:Object(oa[\"modifyWithTimeString\"])(this.getDefaultValue(),this.defaultTime);this.date=new Date(e),this.emit(e)}},resetView:function(){\"month\"===this.selectionMode?this.currentView=\"month\":\"year\"===this.selectionMode?this.currentView=\"year\":this.currentView=\"date\"},handleEnter:function(){document.body.addEventListener(\"keydown\",this.handleKeydown)},handleLeave:function(){this.$emit(\"dodestroy\"),document.body.removeEventListener(\"keydown\",this.handleKeydown)},handleKeydown:function(e){var t=e.keyCode,n=[38,40,37,39];this.visible&&!this.timePickerVisible&&(-1!==n.indexOf(t)&&(this.handleKeyControl(t),e.stopPropagation(),e.preventDefault()),13===t&&null===this.userInputDate&&null===this.userInputTime&&this.emit(this.date,!1))},handleKeyControl:function(e){var t={year:{38:-4,40:4,37:-1,39:1,offset:function(e,t){return e.setFullYear(e.getFullYear()+t)}},month:{38:-4,40:4,37:-1,39:1,offset:function(e,t){return e.setMonth(e.getMonth()+t)}},week:{38:-1,40:1,37:-1,39:1,offset:function(e,t){return e.setDate(e.getDate()+7*t)}},day:{38:-7,40:7,37:-1,39:1,offset:function(e,t){return e.setDate(e.getDate()+t)}}},n=this.selectionMode,i=31536e6,r=this.date.getTime(),a=new Date(this.date.getTime());while(Math.abs(r-a.getTime())<=i){var o=t[n];if(o.offset(a,o[e]),\"function\"!==typeof this.disabledDate||!this.disabledDate(a)){this.date=a,this.$emit(\"pick\",a,!0);break}}},handleVisibleTimeChange:function(e){var t=Object(oa[\"parseDate\"])(e,this.timeFormat);t&&this.checkDateWithinRange(t)&&(this.date=Object(oa[\"modifyDate\"])(t,this.year,this.month,this.monthDate),this.userInputTime=null,this.$refs.timepicker.value=this.date,this.timePickerVisible=!1,this.emit(this.date,!0))},handleVisibleDateChange:function(e){var t=Object(oa[\"parseDate\"])(e,this.dateFormat);if(t){if(\"function\"===typeof this.disabledDate&&this.disabledDate(t))return;this.date=Object(oa[\"modifyTime\"])(t,this.date.getHours(),this.date.getMinutes(),this.date.getSeconds()),this.userInputDate=null,this.resetView(),this.emit(this.date,!0)}},isValidValue:function(e){return e&&!isNaN(e)&&(\"function\"!==typeof this.disabledDate||!this.disabledDate(e))&&this.checkDateWithinRange(e)},getDefaultValue:function(){return this.defaultValue?new Date(this.defaultValue):new Date},checkDateWithinRange:function(e){return!(this.selectableRange.length>0)||Object(oa[\"timeWithinRange\"])(e,this.selectableRange,this.format||\"HH:mm:ss\")}},components:{TimePicker:Ba,YearTable:Va,MonthTable:eo,DateTable:co,ElInput:_.a,ElButton:oe.a},data:function(){return{popperClass:\"\",date:new Date,value:\"\",defaultValue:null,defaultTime:null,showTime:!1,selectionMode:\"day\",shortcuts:\"\",visible:!1,currentView:\"date\",disabledDate:\"\",cellClassName:\"\",selectableRange:[],firstDayOfWeek:7,showWeekNumber:!1,timePickerVisible:!1,format:\"\",arrowControl:!1,userInputDate:null,userInputTime:null}},computed:{year:function(){return this.date.getFullYear()},month:function(){return this.date.getMonth()},week:function(){return Object(oa[\"getWeekNumber\"])(this.date)},monthDate:function(){return this.date.getDate()},footerVisible:function(){return this.showTime||\"dates\"===this.selectionMode},visibleTime:function(){return null!==this.userInputTime?this.userInputTime:Object(oa[\"formatDate\"])(this.value||this.defaultValue,this.timeFormat)},visibleDate:function(){return null!==this.userInputDate?this.userInputDate:Object(oa[\"formatDate\"])(this.value||this.defaultValue,this.dateFormat)},yearLabel:function(){var e=this.t(\"el.datepicker.year\");if(\"year\"===this.currentView){var t=10*Math.floor(this.year/10);return e?t+\" \"+e+\" - \"+(t+9)+\" \"+e:t+\" - \"+(t+9)}return this.year+\" \"+e},timeFormat:function(){return this.format?Object(oa[\"extractTimeFormat\"])(this.format):\"HH:mm:ss\"},dateFormat:function(){return this.format?Object(oa[\"extractDateFormat\"])(this.format):\"yyyy-MM-dd\"}}},po=uo,ho=s(po,xa,wa,!1,null,null,null);ho.options.__file=\"packages/date-picker/src/panel/date.vue\";var fo=ho.exports,_o=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-zoom-in-top\"},on:{\"after-leave\":function(t){e.$emit(\"dodestroy\")}}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-picker-panel el-date-range-picker el-popper\",class:[{\"has-sidebar\":e.$slots.sidebar||e.shortcuts,\"has-time\":e.showTime},e.popperClass]},[n(\"div\",{staticClass:\"el-picker-panel__body-wrapper\"},[e._t(\"sidebar\"),e.shortcuts?n(\"div\",{staticClass:\"el-picker-panel__sidebar\"},e._l(e.shortcuts,(function(t,i){return n(\"button\",{key:i,staticClass:\"el-picker-panel__shortcut\",attrs:{type:\"button\"},on:{click:function(n){e.handleShortcutClick(t)}}},[e._v(e._s(t.text))])})),0):e._e(),n(\"div\",{staticClass:\"el-picker-panel__body\"},[e.showTime?n(\"div\",{staticClass:\"el-date-range-picker__time-header\"},[n(\"span\",{staticClass:\"el-date-range-picker__editors-wrap\"},[n(\"span\",{staticClass:\"el-date-range-picker__time-picker-wrap\"},[n(\"el-input\",{ref:\"minInput\",staticClass:\"el-date-range-picker__editor\",attrs:{size:\"small\",disabled:e.rangeState.selecting,placeholder:e.t(\"el.datepicker.startDate\"),value:e.minVisibleDate},on:{input:function(t){return e.handleDateInput(t,\"min\")},change:function(t){return e.handleDateChange(t,\"min\")}}})],1),n(\"span\",{directives:[{name:\"clickoutside\",rawName:\"v-clickoutside\",value:e.handleMinTimeClose,expression:\"handleMinTimeClose\"}],staticClass:\"el-date-range-picker__time-picker-wrap\"},[n(\"el-input\",{staticClass:\"el-date-range-picker__editor\",attrs:{size:\"small\",disabled:e.rangeState.selecting,placeholder:e.t(\"el.datepicker.startTime\"),value:e.minVisibleTime},on:{focus:function(t){e.minTimePickerVisible=!0},input:function(t){return e.handleTimeInput(t,\"min\")},change:function(t){return e.handleTimeChange(t,\"min\")}}}),n(\"time-picker\",{ref:\"minTimePicker\",attrs:{\"time-arrow-control\":e.arrowControl,visible:e.minTimePickerVisible},on:{pick:e.handleMinTimePick,mounted:function(t){e.$refs.minTimePicker.format=e.timeFormat}}})],1)]),n(\"span\",{staticClass:\"el-icon-arrow-right\"}),n(\"span\",{staticClass:\"el-date-range-picker__editors-wrap is-right\"},[n(\"span\",{staticClass:\"el-date-range-picker__time-picker-wrap\"},[n(\"el-input\",{staticClass:\"el-date-range-picker__editor\",attrs:{size:\"small\",disabled:e.rangeState.selecting,placeholder:e.t(\"el.datepicker.endDate\"),value:e.maxVisibleDate,readonly:!e.minDate},on:{input:function(t){return e.handleDateInput(t,\"max\")},change:function(t){return e.handleDateChange(t,\"max\")}}})],1),n(\"span\",{directives:[{name:\"clickoutside\",rawName:\"v-clickoutside\",value:e.handleMaxTimeClose,expression:\"handleMaxTimeClose\"}],staticClass:\"el-date-range-picker__time-picker-wrap\"},[n(\"el-input\",{staticClass:\"el-date-range-picker__editor\",attrs:{size:\"small\",disabled:e.rangeState.selecting,placeholder:e.t(\"el.datepicker.endTime\"),value:e.maxVisibleTime,readonly:!e.minDate},on:{focus:function(t){e.minDate&&(e.maxTimePickerVisible=!0)},input:function(t){return e.handleTimeInput(t,\"max\")},change:function(t){return e.handleTimeChange(t,\"max\")}}}),n(\"time-picker\",{ref:\"maxTimePicker\",attrs:{\"time-arrow-control\":e.arrowControl,visible:e.maxTimePickerVisible},on:{pick:e.handleMaxTimePick,mounted:function(t){e.$refs.maxTimePicker.format=e.timeFormat}}})],1)])]):e._e(),n(\"div\",{staticClass:\"el-picker-panel__content el-date-range-picker__content is-left\"},[n(\"div\",{staticClass:\"el-date-range-picker__header\"},[n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-icon-d-arrow-left\",attrs:{type:\"button\"},on:{click:e.leftPrevYear}}),n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-icon-arrow-left\",attrs:{type:\"button\"},on:{click:e.leftPrevMonth}}),e.unlinkPanels?n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-icon-d-arrow-right\",class:{\"is-disabled\":!e.enableYearArrow},attrs:{type:\"button\",disabled:!e.enableYearArrow},on:{click:e.leftNextYear}}):e._e(),e.unlinkPanels?n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-icon-arrow-right\",class:{\"is-disabled\":!e.enableMonthArrow},attrs:{type:\"button\",disabled:!e.enableMonthArrow},on:{click:e.leftNextMonth}}):e._e(),n(\"div\",[e._v(e._s(e.leftLabel))])]),n(\"date-table\",{attrs:{\"selection-mode\":\"range\",date:e.leftDate,\"default-value\":e.defaultValue,\"min-date\":e.minDate,\"max-date\":e.maxDate,\"range-state\":e.rangeState,\"disabled-date\":e.disabledDate,\"cell-class-name\":e.cellClassName,\"first-day-of-week\":e.firstDayOfWeek},on:{changerange:e.handleChangeRange,pick:e.handleRangePick}})],1),n(\"div\",{staticClass:\"el-picker-panel__content el-date-range-picker__content is-right\"},[n(\"div\",{staticClass:\"el-date-range-picker__header\"},[e.unlinkPanels?n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-icon-d-arrow-left\",class:{\"is-disabled\":!e.enableYearArrow},attrs:{type:\"button\",disabled:!e.enableYearArrow},on:{click:e.rightPrevYear}}):e._e(),e.unlinkPanels?n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-icon-arrow-left\",class:{\"is-disabled\":!e.enableMonthArrow},attrs:{type:\"button\",disabled:!e.enableMonthArrow},on:{click:e.rightPrevMonth}}):e._e(),n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-icon-d-arrow-right\",attrs:{type:\"button\"},on:{click:e.rightNextYear}}),n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-icon-arrow-right\",attrs:{type:\"button\"},on:{click:e.rightNextMonth}}),n(\"div\",[e._v(e._s(e.rightLabel))])]),n(\"date-table\",{attrs:{\"selection-mode\":\"range\",date:e.rightDate,\"default-value\":e.defaultValue,\"min-date\":e.minDate,\"max-date\":e.maxDate,\"range-state\":e.rangeState,\"disabled-date\":e.disabledDate,\"cell-class-name\":e.cellClassName,\"first-day-of-week\":e.firstDayOfWeek},on:{changerange:e.handleChangeRange,pick:e.handleRangePick}})],1)])],2),e.showTime?n(\"div\",{staticClass:\"el-picker-panel__footer\"},[n(\"el-button\",{staticClass:\"el-picker-panel__link-btn\",attrs:{size:\"mini\",type:\"text\"},on:{click:e.handleClear}},[e._v(\"\\n        \"+e._s(e.t(\"el.datepicker.clear\"))+\"\\n      \")]),n(\"el-button\",{staticClass:\"el-picker-panel__link-btn\",attrs:{plain:\"\",size:\"mini\",disabled:e.btnDisabled},on:{click:function(t){e.handleConfirm(!1)}}},[e._v(\"\\n        \"+e._s(e.t(\"el.datepicker.confirm\"))+\"\\n      \")])],1):e._e()])])},mo=[];_o._withStripped=!0;var go=function(e){return Array.isArray(e)?[new Date(e[0]),new Date(e[1])]:e?[new Date(e),Object(oa[\"nextDate\"])(new Date(e),1)]:[new Date,Object(oa[\"nextDate\"])(new Date,1)]},bo={mixins:[g.a],directives:{Clickoutside:U.a},computed:{btnDisabled:function(){return!(this.minDate&&this.maxDate&&!this.selecting&&this.isValidValue([this.minDate,this.maxDate]))},leftLabel:function(){return this.leftDate.getFullYear()+\" \"+this.t(\"el.datepicker.year\")+\" \"+this.t(\"el.datepicker.month\"+(this.leftDate.getMonth()+1))},rightLabel:function(){return this.rightDate.getFullYear()+\" \"+this.t(\"el.datepicker.year\")+\" \"+this.t(\"el.datepicker.month\"+(this.rightDate.getMonth()+1))},leftYear:function(){return this.leftDate.getFullYear()},leftMonth:function(){return this.leftDate.getMonth()},leftMonthDate:function(){return this.leftDate.getDate()},rightYear:function(){return this.rightDate.getFullYear()},rightMonth:function(){return this.rightDate.getMonth()},rightMonthDate:function(){return this.rightDate.getDate()},minVisibleDate:function(){return null!==this.dateUserInput.min?this.dateUserInput.min:this.minDate?Object(oa[\"formatDate\"])(this.minDate,this.dateFormat):\"\"},maxVisibleDate:function(){return null!==this.dateUserInput.max?this.dateUserInput.max:this.maxDate||this.minDate?Object(oa[\"formatDate\"])(this.maxDate||this.minDate,this.dateFormat):\"\"},minVisibleTime:function(){return null!==this.timeUserInput.min?this.timeUserInput.min:this.minDate?Object(oa[\"formatDate\"])(this.minDate,this.timeFormat):\"\"},maxVisibleTime:function(){return null!==this.timeUserInput.max?this.timeUserInput.max:this.maxDate||this.minDate?Object(oa[\"formatDate\"])(this.maxDate||this.minDate,this.timeFormat):\"\"},timeFormat:function(){return this.format?Object(oa[\"extractTimeFormat\"])(this.format):\"HH:mm:ss\"},dateFormat:function(){return this.format?Object(oa[\"extractDateFormat\"])(this.format):\"yyyy-MM-dd\"},enableMonthArrow:function(){var e=(this.leftMonth+1)%12,t=this.leftMonth+1>=12?1:0;return this.unlinkPanels&&new Date(this.leftYear+t,e)<new Date(this.rightYear,this.rightMonth)},enableYearArrow:function(){return this.unlinkPanels&&12*this.rightYear+this.rightMonth-(12*this.leftYear+this.leftMonth+1)>=12}},data:function(){return{popperClass:\"\",value:[],defaultValue:null,defaultTime:null,minDate:\"\",maxDate:\"\",leftDate:new Date,rightDate:Object(oa[\"nextMonth\"])(new Date),rangeState:{endDate:null,selecting:!1,row:null,column:null},showTime:!1,shortcuts:\"\",visible:\"\",disabledDate:\"\",cellClassName:\"\",firstDayOfWeek:7,minTimePickerVisible:!1,maxTimePickerVisible:!1,format:\"\",arrowControl:!1,unlinkPanels:!1,dateUserInput:{min:null,max:null},timeUserInput:{min:null,max:null}}},watch:{minDate:function(e){var t=this;this.dateUserInput.min=null,this.timeUserInput.min=null,this.$nextTick((function(){if(t.$refs.maxTimePicker&&t.maxDate&&t.maxDate<t.minDate){var e=\"HH:mm:ss\";t.$refs.maxTimePicker.selectableRange=[[Object(oa[\"parseDate\"])(Object(oa[\"formatDate\"])(t.minDate,e),e),Object(oa[\"parseDate\"])(\"23:59:59\",e)]]}})),e&&this.$refs.minTimePicker&&(this.$refs.minTimePicker.date=e,this.$refs.minTimePicker.value=e)},maxDate:function(e){this.dateUserInput.max=null,this.timeUserInput.max=null,e&&this.$refs.maxTimePicker&&(this.$refs.maxTimePicker.date=e,this.$refs.maxTimePicker.value=e)},minTimePickerVisible:function(e){var t=this;e&&this.$nextTick((function(){t.$refs.minTimePicker.date=t.minDate,t.$refs.minTimePicker.value=t.minDate,t.$refs.minTimePicker.adjustSpinners()}))},maxTimePickerVisible:function(e){var t=this;e&&this.$nextTick((function(){t.$refs.maxTimePicker.date=t.maxDate,t.$refs.maxTimePicker.value=t.maxDate,t.$refs.maxTimePicker.adjustSpinners()}))},value:function(e){if(e){if(Array.isArray(e))if(this.minDate=Object(oa[\"isDate\"])(e[0])?new Date(e[0]):null,this.maxDate=Object(oa[\"isDate\"])(e[1])?new Date(e[1]):null,this.minDate)if(this.leftDate=this.minDate,this.unlinkPanels&&this.maxDate){var t=this.minDate.getFullYear(),n=this.minDate.getMonth(),i=this.maxDate.getFullYear(),r=this.maxDate.getMonth();this.rightDate=t===i&&n===r?Object(oa[\"nextMonth\"])(this.maxDate):this.maxDate}else this.rightDate=Object(oa[\"nextMonth\"])(this.leftDate);else this.leftDate=go(this.defaultValue)[0],this.rightDate=Object(oa[\"nextMonth\"])(this.leftDate)}else this.minDate=null,this.maxDate=null},defaultValue:function(e){if(!Array.isArray(this.value)){var t=go(e),n=t[0],i=t[1];this.leftDate=n,this.rightDate=e&&e[1]&&this.unlinkPanels?i:Object(oa[\"nextMonth\"])(this.leftDate)}}},methods:{handleClear:function(){this.minDate=null,this.maxDate=null,this.leftDate=go(this.defaultValue)[0],this.rightDate=Object(oa[\"nextMonth\"])(this.leftDate),this.$emit(\"pick\",null)},handleChangeRange:function(e){this.minDate=e.minDate,this.maxDate=e.maxDate,this.rangeState=e.rangeState},handleDateInput:function(e,t){if(this.dateUserInput[t]=e,e.length===this.dateFormat.length){var n=Object(oa[\"parseDate\"])(e,this.dateFormat);if(n){if(\"function\"===typeof this.disabledDate&&this.disabledDate(new Date(n)))return;\"min\"===t?(this.minDate=Object(oa[\"modifyDate\"])(this.minDate||new Date,n.getFullYear(),n.getMonth(),n.getDate()),this.leftDate=new Date(n),this.unlinkPanels||(this.rightDate=Object(oa[\"nextMonth\"])(this.leftDate))):(this.maxDate=Object(oa[\"modifyDate\"])(this.maxDate||new Date,n.getFullYear(),n.getMonth(),n.getDate()),this.rightDate=new Date(n),this.unlinkPanels||(this.leftDate=Object(oa[\"prevMonth\"])(n)))}}},handleDateChange:function(e,t){var n=Object(oa[\"parseDate\"])(e,this.dateFormat);n&&(\"min\"===t?(this.minDate=Object(oa[\"modifyDate\"])(this.minDate,n.getFullYear(),n.getMonth(),n.getDate()),this.minDate>this.maxDate&&(this.maxDate=this.minDate)):(this.maxDate=Object(oa[\"modifyDate\"])(this.maxDate,n.getFullYear(),n.getMonth(),n.getDate()),this.maxDate<this.minDate&&(this.minDate=this.maxDate)))},handleTimeInput:function(e,t){var n=this;if(this.timeUserInput[t]=e,e.length===this.timeFormat.length){var i=Object(oa[\"parseDate\"])(e,this.timeFormat);i&&(\"min\"===t?(this.minDate=Object(oa[\"modifyTime\"])(this.minDate,i.getHours(),i.getMinutes(),i.getSeconds()),this.$nextTick((function(e){return n.$refs.minTimePicker.adjustSpinners()}))):(this.maxDate=Object(oa[\"modifyTime\"])(this.maxDate,i.getHours(),i.getMinutes(),i.getSeconds()),this.$nextTick((function(e){return n.$refs.maxTimePicker.adjustSpinners()}))))}},handleTimeChange:function(e,t){var n=Object(oa[\"parseDate\"])(e,this.timeFormat);n&&(\"min\"===t?(this.minDate=Object(oa[\"modifyTime\"])(this.minDate,n.getHours(),n.getMinutes(),n.getSeconds()),this.minDate>this.maxDate&&(this.maxDate=this.minDate),this.$refs.minTimePicker.value=this.minDate,this.minTimePickerVisible=!1):(this.maxDate=Object(oa[\"modifyTime\"])(this.maxDate,n.getHours(),n.getMinutes(),n.getSeconds()),this.maxDate<this.minDate&&(this.minDate=this.maxDate),this.$refs.maxTimePicker.value=this.minDate,this.maxTimePickerVisible=!1))},handleRangePick:function(e){var t=this,n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=this.defaultTime||[],r=Object(oa[\"modifyWithTimeString\"])(e.minDate,i[0]),a=Object(oa[\"modifyWithTimeString\"])(e.maxDate,i[1]);this.maxDate===a&&this.minDate===r||(this.onPick&&this.onPick(e),this.maxDate=a,this.minDate=r,setTimeout((function(){t.maxDate=a,t.minDate=r}),10),n&&!this.showTime&&this.handleConfirm())},handleShortcutClick:function(e){e.onClick&&e.onClick(this)},handleMinTimePick:function(e,t,n){this.minDate=this.minDate||new Date,e&&(this.minDate=Object(oa[\"modifyTime\"])(this.minDate,e.getHours(),e.getMinutes(),e.getSeconds())),n||(this.minTimePickerVisible=t),(!this.maxDate||this.maxDate&&this.maxDate.getTime()<this.minDate.getTime())&&(this.maxDate=new Date(this.minDate))},handleMinTimeClose:function(){this.minTimePickerVisible=!1},handleMaxTimePick:function(e,t,n){this.maxDate&&e&&(this.maxDate=Object(oa[\"modifyTime\"])(this.maxDate,e.getHours(),e.getMinutes(),e.getSeconds())),n||(this.maxTimePickerVisible=t),this.maxDate&&this.minDate&&this.minDate.getTime()>this.maxDate.getTime()&&(this.minDate=new Date(this.maxDate))},handleMaxTimeClose:function(){this.maxTimePickerVisible=!1},leftPrevYear:function(){this.leftDate=Object(oa[\"prevYear\"])(this.leftDate),this.unlinkPanels||(this.rightDate=Object(oa[\"nextMonth\"])(this.leftDate))},leftPrevMonth:function(){this.leftDate=Object(oa[\"prevMonth\"])(this.leftDate),this.unlinkPanels||(this.rightDate=Object(oa[\"nextMonth\"])(this.leftDate))},rightNextYear:function(){this.unlinkPanels?this.rightDate=Object(oa[\"nextYear\"])(this.rightDate):(this.leftDate=Object(oa[\"nextYear\"])(this.leftDate),this.rightDate=Object(oa[\"nextMonth\"])(this.leftDate))},rightNextMonth:function(){this.unlinkPanels?this.rightDate=Object(oa[\"nextMonth\"])(this.rightDate):(this.leftDate=Object(oa[\"nextMonth\"])(this.leftDate),this.rightDate=Object(oa[\"nextMonth\"])(this.leftDate))},leftNextYear:function(){this.leftDate=Object(oa[\"nextYear\"])(this.leftDate)},leftNextMonth:function(){this.leftDate=Object(oa[\"nextMonth\"])(this.leftDate)},rightPrevYear:function(){this.rightDate=Object(oa[\"prevYear\"])(this.rightDate)},rightPrevMonth:function(){this.rightDate=Object(oa[\"prevMonth\"])(this.rightDate)},handleConfirm:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.isValidValue([this.minDate,this.maxDate])&&this.$emit(\"pick\",[this.minDate,this.maxDate],e)},isValidValue:function(e){return Array.isArray(e)&&e&&e[0]&&e[1]&&Object(oa[\"isDate\"])(e[0])&&Object(oa[\"isDate\"])(e[1])&&e[0].getTime()<=e[1].getTime()&&(\"function\"!==typeof this.disabledDate||!this.disabledDate(e[0])&&!this.disabledDate(e[1]))},resetView:function(){this.minDate&&null==this.maxDate&&(this.rangeState.selecting=!1),this.minDate=this.value&&Object(oa[\"isDate\"])(this.value[0])?new Date(this.value[0]):null,this.maxDate=this.value&&Object(oa[\"isDate\"])(this.value[0])?new Date(this.value[1]):null}},components:{TimePicker:Ba,DateTable:co,ElInput:_.a,ElButton:oe.a}},vo=bo,Eo=s(vo,_o,mo,!1,null,null,null);Eo.options.__file=\"packages/date-picker/src/panel/date-range.vue\";var yo=Eo.exports,So=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-zoom-in-top\"},on:{\"after-leave\":function(t){e.$emit(\"dodestroy\")}}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-picker-panel el-date-range-picker el-popper\",class:[{\"has-sidebar\":e.$slots.sidebar||e.shortcuts},e.popperClass]},[n(\"div\",{staticClass:\"el-picker-panel__body-wrapper\"},[e._t(\"sidebar\"),e.shortcuts?n(\"div\",{staticClass:\"el-picker-panel__sidebar\"},e._l(e.shortcuts,(function(t,i){return n(\"button\",{key:i,staticClass:\"el-picker-panel__shortcut\",attrs:{type:\"button\"},on:{click:function(n){e.handleShortcutClick(t)}}},[e._v(e._s(t.text))])})),0):e._e(),n(\"div\",{staticClass:\"el-picker-panel__body\"},[n(\"div\",{staticClass:\"el-picker-panel__content el-date-range-picker__content is-left\"},[n(\"div\",{staticClass:\"el-date-range-picker__header\"},[n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-icon-d-arrow-left\",attrs:{type:\"button\"},on:{click:e.leftPrevYear}}),e.unlinkPanels?n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-icon-d-arrow-right\",class:{\"is-disabled\":!e.enableYearArrow},attrs:{type:\"button\",disabled:!e.enableYearArrow},on:{click:e.leftNextYear}}):e._e(),n(\"div\",[e._v(e._s(e.leftLabel))])]),n(\"month-table\",{attrs:{\"selection-mode\":\"range\",date:e.leftDate,\"default-value\":e.defaultValue,\"min-date\":e.minDate,\"max-date\":e.maxDate,\"range-state\":e.rangeState,\"disabled-date\":e.disabledDate},on:{changerange:e.handleChangeRange,pick:e.handleRangePick}})],1),n(\"div\",{staticClass:\"el-picker-panel__content el-date-range-picker__content is-right\"},[n(\"div\",{staticClass:\"el-date-range-picker__header\"},[e.unlinkPanels?n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-icon-d-arrow-left\",class:{\"is-disabled\":!e.enableYearArrow},attrs:{type:\"button\",disabled:!e.enableYearArrow},on:{click:e.rightPrevYear}}):e._e(),n(\"button\",{staticClass:\"el-picker-panel__icon-btn el-icon-d-arrow-right\",attrs:{type:\"button\"},on:{click:e.rightNextYear}}),n(\"div\",[e._v(e._s(e.rightLabel))])]),n(\"month-table\",{attrs:{\"selection-mode\":\"range\",date:e.rightDate,\"default-value\":e.defaultValue,\"min-date\":e.minDate,\"max-date\":e.maxDate,\"range-state\":e.rangeState,\"disabled-date\":e.disabledDate},on:{changerange:e.handleChangeRange,pick:e.handleRangePick}})],1)])],2)])])},Co=[];So._withStripped=!0;var To=function(e){return Array.isArray(e)?[new Date(e[0]),new Date(e[1])]:e?[new Date(e),Object(oa[\"nextMonth\"])(new Date(e))]:[new Date,Object(oa[\"nextMonth\"])(new Date)]},xo={mixins:[g.a],directives:{Clickoutside:U.a},computed:{btnDisabled:function(){return!(this.minDate&&this.maxDate&&!this.selecting&&this.isValidValue([this.minDate,this.maxDate]))},leftLabel:function(){return this.leftDate.getFullYear()+\" \"+this.t(\"el.datepicker.year\")},rightLabel:function(){return this.rightDate.getFullYear()+\" \"+this.t(\"el.datepicker.year\")},leftYear:function(){return this.leftDate.getFullYear()},rightYear:function(){return this.rightDate.getFullYear()===this.leftDate.getFullYear()?this.leftDate.getFullYear()+1:this.rightDate.getFullYear()},enableYearArrow:function(){return this.unlinkPanels&&this.rightYear>this.leftYear+1}},data:function(){return{popperClass:\"\",value:[],defaultValue:null,defaultTime:null,minDate:\"\",maxDate:\"\",leftDate:new Date,rightDate:Object(oa[\"nextYear\"])(new Date),rangeState:{endDate:null,selecting:!1,row:null,column:null},shortcuts:\"\",visible:\"\",disabledDate:\"\",format:\"\",arrowControl:!1,unlinkPanels:!1}},watch:{value:function(e){if(e){if(Array.isArray(e))if(this.minDate=Object(oa[\"isDate\"])(e[0])?new Date(e[0]):null,this.maxDate=Object(oa[\"isDate\"])(e[1])?new Date(e[1]):null,this.minDate)if(this.leftDate=this.minDate,this.unlinkPanels&&this.maxDate){var t=this.minDate.getFullYear(),n=this.maxDate.getFullYear();this.rightDate=t===n?Object(oa[\"nextYear\"])(this.maxDate):this.maxDate}else this.rightDate=Object(oa[\"nextYear\"])(this.leftDate);else this.leftDate=To(this.defaultValue)[0],this.rightDate=Object(oa[\"nextYear\"])(this.leftDate)}else this.minDate=null,this.maxDate=null},defaultValue:function(e){if(!Array.isArray(this.value)){var t=To(e),n=t[0],i=t[1];this.leftDate=n,this.rightDate=e&&e[1]&&n.getFullYear()!==i.getFullYear()&&this.unlinkPanels?i:Object(oa[\"nextYear\"])(this.leftDate)}}},methods:{handleClear:function(){this.minDate=null,this.maxDate=null,this.leftDate=To(this.defaultValue)[0],this.rightDate=Object(oa[\"nextYear\"])(this.leftDate),this.$emit(\"pick\",null)},handleChangeRange:function(e){this.minDate=e.minDate,this.maxDate=e.maxDate,this.rangeState=e.rangeState},handleRangePick:function(e){var t=this,n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=this.defaultTime||[],r=Object(oa[\"modifyWithTimeString\"])(e.minDate,i[0]),a=Object(oa[\"modifyWithTimeString\"])(e.maxDate,i[1]);this.maxDate===a&&this.minDate===r||(this.onPick&&this.onPick(e),this.maxDate=a,this.minDate=r,setTimeout((function(){t.maxDate=a,t.minDate=r}),10),n&&this.handleConfirm())},handleShortcutClick:function(e){e.onClick&&e.onClick(this)},leftPrevYear:function(){this.leftDate=Object(oa[\"prevYear\"])(this.leftDate),this.unlinkPanels||(this.rightDate=Object(oa[\"prevYear\"])(this.rightDate))},rightNextYear:function(){this.unlinkPanels||(this.leftDate=Object(oa[\"nextYear\"])(this.leftDate)),this.rightDate=Object(oa[\"nextYear\"])(this.rightDate)},leftNextYear:function(){this.leftDate=Object(oa[\"nextYear\"])(this.leftDate)},rightPrevYear:function(){this.rightDate=Object(oa[\"prevYear\"])(this.rightDate)},handleConfirm:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.isValidValue([this.minDate,this.maxDate])&&this.$emit(\"pick\",[this.minDate,this.maxDate],e)},isValidValue:function(e){return Array.isArray(e)&&e&&e[0]&&e[1]&&Object(oa[\"isDate\"])(e[0])&&Object(oa[\"isDate\"])(e[1])&&e[0].getTime()<=e[1].getTime()&&(\"function\"!==typeof this.disabledDate||!this.disabledDate(e[0])&&!this.disabledDate(e[1]))},resetView:function(){this.minDate=this.value&&Object(oa[\"isDate\"])(this.value[0])?new Date(this.value[0]):null,this.maxDate=this.value&&Object(oa[\"isDate\"])(this.value[0])?new Date(this.value[1]):null}},components:{MonthTable:eo,ElInput:_.a,ElButton:oe.a}},wo=xo,Oo=s(wo,So,Co,!1,null,null,null);Oo.options.__file=\"packages/date-picker/src/panel/month-range.vue\";var No=Oo.exports,Ro=function(e){return\"daterange\"===e||\"datetimerange\"===e?yo:\"monthrange\"===e?No:fo},ko={mixins:[Ta],name:\"ElDatePicker\",props:{type:{type:String,default:\"date\"},timeArrowControl:Boolean},watch:{type:function(e){this.picker?(this.unmountPicker(),this.panel=Ro(e),this.mountPicker()):this.panel=Ro(e)}},created:function(){this.panel=Ro(this.type)},install:function(e){e.component(ko.name,ko)}},Ao=ko,Do=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-zoom-in-top\"},on:{\"before-enter\":e.handleMenuEnter,\"after-leave\":function(t){e.$emit(\"dodestroy\")}}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],ref:\"popper\",staticClass:\"el-picker-panel time-select el-popper\",class:e.popperClass,style:{width:e.width+\"px\"}},[n(\"el-scrollbar\",{attrs:{noresize:\"\",\"wrap-class\":\"el-picker-panel__content\"}},e._l(e.items,(function(t){return n(\"div\",{key:t.value,staticClass:\"time-select-item\",class:{selected:e.value===t.value,disabled:t.disabled,default:t.value===e.defaultValue},attrs:{disabled:t.disabled},on:{click:function(n){e.handleClick(t)}}},[e._v(e._s(t.value))])})),0)],1)])},Io=[];Do._withStripped=!0;var Mo=function(e){var t=(e||\"\").split(\":\");if(t.length>=2){var n=parseInt(t[0],10),i=parseInt(t[1],10);return{hours:n,minutes:i}}return null},Lo=function(e,t){var n=Mo(e),i=Mo(t),r=n.minutes+60*n.hours,a=i.minutes+60*i.hours;return r===a?0:r>a?1:-1},Po=function(e){return(e.hours<10?\"0\"+e.hours:e.hours)+\":\"+(e.minutes<10?\"0\"+e.minutes:e.minutes)},Fo=function(e,t){var n=Mo(e),i=Mo(t),r={hours:n.hours,minutes:n.minutes};return r.minutes+=i.minutes,r.hours+=i.hours,r.hours+=Math.floor(r.minutes/60),r.minutes=r.minutes%60,Po(r)},Bo={components:{ElScrollbar:V.a},watch:{value:function(e){var t=this;e&&this.$nextTick((function(){return t.scrollToOption()}))}},methods:{handleClick:function(e){e.disabled||this.$emit(\"pick\",e.value)},handleClear:function(){this.$emit(\"pick\",null)},scrollToOption:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\".selected\",t=this.$refs.popper.querySelector(\".el-picker-panel__content\");ri()(t,t.querySelector(e))},handleMenuEnter:function(){var e=this,t=-1!==this.items.map((function(e){return e.value})).indexOf(this.value),n=-1!==this.items.map((function(e){return e.value})).indexOf(this.defaultValue),i=(t?\".selected\":n&&\".default\")||\".time-select-item:not(.disabled)\";this.$nextTick((function(){return e.scrollToOption(i)}))},scrollDown:function(e){var t=this.items,n=t.length,i=t.length,r=t.map((function(e){return e.value})).indexOf(this.value);while(i--)if(r=(r+e+n)%n,!t[r].disabled)return void this.$emit(\"pick\",t[r].value,!0)},isValidValue:function(e){return-1!==this.items.filter((function(e){return!e.disabled})).map((function(e){return e.value})).indexOf(e)},handleKeydown:function(e){var t=e.keyCode;if(38===t||40===t){var n={40:1,38:-1},i=n[t.toString()];return this.scrollDown(i),void e.stopPropagation()}}},data:function(){return{popperClass:\"\",start:\"09:00\",end:\"18:00\",step:\"00:30\",value:\"\",defaultValue:\"\",visible:!1,minTime:\"\",maxTime:\"\",width:0}},computed:{items:function(){var e=this.start,t=this.end,n=this.step,i=[];if(e&&t&&n){var r=e;while(Lo(r,t)<=0)i.push({value:r,disabled:Lo(r,this.minTime||\"-1:-1\")<=0||Lo(r,this.maxTime||\"100:100\")>=0}),r=Fo(r,n)}return i}}},Uo=Bo,$o=s(Uo,Do,Io,!1,null,null,null);$o.options.__file=\"packages/date-picker/src/panel/time-select.vue\";var jo=$o.exports,Go={mixins:[Ta],name:\"ElTimeSelect\",componentName:\"ElTimeSelect\",props:{type:{type:String,default:\"time-select\"}},beforeCreate:function(){this.panel=jo},install:function(e){e.component(Go.name,Go)}},qo=Go,Ho=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-zoom-in-top\"},on:{\"after-leave\":function(t){e.$emit(\"dodestroy\")}}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-time-range-picker el-picker-panel el-popper\",class:e.popperClass},[n(\"div\",{staticClass:\"el-time-range-picker__content\"},[n(\"div\",{staticClass:\"el-time-range-picker__cell\"},[n(\"div\",{staticClass:\"el-time-range-picker__header\"},[e._v(e._s(e.t(\"el.datepicker.startTime\")))]),n(\"div\",{staticClass:\"el-time-range-picker__body el-time-panel__content\",class:{\"has-seconds\":e.showSeconds,\"is-arrow\":e.arrowControl}},[n(\"time-spinner\",{ref:\"minSpinner\",attrs:{\"show-seconds\":e.showSeconds,\"am-pm-mode\":e.amPmMode,\"arrow-control\":e.arrowControl,date:e.minDate},on:{change:e.handleMinChange,\"select-range\":e.setMinSelectionRange}})],1)]),n(\"div\",{staticClass:\"el-time-range-picker__cell\"},[n(\"div\",{staticClass:\"el-time-range-picker__header\"},[e._v(e._s(e.t(\"el.datepicker.endTime\")))]),n(\"div\",{staticClass:\"el-time-range-picker__body el-time-panel__content\",class:{\"has-seconds\":e.showSeconds,\"is-arrow\":e.arrowControl}},[n(\"time-spinner\",{ref:\"maxSpinner\",attrs:{\"show-seconds\":e.showSeconds,\"am-pm-mode\":e.amPmMode,\"arrow-control\":e.arrowControl,date:e.maxDate},on:{change:e.handleMaxChange,\"select-range\":e.setMaxSelectionRange}})],1)])]),n(\"div\",{staticClass:\"el-time-panel__footer\"},[n(\"button\",{staticClass:\"el-time-panel__btn cancel\",attrs:{type:\"button\"},on:{click:function(t){e.handleCancel()}}},[e._v(e._s(e.t(\"el.datepicker.cancel\")))]),n(\"button\",{staticClass:\"el-time-panel__btn confirm\",attrs:{type:\"button\",disabled:e.btnDisabled},on:{click:function(t){e.handleConfirm()}}},[e._v(e._s(e.t(\"el.datepicker.confirm\")))])])])])},Vo=[];Ho._withStripped=!0;var zo=Object(oa[\"parseDate\"])(\"00:00:00\",\"HH:mm:ss\"),Yo=Object(oa[\"parseDate\"])(\"23:59:59\",\"HH:mm:ss\"),Wo=function(e){return Object(oa[\"modifyDate\"])(zo,e.getFullYear(),e.getMonth(),e.getDate())},Ko=function(e){return Object(oa[\"modifyDate\"])(Yo,e.getFullYear(),e.getMonth(),e.getDate())},Qo=function(e,t){return new Date(Math.min(e.getTime()+t,Ko(e).getTime()))},Xo={mixins:[g.a],components:{TimeSpinner:Ma},computed:{showSeconds:function(){return-1!==(this.format||\"\").indexOf(\"ss\")},offset:function(){return this.showSeconds?11:8},spinner:function(){return this.selectionRange[0]<this.offset?this.$refs.minSpinner:this.$refs.maxSpinner},btnDisabled:function(){return this.minDate.getTime()>this.maxDate.getTime()},amPmMode:function(){return-1!==(this.format||\"\").indexOf(\"A\")?\"A\":-1!==(this.format||\"\").indexOf(\"a\")?\"a\":\"\"}},data:function(){return{popperClass:\"\",minDate:new Date,maxDate:new Date,value:[],oldValue:[new Date,new Date],defaultValue:null,format:\"HH:mm:ss\",visible:!1,selectionRange:[0,2],arrowControl:!1}},watch:{value:function(e){Array.isArray(e)?(this.minDate=new Date(e[0]),this.maxDate=new Date(e[1])):Array.isArray(this.defaultValue)?(this.minDate=new Date(this.defaultValue[0]),this.maxDate=new Date(this.defaultValue[1])):this.defaultValue?(this.minDate=new Date(this.defaultValue),this.maxDate=Qo(new Date(this.defaultValue),36e5)):(this.minDate=new Date,this.maxDate=Qo(new Date,36e5))},visible:function(e){var t=this;e&&(this.oldValue=this.value,this.$nextTick((function(){return t.$refs.minSpinner.emitSelectRange(\"hours\")})))}},methods:{handleClear:function(){this.$emit(\"pick\",null)},handleCancel:function(){this.$emit(\"pick\",this.oldValue)},handleMinChange:function(e){this.minDate=Object(oa[\"clearMilliseconds\"])(e),this.handleChange()},handleMaxChange:function(e){this.maxDate=Object(oa[\"clearMilliseconds\"])(e),this.handleChange()},handleChange:function(){this.isValidValue([this.minDate,this.maxDate])&&(this.$refs.minSpinner.selectableRange=[[Wo(this.minDate),this.maxDate]],this.$refs.maxSpinner.selectableRange=[[this.minDate,Ko(this.maxDate)]],this.$emit(\"pick\",[this.minDate,this.maxDate],!0))},setMinSelectionRange:function(e,t){this.$emit(\"select-range\",e,t,\"min\"),this.selectionRange=[e,t]},setMaxSelectionRange:function(e,t){this.$emit(\"select-range\",e,t,\"max\"),this.selectionRange=[e+this.offset,t+this.offset]},handleConfirm:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=this.$refs.minSpinner.selectableRange,n=this.$refs.maxSpinner.selectableRange;this.minDate=Object(oa[\"limitTimeRange\"])(this.minDate,t,this.format),this.maxDate=Object(oa[\"limitTimeRange\"])(this.maxDate,n,this.format),this.$emit(\"pick\",[this.minDate,this.maxDate],e)},adjustSpinners:function(){this.$refs.minSpinner.adjustSpinners(),this.$refs.maxSpinner.adjustSpinners()},changeSelectionRange:function(e){var t=this.showSeconds?[0,3,6,11,14,17]:[0,3,8,11],n=[\"hours\",\"minutes\"].concat(this.showSeconds?[\"seconds\"]:[]),i=t.indexOf(this.selectionRange[0]),r=(i+e+t.length)%t.length,a=t.length/2;r<a?this.$refs.minSpinner.emitSelectRange(n[r]):this.$refs.maxSpinner.emitSelectRange(n[r-a])},isValidValue:function(e){return Array.isArray(e)&&Object(oa[\"timeWithinRange\"])(this.minDate,this.$refs.minSpinner.selectableRange)&&Object(oa[\"timeWithinRange\"])(this.maxDate,this.$refs.maxSpinner.selectableRange)},handleKeydown:function(e){var t=e.keyCode,n={38:-1,40:1,37:-1,39:1};if(37===t||39===t){var i=n[t];return this.changeSelectionRange(i),void e.preventDefault()}if(38===t||40===t){var r=n[t];return this.spinner.scrollDown(r),void e.preventDefault()}}}},Zo=Xo,Jo=s(Zo,Ho,Vo,!1,null,null,null);Jo.options.__file=\"packages/date-picker/src/panel/time-range.vue\";var es=Jo.exports,ts={mixins:[Ta],name:\"ElTimePicker\",props:{isRange:Boolean,arrowControl:Boolean},data:function(){return{type:\"\"}},watch:{isRange:function(e){this.picker?(this.unmountPicker(),this.type=e?\"timerange\":\"time\",this.panel=e?es:Ba,this.mountPicker()):(this.type=e?\"timerange\":\"time\",this.panel=e?es:Ba)}},created:function(){this.type=this.isRange?\"timerange\":\"time\",this.panel=this.isRange?es:Ba},install:function(e){e.component(ts.name,ts)}},ns=ts,is=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"span\",[n(\"transition\",{attrs:{name:e.transition},on:{\"after-enter\":e.handleAfterEnter,\"after-leave\":e.handleAfterLeave}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.disabled&&e.showPopper,expression:\"!disabled && showPopper\"}],ref:\"popper\",staticClass:\"el-popover el-popper\",class:[e.popperClass,e.content&&\"el-popover--plain\"],style:{width:e.width+\"px\"},attrs:{role:\"tooltip\",id:e.tooltipId,\"aria-hidden\":e.disabled||!e.showPopper?\"true\":\"false\"}},[e.title?n(\"div\",{staticClass:\"el-popover__title\",domProps:{textContent:e._s(e.title)}}):e._e(),e._t(\"default\",[e._v(e._s(e.content))])],2)]),n(\"span\",{ref:\"wrapper\",staticClass:\"el-popover__reference-wrapper\"},[e._t(\"reference\")],2)],1)},rs=[];is._withStripped=!0;var as={name:\"ElPopover\",mixins:[q.a],props:{trigger:{type:String,default:\"click\",validator:function(e){return[\"click\",\"focus\",\"hover\",\"manual\"].indexOf(e)>-1}},openDelay:{type:Number,default:0},closeDelay:{type:Number,default:200},title:String,disabled:Boolean,content:String,reference:{},popperClass:String,width:{},visibleArrow:{default:!0},arrowOffset:{type:Number,default:0},transition:{type:String,default:\"fade-in-linear\"},tabindex:{type:Number,default:0}},computed:{tooltipId:function(){return\"el-popover-\"+Object(b[\"generateId\"])()}},watch:{showPopper:function(e){this.disabled||(e?this.$emit(\"show\"):this.$emit(\"hide\"))}},mounted:function(){var e=this,t=this.referenceElm=this.reference||this.$refs.reference,n=this.popper||this.$refs.popper;!t&&this.$refs.wrapper.children&&(t=this.referenceElm=this.$refs.wrapper.children[0]),t&&(Object(Be[\"addClass\"])(t,\"el-popover__reference\"),t.setAttribute(\"aria-describedby\",this.tooltipId),t.setAttribute(\"tabindex\",this.tabindex),n.setAttribute(\"tabindex\",0),\"click\"!==this.trigger&&(Object(Be[\"on\"])(t,\"focusin\",(function(){e.handleFocus();var n=t.__vue__;n&&\"function\"===typeof n.focus&&n.focus()})),Object(Be[\"on\"])(n,\"focusin\",this.handleFocus),Object(Be[\"on\"])(t,\"focusout\",this.handleBlur),Object(Be[\"on\"])(n,\"focusout\",this.handleBlur)),Object(Be[\"on\"])(t,\"keydown\",this.handleKeydown),Object(Be[\"on\"])(t,\"click\",this.handleClick)),\"click\"===this.trigger?(Object(Be[\"on\"])(t,\"click\",this.doToggle),Object(Be[\"on\"])(document,\"click\",this.handleDocumentClick)):\"hover\"===this.trigger?(Object(Be[\"on\"])(t,\"mouseenter\",this.handleMouseEnter),Object(Be[\"on\"])(n,\"mouseenter\",this.handleMouseEnter),Object(Be[\"on\"])(t,\"mouseleave\",this.handleMouseLeave),Object(Be[\"on\"])(n,\"mouseleave\",this.handleMouseLeave)):\"focus\"===this.trigger&&(this.tabindex,t.querySelector(\"input, textarea\")?(Object(Be[\"on\"])(t,\"focusin\",this.doShow),Object(Be[\"on\"])(t,\"focusout\",this.doClose)):(Object(Be[\"on\"])(t,\"mousedown\",this.doShow),Object(Be[\"on\"])(t,\"mouseup\",this.doClose)))},beforeDestroy:function(){this.cleanup()},deactivated:function(){this.cleanup()},methods:{doToggle:function(){this.showPopper=!this.showPopper},doShow:function(){this.showPopper=!0},doClose:function(){this.showPopper=!1},handleFocus:function(){Object(Be[\"addClass\"])(this.referenceElm,\"focusing\"),\"click\"!==this.trigger&&\"focus\"!==this.trigger||(this.showPopper=!0)},handleClick:function(){Object(Be[\"removeClass\"])(this.referenceElm,\"focusing\")},handleBlur:function(){Object(Be[\"removeClass\"])(this.referenceElm,\"focusing\"),\"click\"!==this.trigger&&\"focus\"!==this.trigger||(this.showPopper=!1)},handleMouseEnter:function(){var e=this;clearTimeout(this._timer),this.openDelay?this._timer=setTimeout((function(){e.showPopper=!0}),this.openDelay):this.showPopper=!0},handleKeydown:function(e){27===e.keyCode&&\"manual\"!==this.trigger&&this.doClose()},handleMouseLeave:function(){var e=this;clearTimeout(this._timer),this.closeDelay?this._timer=setTimeout((function(){e.showPopper=!1}),this.closeDelay):this.showPopper=!1},handleDocumentClick:function(e){var t=this.reference||this.$refs.reference,n=this.popper||this.$refs.popper;!t&&this.$refs.wrapper.children&&(t=this.referenceElm=this.$refs.wrapper.children[0]),this.$el&&t&&!this.$el.contains(e.target)&&!t.contains(e.target)&&n&&!n.contains(e.target)&&(this.showPopper=!1)},handleAfterEnter:function(){this.$emit(\"after-enter\")},handleAfterLeave:function(){this.$emit(\"after-leave\"),this.doDestroy()},cleanup:function(){(this.openDelay||this.closeDelay)&&clearTimeout(this._timer)}},destroyed:function(){var e=this.reference;Object(Be[\"off\"])(e,\"click\",this.doToggle),Object(Be[\"off\"])(e,\"mouseup\",this.doClose),Object(Be[\"off\"])(e,\"mousedown\",this.doShow),Object(Be[\"off\"])(e,\"focusin\",this.doShow),Object(Be[\"off\"])(e,\"focusout\",this.doClose),Object(Be[\"off\"])(e,\"mousedown\",this.doShow),Object(Be[\"off\"])(e,\"mouseup\",this.doClose),Object(Be[\"off\"])(e,\"mouseleave\",this.handleMouseLeave),Object(Be[\"off\"])(e,\"mouseenter\",this.handleMouseEnter),Object(Be[\"off\"])(document,\"click\",this.handleDocumentClick)}},os=as,ss=s(os,is,rs,!1,null,null,null);ss.options.__file=\"packages/popover/src/main.vue\";var ls=ss.exports,cs=function(e,t,n){var i=t.expression?t.value:t.arg,r=n.context.$refs[i];r&&(Array.isArray(r)?r[0].$refs.reference=e:r.$refs.reference=e)},us={bind:function(e,t,n){cs(e,t,n)},inserted:function(e,t,n){cs(e,t,n)}};Hi.a.directive(\"popover\",us),ls.install=function(e){e.directive(\"popover\",us),e.component(ls.name,ls)},ls.directive=us;var ds=ls,ps={name:\"ElTooltip\",mixins:[q.a],props:{openDelay:{type:Number,default:0},disabled:Boolean,manual:Boolean,effect:{type:String,default:\"dark\"},arrowOffset:{type:Number,default:0},popperClass:String,content:String,visibleArrow:{default:!0},transition:{type:String,default:\"el-fade-in-linear\"},popperOptions:{default:function(){return{boundariesPadding:10,gpuAcceleration:!1}}},enterable:{type:Boolean,default:!0},hideAfter:{type:Number,default:0},tabindex:{type:Number,default:0}},data:function(){return{tooltipId:\"el-tooltip-\"+Object(b[\"generateId\"])(),timeoutPending:null,focusing:!1}},beforeCreate:function(){var e=this;this.$isServer||(this.popperVM=new Hi.a({data:{node:\"\"},render:function(e){return this.node}}).$mount(),this.debounceClose=F()(200,(function(){return e.handleClosePopper()})))},render:function(e){var t=this;this.popperVM&&(this.popperVM.node=e(\"transition\",{attrs:{name:this.transition},on:{afterLeave:this.doDestroy}},[e(\"div\",{on:{mouseleave:function(){t.setExpectedState(!1),t.debounceClose()},mouseenter:function(){t.setExpectedState(!0)}},ref:\"popper\",attrs:{role:\"tooltip\",id:this.tooltipId,\"aria-hidden\":this.disabled||!this.showPopper?\"true\":\"false\"},directives:[{name:\"show\",value:!this.disabled&&this.showPopper}],class:[\"el-tooltip__popper\",\"is-\"+this.effect,this.popperClass]},[this.$slots.content||this.content])]));var n=this.getFirstElement();if(!n)return null;var i=n.data=n.data||{};return i.staticClass=this.addTooltipClass(i.staticClass),n},mounted:function(){var e=this;this.referenceElm=this.$el,1===this.$el.nodeType&&(this.$el.setAttribute(\"aria-describedby\",this.tooltipId),this.$el.setAttribute(\"tabindex\",this.tabindex),Object(Be[\"on\"])(this.referenceElm,\"mouseenter\",this.show),Object(Be[\"on\"])(this.referenceElm,\"mouseleave\",this.hide),Object(Be[\"on\"])(this.referenceElm,\"focus\",(function(){if(e.$slots.default&&e.$slots.default.length){var t=e.$slots.default[0].componentInstance;t&&t.focus?t.focus():e.handleFocus()}else e.handleFocus()})),Object(Be[\"on\"])(this.referenceElm,\"blur\",this.handleBlur),Object(Be[\"on\"])(this.referenceElm,\"click\",this.removeFocusing)),this.value&&this.popperVM&&this.popperVM.$nextTick((function(){e.value&&e.updatePopper()}))},watch:{focusing:function(e){e?Object(Be[\"addClass\"])(this.referenceElm,\"focusing\"):Object(Be[\"removeClass\"])(this.referenceElm,\"focusing\")}},methods:{show:function(){this.setExpectedState(!0),this.handleShowPopper()},hide:function(){this.setExpectedState(!1),this.debounceClose()},handleFocus:function(){this.focusing=!0,this.show()},handleBlur:function(){this.focusing=!1,this.hide()},removeFocusing:function(){this.focusing=!1},addTooltipClass:function(e){return e?\"el-tooltip \"+e.replace(\"el-tooltip\",\"\"):\"el-tooltip\"},handleShowPopper:function(){var e=this;this.expectedState&&!this.manual&&(clearTimeout(this.timeout),this.timeout=setTimeout((function(){e.showPopper=!0}),this.openDelay),this.hideAfter>0&&(this.timeoutPending=setTimeout((function(){e.showPopper=!1}),this.hideAfter)))},handleClosePopper:function(){this.enterable&&this.expectedState||this.manual||(clearTimeout(this.timeout),this.timeoutPending&&clearTimeout(this.timeoutPending),this.showPopper=!1,this.disabled&&this.doDestroy())},setExpectedState:function(e){!1===e&&clearTimeout(this.timeoutPending),this.expectedState=e},getFirstElement:function(){var e=this.$slots.default;if(!Array.isArray(e))return null;for(var t=null,n=0;n<e.length;n++)e[n]&&e[n].tag&&(t=e[n]);return t}},beforeDestroy:function(){this.popperVM&&this.popperVM.$destroy()},destroyed:function(){var e=this.referenceElm;1===e.nodeType&&(Object(Be[\"off\"])(e,\"mouseenter\",this.show),Object(Be[\"off\"])(e,\"mouseleave\",this.hide),Object(Be[\"off\"])(e,\"focus\",this.handleFocus),Object(Be[\"off\"])(e,\"blur\",this.handleBlur),Object(Be[\"off\"])(e,\"click\",this.removeFocusing))},install:function(e){e.component(ps.name,ps)}},hs=ps,fs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"msgbox-fade\"}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-message-box__wrapper\",attrs:{tabindex:\"-1\",role:\"dialog\",\"aria-modal\":\"true\",\"aria-label\":e.title||\"dialog\"},on:{click:function(t){return t.target!==t.currentTarget?null:e.handleWrapperClick(t)}}},[n(\"div\",{staticClass:\"el-message-box\",class:[e.customClass,e.center&&\"el-message-box--center\"]},[null!==e.title?n(\"div\",{staticClass:\"el-message-box__header\"},[n(\"div\",{staticClass:\"el-message-box__title\"},[e.icon&&e.center?n(\"div\",{class:[\"el-message-box__status\",e.icon]}):e._e(),n(\"span\",[e._v(e._s(e.title))])]),e.showClose?n(\"button\",{staticClass:\"el-message-box__headerbtn\",attrs:{type:\"button\",\"aria-label\":\"Close\"},on:{click:function(t){e.handleAction(e.distinguishCancelAndClose?\"close\":\"cancel\")},keydown:function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\"))return null;e.handleAction(e.distinguishCancelAndClose?\"close\":\"cancel\")}}},[n(\"i\",{staticClass:\"el-message-box__close el-icon-close\"})]):e._e()]):e._e(),n(\"div\",{staticClass:\"el-message-box__content\"},[n(\"div\",{staticClass:\"el-message-box__container\"},[e.icon&&!e.center&&\"\"!==e.message?n(\"div\",{class:[\"el-message-box__status\",e.icon]}):e._e(),\"\"!==e.message?n(\"div\",{staticClass:\"el-message-box__message\"},[e._t(\"default\",[e.dangerouslyUseHTMLString?n(\"p\",{domProps:{innerHTML:e._s(e.message)}}):n(\"p\",[e._v(e._s(e.message))])])],2):e._e()]),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.showInput,expression:\"showInput\"}],staticClass:\"el-message-box__input\"},[n(\"el-input\",{ref:\"input\",attrs:{type:e.inputType,placeholder:e.inputPlaceholder},nativeOn:{keydown:function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.handleInputEnter(t)}},model:{value:e.inputValue,callback:function(t){e.inputValue=t},expression:\"inputValue\"}}),n(\"div\",{staticClass:\"el-message-box__errormsg\",style:{visibility:e.editorErrorMessage?\"visible\":\"hidden\"}},[e._v(e._s(e.editorErrorMessage))])],1)]),n(\"div\",{staticClass:\"el-message-box__btns\"},[e.showCancelButton?n(\"el-button\",{class:[e.cancelButtonClasses],attrs:{loading:e.cancelButtonLoading,round:e.roundButton,size:\"small\"},on:{keydown:function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\"))return null;e.handleAction(\"cancel\")}},nativeOn:{click:function(t){e.handleAction(\"cancel\")}}},[e._v(\"\\n          \"+e._s(e.cancelButtonText||e.t(\"el.messagebox.cancel\"))+\"\\n        \")]):e._e(),n(\"el-button\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.showConfirmButton,expression:\"showConfirmButton\"}],ref:\"confirm\",class:[e.confirmButtonClasses],attrs:{loading:e.confirmButtonLoading,round:e.roundButton,size:\"small\"},on:{keydown:function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\"))return null;e.handleAction(\"confirm\")}},nativeOn:{click:function(t){e.handleAction(\"confirm\")}}},[e._v(\"\\n          \"+e._s(e.confirmButtonText||e.t(\"el.messagebox.confirm\"))+\"\\n        \")])],1)])])])},_s=[];fs._withStripped=!0;var ms=n(39),gs=n.n(ms),bs=void 0,vs={success:\"success\",info:\"info\",warning:\"warning\",error:\"error\"},Es={mixins:[T.a,g.a],props:{modal:{default:!0},lockScroll:{default:!0},showClose:{type:Boolean,default:!0},closeOnClickModal:{default:!0},closeOnPressEscape:{default:!0},closeOnHashChange:{default:!0},center:{default:!1,type:Boolean},roundButton:{default:!1,type:Boolean}},components:{ElInput:_.a,ElButton:oe.a},computed:{icon:function(){var e=this.type,t=this.iconClass;return t||(e&&vs[e]?\"el-icon-\"+vs[e]:\"\")},confirmButtonClasses:function(){return\"el-button--primary \"+this.confirmButtonClass},cancelButtonClasses:function(){return\"\"+this.cancelButtonClass}},methods:{getSafeClose:function(){var e=this,t=this.uid;return function(){e.$nextTick((function(){t===e.uid&&e.doClose()}))}},doClose:function(){var e=this;this.visible&&(this.visible=!1,this._closing=!0,this.onClose&&this.onClose(),bs.closeDialog(),this.lockScroll&&setTimeout(this.restoreBodyStyle,200),this.opened=!1,this.doAfterClose(),setTimeout((function(){e.action&&e.callback(e.action,e)})))},handleWrapperClick:function(){this.closeOnClickModal&&this.handleAction(this.distinguishCancelAndClose?\"close\":\"cancel\")},handleInputEnter:function(){if(\"textarea\"!==this.inputType)return this.handleAction(\"confirm\")},handleAction:function(e){(\"prompt\"!==this.$type||\"confirm\"!==e||this.validate())&&(this.action=e,\"function\"===typeof this.beforeClose?(this.close=this.getSafeClose(),this.beforeClose(e,this,this.close)):this.doClose())},validate:function(){if(\"prompt\"===this.$type){var e=this.inputPattern;if(e&&!e.test(this.inputValue||\"\"))return this.editorErrorMessage=this.inputErrorMessage||Object(ti[\"t\"])(\"el.messagebox.error\"),Object(Be[\"addClass\"])(this.getInputElement(),\"invalid\"),!1;var t=this.inputValidator;if(\"function\"===typeof t){var n=t(this.inputValue);if(!1===n)return this.editorErrorMessage=this.inputErrorMessage||Object(ti[\"t\"])(\"el.messagebox.error\"),Object(Be[\"addClass\"])(this.getInputElement(),\"invalid\"),!1;if(\"string\"===typeof n)return this.editorErrorMessage=n,Object(Be[\"addClass\"])(this.getInputElement(),\"invalid\"),!1}}return this.editorErrorMessage=\"\",Object(Be[\"removeClass\"])(this.getInputElement(),\"invalid\"),!0},getFirstFocus:function(){var e=this.$el.querySelector(\".el-message-box__btns .el-button\"),t=this.$el.querySelector(\".el-message-box__btns .el-message-box__title\");return e||t},getInputElement:function(){var e=this.$refs.input.$refs;return e.input||e.textarea},handleClose:function(){this.handleAction(\"close\")}},watch:{inputValue:{immediate:!0,handler:function(e){var t=this;this.$nextTick((function(n){\"prompt\"===t.$type&&null!==e&&t.validate()}))}},visible:function(e){var t=this;e&&(this.uid++,\"alert\"!==this.$type&&\"confirm\"!==this.$type||this.$nextTick((function(){t.$refs.confirm.$el.focus()})),this.focusAfterClosed=document.activeElement,bs=new gs.a(this.$el,this.focusAfterClosed,this.getFirstFocus())),\"prompt\"===this.$type&&(e?setTimeout((function(){t.$refs.input&&t.$refs.input.$el&&t.getInputElement().focus()}),500):(this.editorErrorMessage=\"\",Object(Be[\"removeClass\"])(this.getInputElement(),\"invalid\")))}},mounted:function(){var e=this;this.$nextTick((function(){e.closeOnHashChange&&window.addEventListener(\"hashchange\",e.close)}))},beforeDestroy:function(){this.closeOnHashChange&&window.removeEventListener(\"hashchange\",this.close),setTimeout((function(){bs.closeDialog()}))},data:function(){return{uid:1,title:void 0,message:\"\",type:\"\",iconClass:\"\",customClass:\"\",showInput:!1,inputValue:null,inputPlaceholder:\"\",inputType:\"text\",inputPattern:null,inputValidator:null,inputErrorMessage:\"\",showConfirmButton:!0,showCancelButton:!1,action:\"\",confirmButtonText:\"\",cancelButtonText:\"\",confirmButtonLoading:!1,cancelButtonLoading:!1,confirmButtonClass:\"\",confirmButtonDisabled:!1,cancelButtonClass:\"\",editorErrorMessage:null,callback:null,dangerouslyUseHTMLString:!1,focusAfterClosed:null,isOnComposition:!1,distinguishCancelAndClose:!1}}},ys=Es,Ss=s(ys,fs,_s,!1,null,null,null);Ss.options.__file=\"packages/message-box/src/main.vue\";var Cs=Ss.exports,Ts=n(23),xs=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},ws={title:null,message:\"\",type:\"\",iconClass:\"\",showInput:!1,showClose:!0,modalFade:!0,lockScroll:!0,closeOnClickModal:!0,closeOnPressEscape:!0,closeOnHashChange:!0,inputValue:null,inputPlaceholder:\"\",inputType:\"text\",inputPattern:null,inputValidator:null,inputErrorMessage:\"\",showConfirmButton:!0,showCancelButton:!1,confirmButtonPosition:\"right\",confirmButtonHighlight:!1,cancelButtonHighlight:!1,confirmButtonText:\"\",cancelButtonText:\"\",confirmButtonClass:\"\",cancelButtonClass:\"\",customClass:\"\",beforeClose:null,dangerouslyUseHTMLString:!1,center:!1,roundButton:!1,distinguishCancelAndClose:!1},Os=Hi.a.extend(Cs),Ns=void 0,Rs=void 0,ks=[],As=function(e){if(Ns){var t=Ns.callback;\"function\"===typeof t&&(Rs.showInput?t(Rs.inputValue,e):t(e)),Ns.resolve&&(\"confirm\"===e?Rs.showInput?Ns.resolve({value:Rs.inputValue,action:e}):Ns.resolve(e):!Ns.reject||\"cancel\"!==e&&\"close\"!==e||Ns.reject(e))}},Ds=function(){Rs=new Os({el:document.createElement(\"div\")}),Rs.callback=As},Is=function e(){if(Rs||Ds(),Rs.action=\"\",(!Rs.visible||Rs.closeTimer)&&ks.length>0){Ns=ks.shift();var t=Ns.options;for(var n in t)t.hasOwnProperty(n)&&(Rs[n]=t[n]);void 0===t.callback&&(Rs.callback=As);var i=Rs.callback;Rs.callback=function(t,n){i(t,n),e()},Object(Ts[\"isVNode\"])(Rs.message)?(Rs.$slots.default=[Rs.message],Rs.message=null):delete Rs.$slots.default,[\"modal\",\"showClose\",\"closeOnClickModal\",\"closeOnPressEscape\",\"closeOnHashChange\"].forEach((function(e){void 0===Rs[e]&&(Rs[e]=!0)})),document.body.appendChild(Rs.$el),Hi.a.nextTick((function(){Rs.visible=!0}))}},Ms=function e(t,n){if(!Hi.a.prototype.$isServer){if(\"string\"===typeof t||Object(Ts[\"isVNode\"])(t)?(t={message:t},\"string\"===typeof arguments[1]&&(t.title=arguments[1])):t.callback&&!n&&(n=t.callback),\"undefined\"!==typeof Promise)return new Promise((function(i,r){ks.push({options:xt()({},ws,e.defaults,t),callback:n,resolve:i,reject:r}),Is()}));ks.push({options:xt()({},ws,e.defaults,t),callback:n}),Is()}};Ms.setDefaults=function(e){Ms.defaults=e},Ms.alert=function(e,t,n){return\"object\"===(\"undefined\"===typeof t?\"undefined\":xs(t))?(n=t,t=\"\"):void 0===t&&(t=\"\"),Ms(xt()({title:t,message:e,$type:\"alert\",closeOnPressEscape:!1,closeOnClickModal:!1},n))},Ms.confirm=function(e,t,n){return\"object\"===(\"undefined\"===typeof t?\"undefined\":xs(t))?(n=t,t=\"\"):void 0===t&&(t=\"\"),Ms(xt()({title:t,message:e,$type:\"confirm\",showCancelButton:!0},n))},Ms.prompt=function(e,t,n){return\"object\"===(\"undefined\"===typeof t?\"undefined\":xs(t))?(n=t,t=\"\"):void 0===t&&(t=\"\"),Ms(xt()({title:t,message:e,showCancelButton:!0,showInput:!0,$type:\"prompt\"},n))},Ms.close=function(){Rs.doClose(),Rs.visible=!1,ks=[],Ns=null};var Ls=Ms,Ps=Ls,Fs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-breadcrumb\",attrs:{\"aria-label\":\"Breadcrumb\",role:\"navigation\"}},[e._t(\"default\")],2)},Bs=[];Fs._withStripped=!0;var Us={name:\"ElBreadcrumb\",props:{separator:{type:String,default:\"/\"},separatorClass:{type:String,default:\"\"}},provide:function(){return{elBreadcrumb:this}},mounted:function(){var e=this.$el.querySelectorAll(\".el-breadcrumb__item\");e.length&&e[e.length-1].setAttribute(\"aria-current\",\"page\")}},$s=Us,js=s($s,Fs,Bs,!1,null,null,null);js.options.__file=\"packages/breadcrumb/src/breadcrumb.vue\";var Gs=js.exports;Gs.install=function(e){e.component(Gs.name,Gs)};var qs=Gs,Hs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"span\",{staticClass:\"el-breadcrumb__item\"},[n(\"span\",{ref:\"link\",class:[\"el-breadcrumb__inner\",e.to?\"is-link\":\"\"],attrs:{role:\"link\"}},[e._t(\"default\")],2),e.separatorClass?n(\"i\",{staticClass:\"el-breadcrumb__separator\",class:e.separatorClass}):n(\"span\",{staticClass:\"el-breadcrumb__separator\",attrs:{role:\"presentation\"}},[e._v(e._s(e.separator))])])},Vs=[];Hs._withStripped=!0;var zs={name:\"ElBreadcrumbItem\",props:{to:{},replace:Boolean},data:function(){return{separator:\"\",separatorClass:\"\"}},inject:[\"elBreadcrumb\"],mounted:function(){var e=this;this.separator=this.elBreadcrumb.separator,this.separatorClass=this.elBreadcrumb.separatorClass;var t=this.$refs.link;t.setAttribute(\"role\",\"link\"),t.addEventListener(\"click\",(function(t){var n=e.to,i=e.$router;n&&i&&(e.replace?i.replace(n):i.push(n))}))}},Ys=zs,Ws=s(Ys,Hs,Vs,!1,null,null,null);Ws.options.__file=\"packages/breadcrumb/src/breadcrumb-item.vue\";var Ks=Ws.exports;Ks.install=function(e){e.component(Ks.name,Ks)};var Qs=Ks,Xs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"form\",{staticClass:\"el-form\",class:[e.labelPosition?\"el-form--label-\"+e.labelPosition:\"\",{\"el-form--inline\":e.inline}]},[e._t(\"default\")],2)},Zs=[];Xs._withStripped=!0;var Js={name:\"ElForm\",componentName:\"ElForm\",provide:function(){return{elForm:this}},props:{model:Object,rules:Object,labelPosition:String,labelWidth:String,labelSuffix:{type:String,default:\"\"},inline:Boolean,inlineMessage:Boolean,statusIcon:Boolean,showMessage:{type:Boolean,default:!0},size:String,disabled:Boolean,validateOnRuleChange:{type:Boolean,default:!0},hideRequiredAsterisk:{type:Boolean,default:!1}},watch:{rules:function(){this.fields.forEach((function(e){e.removeValidateEvents(),e.addValidateEvents()})),this.validateOnRuleChange&&this.validate((function(){}))}},computed:{autoLabelWidth:function(){if(!this.potentialLabelWidthArr.length)return 0;var e=Math.max.apply(Math,this.potentialLabelWidthArr);return e?e+\"px\":\"\"}},data:function(){return{fields:[],potentialLabelWidthArr:[]}},created:function(){var e=this;this.$on(\"el.form.addField\",(function(t){t&&e.fields.push(t)})),this.$on(\"el.form.removeField\",(function(t){t.prop&&e.fields.splice(e.fields.indexOf(t),1)}))},methods:{resetFields:function(){this.model&&this.fields.forEach((function(e){e.resetField()}))},clearValidate:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=e.length?\"string\"===typeof e?this.fields.filter((function(t){return e===t.prop})):this.fields.filter((function(t){return e.indexOf(t.prop)>-1})):this.fields;t.forEach((function(e){e.clearValidate()}))},validate:function(e){var t=this;if(this.model){var n=void 0;\"function\"!==typeof e&&window.Promise&&(n=new window.Promise((function(t,n){e=function(e){e?t(e):n(e)}})));var i=!0,r=0;0===this.fields.length&&e&&e(!0);var a={};return this.fields.forEach((function(n){n.validate(\"\",(function(n,o){n&&(i=!1),a=xt()({},a,o),\"function\"===typeof e&&++r===t.fields.length&&e(i,a)}))})),n||void 0}},validateField:function(e,t){e=[].concat(e);var n=this.fields.filter((function(t){return-1!==e.indexOf(t.prop)}));n.length&&n.forEach((function(e){e.validate(\"\",t)}))},getLabelWidthIndex:function(e){var t=this.potentialLabelWidthArr.indexOf(e);if(-1===t)throw new Error(\"[ElementForm]unpected width \",e);return t},registerLabelWidth:function(e,t){if(e&&t){var n=this.getLabelWidthIndex(t);this.potentialLabelWidthArr.splice(n,1,e)}else e&&this.potentialLabelWidthArr.push(e)},deregisterLabelWidth:function(e){var t=this.getLabelWidthIndex(e);this.potentialLabelWidthArr.splice(t,1)}}},el=Js,tl=s(el,Xs,Zs,!1,null,null,null);tl.options.__file=\"packages/form/src/form.vue\";var nl=tl.exports;nl.install=function(e){e.component(nl.name,nl)};var il=nl,rl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-form-item\",class:[{\"el-form-item--feedback\":e.elForm&&e.elForm.statusIcon,\"is-error\":\"error\"===e.validateState,\"is-validating\":\"validating\"===e.validateState,\"is-success\":\"success\"===e.validateState,\"is-required\":e.isRequired||e.required,\"is-no-asterisk\":e.elForm&&e.elForm.hideRequiredAsterisk},e.sizeClass?\"el-form-item--\"+e.sizeClass:\"\"]},[n(\"label-wrap\",{attrs:{\"is-auto-width\":e.labelStyle&&\"auto\"===e.labelStyle.width,\"update-all\":\"auto\"===e.form.labelWidth}},[e.label||e.$slots.label?n(\"label\",{staticClass:\"el-form-item__label\",style:e.labelStyle,attrs:{for:e.labelFor}},[e._t(\"label\",[e._v(e._s(e.label+e.form.labelSuffix))])],2):e._e()]),n(\"div\",{staticClass:\"el-form-item__content\",style:e.contentStyle},[e._t(\"default\"),n(\"transition\",{attrs:{name:\"el-zoom-in-top\"}},[\"error\"===e.validateState&&e.showMessage&&e.form.showMessage?e._t(\"error\",[n(\"div\",{staticClass:\"el-form-item__error\",class:{\"el-form-item__error--inline\":\"boolean\"===typeof e.inlineMessage?e.inlineMessage:e.elForm&&e.elForm.inlineMessage||!1}},[e._v(\"\\n          \"+e._s(e.validateMessage)+\"\\n        \")])],{error:e.validateMessage}):e._e()],2)],2)],1)},al=[];rl._withStripped=!0;var ol,sl,ll=n(40),cl=n.n(ll),ul={props:{isAutoWidth:Boolean,updateAll:Boolean},inject:[\"elForm\",\"elFormItem\"],render:function(){var e=arguments[0],t=this.$slots.default;if(!t)return null;if(this.isAutoWidth){var n=this.elForm.autoLabelWidth,i={};if(n&&\"auto\"!==n){var r=parseInt(n,10)-this.computedWidth;r&&(i.marginLeft=r+\"px\")}return e(\"div\",{class:\"el-form-item__label-wrap\",style:i},[t])}return t[0]},methods:{getLabelWidth:function(){if(this.$el&&this.$el.firstElementChild){var e=window.getComputedStyle(this.$el.firstElementChild).width;return Math.ceil(parseFloat(e))}return 0},updateLabelWidth:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"update\";this.$slots.default&&this.isAutoWidth&&this.$el.firstElementChild&&(\"update\"===e?this.computedWidth=this.getLabelWidth():\"remove\"===e&&this.elForm.deregisterLabelWidth(this.computedWidth))}},watch:{computedWidth:function(e,t){this.updateAll&&(this.elForm.registerLabelWidth(e,t),this.elFormItem.updateComputedLabelWidth(e))}},data:function(){return{computedWidth:0}},mounted:function(){this.updateLabelWidth(\"update\")},updated:function(){this.updateLabelWidth(\"update\")},beforeDestroy:function(){this.updateLabelWidth(\"remove\")}},dl=ul,pl=s(dl,ol,sl,!1,null,null,null);pl.options.__file=\"packages/form/src/label-wrap.vue\";var hl=pl.exports,fl={name:\"ElFormItem\",componentName:\"ElFormItem\",mixins:[N.a],provide:function(){return{elFormItem:this}},inject:[\"elForm\"],props:{label:String,labelWidth:String,prop:String,required:{type:Boolean,default:void 0},rules:[Object,Array],error:String,validateStatus:String,for:String,inlineMessage:{type:[String,Boolean],default:\"\"},showMessage:{type:Boolean,default:!0},size:String},components:{LabelWrap:hl},watch:{error:{immediate:!0,handler:function(e){this.validateMessage=e,this.validateState=e?\"error\":\"\"}},validateStatus:function(e){this.validateState=e}},computed:{labelFor:function(){return this.for||this.prop},labelStyle:function(){var e={};if(\"top\"===this.form.labelPosition)return e;var t=this.labelWidth||this.form.labelWidth;return t&&(e.width=t),e},contentStyle:function(){var e={},t=this.label;if(\"top\"===this.form.labelPosition||this.form.inline)return e;if(!t&&!this.labelWidth&&this.isNested)return e;var n=this.labelWidth||this.form.labelWidth;return\"auto\"===n?\"auto\"===this.labelWidth?e.marginLeft=this.computedLabelWidth:\"auto\"===this.form.labelWidth&&(e.marginLeft=this.elForm.autoLabelWidth):e.marginLeft=n,e},form:function(){var e=this.$parent,t=e.$options.componentName;while(\"ElForm\"!==t)\"ElFormItem\"===t&&(this.isNested=!0),e=e.$parent,t=e.$options.componentName;return e},fieldValue:function(){var e=this.form.model;if(e&&this.prop){var t=this.prop;return-1!==t.indexOf(\":\")&&(t=t.replace(/:/,\".\")),Object(b[\"getPropByPath\"])(e,t,!0).v}},isRequired:function(){var e=this.getRules(),t=!1;return e&&e.length&&e.every((function(e){return!e.required||(t=!0,!1)})),t},_formSize:function(){return this.elForm.size},elFormItemSize:function(){return this.size||this._formSize},sizeClass:function(){return this.elFormItemSize||(this.$ELEMENT||{}).size}},data:function(){return{validateState:\"\",validateMessage:\"\",validateDisabled:!1,validator:{},isNested:!1,computedLabelWidth:\"\"}},methods:{validate:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:b[\"noop\"];this.validateDisabled=!1;var i=this.getFilteredRule(e);if((!i||0===i.length)&&void 0===this.required)return n(),!0;this.validateState=\"validating\";var r={};i&&i.length>0&&i.forEach((function(e){delete e.trigger})),r[this.prop]=i;var a=new cl.a(r),o={};o[this.prop]=this.fieldValue,a.validate(o,{firstFields:!0},(function(e,i){t.validateState=e?\"error\":\"success\",t.validateMessage=e?e[0].message:\"\",n(t.validateMessage,i),t.elForm&&t.elForm.$emit(\"validate\",t.prop,!e,t.validateMessage||null)}))},clearValidate:function(){this.validateState=\"\",this.validateMessage=\"\",this.validateDisabled=!1},resetField:function(){var e=this;this.validateState=\"\",this.validateMessage=\"\";var t=this.form.model,n=this.fieldValue,i=this.prop;-1!==i.indexOf(\":\")&&(i=i.replace(/:/,\".\"));var r=Object(b[\"getPropByPath\"])(t,i,!0);this.validateDisabled=!0,Array.isArray(n)?r.o[r.k]=[].concat(this.initialValue):r.o[r.k]=this.initialValue,this.$nextTick((function(){e.validateDisabled=!1})),this.broadcast(\"ElTimeSelect\",\"fieldReset\",this.initialValue)},getRules:function(){var e=this.form.rules,t=this.rules,n=void 0!==this.required?{required:!!this.required}:[],i=Object(b[\"getPropByPath\"])(e,this.prop||\"\");return e=e?i.o[this.prop||\"\"]||i.v:[],[].concat(t||e||[]).concat(n)},getFilteredRule:function(e){var t=this.getRules();return t.filter((function(t){return!t.trigger||\"\"===e||(Array.isArray(t.trigger)?t.trigger.indexOf(e)>-1:t.trigger===e)})).map((function(e){return xt()({},e)}))},onFieldBlur:function(){this.validate(\"blur\")},onFieldChange:function(){this.validateDisabled?this.validateDisabled=!1:this.validate(\"change\")},updateComputedLabelWidth:function(e){this.computedLabelWidth=e?e+\"px\":\"\"},addValidateEvents:function(){var e=this.getRules();(e.length||void 0!==this.required)&&(this.$on(\"el.form.blur\",this.onFieldBlur),this.$on(\"el.form.change\",this.onFieldChange))},removeValidateEvents:function(){this.$off()}},mounted:function(){if(this.prop){this.dispatch(\"ElForm\",\"el.form.addField\",[this]);var e=this.fieldValue;Array.isArray(e)&&(e=[].concat(e)),Object.defineProperty(this,\"initialValue\",{value:e}),this.addValidateEvents()}},beforeDestroy:function(){this.dispatch(\"ElForm\",\"el.form.removeField\",[this])}},_l=fl,ml=s(_l,rl,al,!1,null,null,null);ml.options.__file=\"packages/form/src/form-item.vue\";var gl=ml.exports;gl.install=function(e){e.component(gl.name,gl)};var bl=gl,vl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-tabs__active-bar\",class:\"is-\"+e.rootTabs.tabPosition,style:e.barStyle})},El=[];vl._withStripped=!0;var yl={name:\"TabBar\",props:{tabs:Array},inject:[\"rootTabs\"],computed:{barStyle:{get:function(){var e=this,t={},n=0,i=0,r=-1!==[\"top\",\"bottom\"].indexOf(this.rootTabs.tabPosition)?\"width\":\"height\",a=\"width\"===r?\"x\":\"y\",o=function(e){return e.toLowerCase().replace(/( |^)[a-z]/g,(function(e){return e.toUpperCase()}))};this.tabs.every((function(t,a){var s=Object(b[\"arrayFind\"])(e.$parent.$refs.tabs||[],(function(e){return e.id.replace(\"tab-\",\"\")===t.paneName}));if(!s)return!1;if(t.active){i=s[\"client\"+o(r)];var l=window.getComputedStyle(s);return\"width\"===r&&e.tabs.length>1&&(i-=parseFloat(l.paddingLeft)+parseFloat(l.paddingRight)),\"width\"===r&&(n+=parseFloat(l.paddingLeft)),!1}return n+=s[\"client\"+o(r)],!0}));var s=\"translate\"+o(a)+\"(\"+n+\"px)\";return t[r]=i+\"px\",t.transform=s,t.msTransform=s,t.webkitTransform=s,t}}}},Sl=yl,Cl=s(Sl,vl,El,!1,null,null,null);Cl.options.__file=\"packages/tabs/src/tab-bar.vue\";var Tl=Cl.exports;function xl(){}var wl,Ol,Nl=function(e){return e.toLowerCase().replace(/( |^)[a-z]/g,(function(e){return e.toUpperCase()}))},Rl={name:\"TabNav\",components:{TabBar:Tl},inject:[\"rootTabs\"],props:{panes:Array,currentName:String,editable:Boolean,onTabClick:{type:Function,default:xl},onTabRemove:{type:Function,default:xl},type:String,stretch:Boolean},data:function(){return{scrollable:!1,navOffset:0,isFocus:!1,focusable:!0}},computed:{navStyle:function(){var e=-1!==[\"top\",\"bottom\"].indexOf(this.rootTabs.tabPosition)?\"X\":\"Y\";return{transform:\"translate\"+e+\"(-\"+this.navOffset+\"px)\"}},sizeName:function(){return-1!==[\"top\",\"bottom\"].indexOf(this.rootTabs.tabPosition)?\"width\":\"height\"}},methods:{scrollPrev:function(){var e=this.$refs.navScroll[\"offset\"+Nl(this.sizeName)],t=this.navOffset;if(t){var n=t>e?t-e:0;this.navOffset=n}},scrollNext:function(){var e=this.$refs.nav[\"offset\"+Nl(this.sizeName)],t=this.$refs.navScroll[\"offset\"+Nl(this.sizeName)],n=this.navOffset;if(!(e-n<=t)){var i=e-n>2*t?n+t:e-t;this.navOffset=i}},scrollToActiveTab:function(){if(this.scrollable){var e=this.$refs.nav,t=this.$el.querySelector(\".is-active\");if(t){var n=this.$refs.navScroll,i=-1!==[\"top\",\"bottom\"].indexOf(this.rootTabs.tabPosition),r=t.getBoundingClientRect(),a=n.getBoundingClientRect(),o=i?e.offsetWidth-a.width:e.offsetHeight-a.height,s=this.navOffset,l=s;i?(r.left<a.left&&(l=s-(a.left-r.left)),r.right>a.right&&(l=s+r.right-a.right)):(r.top<a.top&&(l=s-(a.top-r.top)),r.bottom>a.bottom&&(l=s+(r.bottom-a.bottom))),l=Math.max(l,0),this.navOffset=Math.min(l,o)}}},update:function(){if(this.$refs.nav){var e=this.sizeName,t=this.$refs.nav[\"offset\"+Nl(e)],n=this.$refs.navScroll[\"offset\"+Nl(e)],i=this.navOffset;if(n<t){var r=this.navOffset;this.scrollable=this.scrollable||{},this.scrollable.prev=r,this.scrollable.next=r+n<t,t-r<n&&(this.navOffset=t-n)}else this.scrollable=!1,i>0&&(this.navOffset=0)}},changeTab:function(e){var t=e.keyCode,n=void 0,i=void 0,r=void 0;-1!==[37,38,39,40].indexOf(t)&&(r=e.currentTarget.querySelectorAll(\"[role=tab]\"),i=Array.prototype.indexOf.call(r,e.target),n=37===t||38===t?0===i?r.length-1:i-1:i<r.length-1?i+1:0,r[n].focus(),r[n].click(),this.setFocus())},setFocus:function(){this.focusable&&(this.isFocus=!0)},removeFocus:function(){this.isFocus=!1},visibilityChangeHandler:function(){var e=this,t=document.visibilityState;\"hidden\"===t?this.focusable=!1:\"visible\"===t&&setTimeout((function(){e.focusable=!0}),50)},windowBlurHandler:function(){this.focusable=!1},windowFocusHandler:function(){var e=this;setTimeout((function(){e.focusable=!0}),50)}},updated:function(){this.update()},render:function(e){var t=this,n=this.type,i=this.panes,r=this.editable,a=this.stretch,o=this.onTabClick,s=this.onTabRemove,l=this.navStyle,c=this.scrollable,u=this.scrollNext,d=this.scrollPrev,p=this.changeTab,h=this.setFocus,f=this.removeFocus,_=c?[e(\"span\",{class:[\"el-tabs__nav-prev\",c.prev?\"\":\"is-disabled\"],on:{click:d}},[e(\"i\",{class:\"el-icon-arrow-left\"})]),e(\"span\",{class:[\"el-tabs__nav-next\",c.next?\"\":\"is-disabled\"],on:{click:u}},[e(\"i\",{class:\"el-icon-arrow-right\"})])]:null,m=this._l(i,(function(n,i){var a,l=n.name||n.index||i,c=n.isClosable||r;n.index=\"\"+i;var u=c?e(\"span\",{class:\"el-icon-close\",on:{click:function(e){s(n,e)}}}):null,d=n.$slots.label||n.label,p=n.active?0:-1;return e(\"div\",{class:(a={\"el-tabs__item\":!0},a[\"is-\"+t.rootTabs.tabPosition]=!0,a[\"is-active\"]=n.active,a[\"is-disabled\"]=n.disabled,a[\"is-closable\"]=c,a[\"is-focus\"]=t.isFocus,a),attrs:{id:\"tab-\"+l,\"aria-controls\":\"pane-\"+l,role:\"tab\",\"aria-selected\":n.active,tabindex:p},key:\"tab-\"+l,ref:\"tabs\",refInFor:!0,on:{focus:function(){h()},blur:function(){f()},click:function(e){f(),o(n,l,e)},keydown:function(e){!c||46!==e.keyCode&&8!==e.keyCode||s(n,e)}}},[d,u])}));return e(\"div\",{class:[\"el-tabs__nav-wrap\",c?\"is-scrollable\":\"\",\"is-\"+this.rootTabs.tabPosition]},[_,e(\"div\",{class:[\"el-tabs__nav-scroll\"],ref:\"navScroll\"},[e(\"div\",{class:[\"el-tabs__nav\",\"is-\"+this.rootTabs.tabPosition,a&&-1!==[\"top\",\"bottom\"].indexOf(this.rootTabs.tabPosition)?\"is-stretch\":\"\"],ref:\"nav\",style:l,attrs:{role:\"tablist\"},on:{keydown:p}},[n?null:e(\"tab-bar\",{attrs:{tabs:i}}),m])])])},mounted:function(){var e=this;Object(ei[\"addResizeListener\"])(this.$el,this.update),document.addEventListener(\"visibilitychange\",this.visibilityChangeHandler),window.addEventListener(\"blur\",this.windowBlurHandler),window.addEventListener(\"focus\",this.windowFocusHandler),setTimeout((function(){e.scrollToActiveTab()}),0)},beforeDestroy:function(){this.$el&&this.update&&Object(ei[\"removeResizeListener\"])(this.$el,this.update),document.removeEventListener(\"visibilitychange\",this.visibilityChangeHandler),window.removeEventListener(\"blur\",this.windowBlurHandler),window.removeEventListener(\"focus\",this.windowFocusHandler)}},kl=Rl,Al=s(kl,wl,Ol,!1,null,null,null);Al.options.__file=\"packages/tabs/src/tab-nav.vue\";var Dl,Il,Ml=Al.exports,Ll={name:\"ElTabs\",components:{TabNav:Ml},props:{type:String,activeName:String,closable:Boolean,addable:Boolean,value:{},editable:Boolean,tabPosition:{type:String,default:\"top\"},beforeLeave:Function,stretch:Boolean},provide:function(){return{rootTabs:this}},data:function(){return{currentName:this.value||this.activeName,panes:[]}},watch:{activeName:function(e){this.setCurrentName(e)},value:function(e){this.setCurrentName(e)},currentName:function(e){var t=this;this.$refs.nav&&this.$nextTick((function(){t.$refs.nav.$nextTick((function(e){t.$refs.nav.scrollToActiveTab()}))}))}},methods:{calcPaneInstances:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(this.$slots.default){var n=this.$slots.default.filter((function(e){return e.tag&&e.componentOptions&&\"ElTabPane\"===e.componentOptions.Ctor.options.name})),i=n.map((function(e){var t=e.componentInstance;return t})),r=!(i.length===this.panes.length&&i.every((function(t,n){return t===e.panes[n]})));(t||r)&&(this.panes=i)}else 0!==this.panes.length&&(this.panes=[])},handleTabClick:function(e,t,n){e.disabled||(this.setCurrentName(t),this.$emit(\"tab-click\",e,n))},handleTabRemove:function(e,t){e.disabled||(t.stopPropagation(),this.$emit(\"edit\",e.name,\"remove\"),this.$emit(\"tab-remove\",e.name))},handleTabAdd:function(){this.$emit(\"edit\",null,\"add\"),this.$emit(\"tab-add\")},setCurrentName:function(e){var t=this,n=function(){t.currentName=e,t.$emit(\"input\",e)};if(this.currentName!==e&&this.beforeLeave){var i=this.beforeLeave(e,this.currentName);i&&i.then?i.then((function(){n(),t.$refs.nav&&t.$refs.nav.removeFocus()}),(function(){})):!1!==i&&n()}else n()}},render:function(e){var t,n=this.type,i=this.handleTabClick,r=this.handleTabRemove,a=this.handleTabAdd,o=this.currentName,s=this.panes,l=this.editable,c=this.addable,u=this.tabPosition,d=this.stretch,p=l||c?e(\"span\",{class:\"el-tabs__new-tab\",on:{click:a,keydown:function(e){13===e.keyCode&&a()}},attrs:{tabindex:\"0\"}},[e(\"i\",{class:\"el-icon-plus\"})]):null,h={props:{currentName:o,onTabClick:i,onTabRemove:r,editable:l,type:n,panes:s,stretch:d},ref:\"nav\"},f=e(\"div\",{class:[\"el-tabs__header\",\"is-\"+u]},[p,e(\"tab-nav\",h)]),_=e(\"div\",{class:\"el-tabs__content\"},[this.$slots.default]);return e(\"div\",{class:(t={\"el-tabs\":!0,\"el-tabs--card\":\"card\"===n},t[\"el-tabs--\"+u]=!0,t[\"el-tabs--border-card\"]=\"border-card\"===n,t)},[\"bottom\"!==u?[f,_]:[_,f]])},created:function(){this.currentName||this.setCurrentName(\"0\"),this.$on(\"tab-nav-update\",this.calcPaneInstances.bind(null,!0))},mounted:function(){this.calcPaneInstances()},updated:function(){this.calcPaneInstances()}},Pl=Ll,Fl=s(Pl,Dl,Il,!1,null,null,null);Fl.options.__file=\"packages/tabs/src/tabs.vue\";var Bl=Fl.exports;Bl.install=function(e){e.component(Bl.name,Bl)};var Ul=Bl,$l=function(){var e=this,t=e.$createElement,n=e._self._c||t;return!e.lazy||e.loaded||e.active?n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.active,expression:\"active\"}],staticClass:\"el-tab-pane\",attrs:{role:\"tabpanel\",\"aria-hidden\":!e.active,id:\"pane-\"+e.paneName,\"aria-labelledby\":\"tab-\"+e.paneName}},[e._t(\"default\")],2):e._e()},jl=[];$l._withStripped=!0;var Gl={name:\"ElTabPane\",componentName:\"ElTabPane\",props:{label:String,labelContent:Function,name:String,closable:Boolean,disabled:Boolean,lazy:Boolean},data:function(){return{index:null,loaded:!1}},computed:{isClosable:function(){return this.closable||this.$parent.closable},active:function(){var e=this.$parent.currentName===(this.name||this.index);return e&&(this.loaded=!0),e},paneName:function(){return this.name||this.index}},updated:function(){this.$parent.$emit(\"tab-nav-update\")}},ql=Gl,Hl=s(ql,$l,jl,!1,null,null,null);Hl.options.__file=\"packages/tabs/src/tab-pane.vue\";var Vl=Hl.exports;Vl.install=function(e){e.component(Vl.name,Vl)};var zl,Yl,Wl=Vl,Kl={name:\"ElTag\",props:{text:String,closable:Boolean,type:String,hit:Boolean,disableTransitions:Boolean,color:String,size:String,effect:{type:String,default:\"light\",validator:function(e){return-1!==[\"dark\",\"light\",\"plain\"].indexOf(e)}}},methods:{handleClose:function(e){e.stopPropagation(),this.$emit(\"close\",e)},handleClick:function(e){this.$emit(\"click\",e)}},computed:{tagSize:function(){return this.size||(this.$ELEMENT||{}).size}},render:function(e){var t=this.type,n=this.tagSize,i=this.hit,r=this.effect,a=[\"el-tag\",t?\"el-tag--\"+t:\"\",n?\"el-tag--\"+n:\"\",r?\"el-tag--\"+r:\"\",i&&\"is-hit\"],o=e(\"span\",{class:a,style:{backgroundColor:this.color},on:{click:this.handleClick}},[this.$slots.default,this.closable&&e(\"i\",{class:\"el-tag__close el-icon-close\",on:{click:this.handleClose}})]);return this.disableTransitions?o:e(\"transition\",{attrs:{name:\"el-zoom-in-center\"}},[o])}},Ql=Kl,Xl=s(Ql,zl,Yl,!1,null,null,null);Xl.options.__file=\"packages/tag/src/tag.vue\";var Zl=Xl.exports;Zl.install=function(e){e.component(Zl.name,Zl)};var Jl=Zl,ec=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-tree\",class:{\"el-tree--highlight-current\":e.highlightCurrent,\"is-dragging\":!!e.dragState.draggingNode,\"is-drop-not-allow\":!e.dragState.allowDrop,\"is-drop-inner\":\"inner\"===e.dragState.dropType},attrs:{role:\"tree\"}},[e._l(e.root.childNodes,(function(t){return n(\"el-tree-node\",{key:e.getNodeKey(t),attrs:{node:t,props:e.props,\"render-after-expand\":e.renderAfterExpand,\"show-checkbox\":e.showCheckbox,\"render-content\":e.renderContent},on:{\"node-expand\":e.handleNodeExpand}})})),e.isEmpty?n(\"div\",{staticClass:\"el-tree__empty-block\"},[n(\"span\",{staticClass:\"el-tree__empty-text\"},[e._v(e._s(e.emptyText))])]):e._e(),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.dragState.showDropIndicator,expression:\"dragState.showDropIndicator\"}],ref:\"dropIndicator\",staticClass:\"el-tree__drop-indicator\"})],2)},tc=[];ec._withStripped=!0;var nc=\"$treeNodeId\",ic=function(e,t){t&&!t[nc]&&Object.defineProperty(t,nc,{value:e.id,enumerable:!1,configurable:!1,writable:!1})},rc=function(e,t){return e?t[e]:t[nc]},ac=function(e,t){var n=e;while(n&&\"BODY\"!==n.tagName){if(n.__vue__&&n.__vue__.$options.name===t)return n.__vue__;n=n.parentNode}return null},oc=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,\"value\"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}();function sc(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}var lc=function(e){for(var t=!0,n=!0,i=!0,r=0,a=e.length;r<a;r++){var o=e[r];(!0!==o.checked||o.indeterminate)&&(t=!1,o.disabled||(i=!1)),(!1!==o.checked||o.indeterminate)&&(n=!1)}return{all:t,none:n,allWithoutDisable:i,half:!t&&!n}},cc=function e(t){if(0!==t.childNodes.length){var n=lc(t.childNodes),i=n.all,r=n.none,a=n.half;i?(t.checked=!0,t.indeterminate=!1):a?(t.checked=!1,t.indeterminate=!0):r&&(t.checked=!1,t.indeterminate=!1);var o=t.parent;o&&0!==o.level&&(t.store.checkStrictly||e(o))}},uc=function(e,t){var n=e.store.props,i=e.data||{},r=n[t];if(\"function\"===typeof r)return r(i,e);if(\"string\"===typeof r)return i[r];if(\"undefined\"===typeof r){var a=i[t];return void 0===a?\"\":a}},dc=0,pc=function(){function e(t){for(var n in sc(this,e),this.id=dc++,this.text=null,this.checked=!1,this.indeterminate=!1,this.data=null,this.expanded=!1,this.parent=null,this.visible=!0,this.isCurrent=!1,t)t.hasOwnProperty(n)&&(this[n]=t[n]);this.level=0,this.loaded=!1,this.childNodes=[],this.loading=!1,this.parent&&(this.level=this.parent.level+1);var i=this.store;if(!i)throw new Error(\"[Node]store is required!\");i.registerNode(this);var r=i.props;if(r&&\"undefined\"!==typeof r.isLeaf){var a=uc(this,\"isLeaf\");\"boolean\"===typeof a&&(this.isLeafByUser=a)}if(!0!==i.lazy&&this.data?(this.setData(this.data),i.defaultExpandAll&&(this.expanded=!0)):this.level>0&&i.lazy&&i.defaultExpandAll&&this.expand(),Array.isArray(this.data)||ic(this,this.data),this.data){var o=i.defaultExpandedKeys,s=i.key;s&&o&&-1!==o.indexOf(this.key)&&this.expand(null,i.autoExpandParent),s&&void 0!==i.currentNodeKey&&this.key===i.currentNodeKey&&(i.currentNode=this,i.currentNode.isCurrent=!0),i.lazy&&i._initDefaultCheckedNode(this),this.updateLeafState()}}return e.prototype.setData=function(e){Array.isArray(e)||ic(this,e),this.data=e,this.childNodes=[];var t=void 0;t=0===this.level&&this.data instanceof Array?this.data:uc(this,\"children\")||[];for(var n=0,i=t.length;n<i;n++)this.insertChild({data:t[n]})},e.prototype.contains=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=function n(i){for(var r=i.childNodes||[],a=!1,o=0,s=r.length;o<s;o++){var l=r[o];if(l===e||t&&n(l)){a=!0;break}}return a};return n(this)},e.prototype.remove=function(){var e=this.parent;e&&e.removeChild(this)},e.prototype.insertChild=function(t,n,i){if(!t)throw new Error(\"insertChild error: child is required.\");if(!(t instanceof e)){if(!i){var r=this.getChildren(!0);-1===r.indexOf(t.data)&&(\"undefined\"===typeof n||n<0?r.push(t.data):r.splice(n,0,t.data))}xt()(t,{parent:this,store:this.store}),t=new e(t)}t.level=this.level+1,\"undefined\"===typeof n||n<0?this.childNodes.push(t):this.childNodes.splice(n,0,t),this.updateLeafState()},e.prototype.insertBefore=function(e,t){var n=void 0;t&&(n=this.childNodes.indexOf(t)),this.insertChild(e,n)},e.prototype.insertAfter=function(e,t){var n=void 0;t&&(n=this.childNodes.indexOf(t),-1!==n&&(n+=1)),this.insertChild(e,n)},e.prototype.removeChild=function(e){var t=this.getChildren()||[],n=t.indexOf(e.data);n>-1&&t.splice(n,1);var i=this.childNodes.indexOf(e);i>-1&&(this.store&&this.store.deregisterNode(e),e.parent=null,this.childNodes.splice(i,1)),this.updateLeafState()},e.prototype.removeChildByData=function(e){for(var t=null,n=0;n<this.childNodes.length;n++)if(this.childNodes[n].data===e){t=this.childNodes[n];break}t&&this.removeChild(t)},e.prototype.expand=function(e,t){var n=this,i=function(){if(t){var i=n.parent;while(i.level>0)i.expanded=!0,i=i.parent}n.expanded=!0,e&&e()};this.shouldLoadData()?this.loadData((function(e){e instanceof Array&&(n.checked?n.setChecked(!0,!0):n.store.checkStrictly||cc(n),i())})):i()},e.prototype.doCreateChildren=function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};e.forEach((function(e){t.insertChild(xt()({data:e},n),void 0,!0)}))},e.prototype.collapse=function(){this.expanded=!1},e.prototype.shouldLoadData=function(){return!0===this.store.lazy&&this.store.load&&!this.loaded},e.prototype.updateLeafState=function(){if(!0!==this.store.lazy||!0===this.loaded||\"undefined\"===typeof this.isLeafByUser){var e=this.childNodes;!this.store.lazy||!0===this.store.lazy&&!0===this.loaded?this.isLeaf=!e||0===e.length:this.isLeaf=!1}else this.isLeaf=this.isLeafByUser},e.prototype.setChecked=function(e,t,n,i){var r=this;if(this.indeterminate=\"half\"===e,this.checked=!0===e,!this.store.checkStrictly){if(!this.shouldLoadData()||this.store.checkDescendants){var a=lc(this.childNodes),o=a.all,s=a.allWithoutDisable;this.isLeaf||o||!s||(this.checked=!1,e=!1);var l=function(){if(t){for(var n=r.childNodes,a=0,o=n.length;a<o;a++){var s=n[a];i=i||!1!==e;var l=s.disabled?s.checked:i;s.setChecked(l,t,!0,i)}var c=lc(n),u=c.half,d=c.all;d||(r.checked=d,r.indeterminate=u)}};if(this.shouldLoadData())return void this.loadData((function(){l(),cc(r)}),{checked:!1!==e});l()}var c=this.parent;c&&0!==c.level&&(n||cc(c))}},e.prototype.getChildren=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(0===this.level)return this.data;var t=this.data;if(!t)return null;var n=this.store.props,i=\"children\";return n&&(i=n.children||\"children\"),void 0===t[i]&&(t[i]=null),e&&!t[i]&&(t[i]=[]),t[i]},e.prototype.updateChildren=function(){var e=this,t=this.getChildren()||[],n=this.childNodes.map((function(e){return e.data})),i={},r=[];t.forEach((function(e,t){var a=e[nc],o=!!a&&Object(b[\"arrayFindIndex\"])(n,(function(e){return e[nc]===a}))>=0;o?i[a]={index:t,data:e}:r.push({index:t,data:e})})),this.store.lazy||n.forEach((function(t){i[t[nc]]||e.removeChildByData(t)})),r.forEach((function(t){var n=t.index,i=t.data;e.insertChild({data:i},n)})),this.updateLeafState()},e.prototype.loadData=function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!0!==this.store.lazy||!this.store.load||this.loaded||this.loading&&!Object.keys(n).length)e&&e.call(this);else{this.loading=!0;var i=function(i){t.loaded=!0,t.loading=!1,t.childNodes=[],t.doCreateChildren(i,n),t.updateLeafState(),e&&e.call(t,i)};this.store.load(this,i)}},oc(e,[{key:\"label\",get:function(){return uc(this,\"label\")}},{key:\"key\",get:function(){var e=this.store.key;return this.data?this.data[e]:null}},{key:\"disabled\",get:function(){return uc(this,\"disabled\")}},{key:\"nextSibling\",get:function(){var e=this.parent;if(e){var t=e.childNodes.indexOf(this);if(t>-1)return e.childNodes[t+1]}return null}},{key:\"previousSibling\",get:function(){var e=this.parent;if(e){var t=e.childNodes.indexOf(this);if(t>-1)return t>0?e.childNodes[t-1]:null}return null}}]),e}(),hc=pc,fc=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e};function _c(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}var mc=function(){function e(t){var n=this;for(var i in _c(this,e),this.currentNode=null,this.currentNodeKey=null,t)t.hasOwnProperty(i)&&(this[i]=t[i]);if(this.nodesMap={},this.root=new hc({data:this.data,store:this}),this.lazy&&this.load){var r=this.load;r(this.root,(function(e){n.root.doCreateChildren(e),n._initDefaultCheckedNodes()}))}else this._initDefaultCheckedNodes()}return e.prototype.filter=function(e){var t=this.filterNodeMethod,n=this.lazy,i=function i(r){var a=r.root?r.root.childNodes:r.childNodes;if(a.forEach((function(n){n.visible=t.call(n,e,n.data,n),i(n)})),!r.visible&&a.length){var o=!0;o=!a.some((function(e){return e.visible})),r.root?r.root.visible=!1===o:r.visible=!1===o}e&&(!r.visible||r.isLeaf||n||r.expand())};i(this)},e.prototype.setData=function(e){var t=e!==this.root.data;t?(this.root.setData(e),this._initDefaultCheckedNodes()):this.root.updateChildren()},e.prototype.getNode=function(e){if(e instanceof hc)return e;var t=\"object\"!==(\"undefined\"===typeof e?\"undefined\":fc(e))?e:rc(this.key,e);return this.nodesMap[t]||null},e.prototype.insertBefore=function(e,t){var n=this.getNode(t);n.parent.insertBefore({data:e},n)},e.prototype.insertAfter=function(e,t){var n=this.getNode(t);n.parent.insertAfter({data:e},n)},e.prototype.remove=function(e){var t=this.getNode(e);t&&t.parent&&(t===this.currentNode&&(this.currentNode=null),t.parent.removeChild(t))},e.prototype.append=function(e,t){var n=t?this.getNode(t):this.root;n&&n.insertChild({data:e})},e.prototype._initDefaultCheckedNodes=function(){var e=this,t=this.defaultCheckedKeys||[],n=this.nodesMap;t.forEach((function(t){var i=n[t];i&&i.setChecked(!0,!e.checkStrictly)}))},e.prototype._initDefaultCheckedNode=function(e){var t=this.defaultCheckedKeys||[];-1!==t.indexOf(e.key)&&e.setChecked(!0,!this.checkStrictly)},e.prototype.setDefaultCheckedKey=function(e){e!==this.defaultCheckedKeys&&(this.defaultCheckedKeys=e,this._initDefaultCheckedNodes())},e.prototype.registerNode=function(e){var t=this.key;if(t&&e&&e.data){var n=e.key;void 0!==n&&(this.nodesMap[e.key]=e)}},e.prototype.deregisterNode=function(e){var t=this,n=this.key;n&&e&&e.data&&(e.childNodes.forEach((function(e){t.deregisterNode(e)})),delete this.nodesMap[e.key])},e.prototype.getCheckedNodes=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=[],i=function i(r){var a=r.root?r.root.childNodes:r.childNodes;a.forEach((function(r){(r.checked||t&&r.indeterminate)&&(!e||e&&r.isLeaf)&&n.push(r.data),i(r)}))};return i(this),n},e.prototype.getCheckedKeys=function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return this.getCheckedNodes(t).map((function(t){return(t||{})[e.key]}))},e.prototype.getHalfCheckedNodes=function(){var e=[],t=function t(n){var i=n.root?n.root.childNodes:n.childNodes;i.forEach((function(n){n.indeterminate&&e.push(n.data),t(n)}))};return t(this),e},e.prototype.getHalfCheckedKeys=function(){var e=this;return this.getHalfCheckedNodes().map((function(t){return(t||{})[e.key]}))},e.prototype._getAllNodes=function(){var e=[],t=this.nodesMap;for(var n in t)t.hasOwnProperty(n)&&e.push(t[n]);return e},e.prototype.updateChildren=function(e,t){var n=this.nodesMap[e];if(n){for(var i=n.childNodes,r=i.length-1;r>=0;r--){var a=i[r];this.remove(a.data)}for(var o=0,s=t.length;o<s;o++){var l=t[o];this.append(l,n.data)}}},e.prototype._setCheckedKeys=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments[2],i=this._getAllNodes().sort((function(e,t){return t.level-e.level})),r=Object.create(null),a=Object.keys(n);i.forEach((function(e){return e.setChecked(!1,!1)}));for(var o=0,s=i.length;o<s;o++){var l=i[o],c=l.data[e].toString(),u=a.indexOf(c)>-1;if(u){var d=l.parent;while(d&&d.level>0)r[d.data[e]]=!0,d=d.parent;l.isLeaf||this.checkStrictly?l.setChecked(!0,!1):(l.setChecked(!0,!0),t&&function(){l.setChecked(!1,!1);var e=function e(t){var n=t.childNodes;n.forEach((function(t){t.isLeaf||t.setChecked(!1,!1),e(t)}))};e(l)}())}else l.checked&&!r[c]&&l.setChecked(!1,!1)}},e.prototype.setCheckedNodes=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=this.key,i={};e.forEach((function(e){i[(e||{})[n]]=!0})),this._setCheckedKeys(n,t,i)},e.prototype.setCheckedKeys=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];this.defaultCheckedKeys=e;var n=this.key,i={};e.forEach((function(e){i[e]=!0})),this._setCheckedKeys(n,t,i)},e.prototype.setDefaultExpandedKeys=function(e){var t=this;e=e||[],this.defaultExpandedKeys=e,e.forEach((function(e){var n=t.getNode(e);n&&n.expand(null,t.autoExpandParent)}))},e.prototype.setChecked=function(e,t,n){var i=this.getNode(e);i&&i.setChecked(!!t,n)},e.prototype.getCurrentNode=function(){return this.currentNode},e.prototype.setCurrentNode=function(e){var t=this.currentNode;t&&(t.isCurrent=!1),this.currentNode=e,this.currentNode.isCurrent=!0},e.prototype.setUserCurrentNode=function(e){var t=e[this.key],n=this.nodesMap[t];this.setCurrentNode(n)},e.prototype.setCurrentNodeKey=function(e){if(null===e||void 0===e)return this.currentNode&&(this.currentNode.isCurrent=!1),void(this.currentNode=null);var t=this.getNode(e);t&&this.setCurrentNode(t)},e}(),gc=mc,bc=function(){var e=this,t=this,n=t.$createElement,i=t._self._c||n;return i(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.node.visible,expression:\"node.visible\"}],ref:\"node\",staticClass:\"el-tree-node\",class:{\"is-expanded\":t.expanded,\"is-current\":t.node.isCurrent,\"is-hidden\":!t.node.visible,\"is-focusable\":!t.node.disabled,\"is-checked\":!t.node.disabled&&t.node.checked},attrs:{role:\"treeitem\",tabindex:\"-1\",\"aria-expanded\":t.expanded,\"aria-disabled\":t.node.disabled,\"aria-checked\":t.node.checked,draggable:t.tree.draggable},on:{click:function(e){return e.stopPropagation(),t.handleClick(e)},contextmenu:function(t){return e.handleContextMenu(t)},dragstart:function(e){return e.stopPropagation(),t.handleDragStart(e)},dragover:function(e){return e.stopPropagation(),t.handleDragOver(e)},dragend:function(e){return e.stopPropagation(),t.handleDragEnd(e)},drop:function(e){return e.stopPropagation(),t.handleDrop(e)}}},[i(\"div\",{staticClass:\"el-tree-node__content\",style:{\"padding-left\":(t.node.level-1)*t.tree.indent+\"px\"}},[i(\"span\",{class:[{\"is-leaf\":t.node.isLeaf,expanded:!t.node.isLeaf&&t.expanded},\"el-tree-node__expand-icon\",t.tree.iconClass?t.tree.iconClass:\"el-icon-caret-right\"],on:{click:function(e){return e.stopPropagation(),t.handleExpandIconClick(e)}}}),t.showCheckbox?i(\"el-checkbox\",{attrs:{indeterminate:t.node.indeterminate,disabled:!!t.node.disabled},on:{change:t.handleCheckChange},nativeOn:{click:function(e){e.stopPropagation()}},model:{value:t.node.checked,callback:function(e){t.$set(t.node,\"checked\",e)},expression:\"node.checked\"}}):t._e(),t.node.loading?i(\"span\",{staticClass:\"el-tree-node__loading-icon el-icon-loading\"}):t._e(),i(\"node-content\",{attrs:{node:t.node}})],1),i(\"el-collapse-transition\",[!t.renderAfterExpand||t.childNodeRendered?i(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.expanded,expression:\"expanded\"}],staticClass:\"el-tree-node__children\",attrs:{role:\"group\",\"aria-expanded\":t.expanded}},t._l(t.node.childNodes,(function(e){return i(\"el-tree-node\",{key:t.getNodeKey(e),attrs:{\"render-content\":t.renderContent,\"render-after-expand\":t.renderAfterExpand,\"show-checkbox\":t.showCheckbox,node:e},on:{\"node-expand\":t.handleChildNodeExpand}})})),1):t._e()])],1)},vc=[];bc._withStripped=!0;var Ec={name:\"ElTreeNode\",componentName:\"ElTreeNode\",mixins:[N.a],props:{node:{default:function(){return{}}},props:{},renderContent:Function,renderAfterExpand:{type:Boolean,default:!0},showCheckbox:{type:Boolean,default:!1}},components:{ElCollapseTransition:Ye.a,ElCheckbox:Pi.a,NodeContent:{props:{node:{required:!0}},render:function(e){var t=this.$parent,n=t.tree,i=this.node,r=i.data,a=i.store;return t.renderContent?t.renderContent.call(t._renderProxy,e,{_self:n.$vnode.context,node:i,data:r,store:a}):n.$scopedSlots.default?n.$scopedSlots.default({node:i,data:r}):e(\"span\",{class:\"el-tree-node__label\"},[i.label])}}},data:function(){return{tree:null,expanded:!1,childNodeRendered:!1,oldChecked:null,oldIndeterminate:null}},watch:{\"node.indeterminate\":function(e){this.handleSelectChange(this.node.checked,e)},\"node.checked\":function(e){this.handleSelectChange(e,this.node.indeterminate)},\"node.expanded\":function(e){var t=this;this.$nextTick((function(){return t.expanded=e})),e&&(this.childNodeRendered=!0)}},methods:{getNodeKey:function(e){return rc(this.tree.nodeKey,e.data)},handleSelectChange:function(e,t){this.oldChecked!==e&&this.oldIndeterminate!==t&&this.tree.$emit(\"check-change\",this.node.data,e,t),this.oldChecked=e,this.indeterminate=t},handleClick:function(){var e=this.tree.store;e.setCurrentNode(this.node),this.tree.$emit(\"current-change\",e.currentNode?e.currentNode.data:null,e.currentNode),this.tree.currentNode=this,this.tree.expandOnClickNode&&this.handleExpandIconClick(),this.tree.checkOnClickNode&&!this.node.disabled&&this.handleCheckChange(null,{target:{checked:!this.node.checked}}),this.tree.$emit(\"node-click\",this.node.data,this.node,this)},handleContextMenu:function(e){this.tree._events[\"node-contextmenu\"]&&this.tree._events[\"node-contextmenu\"].length>0&&(e.stopPropagation(),e.preventDefault()),this.tree.$emit(\"node-contextmenu\",e,this.node.data,this.node,this)},handleExpandIconClick:function(){this.node.isLeaf||(this.expanded?(this.tree.$emit(\"node-collapse\",this.node.data,this.node,this),this.node.collapse()):(this.node.expand(),this.$emit(\"node-expand\",this.node.data,this.node,this)))},handleCheckChange:function(e,t){var n=this;this.node.setChecked(t.target.checked,!this.tree.checkStrictly),this.$nextTick((function(){var e=n.tree.store;n.tree.$emit(\"check\",n.node.data,{checkedNodes:e.getCheckedNodes(),checkedKeys:e.getCheckedKeys(),halfCheckedNodes:e.getHalfCheckedNodes(),halfCheckedKeys:e.getHalfCheckedKeys()})}))},handleChildNodeExpand:function(e,t,n){this.broadcast(\"ElTreeNode\",\"tree-node-expand\",t),this.tree.$emit(\"node-expand\",e,t,n)},handleDragStart:function(e){this.tree.draggable&&this.tree.$emit(\"tree-node-drag-start\",e,this)},handleDragOver:function(e){this.tree.draggable&&(this.tree.$emit(\"tree-node-drag-over\",e,this),e.preventDefault())},handleDrop:function(e){e.preventDefault()},handleDragEnd:function(e){this.tree.draggable&&this.tree.$emit(\"tree-node-drag-end\",e,this)}},created:function(){var e=this,t=this.$parent;t.isTree?this.tree=t:this.tree=t.tree;var n=this.tree,i=n.props||{},r=i[\"children\"]||\"children\";this.$watch(\"node.data.\"+r,(function(){e.node.updateChildren()})),this.node.expanded&&(this.expanded=!0,this.childNodeRendered=!0),this.tree.accordion&&this.$on(\"tree-node-expand\",(function(t){e.node!==t&&e.node.collapse()}))}},yc=Ec,Sc=s(yc,bc,vc,!1,null,null,null);Sc.options.__file=\"packages/tree/src/tree-node.vue\";var Cc=Sc.exports,Tc={name:\"ElTree\",mixins:[N.a],components:{ElTreeNode:Cc},data:function(){return{store:null,root:null,currentNode:null,treeItems:null,checkboxItems:[],dragState:{showDropIndicator:!1,draggingNode:null,dropNode:null,allowDrop:!0}}},props:{data:{type:Array},emptyText:{type:String,default:function(){return Object(ti[\"t\"])(\"el.tree.emptyText\")}},renderAfterExpand:{type:Boolean,default:!0},nodeKey:String,checkStrictly:Boolean,defaultExpandAll:Boolean,expandOnClickNode:{type:Boolean,default:!0},checkOnClickNode:Boolean,checkDescendants:{type:Boolean,default:!1},autoExpandParent:{type:Boolean,default:!0},defaultCheckedKeys:Array,defaultExpandedKeys:Array,currentNodeKey:[String,Number],renderContent:Function,showCheckbox:{type:Boolean,default:!1},draggable:{type:Boolean,default:!1},allowDrag:Function,allowDrop:Function,props:{default:function(){return{children:\"children\",label:\"label\",disabled:\"disabled\"}}},lazy:{type:Boolean,default:!1},highlightCurrent:Boolean,load:Function,filterNodeMethod:Function,accordion:Boolean,indent:{type:Number,default:18},iconClass:String},computed:{children:{set:function(e){this.data=e},get:function(){return this.data}},treeItemArray:function(){return Array.prototype.slice.call(this.treeItems)},isEmpty:function(){var e=this.root.childNodes;return!e||0===e.length||e.every((function(e){var t=e.visible;return!t}))}},watch:{defaultCheckedKeys:function(e){this.store.setDefaultCheckedKey(e)},defaultExpandedKeys:function(e){this.store.defaultExpandedKeys=e,this.store.setDefaultExpandedKeys(e)},data:function(e){this.store.setData(e)},checkboxItems:function(e){Array.prototype.forEach.call(e,(function(e){e.setAttribute(\"tabindex\",-1)}))},checkStrictly:function(e){this.store.checkStrictly=e}},methods:{filter:function(e){if(!this.filterNodeMethod)throw new Error(\"[Tree] filterNodeMethod is required when filter\");this.store.filter(e)},getNodeKey:function(e){return rc(this.nodeKey,e.data)},getNodePath:function(e){if(!this.nodeKey)throw new Error(\"[Tree] nodeKey is required in getNodePath\");var t=this.store.getNode(e);if(!t)return[];var n=[t.data],i=t.parent;while(i&&i!==this.root)n.push(i.data),i=i.parent;return n.reverse()},getCheckedNodes:function(e,t){return this.store.getCheckedNodes(e,t)},getCheckedKeys:function(e){return this.store.getCheckedKeys(e)},getCurrentNode:function(){var e=this.store.getCurrentNode();return e?e.data:null},getCurrentKey:function(){if(!this.nodeKey)throw new Error(\"[Tree] nodeKey is required in getCurrentKey\");var e=this.getCurrentNode();return e?e[this.nodeKey]:null},setCheckedNodes:function(e,t){if(!this.nodeKey)throw new Error(\"[Tree] nodeKey is required in setCheckedNodes\");this.store.setCheckedNodes(e,t)},setCheckedKeys:function(e,t){if(!this.nodeKey)throw new Error(\"[Tree] nodeKey is required in setCheckedKeys\");this.store.setCheckedKeys(e,t)},setChecked:function(e,t,n){this.store.setChecked(e,t,n)},getHalfCheckedNodes:function(){return this.store.getHalfCheckedNodes()},getHalfCheckedKeys:function(){return this.store.getHalfCheckedKeys()},setCurrentNode:function(e){if(!this.nodeKey)throw new Error(\"[Tree] nodeKey is required in setCurrentNode\");this.store.setUserCurrentNode(e)},setCurrentKey:function(e){if(!this.nodeKey)throw new Error(\"[Tree] nodeKey is required in setCurrentKey\");this.store.setCurrentNodeKey(e)},getNode:function(e){return this.store.getNode(e)},remove:function(e){this.store.remove(e)},append:function(e,t){this.store.append(e,t)},insertBefore:function(e,t){this.store.insertBefore(e,t)},insertAfter:function(e,t){this.store.insertAfter(e,t)},handleNodeExpand:function(e,t,n){this.broadcast(\"ElTreeNode\",\"tree-node-expand\",t),this.$emit(\"node-expand\",e,t,n)},updateKeyChildren:function(e,t){if(!this.nodeKey)throw new Error(\"[Tree] nodeKey is required in updateKeyChild\");this.store.updateChildren(e,t)},initTabIndex:function(){this.treeItems=this.$el.querySelectorAll(\".is-focusable[role=treeitem]\"),this.checkboxItems=this.$el.querySelectorAll(\"input[type=checkbox]\");var e=this.$el.querySelectorAll(\".is-checked[role=treeitem]\");e.length?e[0].setAttribute(\"tabindex\",0):this.treeItems[0]&&this.treeItems[0].setAttribute(\"tabindex\",0)},handleKeydown:function(e){var t=e.target;if(-1!==t.className.indexOf(\"el-tree-node\")){var n=e.keyCode;this.treeItems=this.$el.querySelectorAll(\".is-focusable[role=treeitem]\");var i=this.treeItemArray.indexOf(t),r=void 0;[38,40].indexOf(n)>-1&&(e.preventDefault(),r=38===n?0!==i?i-1:0:i<this.treeItemArray.length-1?i+1:0,this.treeItemArray[r].focus()),[37,39].indexOf(n)>-1&&(e.preventDefault(),t.click());var a=t.querySelector('[type=\"checkbox\"]');[13,32].indexOf(n)>-1&&a&&(e.preventDefault(),a.click())}}},created:function(){var e=this;this.isTree=!0,this.store=new gc({key:this.nodeKey,data:this.data,lazy:this.lazy,props:this.props,load:this.load,currentNodeKey:this.currentNodeKey,checkStrictly:this.checkStrictly,checkDescendants:this.checkDescendants,defaultCheckedKeys:this.defaultCheckedKeys,defaultExpandedKeys:this.defaultExpandedKeys,autoExpandParent:this.autoExpandParent,defaultExpandAll:this.defaultExpandAll,filterNodeMethod:this.filterNodeMethod}),this.root=this.store.root;var t=this.dragState;this.$on(\"tree-node-drag-start\",(function(n,i){if(\"function\"===typeof e.allowDrag&&!e.allowDrag(i.node))return n.preventDefault(),!1;n.dataTransfer.effectAllowed=\"move\";try{n.dataTransfer.setData(\"text/plain\",\"\")}catch(r){}t.draggingNode=i,e.$emit(\"node-drag-start\",i.node,n)})),this.$on(\"tree-node-drag-over\",(function(n,i){var r=ac(n.target,\"ElTreeNode\"),a=t.dropNode;a&&a!==r&&Object(Be[\"removeClass\"])(a.$el,\"is-drop-inner\");var o=t.draggingNode;if(o&&r){var s=!0,l=!0,c=!0,u=!0;\"function\"===typeof e.allowDrop&&(s=e.allowDrop(o.node,r.node,\"prev\"),u=l=e.allowDrop(o.node,r.node,\"inner\"),c=e.allowDrop(o.node,r.node,\"next\")),n.dataTransfer.dropEffect=l?\"move\":\"none\",(s||l||c)&&a!==r&&(a&&e.$emit(\"node-drag-leave\",o.node,a.node,n),e.$emit(\"node-drag-enter\",o.node,r.node,n)),(s||l||c)&&(t.dropNode=r),r.node.nextSibling===o.node&&(c=!1),r.node.previousSibling===o.node&&(s=!1),r.node.contains(o.node,!1)&&(l=!1),(o.node===r.node||o.node.contains(r.node))&&(s=!1,l=!1,c=!1);var d=r.$el.getBoundingClientRect(),p=e.$el.getBoundingClientRect(),h=void 0,f=s?l?.25:c?.45:1:-1,_=c?l?.75:s?.55:0:1,m=-9999,g=n.clientY-d.top;h=g<d.height*f?\"before\":g>d.height*_?\"after\":l?\"inner\":\"none\";var b=r.$el.querySelector(\".el-tree-node__expand-icon\").getBoundingClientRect(),v=e.$refs.dropIndicator;\"before\"===h?m=b.top-p.top:\"after\"===h&&(m=b.bottom-p.top),v.style.top=m+\"px\",v.style.left=b.right-p.left+\"px\",\"inner\"===h?Object(Be[\"addClass\"])(r.$el,\"is-drop-inner\"):Object(Be[\"removeClass\"])(r.$el,\"is-drop-inner\"),t.showDropIndicator=\"before\"===h||\"after\"===h,t.allowDrop=t.showDropIndicator||u,t.dropType=h,e.$emit(\"node-drag-over\",o.node,r.node,n)}})),this.$on(\"tree-node-drag-end\",(function(n){var i=t.draggingNode,r=t.dropType,a=t.dropNode;if(n.preventDefault(),n.dataTransfer.dropEffect=\"move\",i&&a){var o={data:i.node.data};\"none\"!==r&&i.node.remove(),\"before\"===r?a.node.parent.insertBefore(o,a.node):\"after\"===r?a.node.parent.insertAfter(o,a.node):\"inner\"===r&&a.node.insertChild(o),\"none\"!==r&&e.store.registerNode(o),Object(Be[\"removeClass\"])(a.$el,\"is-drop-inner\"),e.$emit(\"node-drag-end\",i.node,a.node,r,n),\"none\"!==r&&e.$emit(\"node-drop\",i.node,a.node,r,n)}i&&!a&&e.$emit(\"node-drag-end\",i.node,null,r,n),t.showDropIndicator=!1,t.draggingNode=null,t.dropNode=null,t.allowDrop=!0}))},mounted:function(){this.initTabIndex(),this.$el.addEventListener(\"keydown\",this.handleKeydown)},updated:function(){this.treeItems=this.$el.querySelectorAll(\"[role=treeitem]\"),this.checkboxItems=this.$el.querySelectorAll(\"input[type=checkbox]\")}},xc=Tc,wc=s(xc,ec,tc,!1,null,null,null);wc.options.__file=\"packages/tree/src/tree.vue\";var Oc=wc.exports;Oc.install=function(e){e.component(Oc.name,Oc)};var Nc=Oc,Rc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-alert-fade\"}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-alert\",class:[e.typeClass,e.center?\"is-center\":\"\",\"is-\"+e.effect],attrs:{role:\"alert\"}},[e.showIcon?n(\"i\",{staticClass:\"el-alert__icon\",class:[e.iconClass,e.isBigIcon]}):e._e(),n(\"div\",{staticClass:\"el-alert__content\"},[e.title||e.$slots.title?n(\"span\",{staticClass:\"el-alert__title\",class:[e.isBoldTitle]},[e._t(\"title\",[e._v(e._s(e.title))])],2):e._e(),e.$slots.default&&!e.description?n(\"p\",{staticClass:\"el-alert__description\"},[e._t(\"default\")],2):e._e(),e.description&&!e.$slots.default?n(\"p\",{staticClass:\"el-alert__description\"},[e._v(e._s(e.description))]):e._e(),n(\"i\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.closable,expression:\"closable\"}],staticClass:\"el-alert__closebtn\",class:{\"is-customed\":\"\"!==e.closeText,\"el-icon-close\":\"\"===e.closeText},on:{click:function(t){e.close()}}},[e._v(e._s(e.closeText))])])])])},kc=[];Rc._withStripped=!0;var Ac={success:\"el-icon-success\",warning:\"el-icon-warning\",error:\"el-icon-error\"},Dc={name:\"ElAlert\",props:{title:{type:String,default:\"\"},description:{type:String,default:\"\"},type:{type:String,default:\"info\"},closable:{type:Boolean,default:!0},closeText:{type:String,default:\"\"},showIcon:Boolean,center:Boolean,effect:{type:String,default:\"light\",validator:function(e){return-1!==[\"light\",\"dark\"].indexOf(e)}}},data:function(){return{visible:!0}},methods:{close:function(){this.visible=!1,this.$emit(\"close\")}},computed:{typeClass:function(){return\"el-alert--\"+this.type},iconClass:function(){return Ac[this.type]||\"el-icon-info\"},isBigIcon:function(){return this.description||this.$slots.default?\"is-big\":\"\"},isBoldTitle:function(){return this.description||this.$slots.default?\"is-bold\":\"\"}}},Ic=Dc,Mc=s(Ic,Rc,kc,!1,null,null,null);Mc.options.__file=\"packages/alert/src/main.vue\";var Lc=Mc.exports;Lc.install=function(e){e.component(Lc.name,Lc)};var Pc=Lc,Fc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-notification-fade\"}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],class:[\"el-notification\",e.customClass,e.horizontalClass],style:e.positionStyle,attrs:{role:\"alert\"},on:{mouseenter:function(t){e.clearTimer()},mouseleave:function(t){e.startTimer()},click:e.click}},[e.type||e.iconClass?n(\"i\",{staticClass:\"el-notification__icon\",class:[e.typeClass,e.iconClass]}):e._e(),n(\"div\",{staticClass:\"el-notification__group\",class:{\"is-with-icon\":e.typeClass||e.iconClass}},[n(\"h2\",{staticClass:\"el-notification__title\",domProps:{textContent:e._s(e.title)}}),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.message,expression:\"message\"}],staticClass:\"el-notification__content\"},[e._t(\"default\",[e.dangerouslyUseHTMLString?n(\"p\",{domProps:{innerHTML:e._s(e.message)}}):n(\"p\",[e._v(e._s(e.message))])])],2),e.showClose?n(\"div\",{staticClass:\"el-notification__closeBtn el-icon-close\",on:{click:function(t){return t.stopPropagation(),e.close(t)}}}):e._e()])])])},Bc=[];Fc._withStripped=!0;var Uc={success:\"success\",info:\"info\",warning:\"warning\",error:\"error\"},$c={data:function(){return{visible:!1,title:\"\",message:\"\",duration:4500,type:\"\",showClose:!0,customClass:\"\",iconClass:\"\",onClose:null,onClick:null,closed:!1,verticalOffset:0,timer:null,dangerouslyUseHTMLString:!1,position:\"top-right\"}},computed:{typeClass:function(){return this.type&&Uc[this.type]?\"el-icon-\"+Uc[this.type]:\"\"},horizontalClass:function(){return this.position.indexOf(\"right\")>-1?\"right\":\"left\"},verticalProperty:function(){return/^top-/.test(this.position)?\"top\":\"bottom\"},positionStyle:function(){var e;return e={},e[this.verticalProperty]=this.verticalOffset+\"px\",e}},watch:{closed:function(e){e&&(this.visible=!1,this.$el.addEventListener(\"transitionend\",this.destroyElement))}},methods:{destroyElement:function(){this.$el.removeEventListener(\"transitionend\",this.destroyElement),this.$destroy(!0),this.$el.parentNode.removeChild(this.$el)},click:function(){\"function\"===typeof this.onClick&&this.onClick()},close:function(){this.closed=!0,\"function\"===typeof this.onClose&&this.onClose()},clearTimer:function(){clearTimeout(this.timer)},startTimer:function(){var e=this;this.duration>0&&(this.timer=setTimeout((function(){e.closed||e.close()}),this.duration))},keydown:function(e){46===e.keyCode||8===e.keyCode?this.clearTimer():27===e.keyCode?this.closed||this.close():this.startTimer()}},mounted:function(){var e=this;this.duration>0&&(this.timer=setTimeout((function(){e.closed||e.close()}),this.duration)),document.addEventListener(\"keydown\",this.keydown)},beforeDestroy:function(){document.removeEventListener(\"keydown\",this.keydown)}},jc=$c,Gc=s(jc,Fc,Bc,!1,null,null,null);Gc.options.__file=\"packages/notification/src/main.vue\";var qc=Gc.exports,Hc=Hi.a.extend(qc),Vc=void 0,zc=[],Yc=1,Wc=function e(t){if(!Hi.a.prototype.$isServer){t=xt()({},t);var n=t.onClose,i=\"notification_\"+Yc++,r=t.position||\"top-right\";t.onClose=function(){e.close(i,n)},Vc=new Hc({data:t}),Object(Ts[\"isVNode\"])(t.message)&&(Vc.$slots.default=[t.message],t.message=\"REPLACED_BY_VNODE\"),Vc.id=i,Vc.$mount(),document.body.appendChild(Vc.$el),Vc.visible=!0,Vc.dom=Vc.$el,Vc.dom.style.zIndex=C[\"PopupManager\"].nextZIndex();var a=t.offset||0;return zc.filter((function(e){return e.position===r})).forEach((function(e){a+=e.$el.offsetHeight+16})),a+=16,Vc.verticalOffset=a,zc.push(Vc),Vc}};[\"success\",\"warning\",\"info\",\"error\"].forEach((function(e){Wc[e]=function(t){return(\"string\"===typeof t||Object(Ts[\"isVNode\"])(t))&&(t={message:t}),t.type=e,Wc(t)}})),Wc.close=function(e,t){var n=-1,i=zc.length,r=zc.filter((function(t,i){return t.id===e&&(n=i,!0)}))[0];if(r&&(\"function\"===typeof t&&t(r),zc.splice(n,1),!(i<=1)))for(var a=r.position,o=r.dom.offsetHeight,s=n;s<i-1;s++)zc[s].position===a&&(zc[s].dom.style[r.verticalProperty]=parseInt(zc[s].dom.style[r.verticalProperty],10)-o-16+\"px\")},Wc.closeAll=function(){for(var e=zc.length-1;e>=0;e--)zc[e].close()};var Kc=Wc,Qc=Kc,Xc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-slider\",class:{\"is-vertical\":e.vertical,\"el-slider--with-input\":e.showInput},attrs:{role:\"slider\",\"aria-valuemin\":e.min,\"aria-valuemax\":e.max,\"aria-orientation\":e.vertical?\"vertical\":\"horizontal\",\"aria-disabled\":e.sliderDisabled}},[e.showInput&&!e.range?n(\"el-input-number\",{ref:\"input\",staticClass:\"el-slider__input\",attrs:{step:e.step,disabled:e.sliderDisabled,controls:e.showInputControls,min:e.min,max:e.max,debounce:e.debounce,size:e.inputSize},on:{change:e.emitChange},model:{value:e.firstValue,callback:function(t){e.firstValue=t},expression:\"firstValue\"}}):e._e(),n(\"div\",{ref:\"slider\",staticClass:\"el-slider__runway\",class:{\"show-input\":e.showInput,disabled:e.sliderDisabled},style:e.runwayStyle,on:{click:e.onSliderClick}},[n(\"div\",{staticClass:\"el-slider__bar\",style:e.barStyle}),n(\"slider-button\",{ref:\"button1\",attrs:{vertical:e.vertical,\"tooltip-class\":e.tooltipClass},model:{value:e.firstValue,callback:function(t){e.firstValue=t},expression:\"firstValue\"}}),e.range?n(\"slider-button\",{ref:\"button2\",attrs:{vertical:e.vertical,\"tooltip-class\":e.tooltipClass},model:{value:e.secondValue,callback:function(t){e.secondValue=t},expression:\"secondValue\"}}):e._e(),e._l(e.stops,(function(t,i){return e.showStops?n(\"div\",{key:i,staticClass:\"el-slider__stop\",style:e.getStopStyle(t)}):e._e()})),e.markList.length>0?[n(\"div\",e._l(e.markList,(function(t,i){return n(\"div\",{key:i,staticClass:\"el-slider__stop el-slider__marks-stop\",style:e.getStopStyle(t.position)})})),0),n(\"div\",{staticClass:\"el-slider__marks\"},e._l(e.markList,(function(t,i){return n(\"slider-marker\",{key:i,style:e.getStopStyle(t.position),attrs:{mark:t.mark}})})),1)]:e._e()],2)],1)},Zc=[];Xc._withStripped=!0;var Jc=n(41),eu=n.n(Jc),tu=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{ref:\"button\",staticClass:\"el-slider__button-wrapper\",class:{hover:e.hovering,dragging:e.dragging},style:e.wrapperStyle,attrs:{tabindex:\"0\"},on:{mouseenter:e.handleMouseEnter,mouseleave:e.handleMouseLeave,mousedown:e.onButtonDown,touchstart:e.onButtonDown,focus:e.handleMouseEnter,blur:e.handleMouseLeave,keydown:[function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"left\",37,t.key,[\"Left\",\"ArrowLeft\"])||\"button\"in t&&0!==t.button?null:e.onLeftKeyDown(t)},function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"right\",39,t.key,[\"Right\",\"ArrowRight\"])||\"button\"in t&&2!==t.button?null:e.onRightKeyDown(t)},function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"])?null:(t.preventDefault(),e.onLeftKeyDown(t))},function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"])?null:(t.preventDefault(),e.onRightKeyDown(t))}]}},[n(\"el-tooltip\",{ref:\"tooltip\",attrs:{placement:\"top\",\"popper-class\":e.tooltipClass,disabled:!e.showTooltip}},[n(\"span\",{attrs:{slot:\"content\"},slot:\"content\"},[e._v(e._s(e.formatValue))]),n(\"div\",{staticClass:\"el-slider__button\",class:{hover:e.hovering,dragging:e.dragging}})])],1)},nu=[];tu._withStripped=!0;var iu={name:\"ElSliderButton\",components:{ElTooltip:rt.a},props:{value:{type:Number,default:0},vertical:{type:Boolean,default:!1},tooltipClass:String},data:function(){return{hovering:!1,dragging:!1,isClick:!1,startX:0,currentX:0,startY:0,currentY:0,startPosition:0,newPosition:null,oldValue:this.value}},computed:{disabled:function(){return this.$parent.sliderDisabled},max:function(){return this.$parent.max},min:function(){return this.$parent.min},step:function(){return this.$parent.step},showTooltip:function(){return this.$parent.showTooltip},precision:function(){return this.$parent.precision},currentPosition:function(){return(this.value-this.min)/(this.max-this.min)*100+\"%\"},enableFormat:function(){return this.$parent.formatTooltip instanceof Function},formatValue:function(){return this.enableFormat&&this.$parent.formatTooltip(this.value)||this.value},wrapperStyle:function(){return this.vertical?{bottom:this.currentPosition}:{left:this.currentPosition}}},watch:{dragging:function(e){this.$parent.dragging=e}},methods:{displayTooltip:function(){this.$refs.tooltip&&(this.$refs.tooltip.showPopper=!0)},hideTooltip:function(){this.$refs.tooltip&&(this.$refs.tooltip.showPopper=!1)},handleMouseEnter:function(){this.hovering=!0,this.displayTooltip()},handleMouseLeave:function(){this.hovering=!1,this.hideTooltip()},onButtonDown:function(e){this.disabled||(e.preventDefault(),this.onDragStart(e),window.addEventListener(\"mousemove\",this.onDragging),window.addEventListener(\"touchmove\",this.onDragging),window.addEventListener(\"mouseup\",this.onDragEnd),window.addEventListener(\"touchend\",this.onDragEnd),window.addEventListener(\"contextmenu\",this.onDragEnd))},onLeftKeyDown:function(){this.disabled||(this.newPosition=parseFloat(this.currentPosition)-this.step/(this.max-this.min)*100,this.setPosition(this.newPosition),this.$parent.emitChange())},onRightKeyDown:function(){this.disabled||(this.newPosition=parseFloat(this.currentPosition)+this.step/(this.max-this.min)*100,this.setPosition(this.newPosition),this.$parent.emitChange())},onDragStart:function(e){this.dragging=!0,this.isClick=!0,\"touchstart\"===e.type&&(e.clientY=e.touches[0].clientY,e.clientX=e.touches[0].clientX),this.vertical?this.startY=e.clientY:this.startX=e.clientX,this.startPosition=parseFloat(this.currentPosition),this.newPosition=this.startPosition},onDragging:function(e){if(this.dragging){this.isClick=!1,this.displayTooltip(),this.$parent.resetSize();var t=0;\"touchmove\"===e.type&&(e.clientY=e.touches[0].clientY,e.clientX=e.touches[0].clientX),this.vertical?(this.currentY=e.clientY,t=(this.startY-this.currentY)/this.$parent.sliderSize*100):(this.currentX=e.clientX,t=(this.currentX-this.startX)/this.$parent.sliderSize*100),this.newPosition=this.startPosition+t,this.setPosition(this.newPosition)}},onDragEnd:function(){var e=this;this.dragging&&(setTimeout((function(){e.dragging=!1,e.hideTooltip(),e.isClick||(e.setPosition(e.newPosition),e.$parent.emitChange())}),0),window.removeEventListener(\"mousemove\",this.onDragging),window.removeEventListener(\"touchmove\",this.onDragging),window.removeEventListener(\"mouseup\",this.onDragEnd),window.removeEventListener(\"touchend\",this.onDragEnd),window.removeEventListener(\"contextmenu\",this.onDragEnd))},setPosition:function(e){var t=this;if(null!==e&&!isNaN(e)){e<0?e=0:e>100&&(e=100);var n=100/((this.max-this.min)/this.step),i=Math.round(e/n),r=i*n*(this.max-this.min)*.01+this.min;r=parseFloat(r.toFixed(this.precision)),this.$emit(\"input\",r),this.$nextTick((function(){t.displayTooltip(),t.$refs.tooltip&&t.$refs.tooltip.updatePopper()})),this.dragging||this.value===this.oldValue||(this.oldValue=this.value)}}}},ru=iu,au=s(ru,tu,nu,!1,null,null,null);au.options.__file=\"packages/slider/src/button.vue\";var ou=au.exports,su={name:\"ElMarker\",props:{mark:{type:[String,Object]}},render:function(){var e=arguments[0],t=\"string\"===typeof this.mark?this.mark:this.mark.label;return e(\"div\",{class:\"el-slider__marks-text\",style:this.mark.style||{}},[t])}},lu={name:\"ElSlider\",mixins:[N.a],inject:{elForm:{default:\"\"}},props:{min:{type:Number,default:0},max:{type:Number,default:100},step:{type:Number,default:1},value:{type:[Number,Array],default:0},showInput:{type:Boolean,default:!1},showInputControls:{type:Boolean,default:!0},inputSize:{type:String,default:\"small\"},showStops:{type:Boolean,default:!1},showTooltip:{type:Boolean,default:!0},formatTooltip:Function,disabled:{type:Boolean,default:!1},range:{type:Boolean,default:!1},vertical:{type:Boolean,default:!1},height:{type:String},debounce:{type:Number,default:300},label:{type:String},tooltipClass:String,marks:Object},components:{ElInputNumber:eu.a,SliderButton:ou,SliderMarker:su},data:function(){return{firstValue:null,secondValue:null,oldValue:null,dragging:!1,sliderSize:1}},watch:{value:function(e,t){this.dragging||Array.isArray(e)&&Array.isArray(t)&&e.every((function(e,n){return e===t[n]}))||this.setValues()},dragging:function(e){e||this.setValues()},firstValue:function(e){this.range?this.$emit(\"input\",[this.minValue,this.maxValue]):this.$emit(\"input\",e)},secondValue:function(){this.range&&this.$emit(\"input\",[this.minValue,this.maxValue])},min:function(){this.setValues()},max:function(){this.setValues()}},methods:{valueChanged:function(){var e=this;return this.range?![this.minValue,this.maxValue].every((function(t,n){return t===e.oldValue[n]})):this.value!==this.oldValue},setValues:function(){if(!(this.min>this.max)){var e=this.value;this.range&&Array.isArray(e)?e[1]<this.min?this.$emit(\"input\",[this.min,this.min]):e[0]>this.max?this.$emit(\"input\",[this.max,this.max]):e[0]<this.min?this.$emit(\"input\",[this.min,e[1]]):e[1]>this.max?this.$emit(\"input\",[e[0],this.max]):(this.firstValue=e[0],this.secondValue=e[1],this.valueChanged()&&(this.dispatch(\"ElFormItem\",\"el.form.change\",[this.minValue,this.maxValue]),this.oldValue=e.slice())):this.range||\"number\"!==typeof e||isNaN(e)||(e<this.min?this.$emit(\"input\",this.min):e>this.max?this.$emit(\"input\",this.max):(this.firstValue=e,this.valueChanged()&&(this.dispatch(\"ElFormItem\",\"el.form.change\",e),this.oldValue=e)))}},setPosition:function(e){var t=this.min+e*(this.max-this.min)/100;if(this.range){var n=void 0;n=Math.abs(this.minValue-t)<Math.abs(this.maxValue-t)?this.firstValue<this.secondValue?\"button1\":\"button2\":this.firstValue>this.secondValue?\"button1\":\"button2\",this.$refs[n].setPosition(e)}else this.$refs.button1.setPosition(e)},onSliderClick:function(e){if(!this.sliderDisabled&&!this.dragging){if(this.resetSize(),this.vertical){var t=this.$refs.slider.getBoundingClientRect().bottom;this.setPosition((t-e.clientY)/this.sliderSize*100)}else{var n=this.$refs.slider.getBoundingClientRect().left;this.setPosition((e.clientX-n)/this.sliderSize*100)}this.emitChange()}},resetSize:function(){this.$refs.slider&&(this.sliderSize=this.$refs.slider[\"client\"+(this.vertical?\"Height\":\"Width\")])},emitChange:function(){var e=this;this.$nextTick((function(){e.$emit(\"change\",e.range?[e.minValue,e.maxValue]:e.value)}))},getStopStyle:function(e){return this.vertical?{bottom:e+\"%\"}:{left:e+\"%\"}}},computed:{stops:function(){var e=this;if(!this.showStops||this.min>this.max)return[];if(0===this.step)return[];for(var t=(this.max-this.min)/this.step,n=100*this.step/(this.max-this.min),i=[],r=1;r<t;r++)i.push(r*n);return this.range?i.filter((function(t){return t<100*(e.minValue-e.min)/(e.max-e.min)||t>100*(e.maxValue-e.min)/(e.max-e.min)})):i.filter((function(t){return t>100*(e.firstValue-e.min)/(e.max-e.min)}))},markList:function(){var e=this;if(!this.marks)return[];var t=Object.keys(this.marks);return t.map(parseFloat).sort((function(e,t){return e-t})).filter((function(t){return t<=e.max&&t>=e.min})).map((function(t){return{point:t,position:100*(t-e.min)/(e.max-e.min),mark:e.marks[t]}}))},minValue:function(){return Math.min(this.firstValue,this.secondValue)},maxValue:function(){return Math.max(this.firstValue,this.secondValue)},barSize:function(){return this.range?100*(this.maxValue-this.minValue)/(this.max-this.min)+\"%\":100*(this.firstValue-this.min)/(this.max-this.min)+\"%\"},barStart:function(){return this.range?100*(this.minValue-this.min)/(this.max-this.min)+\"%\":\"0%\"},precision:function(){var e=[this.min,this.max,this.step].map((function(e){var t=(\"\"+e).split(\".\")[1];return t?t.length:0}));return Math.max.apply(null,e)},runwayStyle:function(){return this.vertical?{height:this.height}:{}},barStyle:function(){return this.vertical?{height:this.barSize,bottom:this.barStart}:{width:this.barSize,left:this.barStart}},sliderDisabled:function(){return this.disabled||(this.elForm||{}).disabled}},mounted:function(){var e=void 0;this.range?(Array.isArray(this.value)?(this.firstValue=Math.max(this.min,this.value[0]),this.secondValue=Math.min(this.max,this.value[1])):(this.firstValue=this.min,this.secondValue=this.max),this.oldValue=[this.firstValue,this.secondValue],e=this.firstValue+\"-\"+this.secondValue):(\"number\"!==typeof this.value||isNaN(this.value)?this.firstValue=this.min:this.firstValue=Math.min(this.max,Math.max(this.min,this.value)),this.oldValue=this.firstValue,e=this.firstValue),this.$el.setAttribute(\"aria-valuetext\",e),this.$el.setAttribute(\"aria-label\",this.label?this.label:\"slider between \"+this.min+\" and \"+this.max),this.resetSize(),window.addEventListener(\"resize\",this.resetSize)},beforeDestroy:function(){window.removeEventListener(\"resize\",this.resetSize)}},cu=lu,uu=s(cu,Xc,Zc,!1,null,null,null);uu.options.__file=\"packages/slider/src/main.vue\";var du=uu.exports;du.install=function(e){e.component(du.name,du)};var pu=du,hu=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-loading-fade\"},on:{\"after-leave\":e.handleAfterLeave}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-loading-mask\",class:[e.customClass,{\"is-fullscreen\":e.fullscreen}],style:{backgroundColor:e.background||\"\"}},[n(\"div\",{staticClass:\"el-loading-spinner\"},[e.spinner?n(\"i\",{class:e.spinner}):n(\"svg\",{staticClass:\"circular\",attrs:{viewBox:\"25 25 50 50\"}},[n(\"circle\",{staticClass:\"path\",attrs:{cx:\"50\",cy:\"50\",r:\"20\",fill:\"none\"}})]),e.text?n(\"p\",{staticClass:\"el-loading-text\"},[e._v(e._s(e.text))]):e._e()])])])},fu=[];hu._withStripped=!0;var _u={data:function(){return{text:null,spinner:null,background:null,fullscreen:!0,visible:!1,customClass:\"\"}},methods:{handleAfterLeave:function(){this.$emit(\"after-leave\")},setText:function(e){this.text=e}}},mu=_u,gu=s(mu,hu,fu,!1,null,null,null);gu.options.__file=\"packages/loading/src/loading.vue\";var bu=gu.exports,vu=n(33),Eu=n.n(vu),yu=Hi.a.extend(bu),Su={install:function(e){if(!e.prototype.$isServer){var t=function(t,i){i.value?e.nextTick((function(){i.modifiers.fullscreen?(t.originalPosition=Object(Be[\"getStyle\"])(document.body,\"position\"),t.originalOverflow=Object(Be[\"getStyle\"])(document.body,\"overflow\"),t.maskStyle.zIndex=C[\"PopupManager\"].nextZIndex(),Object(Be[\"addClass\"])(t.mask,\"is-fullscreen\"),n(document.body,t,i)):(Object(Be[\"removeClass\"])(t.mask,\"is-fullscreen\"),i.modifiers.body?(t.originalPosition=Object(Be[\"getStyle\"])(document.body,\"position\"),[\"top\",\"left\"].forEach((function(e){var n=\"top\"===e?\"scrollTop\":\"scrollLeft\";t.maskStyle[e]=t.getBoundingClientRect()[e]+document.body[n]+document.documentElement[n]-parseInt(Object(Be[\"getStyle\"])(document.body,\"margin-\"+e),10)+\"px\"})),[\"height\",\"width\"].forEach((function(e){t.maskStyle[e]=t.getBoundingClientRect()[e]+\"px\"})),n(document.body,t,i)):(t.originalPosition=Object(Be[\"getStyle\"])(t,\"position\"),n(t,t,i)))})):(Eu()(t.instance,(function(e){if(t.instance.hiding){t.domVisible=!1;var n=i.modifiers.fullscreen||i.modifiers.body?document.body:t;Object(Be[\"removeClass\"])(n,\"el-loading-parent--relative\"),Object(Be[\"removeClass\"])(n,\"el-loading-parent--hidden\"),t.instance.hiding=!1}}),300,!0),t.instance.visible=!1,t.instance.hiding=!0)},n=function(t,n,i){n.domVisible||\"none\"===Object(Be[\"getStyle\"])(n,\"display\")||\"hidden\"===Object(Be[\"getStyle\"])(n,\"visibility\")?n.domVisible&&!0===n.instance.hiding&&(n.instance.visible=!0,n.instance.hiding=!1):(Object.keys(n.maskStyle).forEach((function(e){n.mask.style[e]=n.maskStyle[e]})),\"absolute\"!==n.originalPosition&&\"fixed\"!==n.originalPosition&&Object(Be[\"addClass\"])(t,\"el-loading-parent--relative\"),i.modifiers.fullscreen&&i.modifiers.lock&&Object(Be[\"addClass\"])(t,\"el-loading-parent--hidden\"),n.domVisible=!0,t.appendChild(n.mask),e.nextTick((function(){n.instance.hiding?n.instance.$emit(\"after-leave\"):n.instance.visible=!0})),n.domInserted=!0)};e.directive(\"loading\",{bind:function(e,n,i){var r=e.getAttribute(\"element-loading-text\"),a=e.getAttribute(\"element-loading-spinner\"),o=e.getAttribute(\"element-loading-background\"),s=e.getAttribute(\"element-loading-custom-class\"),l=i.context,c=new yu({el:document.createElement(\"div\"),data:{text:l&&l[r]||r,spinner:l&&l[a]||a,background:l&&l[o]||o,customClass:l&&l[s]||s,fullscreen:!!n.modifiers.fullscreen}});e.instance=c,e.mask=c.$el,e.maskStyle={},n.value&&t(e,n)},update:function(e,n){e.instance.setText(e.getAttribute(\"element-loading-text\")),n.oldValue!==n.value&&t(e,n)},unbind:function(e,n){e.domInserted&&(e.mask&&e.mask.parentNode&&e.mask.parentNode.removeChild(e.mask),t(e,{value:!1,modifiers:n.modifiers})),e.instance&&e.instance.$destroy()}})}}},Cu=Su,Tu=Hi.a.extend(bu),xu={text:null,fullscreen:!0,body:!1,lock:!1,customClass:\"\"},wu=void 0;Tu.prototype.originalPosition=\"\",Tu.prototype.originalOverflow=\"\",Tu.prototype.close=function(){var e=this;this.fullscreen&&(wu=void 0),Eu()(this,(function(t){var n=e.fullscreen||e.body?document.body:e.target;Object(Be[\"removeClass\"])(n,\"el-loading-parent--relative\"),Object(Be[\"removeClass\"])(n,\"el-loading-parent--hidden\"),e.$el&&e.$el.parentNode&&e.$el.parentNode.removeChild(e.$el),e.$destroy()}),300),this.visible=!1};var Ou=function(e,t,n){var i={};e.fullscreen?(n.originalPosition=Object(Be[\"getStyle\"])(document.body,\"position\"),n.originalOverflow=Object(Be[\"getStyle\"])(document.body,\"overflow\"),i.zIndex=C[\"PopupManager\"].nextZIndex()):e.body?(n.originalPosition=Object(Be[\"getStyle\"])(document.body,\"position\"),[\"top\",\"left\"].forEach((function(t){var n=\"top\"===t?\"scrollTop\":\"scrollLeft\";i[t]=e.target.getBoundingClientRect()[t]+document.body[n]+document.documentElement[n]+\"px\"})),[\"height\",\"width\"].forEach((function(t){i[t]=e.target.getBoundingClientRect()[t]+\"px\"}))):n.originalPosition=Object(Be[\"getStyle\"])(t,\"position\"),Object.keys(i).forEach((function(e){n.$el.style[e]=i[e]}))},Nu=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!Hi.a.prototype.$isServer){if(e=xt()({},xu,e),\"string\"===typeof e.target&&(e.target=document.querySelector(e.target)),e.target=e.target||document.body,e.target!==document.body?e.fullscreen=!1:e.body=!0,e.fullscreen&&wu)return wu;var t=e.body?document.body:e.target,n=new Tu({el:document.createElement(\"div\"),data:e});return Ou(e,t,n),\"absolute\"!==n.originalPosition&&\"fixed\"!==n.originalPosition&&Object(Be[\"addClass\"])(t,\"el-loading-parent--relative\"),e.fullscreen&&e.lock&&Object(Be[\"addClass\"])(t,\"el-loading-parent--hidden\"),t.appendChild(n.$el),Hi.a.nextTick((function(){n.visible=!0})),e.fullscreen&&(wu=n),n}},Ru=Nu,ku={install:function(e){e.use(Cu),e.prototype.$loading=Ru},directive:Cu,service:Ru},Au=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"i\",{class:\"el-icon-\"+e.name})},Du=[];Au._withStripped=!0;var Iu={name:\"ElIcon\",props:{name:String}},Mu=Iu,Lu=s(Mu,Au,Du,!1,null,null,null);Lu.options.__file=\"packages/icon/src/icon.vue\";var Pu=Lu.exports;Pu.install=function(e){e.component(Pu.name,Pu)};var Fu=Pu,Bu={name:\"ElRow\",componentName:\"ElRow\",props:{tag:{type:String,default:\"div\"},gutter:Number,type:String,justify:{type:String,default:\"start\"},align:{type:String,default:\"top\"}},computed:{style:function(){var e={};return this.gutter&&(e.marginLeft=\"-\"+this.gutter/2+\"px\",e.marginRight=e.marginLeft),e}},render:function(e){return e(this.tag,{class:[\"el-row\",\"start\"!==this.justify?\"is-justify-\"+this.justify:\"\",\"top\"!==this.align?\"is-align-\"+this.align:\"\",{\"el-row--flex\":\"flex\"===this.type}],style:this.style},this.$slots.default)},install:function(e){e.component(Bu.name,Bu)}},Uu=Bu,$u=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},ju={name:\"ElCol\",props:{span:{type:Number,default:24},tag:{type:String,default:\"div\"},offset:Number,pull:Number,push:Number,xs:[Number,Object],sm:[Number,Object],md:[Number,Object],lg:[Number,Object],xl:[Number,Object]},computed:{gutter:function(){var e=this.$parent;while(e&&\"ElRow\"!==e.$options.componentName)e=e.$parent;return e?e.gutter:0}},render:function(e){var t=this,n=[],i={};return this.gutter&&(i.paddingLeft=this.gutter/2+\"px\",i.paddingRight=i.paddingLeft),[\"span\",\"offset\",\"pull\",\"push\"].forEach((function(e){(t[e]||0===t[e])&&n.push(\"span\"!==e?\"el-col-\"+e+\"-\"+t[e]:\"el-col-\"+t[e])})),[\"xs\",\"sm\",\"md\",\"lg\",\"xl\"].forEach((function(e){if(\"number\"===typeof t[e])n.push(\"el-col-\"+e+\"-\"+t[e]);else if(\"object\"===$u(t[e])){var i=t[e];Object.keys(i).forEach((function(t){n.push(\"span\"!==t?\"el-col-\"+e+\"-\"+t+\"-\"+i[t]:\"el-col-\"+e+\"-\"+i[t])}))}})),e(this.tag,{class:[\"el-col\",n],style:i},this.$slots.default)},install:function(e){e.component(ju.name,ju)}},Gu=ju,qu=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition-group\",{class:[\"el-upload-list\",\"el-upload-list--\"+e.listType,{\"is-disabled\":e.disabled}],attrs:{tag:\"ul\",name:\"el-list\"}},e._l(e.files,(function(t){return n(\"li\",{key:t.uid,class:[\"el-upload-list__item\",\"is-\"+t.status,e.focusing?\"focusing\":\"\"],attrs:{tabindex:\"0\"},on:{keydown:function(n){if(!(\"button\"in n)&&e._k(n.keyCode,\"delete\",[8,46],n.key,[\"Backspace\",\"Delete\",\"Del\"]))return null;!e.disabled&&e.$emit(\"remove\",t)},focus:function(t){e.focusing=!0},blur:function(t){e.focusing=!1},click:function(t){e.focusing=!1}}},[e._t(\"default\",[\"uploading\"!==t.status&&[\"picture-card\",\"picture\"].indexOf(e.listType)>-1?n(\"img\",{staticClass:\"el-upload-list__item-thumbnail\",attrs:{src:t.url,alt:\"\"}}):e._e(),n(\"a\",{staticClass:\"el-upload-list__item-name\",on:{click:function(n){e.handleClick(t)}}},[n(\"i\",{staticClass:\"el-icon-document\"}),e._v(e._s(t.name)+\"\\n      \")]),n(\"label\",{staticClass:\"el-upload-list__item-status-label\"},[n(\"i\",{class:{\"el-icon-upload-success\":!0,\"el-icon-circle-check\":\"text\"===e.listType,\"el-icon-check\":[\"picture-card\",\"picture\"].indexOf(e.listType)>-1}})]),e.disabled?e._e():n(\"i\",{staticClass:\"el-icon-close\",on:{click:function(n){e.$emit(\"remove\",t)}}}),e.disabled?e._e():n(\"i\",{staticClass:\"el-icon-close-tip\"},[e._v(e._s(e.t(\"el.upload.deleteTip\")))]),\"uploading\"===t.status?n(\"el-progress\",{attrs:{type:\"picture-card\"===e.listType?\"circle\":\"line\",\"stroke-width\":\"picture-card\"===e.listType?6:2,percentage:e.parsePercentage(t.percentage)}}):e._e(),\"picture-card\"===e.listType?n(\"span\",{staticClass:\"el-upload-list__item-actions\"},[e.handlePreview&&\"picture-card\"===e.listType?n(\"span\",{staticClass:\"el-upload-list__item-preview\",on:{click:function(n){e.handlePreview(t)}}},[n(\"i\",{staticClass:\"el-icon-zoom-in\"})]):e._e(),e.disabled?e._e():n(\"span\",{staticClass:\"el-upload-list__item-delete\",on:{click:function(n){e.$emit(\"remove\",t)}}},[n(\"i\",{staticClass:\"el-icon-delete\"})])]):e._e()],{file:t})],2)})),0)},Hu=[];qu._withStripped=!0;var Vu=n(34),zu=n.n(Vu),Yu={name:\"ElUploadList\",mixins:[g.a],data:function(){return{focusing:!1}},components:{ElProgress:zu.a},props:{files:{type:Array,default:function(){return[]}},disabled:{type:Boolean,default:!1},handlePreview:Function,listType:String},methods:{parsePercentage:function(e){return parseInt(e,10)},handleClick:function(e){this.handlePreview&&this.handlePreview(e)}}},Wu=Yu,Ku=s(Wu,qu,Hu,!1,null,null,null);Ku.options.__file=\"packages/upload/src/upload-list.vue\";var Qu=Ku.exports,Xu=n(24),Zu=n.n(Xu);function Ju(e,t,n){var i=void 0;i=n.response?\"\"+(n.response.error||n.response):n.responseText?\"\"+n.responseText:\"fail to post \"+e+\" \"+n.status;var r=new Error(i);return r.status=n.status,r.method=\"post\",r.url=e,r}function ed(e){var t=e.responseText||e.response;if(!t)return t;try{return JSON.parse(t)}catch(n){return t}}function td(e){if(\"undefined\"!==typeof XMLHttpRequest){var t=new XMLHttpRequest,n=e.action;t.upload&&(t.upload.onprogress=function(t){t.total>0&&(t.percent=t.loaded/t.total*100),e.onProgress(t)});var i=new FormData;e.data&&Object.keys(e.data).forEach((function(t){i.append(t,e.data[t])})),i.append(e.filename,e.file,e.file.name),t.onerror=function(t){e.onError(t)},t.onload=function(){if(t.status<200||t.status>=300)return e.onError(Ju(n,e,t));e.onSuccess(ed(t))},t.open(\"post\",n,!0),e.withCredentials&&\"withCredentials\"in t&&(t.withCredentials=!0);var r=e.headers||{};for(var a in r)r.hasOwnProperty(a)&&null!==r[a]&&t.setRequestHeader(a,r[a]);return t.send(i),t}}var nd=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-upload-dragger\",class:{\"is-dragover\":e.dragover},on:{drop:function(t){return t.preventDefault(),e.onDrop(t)},dragover:function(t){return t.preventDefault(),e.onDragover(t)},dragleave:function(t){t.preventDefault(),e.dragover=!1}}},[e._t(\"default\")],2)},id=[];nd._withStripped=!0;var rd={name:\"ElUploadDrag\",props:{disabled:Boolean},inject:{uploader:{default:\"\"}},data:function(){return{dragover:!1}},methods:{onDragover:function(){this.disabled||(this.dragover=!0)},onDrop:function(e){if(!this.disabled&&this.uploader){var t=this.uploader.accept;this.dragover=!1,t?this.$emit(\"file\",[].slice.call(e.dataTransfer.files).filter((function(e){var n=e.type,i=e.name,r=i.indexOf(\".\")>-1?\".\"+i.split(\".\").pop():\"\",a=n.replace(/\\/.*$/,\"\");return t.split(\",\").map((function(e){return e.trim()})).filter((function(e){return e})).some((function(e){return/\\..+$/.test(e)?r===e:/\\/\\*$/.test(e)?a===e.replace(/\\/\\*$/,\"\"):!!/^[^\\/]+\\/[^\\/]+$/.test(e)&&n===e}))}))):this.$emit(\"file\",e.dataTransfer.files)}}}},ad=rd,od=s(ad,nd,id,!1,null,null,null);od.options.__file=\"packages/upload/src/upload-dragger.vue\";var sd,ld,cd=od.exports,ud={inject:[\"uploader\"],components:{UploadDragger:cd},props:{type:String,action:{type:String,required:!0},name:{type:String,default:\"file\"},data:Object,headers:Object,withCredentials:Boolean,multiple:Boolean,accept:String,onStart:Function,onProgress:Function,onSuccess:Function,onError:Function,beforeUpload:Function,drag:Boolean,onPreview:{type:Function,default:function(){}},onRemove:{type:Function,default:function(){}},fileList:Array,autoUpload:Boolean,listType:String,httpRequest:{type:Function,default:td},disabled:Boolean,limit:Number,onExceed:Function},data:function(){return{mouseover:!1,reqs:{}}},methods:{isImage:function(e){return-1!==e.indexOf(\"image\")},handleChange:function(e){var t=e.target.files;t&&this.uploadFiles(t)},uploadFiles:function(e){var t=this;if(this.limit&&this.fileList.length+e.length>this.limit)this.onExceed&&this.onExceed(e,this.fileList);else{var n=Array.prototype.slice.call(e);this.multiple||(n=n.slice(0,1)),0!==n.length&&n.forEach((function(e){t.onStart(e),t.autoUpload&&t.upload(e)}))}},upload:function(e){var t=this;if(this.$refs.input.value=null,!this.beforeUpload)return this.post(e);var n=this.beforeUpload(e);n&&n.then?n.then((function(n){var i=Object.prototype.toString.call(n);if(\"[object File]\"===i||\"[object Blob]\"===i){for(var r in\"[object Blob]\"===i&&(n=new File([n],e.name,{type:e.type})),e)e.hasOwnProperty(r)&&(n[r]=e[r]);t.post(n)}else t.post(e)}),(function(){t.onRemove(null,e)})):!1!==n?this.post(e):this.onRemove(null,e)},abort:function(e){var t=this.reqs;if(e){var n=e;e.uid&&(n=e.uid),t[n]&&t[n].abort()}else Object.keys(t).forEach((function(e){t[e]&&t[e].abort(),delete t[e]}))},post:function(e){var t=this,n=e.uid,i={headers:this.headers,withCredentials:this.withCredentials,file:e,data:this.data,filename:this.name,action:this.action,onProgress:function(n){t.onProgress(n,e)},onSuccess:function(i){t.onSuccess(i,e),delete t.reqs[n]},onError:function(i){t.onError(i,e),delete t.reqs[n]}},r=this.httpRequest(i);this.reqs[n]=r,r&&r.then&&r.then(i.onSuccess,i.onError)},handleClick:function(){this.disabled||(this.$refs.input.value=null,this.$refs.input.click())},handleKeydown:function(e){e.target===e.currentTarget&&(13!==e.keyCode&&32!==e.keyCode||this.handleClick())}},render:function(e){var t=this.handleClick,n=this.drag,i=this.name,r=this.handleChange,a=this.multiple,o=this.accept,s=this.listType,l=this.uploadFiles,c=this.disabled,u=this.handleKeydown,d={class:{\"el-upload\":!0},on:{click:t,keydown:u}};return d.class[\"el-upload--\"+s]=!0,e(\"div\",Zu()([d,{attrs:{tabindex:\"0\"}}]),[n?e(\"upload-dragger\",{attrs:{disabled:c},on:{file:l}},[this.$slots.default]):this.$slots.default,e(\"input\",{class:\"el-upload__input\",attrs:{type:\"file\",name:i,multiple:a,accept:o},ref:\"input\",on:{change:r}})])}},dd=ud,pd=s(dd,sd,ld,!1,null,null,null);pd.options.__file=\"packages/upload/src/upload.vue\";var hd=pd.exports;function fd(){}var _d,md,gd={name:\"ElUpload\",mixins:[w.a],components:{ElProgress:zu.a,UploadList:Qu,Upload:hd},provide:function(){return{uploader:this}},inject:{elForm:{default:\"\"}},props:{action:{type:String,required:!0},headers:{type:Object,default:function(){return{}}},data:Object,multiple:Boolean,name:{type:String,default:\"file\"},drag:Boolean,dragger:Boolean,withCredentials:Boolean,showFileList:{type:Boolean,default:!0},accept:String,type:{type:String,default:\"select\"},beforeUpload:Function,beforeRemove:Function,onRemove:{type:Function,default:fd},onChange:{type:Function,default:fd},onPreview:{type:Function},onSuccess:{type:Function,default:fd},onProgress:{type:Function,default:fd},onError:{type:Function,default:fd},fileList:{type:Array,default:function(){return[]}},autoUpload:{type:Boolean,default:!0},listType:{type:String,default:\"text\"},httpRequest:Function,disabled:Boolean,limit:Number,onExceed:{type:Function,default:fd}},data:function(){return{uploadFiles:[],dragOver:!1,draging:!1,tempIndex:1}},computed:{uploadDisabled:function(){return this.disabled||(this.elForm||{}).disabled}},watch:{listType:function(e){\"picture-card\"!==e&&\"picture\"!==e||(this.uploadFiles=this.uploadFiles.map((function(e){if(!e.url&&e.raw)try{e.url=URL.createObjectURL(e.raw)}catch(t){}return e})))},fileList:{immediate:!0,handler:function(e){var t=this;this.uploadFiles=e.map((function(e){return e.uid=e.uid||Date.now()+t.tempIndex++,e.status=e.status||\"success\",e}))}}},methods:{handleStart:function(e){e.uid=Date.now()+this.tempIndex++;var t={status:\"ready\",name:e.name,size:e.size,percentage:0,uid:e.uid,raw:e};if(\"picture-card\"===this.listType||\"picture\"===this.listType)try{t.url=URL.createObjectURL(e)}catch(n){return}this.uploadFiles.push(t),this.onChange(t,this.uploadFiles)},handleProgress:function(e,t){var n=this.getFile(t);this.onProgress(e,n,this.uploadFiles),n.status=\"uploading\",n.percentage=e.percent||0},handleSuccess:function(e,t){var n=this.getFile(t);n&&(n.status=\"success\",n.response=e,this.onSuccess(e,n,this.uploadFiles),this.onChange(n,this.uploadFiles))},handleError:function(e,t){var n=this.getFile(t),i=this.uploadFiles;n.status=\"fail\",i.splice(i.indexOf(n),1),this.onError(e,n,this.uploadFiles),this.onChange(n,this.uploadFiles)},handleRemove:function(e,t){var n=this;t&&(e=this.getFile(t));var i=function(){n.abort(e);var t=n.uploadFiles;t.splice(t.indexOf(e),1),n.onRemove(e,t)};if(this.beforeRemove){if(\"function\"===typeof this.beforeRemove){var r=this.beforeRemove(e,this.uploadFiles);r&&r.then?r.then((function(){i()}),fd):!1!==r&&i()}}else i()},getFile:function(e){var t=this.uploadFiles,n=void 0;return t.every((function(t){return n=e.uid===t.uid?t:null,!n})),n},abort:function(e){this.$refs[\"upload-inner\"].abort(e)},clearFiles:function(){this.uploadFiles=[]},submit:function(){var e=this;this.uploadFiles.filter((function(e){return\"ready\"===e.status})).forEach((function(t){e.$refs[\"upload-inner\"].upload(t.raw)}))},getMigratingConfig:function(){return{props:{\"default-file-list\":\"default-file-list is renamed to file-list.\",\"show-upload-list\":\"show-upload-list is renamed to show-file-list.\",\"thumbnail-mode\":\"thumbnail-mode has been deprecated, you can implement the same effect according to this case: http://element.eleme.io/#/zh-CN/component/upload#yong-hu-tou-xiang-shang-chuan\"}}}},beforeDestroy:function(){this.uploadFiles.forEach((function(e){e.url&&0===e.url.indexOf(\"blob:\")&&URL.revokeObjectURL(e.url)}))},render:function(e){var t=this,n=void 0;this.showFileList&&(n=e(Qu,{attrs:{disabled:this.uploadDisabled,listType:this.listType,files:this.uploadFiles,handlePreview:this.onPreview},on:{remove:this.handleRemove}},[function(e){if(t.$scopedSlots.file)return t.$scopedSlots.file({file:e.file})}]));var i={props:{type:this.type,drag:this.drag,action:this.action,multiple:this.multiple,\"before-upload\":this.beforeUpload,\"with-credentials\":this.withCredentials,headers:this.headers,name:this.name,data:this.data,accept:this.accept,fileList:this.uploadFiles,autoUpload:this.autoUpload,listType:this.listType,disabled:this.uploadDisabled,limit:this.limit,\"on-exceed\":this.onExceed,\"on-start\":this.handleStart,\"on-progress\":this.handleProgress,\"on-success\":this.handleSuccess,\"on-error\":this.handleError,\"on-preview\":this.onPreview,\"on-remove\":this.handleRemove,\"http-request\":this.httpRequest},ref:\"upload-inner\"},r=this.$slots.trigger||this.$slots.default,a=e(\"upload\",i,[r]);return e(\"div\",[\"picture-card\"===this.listType?n:\"\",this.$slots.trigger?[a,this.$slots.default]:a,this.$slots.tip,\"picture-card\"!==this.listType?n:\"\"])}},bd=gd,vd=s(bd,_d,md,!1,null,null,null);vd.options.__file=\"packages/upload/src/index.vue\";var Ed=vd.exports;Ed.install=function(e){e.component(Ed.name,Ed)};var yd=Ed,Sd=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-progress\",class:[\"el-progress--\"+e.type,e.status?\"is-\"+e.status:\"\",{\"el-progress--without-text\":!e.showText,\"el-progress--text-inside\":e.textInside}],attrs:{role:\"progressbar\",\"aria-valuenow\":e.percentage,\"aria-valuemin\":\"0\",\"aria-valuemax\":\"100\"}},[\"line\"===e.type?n(\"div\",{staticClass:\"el-progress-bar\"},[n(\"div\",{staticClass:\"el-progress-bar__outer\",style:{height:e.strokeWidth+\"px\"}},[n(\"div\",{staticClass:\"el-progress-bar__inner\",style:e.barStyle},[e.showText&&e.textInside?n(\"div\",{staticClass:\"el-progress-bar__innerText\"},[e._v(e._s(e.content))]):e._e()])])]):n(\"div\",{staticClass:\"el-progress-circle\",style:{height:e.width+\"px\",width:e.width+\"px\"}},[n(\"svg\",{attrs:{viewBox:\"0 0 100 100\"}},[n(\"path\",{staticClass:\"el-progress-circle__track\",style:e.trailPathStyle,attrs:{d:e.trackPath,stroke:\"#e5e9f2\",\"stroke-width\":e.relativeStrokeWidth,fill:\"none\"}}),n(\"path\",{staticClass:\"el-progress-circle__path\",style:e.circlePathStyle,attrs:{d:e.trackPath,stroke:e.stroke,fill:\"none\",\"stroke-linecap\":e.strokeLinecap,\"stroke-width\":e.percentage?e.relativeStrokeWidth:0}})])]),e.showText&&!e.textInside?n(\"div\",{staticClass:\"el-progress__text\",style:{fontSize:e.progressTextSize+\"px\"}},[e.status?n(\"i\",{class:e.iconClass}):[e._v(e._s(e.content))]],2):e._e()])},Cd=[];Sd._withStripped=!0;var Td={name:\"ElProgress\",props:{type:{type:String,default:\"line\",validator:function(e){return[\"line\",\"circle\",\"dashboard\"].indexOf(e)>-1}},percentage:{type:Number,default:0,required:!0,validator:function(e){return e>=0&&e<=100}},status:{type:String,validator:function(e){return[\"success\",\"exception\",\"warning\"].indexOf(e)>-1}},strokeWidth:{type:Number,default:6},strokeLinecap:{type:String,default:\"round\"},textInside:{type:Boolean,default:!1},width:{type:Number,default:126},showText:{type:Boolean,default:!0},color:{type:[String,Array,Function],default:\"\"},format:Function},computed:{barStyle:function(){var e={};return e.width=this.percentage+\"%\",e.backgroundColor=this.getCurrentColor(this.percentage),e},relativeStrokeWidth:function(){return(this.strokeWidth/this.width*100).toFixed(1)},radius:function(){return\"circle\"===this.type||\"dashboard\"===this.type?parseInt(50-parseFloat(this.relativeStrokeWidth)/2,10):0},trackPath:function(){var e=this.radius,t=\"dashboard\"===this.type;return\"\\n        M 50 50\\n        m 0 \"+(t?\"\":\"-\")+e+\"\\n        a \"+e+\" \"+e+\" 0 1 1 0 \"+(t?\"-\":\"\")+2*e+\"\\n        a \"+e+\" \"+e+\" 0 1 1 0 \"+(t?\"\":\"-\")+2*e+\"\\n        \"},perimeter:function(){return 2*Math.PI*this.radius},rate:function(){return\"dashboard\"===this.type?.75:1},strokeDashoffset:function(){var e=-1*this.perimeter*(1-this.rate)/2;return e+\"px\"},trailPathStyle:function(){return{strokeDasharray:this.perimeter*this.rate+\"px, \"+this.perimeter+\"px\",strokeDashoffset:this.strokeDashoffset}},circlePathStyle:function(){return{strokeDasharray:this.perimeter*this.rate*(this.percentage/100)+\"px, \"+this.perimeter+\"px\",strokeDashoffset:this.strokeDashoffset,transition:\"stroke-dasharray 0.6s ease 0s, stroke 0.6s ease\"}},stroke:function(){var e=void 0;if(this.color)e=this.getCurrentColor(this.percentage);else switch(this.status){case\"success\":e=\"#13ce66\";break;case\"exception\":e=\"#ff4949\";break;case\"warning\":e=\"#e6a23c\";break;default:e=\"#20a0ff\"}return e},iconClass:function(){return\"warning\"===this.status?\"el-icon-warning\":\"line\"===this.type?\"success\"===this.status?\"el-icon-circle-check\":\"el-icon-circle-close\":\"success\"===this.status?\"el-icon-check\":\"el-icon-close\"},progressTextSize:function(){return\"line\"===this.type?12+.4*this.strokeWidth:.111111*this.width+2},content:function(){return\"function\"===typeof this.format?this.format(this.percentage)||\"\":this.percentage+\"%\"}},methods:{getCurrentColor:function(e){return\"function\"===typeof this.color?this.color(e):\"string\"===typeof this.color?this.color:this.getLevelColor(e)},getLevelColor:function(e){for(var t=this.getColorArray().sort((function(e,t){return e.percentage-t.percentage})),n=0;n<t.length;n++)if(t[n].percentage>e)return t[n].color;return t[t.length-1].color},getColorArray:function(){var e=this.color,t=100/e.length;return e.map((function(e,n){return\"string\"===typeof e?{color:e,percentage:(n+1)*t}:e}))}}},xd=Td,wd=s(xd,Sd,Cd,!1,null,null,null);wd.options.__file=\"packages/progress/src/progress.vue\";var Od=wd.exports;Od.install=function(e){e.component(Od.name,Od)};var Nd=Od,Rd=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"span\",{staticClass:\"el-spinner\"},[n(\"svg\",{staticClass:\"el-spinner-inner\",style:{width:e.radius/2+\"px\",height:e.radius/2+\"px\"},attrs:{viewBox:\"0 0 50 50\"}},[n(\"circle\",{staticClass:\"path\",attrs:{cx:\"25\",cy:\"25\",r:\"20\",fill:\"none\",stroke:e.strokeColor,\"stroke-width\":e.strokeWidth}})])])},kd=[];Rd._withStripped=!0;var Ad={name:\"ElSpinner\",props:{type:String,radius:{type:Number,default:100},strokeWidth:{type:Number,default:5},strokeColor:{type:String,default:\"#efefef\"}}},Dd=Ad,Id=s(Dd,Rd,kd,!1,null,null,null);Id.options.__file=\"packages/spinner/src/spinner.vue\";var Md=Id.exports;Md.install=function(e){e.component(Md.name,Md)};var Ld=Md,Pd=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-message-fade\"},on:{\"after-leave\":e.handleAfterLeave}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],class:[\"el-message\",e.type&&!e.iconClass?\"el-message--\"+e.type:\"\",e.center?\"is-center\":\"\",e.showClose?\"is-closable\":\"\",e.customClass],style:e.positionStyle,attrs:{role:\"alert\"},on:{mouseenter:e.clearTimer,mouseleave:e.startTimer}},[e.iconClass?n(\"i\",{class:e.iconClass}):n(\"i\",{class:e.typeClass}),e._t(\"default\",[e.dangerouslyUseHTMLString?n(\"p\",{staticClass:\"el-message__content\",domProps:{innerHTML:e._s(e.message)}}):n(\"p\",{staticClass:\"el-message__content\"},[e._v(e._s(e.message))])]),e.showClose?n(\"i\",{staticClass:\"el-message__closeBtn el-icon-close\",on:{click:e.close}}):e._e()],2)])},Fd=[];Pd._withStripped=!0;var Bd={success:\"success\",info:\"info\",warning:\"warning\",error:\"error\"},Ud={data:function(){return{visible:!1,message:\"\",duration:3e3,type:\"info\",iconClass:\"\",customClass:\"\",onClose:null,showClose:!1,closed:!1,verticalOffset:20,timer:null,dangerouslyUseHTMLString:!1,center:!1}},computed:{typeClass:function(){return this.type&&!this.iconClass?\"el-message__icon el-icon-\"+Bd[this.type]:\"\"},positionStyle:function(){return{top:this.verticalOffset+\"px\"}}},watch:{closed:function(e){e&&(this.visible=!1)}},methods:{handleAfterLeave:function(){this.$destroy(!0),this.$el.parentNode.removeChild(this.$el)},close:function(){this.closed=!0,\"function\"===typeof this.onClose&&this.onClose(this)},clearTimer:function(){clearTimeout(this.timer)},startTimer:function(){var e=this;this.duration>0&&(this.timer=setTimeout((function(){e.closed||e.close()}),this.duration))},keydown:function(e){27===e.keyCode&&(this.closed||this.close())}},mounted:function(){this.startTimer(),document.addEventListener(\"keydown\",this.keydown)},beforeDestroy:function(){document.removeEventListener(\"keydown\",this.keydown)}},$d=Ud,jd=s($d,Pd,Fd,!1,null,null,null);jd.options.__file=\"packages/message/src/main.vue\";var Gd=jd.exports,qd=Hi.a.extend(Gd),Hd=void 0,Vd=[],zd=1,Yd=function e(t){if(!Hi.a.prototype.$isServer){t=t||{},\"string\"===typeof t&&(t={message:t});var n=t.onClose,i=\"message_\"+zd++;t.onClose=function(){e.close(i,n)},Hd=new qd({data:t}),Hd.id=i,Object(Ts[\"isVNode\"])(Hd.message)&&(Hd.$slots.default=[Hd.message],Hd.message=null),Hd.$mount(),document.body.appendChild(Hd.$el);var r=t.offset||20;return Vd.forEach((function(e){r+=e.$el.offsetHeight+16})),Hd.verticalOffset=r,Hd.visible=!0,Hd.$el.style.zIndex=C[\"PopupManager\"].nextZIndex(),Vd.push(Hd),Hd}};[\"success\",\"warning\",\"info\",\"error\"].forEach((function(e){Yd[e]=function(t){return\"string\"===typeof t&&(t={message:t}),t.type=e,Yd(t)}})),Yd.close=function(e,t){for(var n=Vd.length,i=-1,r=void 0,a=0;a<n;a++)if(e===Vd[a].id){r=Vd[a].$el.offsetHeight,i=a,\"function\"===typeof t&&t(Vd[a]),Vd.splice(a,1);break}if(!(n<=1||-1===i||i>Vd.length-1))for(var o=i;o<n-1;o++){var s=Vd[o].$el;s.style[\"top\"]=parseInt(s.style[\"top\"],10)-r-16+\"px\"}},Yd.closeAll=function(){for(var e=Vd.length-1;e>=0;e--)Vd[e].close()};var Wd=Yd,Kd=Wd,Qd=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-badge\"},[e._t(\"default\"),n(\"transition\",{attrs:{name:\"el-zoom-in-center\"}},[n(\"sup\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.hidden&&(e.content||0===e.content||e.isDot),expression:\"!hidden && (content || content === 0 || isDot)\"}],staticClass:\"el-badge__content\",class:[\"el-badge__content--\"+e.type,{\"is-fixed\":e.$slots.default,\"is-dot\":e.isDot}],domProps:{textContent:e._s(e.content)}})])],2)},Xd=[];Qd._withStripped=!0;var Zd={name:\"ElBadge\",props:{value:[String,Number],max:Number,isDot:Boolean,hidden:Boolean,type:{type:String,validator:function(e){return[\"primary\",\"success\",\"warning\",\"info\",\"danger\"].indexOf(e)>-1}}},computed:{content:function(){if(!this.isDot){var e=this.value,t=this.max;return\"number\"===typeof e&&\"number\"===typeof t&&t<e?t+\"+\":e}}}},Jd=Zd,ep=s(Jd,Qd,Xd,!1,null,null,null);ep.options.__file=\"packages/badge/src/main.vue\";var tp=ep.exports;tp.install=function(e){e.component(tp.name,tp)};var np=tp,ip=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-card\",class:e.shadow?\"is-\"+e.shadow+\"-shadow\":\"is-always-shadow\"},[e.$slots.header||e.header?n(\"div\",{staticClass:\"el-card__header\"},[e._t(\"header\",[e._v(e._s(e.header))])],2):e._e(),n(\"div\",{staticClass:\"el-card__body\",style:e.bodyStyle},[e._t(\"default\")],2)])},rp=[];ip._withStripped=!0;var ap={name:\"ElCard\",props:{header:{},bodyStyle:{},shadow:{type:String}}},op=ap,sp=s(op,ip,rp,!1,null,null,null);sp.options.__file=\"packages/card/src/main.vue\";var lp=sp.exports;lp.install=function(e){e.component(lp.name,lp)};var cp=lp,up=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-rate\",attrs:{role:\"slider\",\"aria-valuenow\":e.currentValue,\"aria-valuetext\":e.text,\"aria-valuemin\":\"0\",\"aria-valuemax\":e.max,tabindex:\"0\"},on:{keydown:e.handleKey}},[e._l(e.max,(function(t,i){return n(\"span\",{key:i,staticClass:\"el-rate__item\",style:{cursor:e.rateDisabled?\"auto\":\"pointer\"},on:{mousemove:function(n){e.setCurrentValue(t,n)},mouseleave:e.resetCurrentValue,click:function(n){e.selectValue(t)}}},[n(\"i\",{staticClass:\"el-rate__icon\",class:[e.classes[t-1],{hover:e.hoverIndex===t}],style:e.getIconStyle(t)},[e.showDecimalIcon(t)?n(\"i\",{staticClass:\"el-rate__decimal\",class:e.decimalIconClass,style:e.decimalStyle}):e._e()])])})),e.showText||e.showScore?n(\"span\",{staticClass:\"el-rate__text\",style:{color:e.textColor}},[e._v(e._s(e.text))]):e._e()],2)},dp=[];up._withStripped=!0;var pp=n(18),hp={name:\"ElRate\",mixins:[w.a],inject:{elForm:{default:\"\"}},data:function(){return{pointerAtLeftHalf:!0,currentValue:this.value,hoverIndex:-1}},props:{value:{type:Number,default:0},lowThreshold:{type:Number,default:2},highThreshold:{type:Number,default:4},max:{type:Number,default:5},colors:{type:[Array,Object],default:function(){return[\"#F7BA2A\",\"#F7BA2A\",\"#F7BA2A\"]}},voidColor:{type:String,default:\"#C6D1DE\"},disabledVoidColor:{type:String,default:\"#EFF2F7\"},iconClasses:{type:[Array,Object],default:function(){return[\"el-icon-star-on\",\"el-icon-star-on\",\"el-icon-star-on\"]}},voidIconClass:{type:String,default:\"el-icon-star-off\"},disabledVoidIconClass:{type:String,default:\"el-icon-star-on\"},disabled:{type:Boolean,default:!1},allowHalf:{type:Boolean,default:!1},showText:{type:Boolean,default:!1},showScore:{type:Boolean,default:!1},textColor:{type:String,default:\"#1f2d3d\"},texts:{type:Array,default:function(){return[\"极差\",\"失望\",\"一般\",\"满意\",\"惊喜\"]}},scoreTemplate:{type:String,default:\"{value}\"}},computed:{text:function(){var e=\"\";return this.showScore?e=this.scoreTemplate.replace(/\\{\\s*value\\s*\\}/,this.rateDisabled?this.value:this.currentValue):this.showText&&(e=this.texts[Math.ceil(this.currentValue)-1]),e},decimalStyle:function(){var e=\"\";return this.rateDisabled?e=this.valueDecimal+\"%\":this.allowHalf&&(e=\"50%\"),{color:this.activeColor,width:e}},valueDecimal:function(){return 100*this.value-100*Math.floor(this.value)},classMap:function(){var e;return Array.isArray(this.iconClasses)?(e={},e[this.lowThreshold]=this.iconClasses[0],e[this.highThreshold]={value:this.iconClasses[1],excluded:!0},e[this.max]=this.iconClasses[2],e):this.iconClasses},decimalIconClass:function(){return this.getValueFromMap(this.value,this.classMap)},voidClass:function(){return this.rateDisabled?this.disabledVoidIconClass:this.voidIconClass},activeClass:function(){return this.getValueFromMap(this.currentValue,this.classMap)},colorMap:function(){var e;return Array.isArray(this.colors)?(e={},e[this.lowThreshold]=this.colors[0],e[this.highThreshold]={value:this.colors[1],excluded:!0},e[this.max]=this.colors[2],e):this.colors},activeColor:function(){return this.getValueFromMap(this.currentValue,this.colorMap)},classes:function(){var e=[],t=0,n=this.currentValue;for(this.allowHalf&&this.currentValue!==Math.floor(this.currentValue)&&n--;t<n;t++)e.push(this.activeClass);for(;t<this.max;t++)e.push(this.voidClass);return e},rateDisabled:function(){return this.disabled||(this.elForm||{}).disabled}},watch:{value:function(e){this.currentValue=e,this.pointerAtLeftHalf=this.value!==Math.floor(this.value)}},methods:{getMigratingConfig:function(){return{props:{\"text-template\":\"text-template is renamed to score-template.\"}}},getValueFromMap:function(e,t){var n=Object.keys(t).filter((function(n){var i=t[n],r=!!Object(pp[\"isObject\"])(i)&&i.excluded;return r?e<n:e<=n})).sort((function(e,t){return e-t})),i=t[n[0]];return Object(pp[\"isObject\"])(i)?i.value:i||\"\"},showDecimalIcon:function(e){var t=this.rateDisabled&&this.valueDecimal>0&&e-1<this.value&&e>this.value,n=this.allowHalf&&this.pointerAtLeftHalf&&e-.5<=this.currentValue&&e>this.currentValue;return t||n},getIconStyle:function(e){var t=this.rateDisabled?this.disabledVoidColor:this.voidColor;return{color:e<=this.currentValue?this.activeColor:t}},selectValue:function(e){this.rateDisabled||(this.allowHalf&&this.pointerAtLeftHalf?(this.$emit(\"input\",this.currentValue),this.$emit(\"change\",this.currentValue)):(this.$emit(\"input\",e),this.$emit(\"change\",e)))},handleKey:function(e){if(!this.rateDisabled){var t=this.currentValue,n=e.keyCode;38===n||39===n?(this.allowHalf?t+=.5:t+=1,e.stopPropagation(),e.preventDefault()):37!==n&&40!==n||(this.allowHalf?t-=.5:t-=1,e.stopPropagation(),e.preventDefault()),t=t<0?0:t,t=t>this.max?this.max:t,this.$emit(\"input\",t),this.$emit(\"change\",t)}},setCurrentValue:function(e,t){if(!this.rateDisabled){if(this.allowHalf){var n=t.target;Object(Be[\"hasClass\"])(n,\"el-rate__item\")&&(n=n.querySelector(\".el-rate__icon\")),Object(Be[\"hasClass\"])(n,\"el-rate__decimal\")&&(n=n.parentNode),this.pointerAtLeftHalf=2*t.offsetX<=n.clientWidth,this.currentValue=this.pointerAtLeftHalf?e-.5:e}else this.currentValue=e;this.hoverIndex=e}},resetCurrentValue:function(){this.rateDisabled||(this.allowHalf&&(this.pointerAtLeftHalf=this.value!==Math.floor(this.value)),this.currentValue=this.value,this.hoverIndex=-1)}},created:function(){this.value||this.$emit(\"input\",0)}},fp=hp,_p=s(fp,up,dp,!1,null,null,null);_p.options.__file=\"packages/rate/src/main.vue\";var mp=_p.exports;mp.install=function(e){e.component(mp.name,mp)};var gp=mp,bp=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-steps\",class:[!e.simple&&\"el-steps--\"+e.direction,e.simple&&\"el-steps--simple\"]},[e._t(\"default\")],2)},vp=[];bp._withStripped=!0;var Ep={name:\"ElSteps\",mixins:[w.a],props:{space:[Number,String],active:Number,direction:{type:String,default:\"horizontal\"},alignCenter:Boolean,simple:Boolean,finishStatus:{type:String,default:\"finish\"},processStatus:{type:String,default:\"process\"}},data:function(){return{steps:[],stepOffset:0}},methods:{getMigratingConfig:function(){return{props:{center:\"center is removed.\"}}}},watch:{active:function(e,t){this.$emit(\"change\",e,t)},steps:function(e){e.forEach((function(e,t){e.index=t}))}}},yp=Ep,Sp=s(yp,bp,vp,!1,null,null,null);Sp.options.__file=\"packages/steps/src/steps.vue\";var Cp=Sp.exports;Cp.install=function(e){e.component(Cp.name,Cp)};var Tp=Cp,xp=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-step\",class:[!e.isSimple&&\"is-\"+e.$parent.direction,e.isSimple&&\"is-simple\",e.isLast&&!e.space&&!e.isCenter&&\"is-flex\",e.isCenter&&!e.isVertical&&!e.isSimple&&\"is-center\"],style:e.style},[n(\"div\",{staticClass:\"el-step__head\",class:\"is-\"+e.currentStatus},[n(\"div\",{staticClass:\"el-step__line\",style:e.isLast?\"\":{marginRight:e.$parent.stepOffset+\"px\"}},[n(\"i\",{staticClass:\"el-step__line-inner\",style:e.lineStyle})]),n(\"div\",{staticClass:\"el-step__icon\",class:\"is-\"+(e.icon?\"icon\":\"text\")},[\"success\"!==e.currentStatus&&\"error\"!==e.currentStatus?e._t(\"icon\",[e.icon?n(\"i\",{staticClass:\"el-step__icon-inner\",class:[e.icon]}):e._e(),e.icon||e.isSimple?e._e():n(\"div\",{staticClass:\"el-step__icon-inner\"},[e._v(e._s(e.index+1))])]):n(\"i\",{staticClass:\"el-step__icon-inner is-status\",class:[\"el-icon-\"+(\"success\"===e.currentStatus?\"check\":\"close\")]})],2)]),n(\"div\",{staticClass:\"el-step__main\"},[n(\"div\",{ref:\"title\",staticClass:\"el-step__title\",class:[\"is-\"+e.currentStatus]},[e._t(\"title\",[e._v(e._s(e.title))])],2),e.isSimple?n(\"div\",{staticClass:\"el-step__arrow\"}):n(\"div\",{staticClass:\"el-step__description\",class:[\"is-\"+e.currentStatus]},[e._t(\"description\",[e._v(e._s(e.description))])],2)])])},wp=[];xp._withStripped=!0;var Op={name:\"ElStep\",props:{title:String,icon:String,description:String,status:String},data:function(){return{index:-1,lineStyle:{},internalStatus:\"\"}},beforeCreate:function(){this.$parent.steps.push(this)},beforeDestroy:function(){var e=this.$parent.steps,t=e.indexOf(this);t>=0&&e.splice(t,1)},computed:{currentStatus:function(){return this.status||this.internalStatus},prevStatus:function(){var e=this.$parent.steps[this.index-1];return e?e.currentStatus:\"wait\"},isCenter:function(){return this.$parent.alignCenter},isVertical:function(){return\"vertical\"===this.$parent.direction},isSimple:function(){return this.$parent.simple},isLast:function(){var e=this.$parent;return e.steps[e.steps.length-1]===this},stepsCount:function(){return this.$parent.steps.length},space:function(){var e=this.isSimple,t=this.$parent.space;return e?\"\":t},style:function(){var e={},t=this.$parent,n=t.steps.length,i=\"number\"===typeof this.space?this.space+\"px\":this.space?this.space:100/(n-(this.isCenter?0:1))+\"%\";return e.flexBasis=i,this.isVertical||(this.isLast?e.maxWidth=100/this.stepsCount+\"%\":e.marginRight=-this.$parent.stepOffset+\"px\"),e}},methods:{updateStatus:function(e){var t=this.$parent.$children[this.index-1];e>this.index?this.internalStatus=this.$parent.finishStatus:e===this.index&&\"error\"!==this.prevStatus?this.internalStatus=this.$parent.processStatus:this.internalStatus=\"wait\",t&&t.calcProgress(this.internalStatus)},calcProgress:function(e){var t=100,n={};n.transitionDelay=150*this.index+\"ms\",e===this.$parent.processStatus?(this.currentStatus,t=0):\"wait\"===e&&(t=0,n.transitionDelay=-150*this.index+\"ms\"),n.borderWidth=t&&!this.isSimple?\"1px\":0,\"vertical\"===this.$parent.direction?n.height=t+\"%\":n.width=t+\"%\",this.lineStyle=n}},mounted:function(){var e=this,t=this.$watch(\"index\",(function(n){e.$watch(\"$parent.active\",e.updateStatus,{immediate:!0}),e.$watch(\"$parent.processStatus\",(function(){var t=e.$parent.active;e.updateStatus(t)}),{immediate:!0}),t()}))}},Np=Op,Rp=s(Np,xp,wp,!1,null,null,null);Rp.options.__file=\"packages/steps/src/step.vue\";var kp=Rp.exports;kp.install=function(e){e.component(kp.name,kp)};var Ap=kp,Dp=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{class:e.carouselClasses,on:{mouseenter:function(t){return t.stopPropagation(),e.handleMouseEnter(t)},mouseleave:function(t){return t.stopPropagation(),e.handleMouseLeave(t)}}},[n(\"div\",{staticClass:\"el-carousel__container\",style:{height:e.height}},[e.arrowDisplay?n(\"transition\",{attrs:{name:\"carousel-arrow-left\"}},[n(\"button\",{directives:[{name:\"show\",rawName:\"v-show\",value:(\"always\"===e.arrow||e.hover)&&(e.loop||e.activeIndex>0),expression:\"(arrow === 'always' || hover) && (loop || activeIndex > 0)\"}],staticClass:\"el-carousel__arrow el-carousel__arrow--left\",attrs:{type:\"button\"},on:{mouseenter:function(t){e.handleButtonEnter(\"left\")},mouseleave:e.handleButtonLeave,click:function(t){t.stopPropagation(),e.throttledArrowClick(e.activeIndex-1)}}},[n(\"i\",{staticClass:\"el-icon-arrow-left\"})])]):e._e(),e.arrowDisplay?n(\"transition\",{attrs:{name:\"carousel-arrow-right\"}},[n(\"button\",{directives:[{name:\"show\",rawName:\"v-show\",value:(\"always\"===e.arrow||e.hover)&&(e.loop||e.activeIndex<e.items.length-1),expression:\"(arrow === 'always' || hover) && (loop || activeIndex < items.length - 1)\"}],staticClass:\"el-carousel__arrow el-carousel__arrow--right\",attrs:{type:\"button\"},on:{mouseenter:function(t){e.handleButtonEnter(\"right\")},mouseleave:e.handleButtonLeave,click:function(t){t.stopPropagation(),e.throttledArrowClick(e.activeIndex+1)}}},[n(\"i\",{staticClass:\"el-icon-arrow-right\"})])]):e._e(),e._t(\"default\")],2),\"none\"!==e.indicatorPosition?n(\"ul\",{class:e.indicatorsClasses},e._l(e.items,(function(t,i){return n(\"li\",{key:i,class:[\"el-carousel__indicator\",\"el-carousel__indicator--\"+e.direction,{\"is-active\":i===e.activeIndex}],on:{mouseenter:function(t){e.throttledIndicatorHover(i)},click:function(t){t.stopPropagation(),e.handleIndicatorClick(i)}}},[n(\"button\",{staticClass:\"el-carousel__button\"},[e.hasLabel?n(\"span\",[e._v(e._s(t.label))]):e._e()])])})),0):e._e()])},Ip=[];Dp._withStripped=!0;var Mp=n(25),Lp=n.n(Mp),Pp={name:\"ElCarousel\",props:{initialIndex:{type:Number,default:0},height:String,trigger:{type:String,default:\"hover\"},autoplay:{type:Boolean,default:!0},interval:{type:Number,default:3e3},indicatorPosition:String,indicator:{type:Boolean,default:!0},arrow:{type:String,default:\"hover\"},type:String,loop:{type:Boolean,default:!0},direction:{type:String,default:\"horizontal\",validator:function(e){return-1!==[\"horizontal\",\"vertical\"].indexOf(e)}}},data:function(){return{items:[],activeIndex:-1,containerWidth:0,timer:null,hover:!1}},computed:{arrowDisplay:function(){return\"never\"!==this.arrow&&\"vertical\"!==this.direction},hasLabel:function(){return this.items.some((function(e){return e.label.toString().length>0}))},carouselClasses:function(){var e=[\"el-carousel\",\"el-carousel--\"+this.direction];return\"card\"===this.type&&e.push(\"el-carousel--card\"),e},indicatorsClasses:function(){var e=[\"el-carousel__indicators\",\"el-carousel__indicators--\"+this.direction];return this.hasLabel&&e.push(\"el-carousel__indicators--labels\"),\"outside\"!==this.indicatorPosition&&\"card\"!==this.type||e.push(\"el-carousel__indicators--outside\"),e}},watch:{items:function(e){e.length>0&&this.setActiveItem(this.initialIndex)},activeIndex:function(e,t){this.resetItemPosition(t),t>-1&&this.$emit(\"change\",e,t)},autoplay:function(e){e?this.startTimer():this.pauseTimer()},loop:function(){this.setActiveItem(this.activeIndex)}},methods:{handleMouseEnter:function(){this.hover=!0,this.pauseTimer()},handleMouseLeave:function(){this.hover=!1,this.startTimer()},itemInStage:function(e,t){var n=this.items.length;return t===n-1&&e.inStage&&this.items[0].active||e.inStage&&this.items[t+1]&&this.items[t+1].active?\"left\":!!(0===t&&e.inStage&&this.items[n-1].active||e.inStage&&this.items[t-1]&&this.items[t-1].active)&&\"right\"},handleButtonEnter:function(e){var t=this;\"vertical\"!==this.direction&&this.items.forEach((function(n,i){e===t.itemInStage(n,i)&&(n.hover=!0)}))},handleButtonLeave:function(){\"vertical\"!==this.direction&&this.items.forEach((function(e){e.hover=!1}))},updateItems:function(){this.items=this.$children.filter((function(e){return\"ElCarouselItem\"===e.$options.name}))},resetItemPosition:function(e){var t=this;this.items.forEach((function(n,i){n.translateItem(i,t.activeIndex,e)}))},playSlides:function(){this.activeIndex<this.items.length-1?this.activeIndex++:this.loop&&(this.activeIndex=0)},pauseTimer:function(){this.timer&&(clearInterval(this.timer),this.timer=null)},startTimer:function(){this.interval<=0||!this.autoplay||this.timer||(this.timer=setInterval(this.playSlides,this.interval))},setActiveItem:function(e){if(\"string\"===typeof e){var t=this.items.filter((function(t){return t.name===e}));t.length>0&&(e=this.items.indexOf(t[0]))}if(e=Number(e),!isNaN(e)&&e===Math.floor(e)){var n=this.items.length,i=this.activeIndex;this.activeIndex=e<0?this.loop?n-1:0:e>=n?this.loop?0:n-1:e,i===this.activeIndex&&this.resetItemPosition(i)}},prev:function(){this.setActiveItem(this.activeIndex-1)},next:function(){this.setActiveItem(this.activeIndex+1)},handleIndicatorClick:function(e){this.activeIndex=e},handleIndicatorHover:function(e){\"hover\"===this.trigger&&e!==this.activeIndex&&(this.activeIndex=e)}},created:function(){var e=this;this.throttledArrowClick=Lp()(300,!0,(function(t){e.setActiveItem(t)})),this.throttledIndicatorHover=Lp()(300,(function(t){e.handleIndicatorHover(t)}))},mounted:function(){var e=this;this.updateItems(),this.$nextTick((function(){Object(ei[\"addResizeListener\"])(e.$el,e.resetItemPosition),e.initialIndex<e.items.length&&e.initialIndex>=0&&(e.activeIndex=e.initialIndex),e.startTimer()}))},beforeDestroy:function(){this.$el&&Object(ei[\"removeResizeListener\"])(this.$el,this.resetItemPosition),this.pauseTimer()}},Fp=Pp,Bp=s(Fp,Dp,Ip,!1,null,null,null);Bp.options.__file=\"packages/carousel/src/main.vue\";var Up=Bp.exports;Up.install=function(e){e.component(Up.name,Up)};var $p=Up,jp={vertical:{offset:\"offsetHeight\",scroll:\"scrollTop\",scrollSize:\"scrollHeight\",size:\"height\",key:\"vertical\",axis:\"Y\",client:\"clientY\",direction:\"top\"},horizontal:{offset:\"offsetWidth\",scroll:\"scrollLeft\",scrollSize:\"scrollWidth\",size:\"width\",key:\"horizontal\",axis:\"X\",client:\"clientX\",direction:\"left\"}};function Gp(e){var t=e.move,n=e.size,i=e.bar,r={},a=\"translate\"+i.axis+\"(\"+t+\"%)\";return r[i.size]=n,r.transform=a,r.msTransform=a,r.webkitTransform=a,r}var qp={name:\"Bar\",props:{vertical:Boolean,size:String,move:Number},computed:{bar:function(){return jp[this.vertical?\"vertical\":\"horizontal\"]},wrap:function(){return this.$parent.wrap}},render:function(e){var t=this.size,n=this.move,i=this.bar;return e(\"div\",{class:[\"el-scrollbar__bar\",\"is-\"+i.key],on:{mousedown:this.clickTrackHandler}},[e(\"div\",{ref:\"thumb\",class:\"el-scrollbar__thumb\",on:{mousedown:this.clickThumbHandler},style:Gp({size:t,move:n,bar:i})})])},methods:{clickThumbHandler:function(e){e.ctrlKey||2===e.button||(this.startDrag(e),this[this.bar.axis]=e.currentTarget[this.bar.offset]-(e[this.bar.client]-e.currentTarget.getBoundingClientRect()[this.bar.direction]))},clickTrackHandler:function(e){var t=Math.abs(e.target.getBoundingClientRect()[this.bar.direction]-e[this.bar.client]),n=this.$refs.thumb[this.bar.offset]/2,i=100*(t-n)/this.$el[this.bar.offset];this.wrap[this.bar.scroll]=i*this.wrap[this.bar.scrollSize]/100},startDrag:function(e){e.stopImmediatePropagation(),this.cursorDown=!0,Object(Be[\"on\"])(document,\"mousemove\",this.mouseMoveDocumentHandler),Object(Be[\"on\"])(document,\"mouseup\",this.mouseUpDocumentHandler),document.onselectstart=function(){return!1}},mouseMoveDocumentHandler:function(e){if(!1!==this.cursorDown){var t=this[this.bar.axis];if(t){var n=-1*(this.$el.getBoundingClientRect()[this.bar.direction]-e[this.bar.client]),i=this.$refs.thumb[this.bar.offset]-t,r=100*(n-i)/this.$el[this.bar.offset];this.wrap[this.bar.scroll]=r*this.wrap[this.bar.scrollSize]/100}}},mouseUpDocumentHandler:function(e){this.cursorDown=!1,this[this.bar.axis]=0,Object(Be[\"off\"])(document,\"mousemove\",this.mouseMoveDocumentHandler),document.onselectstart=null}},destroyed:function(){Object(Be[\"off\"])(document,\"mouseup\",this.mouseUpDocumentHandler)}},Hp={name:\"ElScrollbar\",components:{Bar:qp},props:{native:Boolean,wrapStyle:{},wrapClass:{},viewClass:{},viewStyle:{},noresize:Boolean,tag:{type:String,default:\"div\"}},data:function(){return{sizeWidth:\"0\",sizeHeight:\"0\",moveX:0,moveY:0}},computed:{wrap:function(){return this.$refs.wrap}},render:function(e){var t=vr()(),n=this.wrapStyle;if(t){var i=\"-\"+t+\"px\",r=\"margin-bottom: \"+i+\"; margin-right: \"+i+\";\";Array.isArray(this.wrapStyle)?(n=Object(b[\"toObject\"])(this.wrapStyle),n.marginRight=n.marginBottom=i):\"string\"===typeof this.wrapStyle?n+=r:n=r}var a=e(this.tag,{class:[\"el-scrollbar__view\",this.viewClass],style:this.viewStyle,ref:\"resize\"},this.$slots.default),o=e(\"div\",{ref:\"wrap\",style:n,on:{scroll:this.handleScroll},class:[this.wrapClass,\"el-scrollbar__wrap\",t?\"\":\"el-scrollbar__wrap--hidden-default\"]},[[a]]),s=void 0;return s=this.native?[e(\"div\",{ref:\"wrap\",class:[this.wrapClass,\"el-scrollbar__wrap\"],style:n},[[a]])]:[o,e(qp,{attrs:{move:this.moveX,size:this.sizeWidth}}),e(qp,{attrs:{vertical:!0,move:this.moveY,size:this.sizeHeight}})],e(\"div\",{class:\"el-scrollbar\"},s)},methods:{handleScroll:function(){var e=this.wrap;this.moveY=100*e.scrollTop/e.clientHeight,this.moveX=100*e.scrollLeft/e.clientWidth},update:function(){var e=void 0,t=void 0,n=this.wrap;n&&(e=100*n.clientHeight/n.scrollHeight,t=100*n.clientWidth/n.scrollWidth,this.sizeHeight=e<100?e+\"%\":\"\",this.sizeWidth=t<100?t+\"%\":\"\")}},mounted:function(){this.native||(this.$nextTick(this.update),!this.noresize&&Object(ei[\"addResizeListener\"])(this.$refs.resize,this.update))},beforeDestroy:function(){this.native||!this.noresize&&Object(ei[\"removeResizeListener\"])(this.$refs.resize,this.update)},install:function(e){e.component(Hp.name,Hp)}},Vp=Hp,zp=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.ready,expression:\"ready\"}],staticClass:\"el-carousel__item\",class:{\"is-active\":e.active,\"el-carousel__item--card\":\"card\"===e.$parent.type,\"is-in-stage\":e.inStage,\"is-hover\":e.hover,\"is-animating\":e.animating},style:e.itemStyle,on:{click:e.handleItemClick}},[\"card\"===e.$parent.type?n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.active,expression:\"!active\"}],staticClass:\"el-carousel__mask\"}):e._e(),e._t(\"default\")],2)},Yp=[];zp._withStripped=!0;var Wp=.83,Kp={name:\"ElCarouselItem\",props:{name:String,label:{type:[String,Number],default:\"\"}},data:function(){return{hover:!1,translate:0,scale:1,active:!1,ready:!1,inStage:!1,animating:!1}},methods:{processIndex:function(e,t,n){return 0===t&&e===n-1?-1:t===n-1&&0===e?n:e<t-1&&t-e>=n/2?n+1:e>t+1&&e-t>=n/2?-2:e},calcCardTranslate:function(e,t){var n=this.$parent.$el.offsetWidth;return this.inStage?n*((2-Wp)*(e-t)+1)/4:e<t?-(1+Wp)*n/4:(3+Wp)*n/4},calcTranslate:function(e,t,n){var i=this.$parent.$el[n?\"offsetHeight\":\"offsetWidth\"];return i*(e-t)},translateItem:function(e,t,n){var i=this.$parent.type,r=this.parentDirection,a=this.$parent.items.length;if(\"card\"!==i&&void 0!==n&&(this.animating=e===t||e===n),e!==t&&a>2&&this.$parent.loop&&(e=this.processIndex(e,t,a)),\"card\"===i)this.inStage=Math.round(Math.abs(e-t))<=1,this.active=e===t,this.translate=this.calcCardTranslate(e,t),this.scale=this.active?1:Wp;else{this.active=e===t;var o=\"vertical\"===r;this.translate=this.calcTranslate(e,t,o)}this.ready=!0},handleItemClick:function(){var e=this.$parent;if(e&&\"card\"===e.type){var t=e.items.indexOf(this);e.setActiveItem(t)}}},computed:{parentDirection:function(){return this.$parent.direction},itemStyle:function(){var e=\"vertical\"===this.parentDirection?\"translateY\":\"translateX\",t=e+\"(\"+this.translate+\"px) scale(\"+this.scale+\")\",n={transform:t};return Object(b[\"autoprefixer\"])(n)}},created:function(){this.$parent&&this.$parent.updateItems()},destroyed:function(){this.$parent&&this.$parent.updateItems()}},Qp=Kp,Xp=s(Qp,zp,Yp,!1,null,null,null);Xp.options.__file=\"packages/carousel/src/item.vue\";var Zp=Xp.exports;Zp.install=function(e){e.component(Zp.name,Zp)};var Jp=Zp,eh=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-collapse\",attrs:{role:\"tablist\",\"aria-multiselectable\":\"true\"}},[e._t(\"default\")],2)},th=[];eh._withStripped=!0;var nh={name:\"ElCollapse\",componentName:\"ElCollapse\",props:{accordion:Boolean,value:{type:[Array,String,Number],default:function(){return[]}}},data:function(){return{activeNames:[].concat(this.value)}},provide:function(){return{collapse:this}},watch:{value:function(e){this.activeNames=[].concat(e)}},methods:{setActiveNames:function(e){e=[].concat(e);var t=this.accordion?e[0]:e;this.activeNames=e,this.$emit(\"input\",t),this.$emit(\"change\",t)},handleItemClick:function(e){if(this.accordion)this.setActiveNames(!this.activeNames[0]&&0!==this.activeNames[0]||this.activeNames[0]!==e.name?e.name:\"\");else{var t=this.activeNames.slice(0),n=t.indexOf(e.name);n>-1?t.splice(n,1):t.push(e.name),this.setActiveNames(t)}}},created:function(){this.$on(\"item-click\",this.handleItemClick)}},ih=nh,rh=s(ih,eh,th,!1,null,null,null);rh.options.__file=\"packages/collapse/src/collapse.vue\";var ah=rh.exports;ah.install=function(e){e.component(ah.name,ah)};var oh=ah,sh=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-collapse-item\",class:{\"is-active\":e.isActive,\"is-disabled\":e.disabled}},[n(\"div\",{attrs:{role:\"tab\",\"aria-expanded\":e.isActive,\"aria-controls\":\"el-collapse-content-\"+e.id,\"aria-describedby\":\"el-collapse-content-\"+e.id}},[n(\"div\",{staticClass:\"el-collapse-item__header\",class:{focusing:e.focusing,\"is-active\":e.isActive},attrs:{role:\"button\",id:\"el-collapse-head-\"+e.id,tabindex:e.disabled?void 0:0},on:{click:e.handleHeaderClick,keyup:function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"space\",32,t.key,[\" \",\"Spacebar\"])&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:(t.stopPropagation(),e.handleEnterClick(t))},focus:e.handleFocus,blur:function(t){e.focusing=!1}}},[e._t(\"title\",[e._v(e._s(e.title))]),n(\"i\",{staticClass:\"el-collapse-item__arrow el-icon-arrow-right\",class:{\"is-active\":e.isActive}})],2)]),n(\"el-collapse-transition\",[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.isActive,expression:\"isActive\"}],staticClass:\"el-collapse-item__wrap\",attrs:{role:\"tabpanel\",\"aria-hidden\":!e.isActive,\"aria-labelledby\":\"el-collapse-head-\"+e.id,id:\"el-collapse-content-\"+e.id}},[n(\"div\",{staticClass:\"el-collapse-item__content\"},[e._t(\"default\")],2)])])],1)},lh=[];sh._withStripped=!0;var ch={name:\"ElCollapseItem\",componentName:\"ElCollapseItem\",mixins:[N.a],components:{ElCollapseTransition:Ye.a},data:function(){return{contentWrapStyle:{height:\"auto\",display:\"block\"},contentHeight:0,focusing:!1,isClick:!1,id:Object(b[\"generateId\"])()}},inject:[\"collapse\"],props:{title:String,name:{type:[String,Number],default:function(){return this._uid}},disabled:Boolean},computed:{isActive:function(){return this.collapse.activeNames.indexOf(this.name)>-1}},methods:{handleFocus:function(){var e=this;setTimeout((function(){e.isClick?e.isClick=!1:e.focusing=!0}),50)},handleHeaderClick:function(){this.disabled||(this.dispatch(\"ElCollapse\",\"item-click\",this),this.focusing=!1,this.isClick=!0)},handleEnterClick:function(){this.dispatch(\"ElCollapse\",\"item-click\",this)}}},uh=ch,dh=s(uh,sh,lh,!1,null,null,null);dh.options.__file=\"packages/collapse/src/collapse-item.vue\";var ph=dh.exports;ph.install=function(e){e.component(ph.name,ph)};var hh=ph,fh=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{directives:[{name:\"clickoutside\",rawName:\"v-clickoutside\",value:function(){return e.toggleDropDownVisible(!1)},expression:\"() => toggleDropDownVisible(false)\"}],ref:\"reference\",class:[\"el-cascader\",e.realSize&&\"el-cascader--\"+e.realSize,{\"is-disabled\":e.isDisabled}],on:{mouseenter:function(t){e.inputHover=!0},mouseleave:function(t){e.inputHover=!1},click:function(){return e.toggleDropDownVisible(!e.readonly||void 0)},keydown:e.handleKeyDown}},[n(\"el-input\",{ref:\"input\",class:{\"is-focus\":e.dropDownVisible},attrs:{size:e.realSize,placeholder:e.placeholder,readonly:e.readonly,disabled:e.isDisabled,\"validate-event\":!1},on:{focus:e.handleFocus,blur:e.handleBlur,input:e.handleInput},model:{value:e.multiple?e.presentText:e.inputValue,callback:function(t){e.multiple?e.presentText:e.inputValue=t},expression:\"multiple ? presentText : inputValue\"}},[n(\"template\",{slot:\"suffix\"},[e.clearBtnVisible?n(\"i\",{key:\"clear\",staticClass:\"el-input__icon el-icon-circle-close\",on:{click:function(t){return t.stopPropagation(),e.handleClear(t)}}}):n(\"i\",{key:\"arrow-down\",class:[\"el-input__icon\",\"el-icon-arrow-down\",e.dropDownVisible&&\"is-reverse\"],on:{click:function(t){t.stopPropagation(),e.toggleDropDownVisible()}}})])],2),e.multiple?n(\"div\",{staticClass:\"el-cascader__tags\"},[e._l(e.presentTags,(function(t,i){return n(\"el-tag\",{key:t.key,attrs:{type:\"info\",size:e.tagSize,hit:t.hitState,closable:t.closable,\"disable-transitions\":\"\"},on:{close:function(t){e.deleteTag(i)}}},[n(\"span\",[e._v(e._s(t.text))])])})),e.filterable&&!e.isDisabled?n(\"input\",{directives:[{name:\"model\",rawName:\"v-model.trim\",value:e.inputValue,expression:\"inputValue\",modifiers:{trim:!0}}],staticClass:\"el-cascader__search-input\",attrs:{type:\"text\",placeholder:e.presentTags.length?\"\":e.placeholder},domProps:{value:e.inputValue},on:{input:[function(t){t.target.composing||(e.inputValue=t.target.value.trim())},function(t){return e.handleInput(e.inputValue,t)}],click:function(t){t.stopPropagation(),e.toggleDropDownVisible(!0)},keydown:function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"delete\",[8,46],t.key,[\"Backspace\",\"Delete\",\"Del\"])?null:e.handleDelete(t)},blur:function(t){e.$forceUpdate()}}}):e._e()],2):e._e(),n(\"transition\",{attrs:{name:\"el-zoom-in-top\"},on:{\"after-leave\":e.handleDropdownLeave}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.dropDownVisible,expression:\"dropDownVisible\"}],ref:\"popper\",class:[\"el-popper\",\"el-cascader__dropdown\",e.popperClass]},[n(\"el-cascader-panel\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.filtering,expression:\"!filtering\"}],ref:\"panel\",attrs:{options:e.options,props:e.config,border:!1,\"render-label\":e.$scopedSlots.default},on:{\"expand-change\":e.handleExpandChange,close:function(t){e.toggleDropDownVisible(!1)}},model:{value:e.checkedValue,callback:function(t){e.checkedValue=t},expression:\"checkedValue\"}}),e.filterable?n(\"el-scrollbar\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.filtering,expression:\"filtering\"}],ref:\"suggestionPanel\",staticClass:\"el-cascader__suggestion-panel\",attrs:{tag:\"ul\",\"view-class\":\"el-cascader__suggestion-list\"},nativeOn:{keydown:function(t){return e.handleSuggestionKeyDown(t)}}},[e.suggestions.length?e._l(e.suggestions,(function(t,i){return n(\"li\",{key:t.uid,class:[\"el-cascader__suggestion-item\",t.checked&&\"is-checked\"],attrs:{tabindex:-1},on:{click:function(t){e.handleSuggestionClick(i)}}},[n(\"span\",[e._v(e._s(t.text))]),t.checked?n(\"i\",{staticClass:\"el-icon-check\"}):e._e()])})):e._t(\"empty\",[n(\"li\",{staticClass:\"el-cascader__empty-text\"},[e._v(e._s(e.t(\"el.cascader.noMatch\")))])])],2):e._e()],1)])],1)},_h=[];fh._withStripped=!0;var mh=n(42),gh=n.n(mh),bh=n(28),vh=n.n(bh),Eh=vh.a.keys,yh={expandTrigger:{newProp:\"expandTrigger\",type:String},changeOnSelect:{newProp:\"checkStrictly\",type:Boolean},hoverThreshold:{newProp:\"hoverThreshold\",type:Number}},Sh={props:{placement:{type:String,default:\"bottom-start\"},appendToBody:q.a.props.appendToBody,visibleArrow:{type:Boolean,default:!0},arrowOffset:q.a.props.arrowOffset,offset:q.a.props.offset,boundariesPadding:q.a.props.boundariesPadding,popperOptions:q.a.props.popperOptions},methods:q.a.methods,data:q.a.data,beforeDestroy:q.a.beforeDestroy},Ch={medium:36,small:32,mini:28},Th={name:\"ElCascader\",directives:{Clickoutside:U.a},mixins:[Sh,N.a,g.a,w.a],inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},components:{ElInput:_.a,ElTag:Jn.a,ElScrollbar:V.a,ElCascaderPanel:gh.a},props:{value:{},options:Array,props:Object,size:String,placeholder:{type:String,default:function(){return Object(ti[\"t\"])(\"el.cascader.placeholder\")}},disabled:Boolean,clearable:Boolean,filterable:Boolean,filterMethod:Function,separator:{type:String,default:\" / \"},showAllLevels:{type:Boolean,default:!0},collapseTags:Boolean,debounce:{type:Number,default:300},beforeFilter:{type:Function,default:function(){return function(){}}},popperClass:String},data:function(){return{dropDownVisible:!1,checkedValue:this.value||null,inputHover:!1,inputValue:null,presentText:null,presentTags:[],checkedNodes:[],filtering:!1,suggestions:[],inputInitialHeight:0,pressDeleteCount:0}},computed:{realSize:function(){var e=(this.elFormItem||{}).elFormItemSize;return this.size||e||(this.$ELEMENT||{}).size},tagSize:function(){return[\"small\",\"mini\"].indexOf(this.realSize)>-1?\"mini\":\"small\"},isDisabled:function(){return this.disabled||(this.elForm||{}).disabled},config:function(){var e=this.props||{},t=this.$attrs;return Object.keys(yh).forEach((function(n){var i=yh[n],r=i.newProp,a=i.type,o=t[n]||t[Object(b[\"kebabCase\"])(n)];Object(wt[\"isDef\"])(n)&&!Object(wt[\"isDef\"])(e[r])&&(a===Boolean&&\"\"===o&&(o=!0),e[r]=o)})),e},multiple:function(){return this.config.multiple},leafOnly:function(){return!this.config.checkStrictly},readonly:function(){return!this.filterable||this.multiple},clearBtnVisible:function(){return!(!this.clearable||this.isDisabled||this.filtering||!this.inputHover)&&(this.multiple?!!this.checkedNodes.filter((function(e){return!e.isDisabled})).length:!!this.presentText)},panel:function(){return this.$refs.panel}},watch:{disabled:function(){this.computePresentContent()},value:function(e){Object(b[\"isEqual\"])(e,this.checkedValue)||(this.checkedValue=e,this.computePresentContent())},checkedValue:function(e){var t=this.value,n=this.dropDownVisible,i=this.config,r=i.checkStrictly,a=i.multiple;Object(b[\"isEqual\"])(e,t)&&!Object(pp[\"isUndefined\"])(t)||(this.computePresentContent(),a||r||!n||this.toggleDropDownVisible(!1),this.$emit(\"input\",e),this.$emit(\"change\",e),this.dispatch(\"ElFormItem\",\"el.form.change\",[e]))},options:{handler:function(){this.$nextTick(this.computePresentContent)},deep:!0},presentText:function(e){this.inputValue=e},presentTags:function(e,t){this.multiple&&(e.length||t.length)&&this.$nextTick(this.updateStyle)},filtering:function(e){this.$nextTick(this.updatePopper)}},mounted:function(){var e=this,t=this.$refs.input;t&&t.$el&&(this.inputInitialHeight=t.$el.offsetHeight||Ch[this.realSize]||40),Object(b[\"isEmpty\"])(this.value)||this.computePresentContent(),this.filterHandler=F()(this.debounce,(function(){var t=e.inputValue;if(t){var n=e.beforeFilter(t);n&&n.then?n.then(e.getSuggestions):!1!==n?e.getSuggestions():e.filtering=!1}else e.filtering=!1})),Object(ei[\"addResizeListener\"])(this.$el,this.updateStyle)},beforeDestroy:function(){Object(ei[\"removeResizeListener\"])(this.$el,this.updateStyle)},methods:{getMigratingConfig:function(){return{props:{\"expand-trigger\":\"expand-trigger is removed, use `props.expandTrigger` instead.\",\"change-on-select\":\"change-on-select is removed, use `props.checkStrictly` instead.\",\"hover-threshold\":\"hover-threshold is removed, use `props.hoverThreshold` instead\"},events:{\"active-item-change\":\"active-item-change is renamed to expand-change\"}}},toggleDropDownVisible:function(e){var t=this;if(!this.isDisabled){var n=this.dropDownVisible,i=this.$refs.input;e=Object(wt[\"isDef\"])(e)?e:!n,e!==n&&(this.dropDownVisible=e,e&&this.$nextTick((function(){t.updatePopper(),t.panel.scrollIntoView()})),i.$refs.input.setAttribute(\"aria-expanded\",e),this.$emit(\"visible-change\",e))}},handleDropdownLeave:function(){this.filtering=!1,this.inputValue=this.presentText},handleKeyDown:function(e){switch(e.keyCode){case Eh.enter:this.toggleDropDownVisible();break;case Eh.down:this.toggleDropDownVisible(!0),this.focusFirstNode(),e.preventDefault();break;case Eh.esc:case Eh.tab:this.toggleDropDownVisible(!1);break}},handleFocus:function(e){this.$emit(\"focus\",e)},handleBlur:function(e){this.$emit(\"blur\",e)},handleInput:function(e,t){!this.dropDownVisible&&this.toggleDropDownVisible(!0),t&&t.isComposing||(e?this.filterHandler():this.filtering=!1)},handleClear:function(){this.presentText=\"\",this.panel.clearCheckedNodes()},handleExpandChange:function(e){this.$nextTick(this.updatePopper.bind(this)),this.$emit(\"expand-change\",e),this.$emit(\"active-item-change\",e)},focusFirstNode:function(){var e=this;this.$nextTick((function(){var t=e.filtering,n=e.$refs,i=n.popper,r=n.suggestionPanel,a=null;if(t&&r)a=r.$el.querySelector(\".el-cascader__suggestion-item\");else{var o=i.querySelector(\".el-cascader-menu\");a=o.querySelector('.el-cascader-node[tabindex=\"-1\"]')}a&&(a.focus(),!t&&a.click())}))},computePresentContent:function(){var e=this;this.$nextTick((function(){e.config.multiple?(e.computePresentTags(),e.presentText=e.presentTags.length?\" \":null):e.computePresentText()}))},computePresentText:function(){var e=this.checkedValue,t=this.config;if(!Object(b[\"isEmpty\"])(e)){var n=this.panel.getNodeByValue(e);if(n&&(t.checkStrictly||n.isLeaf))return void(this.presentText=n.getText(this.showAllLevels,this.separator))}this.presentText=null},computePresentTags:function(){var e=this.isDisabled,t=this.leafOnly,n=this.showAllLevels,i=this.separator,r=this.collapseTags,a=this.getCheckedNodes(t),o=[],s=function(t){return{node:t,key:t.uid,text:t.getText(n,i),hitState:!1,closable:!e&&!t.isDisabled}};if(a.length){var l=a[0],c=a.slice(1),u=c.length;o.push(s(l)),u&&(r?o.push({key:-1,text:\"+ \"+u,closable:!1}):c.forEach((function(e){return o.push(s(e))})))}this.checkedNodes=a,this.presentTags=o},getSuggestions:function(){var e=this,t=this.filterMethod;Object(pp[\"isFunction\"])(t)||(t=function(e,t){return e.text.includes(t)});var n=this.panel.getFlattedNodes(this.leafOnly).filter((function(n){return!n.isDisabled&&(n.text=n.getText(e.showAllLevels,e.separator)||\"\",t(n,e.inputValue))}));this.multiple?this.presentTags.forEach((function(e){e.hitState=!1})):n.forEach((function(t){t.checked=Object(b[\"isEqual\"])(e.checkedValue,t.getValueByOption())})),this.filtering=!0,this.suggestions=n,this.$nextTick(this.updatePopper)},handleSuggestionKeyDown:function(e){var t=e.keyCode,n=e.target;switch(t){case Eh.enter:n.click();break;case Eh.up:var i=n.previousElementSibling;i&&i.focus();break;case Eh.down:var r=n.nextElementSibling;r&&r.focus();break;case Eh.esc:case Eh.tab:this.toggleDropDownVisible(!1);break}},handleDelete:function(){var e=this.inputValue,t=this.pressDeleteCount,n=this.presentTags,i=n.length-1,r=n[i];this.pressDeleteCount=e?0:t+1,r&&this.pressDeleteCount&&(r.hitState?this.deleteTag(i):r.hitState=!0)},handleSuggestionClick:function(e){var t=this.multiple,n=this.suggestions[e];if(t){var i=n.checked;n.doCheck(!i),this.panel.calculateMultiCheckedValue()}else this.checkedValue=n.getValueByOption(),this.toggleDropDownVisible(!1)},deleteTag:function(e){var t=this.checkedValue,n=t[e];this.checkedValue=t.filter((function(t,n){return n!==e})),this.$emit(\"remove-tag\",n)},updateStyle:function(){var e=this.$el,t=this.inputInitialHeight;if(!this.$isServer&&e){var n=this.$refs.suggestionPanel,i=e.querySelector(\".el-input__inner\");if(i){var r=e.querySelector(\".el-cascader__tags\"),a=null;if(n&&(a=n.$el)){var o=a.querySelector(\".el-cascader__suggestion-list\");o.style.minWidth=i.offsetWidth+\"px\"}if(r){var s=r.offsetHeight,l=Math.max(s+6,t)+\"px\";i.style.height=l,this.updatePopper()}}}},getCheckedNodes:function(e){return this.panel.getCheckedNodes(e)}}},xh=Th,wh=s(xh,fh,_h,!1,null,null,null);wh.options.__file=\"packages/cascader/src/cascader.vue\";var Oh=wh.exports;Oh.install=function(e){e.component(Oh.name,Oh)};var Nh=Oh,Rh=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{directives:[{name:\"clickoutside\",rawName:\"v-clickoutside\",value:e.hide,expression:\"hide\"}],class:[\"el-color-picker\",e.colorDisabled?\"is-disabled\":\"\",e.colorSize?\"el-color-picker--\"+e.colorSize:\"\"]},[e.colorDisabled?n(\"div\",{staticClass:\"el-color-picker__mask\"}):e._e(),n(\"div\",{staticClass:\"el-color-picker__trigger\",on:{click:e.handleTrigger}},[n(\"span\",{staticClass:\"el-color-picker__color\",class:{\"is-alpha\":e.showAlpha}},[n(\"span\",{staticClass:\"el-color-picker__color-inner\",style:{backgroundColor:e.displayedColor}}),e.value||e.showPanelColor?e._e():n(\"span\",{staticClass:\"el-color-picker__empty el-icon-close\"})]),n(\"span\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.value||e.showPanelColor,expression:\"value || showPanelColor\"}],staticClass:\"el-color-picker__icon el-icon-arrow-down\"})]),n(\"picker-dropdown\",{ref:\"dropdown\",class:[\"el-color-picker__panel\",e.popperClass||\"\"],attrs:{color:e.color,\"show-alpha\":e.showAlpha,predefine:e.predefine},on:{pick:e.confirmValue,clear:e.clearValue},model:{value:e.showPicker,callback:function(t){e.showPicker=t},expression:\"showPicker\"}})],1)},kh=[];Rh._withStripped=!0;var Ah=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e};function Dh(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}var Ih=function(e,t,n){return[e,t*n/((e=(2-t)*n)<1?e:2-e)||0,e/2]},Mh=function(e){return\"string\"===typeof e&&-1!==e.indexOf(\".\")&&1===parseFloat(e)},Lh=function(e){return\"string\"===typeof e&&-1!==e.indexOf(\"%\")},Ph=function(e,t){Mh(e)&&(e=\"100%\");var n=Lh(e);return e=Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(e*t,10)/100),Math.abs(e-t)<1e-6?1:e%t/parseFloat(t)},Fh={10:\"A\",11:\"B\",12:\"C\",13:\"D\",14:\"E\",15:\"F\"},Bh=function(e){var t=e.r,n=e.g,i=e.b,r=function(e){e=Math.min(Math.round(e),255);var t=Math.floor(e/16),n=e%16;return\"\"+(Fh[t]||t)+(Fh[n]||n)};return isNaN(t)||isNaN(n)||isNaN(i)?\"\":\"#\"+r(t)+r(n)+r(i)},Uh={A:10,B:11,C:12,D:13,E:14,F:15},$h=function(e){return 2===e.length?16*(Uh[e[0].toUpperCase()]||+e[0])+(Uh[e[1].toUpperCase()]||+e[1]):Uh[e[1].toUpperCase()]||+e[1]},jh=function(e,t,n){t/=100,n/=100;var i=t,r=Math.max(n,.01),a=void 0,o=void 0;return n*=2,t*=n<=1?n:2-n,i*=r<=1?r:2-r,o=(n+t)/2,a=0===n?2*i/(r+i):2*t/(n+t),{h:e,s:100*a,v:100*o}},Gh=function(e,t,n){e=Ph(e,255),t=Ph(t,255),n=Ph(n,255);var i=Math.max(e,t,n),r=Math.min(e,t,n),a=void 0,o=void 0,s=i,l=i-r;if(o=0===i?0:l/i,i===r)a=0;else{switch(i){case e:a=(t-n)/l+(t<n?6:0);break;case t:a=(n-e)/l+2;break;case n:a=(e-t)/l+4;break}a/=6}return{h:360*a,s:100*o,v:100*s}},qh=function(e,t,n){e=6*Ph(e,360),t=Ph(t,100),n=Ph(n,100);var i=Math.floor(e),r=e-i,a=n*(1-t),o=n*(1-r*t),s=n*(1-(1-r)*t),l=i%6,c=[n,o,a,a,s,n][l],u=[s,n,n,o,a,a][l],d=[a,a,s,n,n,o][l];return{r:Math.round(255*c),g:Math.round(255*u),b:Math.round(255*d)}},Hh=function(){function e(t){for(var n in Dh(this,e),this._hue=0,this._saturation=100,this._value=100,this._alpha=100,this.enableAlpha=!1,this.format=\"hex\",this.value=\"\",t=t||{},t)t.hasOwnProperty(n)&&(this[n]=t[n]);this.doOnChange()}return e.prototype.set=function(e,t){if(1!==arguments.length||\"object\"!==(\"undefined\"===typeof e?\"undefined\":Ah(e)))this[\"_\"+e]=t,this.doOnChange();else for(var n in e)e.hasOwnProperty(n)&&this.set(n,e[n])},e.prototype.get=function(e){return this[\"_\"+e]},e.prototype.toRgb=function(){return qh(this._hue,this._saturation,this._value)},e.prototype.fromString=function(e){var t=this;if(!e)return this._hue=0,this._saturation=100,this._value=100,void this.doOnChange();var n=function(e,n,i){t._hue=Math.max(0,Math.min(360,e)),t._saturation=Math.max(0,Math.min(100,n)),t._value=Math.max(0,Math.min(100,i)),t.doOnChange()};if(-1!==e.indexOf(\"hsl\")){var i=e.replace(/hsla|hsl|\\(|\\)/gm,\"\").split(/\\s|,/g).filter((function(e){return\"\"!==e})).map((function(e,t){return t>2?parseFloat(e):parseInt(e,10)}));if(4===i.length?this._alpha=Math.floor(100*parseFloat(i[3])):3===i.length&&(this._alpha=100),i.length>=3){var r=jh(i[0],i[1],i[2]),a=r.h,o=r.s,s=r.v;n(a,o,s)}}else if(-1!==e.indexOf(\"hsv\")){var l=e.replace(/hsva|hsv|\\(|\\)/gm,\"\").split(/\\s|,/g).filter((function(e){return\"\"!==e})).map((function(e,t){return t>2?parseFloat(e):parseInt(e,10)}));4===l.length?this._alpha=Math.floor(100*parseFloat(l[3])):3===l.length&&(this._alpha=100),l.length>=3&&n(l[0],l[1],l[2])}else if(-1!==e.indexOf(\"rgb\")){var c=e.replace(/rgba|rgb|\\(|\\)/gm,\"\").split(/\\s|,/g).filter((function(e){return\"\"!==e})).map((function(e,t){return t>2?parseFloat(e):parseInt(e,10)}));if(4===c.length?this._alpha=Math.floor(100*parseFloat(c[3])):3===c.length&&(this._alpha=100),c.length>=3){var u=Gh(c[0],c[1],c[2]),d=u.h,p=u.s,h=u.v;n(d,p,h)}}else if(-1!==e.indexOf(\"#\")){var f=e.replace(\"#\",\"\").trim();if(!/^(?:[0-9a-fA-F]{3}){1,2}$/.test(f))return;var _=void 0,m=void 0,g=void 0;3===f.length?(_=$h(f[0]+f[0]),m=$h(f[1]+f[1]),g=$h(f[2]+f[2])):6!==f.length&&8!==f.length||(_=$h(f.substring(0,2)),m=$h(f.substring(2,4)),g=$h(f.substring(4,6))),8===f.length?this._alpha=Math.floor($h(f.substring(6))/255*100):3!==f.length&&6!==f.length||(this._alpha=100);var b=Gh(_,m,g),v=b.h,E=b.s,y=b.v;n(v,E,y)}},e.prototype.compare=function(e){return Math.abs(e._hue-this._hue)<2&&Math.abs(e._saturation-this._saturation)<1&&Math.abs(e._value-this._value)<1&&Math.abs(e._alpha-this._alpha)<1},e.prototype.doOnChange=function(){var e=this._hue,t=this._saturation,n=this._value,i=this._alpha,r=this.format;if(this.enableAlpha)switch(r){case\"hsl\":var a=Ih(e,t/100,n/100);this.value=\"hsla(\"+e+\", \"+Math.round(100*a[1])+\"%, \"+Math.round(100*a[2])+\"%, \"+i/100+\")\";break;case\"hsv\":this.value=\"hsva(\"+e+\", \"+Math.round(t)+\"%, \"+Math.round(n)+\"%, \"+i/100+\")\";break;default:var o=qh(e,t,n),s=o.r,l=o.g,c=o.b;this.value=\"rgba(\"+s+\", \"+l+\", \"+c+\", \"+i/100+\")\"}else switch(r){case\"hsl\":var u=Ih(e,t/100,n/100);this.value=\"hsl(\"+e+\", \"+Math.round(100*u[1])+\"%, \"+Math.round(100*u[2])+\"%)\";break;case\"hsv\":this.value=\"hsv(\"+e+\", \"+Math.round(t)+\"%, \"+Math.round(n)+\"%)\";break;case\"rgb\":var d=qh(e,t,n),p=d.r,h=d.g,f=d.b;this.value=\"rgb(\"+p+\", \"+h+\", \"+f+\")\";break;default:this.value=Bh(qh(e,t,n))}},e}(),Vh=Hh,zh=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-zoom-in-top\"},on:{\"after-leave\":e.doDestroy}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.showPopper,expression:\"showPopper\"}],staticClass:\"el-color-dropdown\"},[n(\"div\",{staticClass:\"el-color-dropdown__main-wrapper\"},[n(\"hue-slider\",{ref:\"hue\",staticStyle:{float:\"right\"},attrs:{color:e.color,vertical:\"\"}}),n(\"sv-panel\",{ref:\"sl\",attrs:{color:e.color}})],1),e.showAlpha?n(\"alpha-slider\",{ref:\"alpha\",attrs:{color:e.color}}):e._e(),e.predefine?n(\"predefine\",{attrs:{color:e.color,colors:e.predefine}}):e._e(),n(\"div\",{staticClass:\"el-color-dropdown__btns\"},[n(\"span\",{staticClass:\"el-color-dropdown__value\"},[n(\"el-input\",{attrs:{\"validate-event\":!1,size:\"mini\"},on:{blur:e.handleConfirm},nativeOn:{keyup:function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.handleConfirm(t)}},model:{value:e.customInput,callback:function(t){e.customInput=t},expression:\"customInput\"}})],1),n(\"el-button\",{staticClass:\"el-color-dropdown__link-btn\",attrs:{size:\"mini\",type:\"text\"},on:{click:function(t){e.$emit(\"clear\")}}},[e._v(\"\\n        \"+e._s(e.t(\"el.colorpicker.clear\"))+\"\\n      \")]),n(\"el-button\",{staticClass:\"el-color-dropdown__btn\",attrs:{plain:\"\",size:\"mini\"},on:{click:e.confirmValue}},[e._v(\"\\n        \"+e._s(e.t(\"el.colorpicker.confirm\"))+\"\\n      \")])],1)],1)])},Yh=[];zh._withStripped=!0;var Wh=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-color-svpanel\",style:{backgroundColor:e.background}},[n(\"div\",{staticClass:\"el-color-svpanel__white\"}),n(\"div\",{staticClass:\"el-color-svpanel__black\"}),n(\"div\",{staticClass:\"el-color-svpanel__cursor\",style:{top:e.cursorTop+\"px\",left:e.cursorLeft+\"px\"}},[n(\"div\")])])},Kh=[];Wh._withStripped=!0;var Qh=!1,Xh=function(e,t){if(!Hi.a.prototype.$isServer){var n=function(e){t.drag&&t.drag(e)},i=function e(i){document.removeEventListener(\"mousemove\",n),document.removeEventListener(\"mouseup\",e),document.onselectstart=null,document.ondragstart=null,Qh=!1,t.end&&t.end(i)};e.addEventListener(\"mousedown\",(function(e){Qh||(document.onselectstart=function(){return!1},document.ondragstart=function(){return!1},document.addEventListener(\"mousemove\",n),document.addEventListener(\"mouseup\",i),Qh=!0,t.start&&t.start(e))}))}},Zh={name:\"el-sl-panel\",props:{color:{required:!0}},computed:{colorValue:function(){var e=this.color.get(\"hue\"),t=this.color.get(\"value\");return{hue:e,value:t}}},watch:{colorValue:function(){this.update()}},methods:{update:function(){var e=this.color.get(\"saturation\"),t=this.color.get(\"value\"),n=this.$el,i=n.clientWidth,r=n.clientHeight;this.cursorLeft=e*i/100,this.cursorTop=(100-t)*r/100,this.background=\"hsl(\"+this.color.get(\"hue\")+\", 100%, 50%)\"},handleDrag:function(e){var t=this.$el,n=t.getBoundingClientRect(),i=e.clientX-n.left,r=e.clientY-n.top;i=Math.max(0,i),i=Math.min(i,n.width),r=Math.max(0,r),r=Math.min(r,n.height),this.cursorLeft=i,this.cursorTop=r,this.color.set({saturation:i/n.width*100,value:100-r/n.height*100})}},mounted:function(){var e=this;Xh(this.$el,{drag:function(t){e.handleDrag(t)},end:function(t){e.handleDrag(t)}}),this.update()},data:function(){return{cursorTop:0,cursorLeft:0,background:\"hsl(0, 100%, 50%)\"}}},Jh=Zh,ef=s(Jh,Wh,Kh,!1,null,null,null);ef.options.__file=\"packages/color-picker/src/components/sv-panel.vue\";var tf=ef.exports,nf=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-color-hue-slider\",class:{\"is-vertical\":e.vertical}},[n(\"div\",{ref:\"bar\",staticClass:\"el-color-hue-slider__bar\",on:{click:e.handleClick}}),n(\"div\",{ref:\"thumb\",staticClass:\"el-color-hue-slider__thumb\",style:{left:e.thumbLeft+\"px\",top:e.thumbTop+\"px\"}})])},rf=[];nf._withStripped=!0;var af={name:\"el-color-hue-slider\",props:{color:{required:!0},vertical:Boolean},data:function(){return{thumbLeft:0,thumbTop:0}},computed:{hueValue:function(){var e=this.color.get(\"hue\");return e}},watch:{hueValue:function(){this.update()}},methods:{handleClick:function(e){var t=this.$refs.thumb,n=e.target;n!==t&&this.handleDrag(e)},handleDrag:function(e){var t=this.$el.getBoundingClientRect(),n=this.$refs.thumb,i=void 0;if(this.vertical){var r=e.clientY-t.top;r=Math.min(r,t.height-n.offsetHeight/2),r=Math.max(n.offsetHeight/2,r),i=Math.round((r-n.offsetHeight/2)/(t.height-n.offsetHeight)*360)}else{var a=e.clientX-t.left;a=Math.min(a,t.width-n.offsetWidth/2),a=Math.max(n.offsetWidth/2,a),i=Math.round((a-n.offsetWidth/2)/(t.width-n.offsetWidth)*360)}this.color.set(\"hue\",i)},getThumbLeft:function(){if(this.vertical)return 0;var e=this.$el,t=this.color.get(\"hue\");if(!e)return 0;var n=this.$refs.thumb;return Math.round(t*(e.offsetWidth-n.offsetWidth/2)/360)},getThumbTop:function(){if(!this.vertical)return 0;var e=this.$el,t=this.color.get(\"hue\");if(!e)return 0;var n=this.$refs.thumb;return Math.round(t*(e.offsetHeight-n.offsetHeight/2)/360)},update:function(){this.thumbLeft=this.getThumbLeft(),this.thumbTop=this.getThumbTop()}},mounted:function(){var e=this,t=this.$refs,n=t.bar,i=t.thumb,r={drag:function(t){e.handleDrag(t)},end:function(t){e.handleDrag(t)}};Xh(n,r),Xh(i,r),this.update()}},of=af,sf=s(of,nf,rf,!1,null,null,null);sf.options.__file=\"packages/color-picker/src/components/hue-slider.vue\";var lf=sf.exports,cf=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-color-alpha-slider\",class:{\"is-vertical\":e.vertical}},[n(\"div\",{ref:\"bar\",staticClass:\"el-color-alpha-slider__bar\",style:{background:e.background},on:{click:e.handleClick}}),n(\"div\",{ref:\"thumb\",staticClass:\"el-color-alpha-slider__thumb\",style:{left:e.thumbLeft+\"px\",top:e.thumbTop+\"px\"}})])},uf=[];cf._withStripped=!0;var df={name:\"el-color-alpha-slider\",props:{color:{required:!0},vertical:Boolean},watch:{\"color._alpha\":function(){this.update()},\"color.value\":function(){this.update()}},methods:{handleClick:function(e){var t=this.$refs.thumb,n=e.target;n!==t&&this.handleDrag(e)},handleDrag:function(e){var t=this.$el.getBoundingClientRect(),n=this.$refs.thumb;if(this.vertical){var i=e.clientY-t.top;i=Math.max(n.offsetHeight/2,i),i=Math.min(i,t.height-n.offsetHeight/2),this.color.set(\"alpha\",Math.round((i-n.offsetHeight/2)/(t.height-n.offsetHeight)*100))}else{var r=e.clientX-t.left;r=Math.max(n.offsetWidth/2,r),r=Math.min(r,t.width-n.offsetWidth/2),this.color.set(\"alpha\",Math.round((r-n.offsetWidth/2)/(t.width-n.offsetWidth)*100))}},getThumbLeft:function(){if(this.vertical)return 0;var e=this.$el,t=this.color._alpha;if(!e)return 0;var n=this.$refs.thumb;return Math.round(t*(e.offsetWidth-n.offsetWidth/2)/100)},getThumbTop:function(){if(!this.vertical)return 0;var e=this.$el,t=this.color._alpha;if(!e)return 0;var n=this.$refs.thumb;return Math.round(t*(e.offsetHeight-n.offsetHeight/2)/100)},getBackground:function(){if(this.color&&this.color.value){var e=this.color.toRgb(),t=e.r,n=e.g,i=e.b;return\"linear-gradient(to right, rgba(\"+t+\", \"+n+\", \"+i+\", 0) 0%, rgba(\"+t+\", \"+n+\", \"+i+\", 1) 100%)\"}return null},update:function(){this.thumbLeft=this.getThumbLeft(),this.thumbTop=this.getThumbTop(),this.background=this.getBackground()}},data:function(){return{thumbLeft:0,thumbTop:0,background:null}},mounted:function(){var e=this,t=this.$refs,n=t.bar,i=t.thumb,r={drag:function(t){e.handleDrag(t)},end:function(t){e.handleDrag(t)}};Xh(n,r),Xh(i,r),this.update()}},pf=df,hf=s(pf,cf,uf,!1,null,null,null);hf.options.__file=\"packages/color-picker/src/components/alpha-slider.vue\";var ff=hf.exports,_f=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-color-predefine\"},[n(\"div\",{staticClass:\"el-color-predefine__colors\"},e._l(e.rgbaColors,(function(t,i){return n(\"div\",{key:e.colors[i],staticClass:\"el-color-predefine__color-selector\",class:{selected:t.selected,\"is-alpha\":t._alpha<100},on:{click:function(t){e.handleSelect(i)}}},[n(\"div\",{style:{\"background-color\":t.value}})])})),0)])},mf=[];_f._withStripped=!0;var gf={props:{colors:{type:Array,required:!0},color:{required:!0}},data:function(){return{rgbaColors:this.parseColors(this.colors,this.color)}},methods:{handleSelect:function(e){this.color.fromString(this.colors[e])},parseColors:function(e,t){return e.map((function(e){var n=new Vh;return n.enableAlpha=!0,n.format=\"rgba\",n.fromString(e),n.selected=n.value===t.value,n}))}},watch:{\"$parent.currentColor\":function(e){var t=new Vh;t.fromString(e),this.rgbaColors.forEach((function(e){e.selected=t.compare(e)}))},colors:function(e){this.rgbaColors=this.parseColors(e,this.color)},color:function(e){this.rgbaColors=this.parseColors(this.colors,e)}}},bf=gf,vf=s(bf,_f,mf,!1,null,null,null);vf.options.__file=\"packages/color-picker/src/components/predefine.vue\";var Ef=vf.exports,yf={name:\"el-color-picker-dropdown\",mixins:[q.a,g.a],components:{SvPanel:tf,HueSlider:lf,AlphaSlider:ff,ElInput:_.a,ElButton:oe.a,Predefine:Ef},props:{color:{required:!0},showAlpha:Boolean,predefine:Array},data:function(){return{customInput:\"\"}},computed:{currentColor:function(){var e=this.$parent;return e.value||e.showPanelColor?e.color.value:\"\"}},methods:{confirmValue:function(){this.$emit(\"pick\")},handleConfirm:function(){this.color.fromString(this.customInput)}},mounted:function(){this.$parent.popperElm=this.popperElm=this.$el,this.referenceElm=this.$parent.$el},watch:{showPopper:function(e){var t=this;!0===e&&this.$nextTick((function(){var e=t.$refs,n=e.sl,i=e.hue,r=e.alpha;n&&n.update(),i&&i.update(),r&&r.update()}))},currentColor:{immediate:!0,handler:function(e){this.customInput=e}}}},Sf=yf,Cf=s(Sf,zh,Yh,!1,null,null,null);Cf.options.__file=\"packages/color-picker/src/components/picker-dropdown.vue\";var Tf=Cf.exports,xf={name:\"ElColorPicker\",mixins:[N.a],props:{value:String,showAlpha:Boolean,colorFormat:String,disabled:Boolean,size:String,popperClass:String,predefine:Array},inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},directives:{Clickoutside:U.a},computed:{displayedColor:function(){return this.value||this.showPanelColor?this.displayedRgb(this.color,this.showAlpha):\"transparent\"},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},colorSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},colorDisabled:function(){return this.disabled||(this.elForm||{}).disabled}},watch:{value:function(e){e?e&&e!==this.color.value&&this.color.fromString(e):this.showPanelColor=!1},color:{deep:!0,handler:function(){this.showPanelColor=!0}},displayedColor:function(e){if(this.showPicker){var t=new Vh({enableAlpha:this.showAlpha,format:this.colorFormat});t.fromString(this.value);var n=this.displayedRgb(t,this.showAlpha);e!==n&&this.$emit(\"active-change\",e)}}},methods:{handleTrigger:function(){this.colorDisabled||(this.showPicker=!this.showPicker)},confirmValue:function(){var e=this.color.value;this.$emit(\"input\",e),this.$emit(\"change\",e),this.dispatch(\"ElFormItem\",\"el.form.change\",e),this.showPicker=!1},clearValue:function(){this.$emit(\"input\",null),this.$emit(\"change\",null),null!==this.value&&this.dispatch(\"ElFormItem\",\"el.form.change\",null),this.showPanelColor=!1,this.showPicker=!1,this.resetColor()},hide:function(){this.showPicker=!1,this.resetColor()},resetColor:function(){var e=this;this.$nextTick((function(t){e.value?e.color.fromString(e.value):e.showPanelColor=!1}))},displayedRgb:function(e,t){if(!(e instanceof Vh))throw Error(\"color should be instance of Color Class\");var n=e.toRgb(),i=n.r,r=n.g,a=n.b;return t?\"rgba(\"+i+\", \"+r+\", \"+a+\", \"+e.get(\"alpha\")/100+\")\":\"rgb(\"+i+\", \"+r+\", \"+a+\")\"}},mounted:function(){var e=this.value;e&&this.color.fromString(e),this.popperElm=this.$refs.dropdown.$el},data:function(){var e=new Vh({enableAlpha:this.showAlpha,format:this.colorFormat});return{color:e,showPicker:!1,showPanelColor:!1}},components:{PickerDropdown:Tf}},wf=xf,Of=s(wf,Rh,kh,!1,null,null,null);Of.options.__file=\"packages/color-picker/src/main.vue\";var Nf=Of.exports;Nf.install=function(e){e.component(Nf.name,Nf)};var Rf=Nf,kf=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-transfer\"},[n(\"transfer-panel\",e._b({ref:\"leftPanel\",attrs:{data:e.sourceData,title:e.titles[0]||e.t(\"el.transfer.titles.0\"),\"default-checked\":e.leftDefaultChecked,placeholder:e.filterPlaceholder||e.t(\"el.transfer.filterPlaceholder\")},on:{\"checked-change\":e.onSourceCheckedChange}},\"transfer-panel\",e.$props,!1),[e._t(\"left-footer\")],2),n(\"div\",{staticClass:\"el-transfer__buttons\"},[n(\"el-button\",{class:[\"el-transfer__button\",e.hasButtonTexts?\"is-with-texts\":\"\"],attrs:{type:\"primary\",disabled:0===e.rightChecked.length},nativeOn:{click:function(t){return e.addToLeft(t)}}},[n(\"i\",{staticClass:\"el-icon-arrow-left\"}),void 0!==e.buttonTexts[0]?n(\"span\",[e._v(e._s(e.buttonTexts[0]))]):e._e()]),n(\"el-button\",{class:[\"el-transfer__button\",e.hasButtonTexts?\"is-with-texts\":\"\"],attrs:{type:\"primary\",disabled:0===e.leftChecked.length},nativeOn:{click:function(t){return e.addToRight(t)}}},[void 0!==e.buttonTexts[1]?n(\"span\",[e._v(e._s(e.buttonTexts[1]))]):e._e(),n(\"i\",{staticClass:\"el-icon-arrow-right\"})])],1),n(\"transfer-panel\",e._b({ref:\"rightPanel\",attrs:{data:e.targetData,title:e.titles[1]||e.t(\"el.transfer.titles.1\"),\"default-checked\":e.rightDefaultChecked,placeholder:e.filterPlaceholder||e.t(\"el.transfer.filterPlaceholder\")},on:{\"checked-change\":e.onTargetCheckedChange}},\"transfer-panel\",e.$props,!1),[e._t(\"right-footer\")],2)],1)},Af=[];kf._withStripped=!0;var Df=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-transfer-panel\"},[n(\"p\",{staticClass:\"el-transfer-panel__header\"},[n(\"el-checkbox\",{attrs:{indeterminate:e.isIndeterminate},on:{change:e.handleAllCheckedChange},model:{value:e.allChecked,callback:function(t){e.allChecked=t},expression:\"allChecked\"}},[e._v(\"\\n      \"+e._s(e.title)+\"\\n      \"),n(\"span\",[e._v(e._s(e.checkedSummary))])])],1),n(\"div\",{class:[\"el-transfer-panel__body\",e.hasFooter?\"is-with-footer\":\"\"]},[e.filterable?n(\"el-input\",{staticClass:\"el-transfer-panel__filter\",attrs:{size:\"small\",placeholder:e.placeholder},nativeOn:{mouseenter:function(t){e.inputHover=!0},mouseleave:function(t){e.inputHover=!1}},model:{value:e.query,callback:function(t){e.query=t},expression:\"query\"}},[n(\"i\",{class:[\"el-input__icon\",\"el-icon-\"+e.inputIcon],attrs:{slot:\"prefix\"},on:{click:e.clearQuery},slot:\"prefix\"})]):e._e(),n(\"el-checkbox-group\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.hasNoMatch&&e.data.length>0,expression:\"!hasNoMatch && data.length > 0\"}],staticClass:\"el-transfer-panel__list\",class:{\"is-filterable\":e.filterable},model:{value:e.checked,callback:function(t){e.checked=t},expression:\"checked\"}},e._l(e.filteredData,(function(t){return n(\"el-checkbox\",{key:t[e.keyProp],staticClass:\"el-transfer-panel__item\",attrs:{label:t[e.keyProp],disabled:t[e.disabledProp]}},[n(\"option-content\",{attrs:{option:t}})],1)})),1),n(\"p\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.hasNoMatch,expression:\"hasNoMatch\"}],staticClass:\"el-transfer-panel__empty\"},[e._v(e._s(e.t(\"el.transfer.noMatch\")))]),n(\"p\",{directives:[{name:\"show\",rawName:\"v-show\",value:0===e.data.length&&!e.hasNoMatch,expression:\"data.length === 0 && !hasNoMatch\"}],staticClass:\"el-transfer-panel__empty\"},[e._v(e._s(e.t(\"el.transfer.noData\")))])],1),e.hasFooter?n(\"p\",{staticClass:\"el-transfer-panel__footer\"},[e._t(\"default\")],2):e._e()])},If=[];Df._withStripped=!0;var Mf={mixins:[g.a],name:\"ElTransferPanel\",componentName:\"ElTransferPanel\",components:{ElCheckboxGroup:Dr.a,ElCheckbox:Pi.a,ElInput:_.a,OptionContent:{props:{option:Object},render:function(e){var t=function e(t){return\"ElTransferPanel\"===t.$options.componentName?t:t.$parent?e(t.$parent):t},n=t(this),i=n.$parent||n;return n.renderContent?n.renderContent(e,this.option):i.$scopedSlots.default?i.$scopedSlots.default({option:this.option}):e(\"span\",[this.option[n.labelProp]||this.option[n.keyProp]])}}},props:{data:{type:Array,default:function(){return[]}},renderContent:Function,placeholder:String,title:String,filterable:Boolean,format:Object,filterMethod:Function,defaultChecked:Array,props:Object},data:function(){return{checked:[],allChecked:!1,query:\"\",inputHover:!1,checkChangeByUser:!0}},watch:{checked:function(e,t){if(this.updateAllChecked(),this.checkChangeByUser){var n=e.concat(t).filter((function(n){return-1===e.indexOf(n)||-1===t.indexOf(n)}));this.$emit(\"checked-change\",e,n)}else this.$emit(\"checked-change\",e),this.checkChangeByUser=!0},data:function(){var e=this,t=[],n=this.filteredData.map((function(t){return t[e.keyProp]}));this.checked.forEach((function(e){n.indexOf(e)>-1&&t.push(e)})),this.checkChangeByUser=!1,this.checked=t},checkableData:function(){this.updateAllChecked()},defaultChecked:{immediate:!0,handler:function(e,t){var n=this;if(!t||e.length!==t.length||!e.every((function(e){return t.indexOf(e)>-1}))){var i=[],r=this.checkableData.map((function(e){return e[n.keyProp]}));e.forEach((function(e){r.indexOf(e)>-1&&i.push(e)})),this.checkChangeByUser=!1,this.checked=i}}}},computed:{filteredData:function(){var e=this;return this.data.filter((function(t){if(\"function\"===typeof e.filterMethod)return e.filterMethod(e.query,t);var n=t[e.labelProp]||t[e.keyProp].toString();return n.toLowerCase().indexOf(e.query.toLowerCase())>-1}))},checkableData:function(){var e=this;return this.filteredData.filter((function(t){return!t[e.disabledProp]}))},checkedSummary:function(){var e=this.checked.length,t=this.data.length,n=this.format,i=n.noChecked,r=n.hasChecked;return i&&r?e>0?r.replace(/\\${checked}/g,e).replace(/\\${total}/g,t):i.replace(/\\${total}/g,t):e+\"/\"+t},isIndeterminate:function(){var e=this.checked.length;return e>0&&e<this.checkableData.length},hasNoMatch:function(){return this.query.length>0&&0===this.filteredData.length},inputIcon:function(){return this.query.length>0&&this.inputHover?\"circle-close\":\"search\"},labelProp:function(){return this.props.label||\"label\"},keyProp:function(){return this.props.key||\"key\"},disabledProp:function(){return this.props.disabled||\"disabled\"},hasFooter:function(){return!!this.$slots.default}},methods:{updateAllChecked:function(){var e=this,t=this.checkableData.map((function(t){return t[e.keyProp]}));this.allChecked=t.length>0&&t.every((function(t){return e.checked.indexOf(t)>-1}))},handleAllCheckedChange:function(e){var t=this;this.checked=e?this.checkableData.map((function(e){return e[t.keyProp]})):[]},clearQuery:function(){\"circle-close\"===this.inputIcon&&(this.query=\"\")}}},Lf=Mf,Pf=s(Lf,Df,If,!1,null,null,null);Pf.options.__file=\"packages/transfer/src/transfer-panel.vue\";var Ff=Pf.exports,Bf={name:\"ElTransfer\",mixins:[N.a,g.a,w.a],components:{TransferPanel:Ff,ElButton:oe.a},props:{data:{type:Array,default:function(){return[]}},titles:{type:Array,default:function(){return[]}},buttonTexts:{type:Array,default:function(){return[]}},filterPlaceholder:{type:String,default:\"\"},filterMethod:Function,leftDefaultChecked:{type:Array,default:function(){return[]}},rightDefaultChecked:{type:Array,default:function(){return[]}},renderContent:Function,value:{type:Array,default:function(){return[]}},format:{type:Object,default:function(){return{}}},filterable:Boolean,props:{type:Object,default:function(){return{label:\"label\",key:\"key\",disabled:\"disabled\"}}},targetOrder:{type:String,default:\"original\"}},data:function(){return{leftChecked:[],rightChecked:[]}},computed:{dataObj:function(){var e=this.props.key;return this.data.reduce((function(t,n){return(t[n[e]]=n)&&t}),{})},sourceData:function(){var e=this;return this.data.filter((function(t){return-1===e.value.indexOf(t[e.props.key])}))},targetData:function(){var e=this;return\"original\"===this.targetOrder?this.data.filter((function(t){return e.value.indexOf(t[e.props.key])>-1})):this.value.reduce((function(t,n){var i=e.dataObj[n];return i&&t.push(i),t}),[])},hasButtonTexts:function(){return 2===this.buttonTexts.length}},watch:{value:function(e){this.dispatch(\"ElFormItem\",\"el.form.change\",e)}},methods:{getMigratingConfig:function(){return{props:{\"footer-format\":\"footer-format is renamed to format.\"}}},onSourceCheckedChange:function(e,t){this.leftChecked=e,void 0!==t&&this.$emit(\"left-check-change\",e,t)},onTargetCheckedChange:function(e,t){this.rightChecked=e,void 0!==t&&this.$emit(\"right-check-change\",e,t)},addToLeft:function(){var e=this.value.slice();this.rightChecked.forEach((function(t){var n=e.indexOf(t);n>-1&&e.splice(n,1)})),this.$emit(\"input\",e),this.$emit(\"change\",e,\"left\",this.rightChecked)},addToRight:function(){var e=this,t=this.value.slice(),n=[],i=this.props.key;this.data.forEach((function(t){var r=t[i];e.leftChecked.indexOf(r)>-1&&-1===e.value.indexOf(r)&&n.push(r)})),t=\"unshift\"===this.targetOrder?n.concat(t):t.concat(n),this.$emit(\"input\",t),this.$emit(\"change\",t,\"right\",this.leftChecked)},clearQuery:function(e){\"left\"===e?this.$refs.leftPanel.query=\"\":\"right\"===e&&(this.$refs.rightPanel.query=\"\")}}},Uf=Bf,$f=s(Uf,kf,Af,!1,null,null,null);$f.options.__file=\"packages/transfer/src/main.vue\";var jf=$f.exports;jf.install=function(e){e.component(jf.name,jf)};var Gf=jf,qf=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"section\",{staticClass:\"el-container\",class:{\"is-vertical\":e.isVertical}},[e._t(\"default\")],2)},Hf=[];qf._withStripped=!0;var Vf={name:\"ElContainer\",componentName:\"ElContainer\",props:{direction:String},computed:{isVertical:function(){return\"vertical\"===this.direction||\"horizontal\"!==this.direction&&(!(!this.$slots||!this.$slots.default)&&this.$slots.default.some((function(e){var t=e.componentOptions&&e.componentOptions.tag;return\"el-header\"===t||\"el-footer\"===t})))}}},zf=Vf,Yf=s(zf,qf,Hf,!1,null,null,null);Yf.options.__file=\"packages/container/src/main.vue\";var Wf=Yf.exports;Wf.install=function(e){e.component(Wf.name,Wf)};var Kf=Wf,Qf=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"header\",{staticClass:\"el-header\",style:{height:e.height}},[e._t(\"default\")],2)},Xf=[];Qf._withStripped=!0;var Zf={name:\"ElHeader\",componentName:\"ElHeader\",props:{height:{type:String,default:\"60px\"}}},Jf=Zf,e_=s(Jf,Qf,Xf,!1,null,null,null);e_.options.__file=\"packages/header/src/main.vue\";var t_=e_.exports;t_.install=function(e){e.component(t_.name,t_)};var n_=t_,i_=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"aside\",{staticClass:\"el-aside\",style:{width:e.width}},[e._t(\"default\")],2)},r_=[];i_._withStripped=!0;var a_={name:\"ElAside\",componentName:\"ElAside\",props:{width:{type:String,default:\"300px\"}}},o_=a_,s_=s(o_,i_,r_,!1,null,null,null);s_.options.__file=\"packages/aside/src/main.vue\";var l_=s_.exports;l_.install=function(e){e.component(l_.name,l_)};var c_=l_,u_=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"main\",{staticClass:\"el-main\"},[e._t(\"default\")],2)},d_=[];u_._withStripped=!0;var p_={name:\"ElMain\",componentName:\"ElMain\"},h_=p_,f_=s(h_,u_,d_,!1,null,null,null);f_.options.__file=\"packages/main/src/main.vue\";var __=f_.exports;__.install=function(e){e.component(__.name,__)};var m_=__,g_=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"footer\",{staticClass:\"el-footer\",style:{height:e.height}},[e._t(\"default\")],2)},b_=[];g_._withStripped=!0;var v_={name:\"ElFooter\",componentName:\"ElFooter\",props:{height:{type:String,default:\"60px\"}}},E_=v_,y_=s(E_,g_,b_,!1,null,null,null);y_.options.__file=\"packages/footer/src/main.vue\";var S_=y_.exports;S_.install=function(e){e.component(S_.name,S_)};var C_,T_,x_=S_,w_={name:\"ElTimeline\",props:{reverse:{type:Boolean,default:!1}},provide:function(){return{timeline:this}},render:function(){var e=arguments[0],t=this.reverse,n={\"el-timeline\":!0,\"is-reverse\":t},i=this.$slots.default||[];return t&&(i=i.reverse()),e(\"ul\",{class:n},[i])}},O_=w_,N_=s(O_,C_,T_,!1,null,null,null);N_.options.__file=\"packages/timeline/src/main.vue\";var R_=N_.exports;R_.install=function(e){e.component(R_.name,R_)};var k_=R_,A_=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"li\",{staticClass:\"el-timeline-item\"},[n(\"div\",{staticClass:\"el-timeline-item__tail\"}),e.$slots.dot?e._e():n(\"div\",{staticClass:\"el-timeline-item__node\",class:[\"el-timeline-item__node--\"+(e.size||\"\"),\"el-timeline-item__node--\"+(e.type||\"\")],style:{backgroundColor:e.color}},[e.icon?n(\"i\",{staticClass:\"el-timeline-item__icon\",class:e.icon}):e._e()]),e.$slots.dot?n(\"div\",{staticClass:\"el-timeline-item__dot\"},[e._t(\"dot\")],2):e._e(),n(\"div\",{staticClass:\"el-timeline-item__wrapper\"},[e.hideTimestamp||\"top\"!==e.placement?e._e():n(\"div\",{staticClass:\"el-timeline-item__timestamp is-top\"},[e._v(\"\\n      \"+e._s(e.timestamp)+\"\\n    \")]),n(\"div\",{staticClass:\"el-timeline-item__content\"},[e._t(\"default\")],2),e.hideTimestamp||\"bottom\"!==e.placement?e._e():n(\"div\",{staticClass:\"el-timeline-item__timestamp is-bottom\"},[e._v(\"\\n      \"+e._s(e.timestamp)+\"\\n    \")])])])},D_=[];A_._withStripped=!0;var I_={name:\"ElTimelineItem\",inject:[\"timeline\"],props:{timestamp:String,hideTimestamp:{type:Boolean,default:!1},placement:{type:String,default:\"bottom\"},type:String,color:String,size:{type:String,default:\"normal\"},icon:String}},M_=I_,L_=s(M_,A_,D_,!1,null,null,null);L_.options.__file=\"packages/timeline/src/item.vue\";var P_=L_.exports;P_.install=function(e){e.component(P_.name,P_)};var F_=P_,B_=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"a\",e._b({class:[\"el-link\",e.type?\"el-link--\"+e.type:\"\",e.disabled&&\"is-disabled\",e.underline&&!e.disabled&&\"is-underline\"],attrs:{href:e.disabled?null:e.href},on:{click:e.handleClick}},\"a\",e.$attrs,!1),[e.icon?n(\"i\",{class:e.icon}):e._e(),e.$slots.default?n(\"span\",{staticClass:\"el-link--inner\"},[e._t(\"default\")],2):e._e(),e.$slots.icon?[e.$slots.icon?e._t(\"icon\"):e._e()]:e._e()],2)},U_=[];B_._withStripped=!0;var $_={name:\"ElLink\",props:{type:{type:String,default:\"default\"},underline:{type:Boolean,default:!0},disabled:Boolean,href:String,icon:String},methods:{handleClick:function(e){this.disabled||this.href||this.$emit(\"click\",e)}}},j_=$_,G_=s(j_,B_,U_,!1,null,null,null);G_.options.__file=\"packages/link/src/main.vue\";var q_=G_.exports;q_.install=function(e){e.component(q_.name,q_)};var H_=q_,V_=function(e,t){var n=t._c;return n(\"div\",t._g(t._b({class:[t.data.staticClass,\"el-divider\",\"el-divider--\"+t.props.direction]},\"div\",t.data.attrs,!1),t.listeners),[t.slots().default&&\"vertical\"!==t.props.direction?n(\"div\",{class:[\"el-divider__text\",\"is-\"+t.props.contentPosition]},[t._t(\"default\")],2):t._e()])},z_=[];V_._withStripped=!0;var Y_={name:\"ElDivider\",props:{direction:{type:String,default:\"horizontal\",validator:function(e){return-1!==[\"horizontal\",\"vertical\"].indexOf(e)}},contentPosition:{type:String,default:\"center\",validator:function(e){return-1!==[\"left\",\"center\",\"right\"].indexOf(e)}}}},W_=Y_,K_=s(W_,V_,z_,!0,null,null,null);K_.options.__file=\"packages/divider/src/main.vue\";var Q_=K_.exports;Q_.install=function(e){e.component(Q_.name,Q_)};var X_=Q_,Z_=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-image\"},[e.loading?e._t(\"placeholder\",[n(\"div\",{staticClass:\"el-image__placeholder\"})]):e.error?e._t(\"error\",[n(\"div\",{staticClass:\"el-image__error\"},[e._v(e._s(e.t(\"el.image.error\")))])]):n(\"img\",e._g(e._b({staticClass:\"el-image__inner\",class:{\"el-image__inner--center\":e.alignCenter,\"el-image__preview\":e.preview},style:e.imageStyle,attrs:{src:e.src},on:{click:e.clickHandler}},\"img\",e.$attrs,!1),e.$listeners)),e.preview?[e.showViewer?n(\"image-viewer\",{attrs:{\"z-index\":e.zIndex,\"initial-index\":e.imageIndex,\"on-close\":e.closeViewer,\"url-list\":e.previewSrcList}}):e._e()]:e._e()],2)},J_=[];Z_._withStripped=!0;var em=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"viewer-fade\"}},[n(\"div\",{ref:\"el-image-viewer__wrapper\",staticClass:\"el-image-viewer__wrapper\",style:{\"z-index\":e.zIndex},attrs:{tabindex:\"-1\"}},[n(\"div\",{staticClass:\"el-image-viewer__mask\"}),n(\"span\",{staticClass:\"el-image-viewer__btn el-image-viewer__close\",on:{click:e.hide}},[n(\"i\",{staticClass:\"el-icon-circle-close\"})]),e.isSingle?e._e():[n(\"span\",{staticClass:\"el-image-viewer__btn el-image-viewer__prev\",class:{\"is-disabled\":!e.infinite&&e.isFirst},on:{click:e.prev}},[n(\"i\",{staticClass:\"el-icon-arrow-left\"})]),n(\"span\",{staticClass:\"el-image-viewer__btn el-image-viewer__next\",class:{\"is-disabled\":!e.infinite&&e.isLast},on:{click:e.next}},[n(\"i\",{staticClass:\"el-icon-arrow-right\"})])],n(\"div\",{staticClass:\"el-image-viewer__btn el-image-viewer__actions\"},[n(\"div\",{staticClass:\"el-image-viewer__actions__inner\"},[n(\"i\",{staticClass:\"el-icon-zoom-out\",on:{click:function(t){e.handleActions(\"zoomOut\")}}}),n(\"i\",{staticClass:\"el-icon-zoom-in\",on:{click:function(t){e.handleActions(\"zoomIn\")}}}),n(\"i\",{staticClass:\"el-image-viewer__actions__divider\"}),n(\"i\",{class:e.mode.icon,on:{click:e.toggleMode}}),n(\"i\",{staticClass:\"el-image-viewer__actions__divider\"}),n(\"i\",{staticClass:\"el-icon-refresh-left\",on:{click:function(t){e.handleActions(\"anticlocelise\")}}}),n(\"i\",{staticClass:\"el-icon-refresh-right\",on:{click:function(t){e.handleActions(\"clocelise\")}}})])]),n(\"div\",{staticClass:\"el-image-viewer__canvas\"},e._l(e.urlList,(function(t,i){return i===e.index?n(\"img\",{key:t,ref:\"img\",refInFor:!0,staticClass:\"el-image-viewer__img\",style:e.imgStyle,attrs:{src:e.currentImg},on:{load:e.handleImgLoad,error:e.handleImgError,mousedown:e.handleMouseDown}}):e._e()})),0)],2)])},tm=[];em._withStripped=!0;var nm=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},im={CONTAIN:{name:\"contain\",icon:\"el-icon-full-screen\"},ORIGINAL:{name:\"original\",icon:\"el-icon-c-scale-to-original\"}},rm=Object(b[\"isFirefox\"])()?\"DOMMouseScroll\":\"mousewheel\",am={name:\"elImageViewer\",props:{urlList:{type:Array,default:function(){return[]}},zIndex:{type:Number,default:2e3},onSwitch:{type:Function,default:function(){}},onClose:{type:Function,default:function(){}},initialIndex:{type:Number,default:0}},data:function(){return{index:this.initialIndex,isShow:!1,infinite:!0,loading:!1,mode:im.CONTAIN,transform:{scale:1,deg:0,offsetX:0,offsetY:0,enableTransition:!1}}},computed:{isSingle:function(){return this.urlList.length<=1},isFirst:function(){return 0===this.index},isLast:function(){return this.index===this.urlList.length-1},currentImg:function(){return this.urlList[this.index]},imgStyle:function(){var e=this.transform,t=e.scale,n=e.deg,i=e.offsetX,r=e.offsetY,a=e.enableTransition,o={transform:\"scale(\"+t+\") rotate(\"+n+\"deg)\",transition:a?\"transform .3s\":\"\",\"margin-left\":i+\"px\",\"margin-top\":r+\"px\"};return this.mode===im.CONTAIN&&(o.maxWidth=o.maxHeight=\"100%\"),o}},watch:{index:{handler:function(e){this.reset(),this.onSwitch(e)}},currentImg:function(e){var t=this;this.$nextTick((function(e){var n=t.$refs.img[0];n.complete||(t.loading=!0)}))}},methods:{hide:function(){this.deviceSupportUninstall(),this.onClose()},deviceSupportInstall:function(){var e=this;this._keyDownHandler=Object(b[\"rafThrottle\"])((function(t){var n=t.keyCode;switch(n){case 27:e.hide();break;case 32:e.toggleMode();break;case 37:e.prev();break;case 38:e.handleActions(\"zoomIn\");break;case 39:e.next();break;case 40:e.handleActions(\"zoomOut\");break}})),this._mouseWheelHandler=Object(b[\"rafThrottle\"])((function(t){var n=t.wheelDelta?t.wheelDelta:-t.detail;n>0?e.handleActions(\"zoomIn\",{zoomRate:.015,enableTransition:!1}):e.handleActions(\"zoomOut\",{zoomRate:.015,enableTransition:!1})})),Object(Be[\"on\"])(document,\"keydown\",this._keyDownHandler),Object(Be[\"on\"])(document,rm,this._mouseWheelHandler)},deviceSupportUninstall:function(){Object(Be[\"off\"])(document,\"keydown\",this._keyDownHandler),Object(Be[\"off\"])(document,rm,this._mouseWheelHandler),this._keyDownHandler=null,this._mouseWheelHandler=null},handleImgLoad:function(e){this.loading=!1},handleImgError:function(e){this.loading=!1,e.target.alt=\"加载失败\"},handleMouseDown:function(e){var t=this;if(!this.loading&&0===e.button){var n=this.transform,i=n.offsetX,r=n.offsetY,a=e.pageX,o=e.pageY;this._dragHandler=Object(b[\"rafThrottle\"])((function(e){t.transform.offsetX=i+e.pageX-a,t.transform.offsetY=r+e.pageY-o})),Object(Be[\"on\"])(document,\"mousemove\",this._dragHandler),Object(Be[\"on\"])(document,\"mouseup\",(function(e){Object(Be[\"off\"])(document,\"mousemove\",t._dragHandler)})),e.preventDefault()}},reset:function(){this.transform={scale:1,deg:0,offsetX:0,offsetY:0,enableTransition:!1}},toggleMode:function(){if(!this.loading){var e=Object.keys(im),t=Object.values(im),n=t.indexOf(this.mode),i=(n+1)%e.length;this.mode=im[e[i]],this.reset()}},prev:function(){if(!this.isFirst||this.infinite){var e=this.urlList.length;this.index=(this.index-1+e)%e}},next:function(){if(!this.isLast||this.infinite){var e=this.urlList.length;this.index=(this.index+1)%e}},handleActions:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!this.loading){var n=nm({zoomRate:.2,rotateDeg:90,enableTransition:!0},t),i=n.zoomRate,r=n.rotateDeg,a=n.enableTransition,o=this.transform;switch(e){case\"zoomOut\":o.scale>.2&&(o.scale=parseFloat((o.scale-i).toFixed(3)));break;case\"zoomIn\":o.scale=parseFloat((o.scale+i).toFixed(3));break;case\"clocelise\":o.deg+=r;break;case\"anticlocelise\":o.deg-=r;break}o.enableTransition=a}}},mounted:function(){this.deviceSupportInstall(),this.$refs[\"el-image-viewer__wrapper\"].focus()}},om=am,sm=s(om,em,tm,!1,null,null,null);sm.options.__file=\"packages/image/src/image-viewer.vue\";var lm=sm.exports,cm=function(){return void 0!==document.documentElement.style.objectFit},um={NONE:\"none\",CONTAIN:\"contain\",COVER:\"cover\",FILL:\"fill\",SCALE_DOWN:\"scale-down\"},dm=\"\",pm={name:\"ElImage\",mixins:[g.a],inheritAttrs:!1,components:{ImageViewer:lm},props:{src:String,fit:String,lazy:Boolean,scrollContainer:{},previewSrcList:{type:Array,default:function(){return[]}},zIndex:{type:Number,default:2e3}},data:function(){return{loading:!0,error:!1,show:!this.lazy,imageWidth:0,imageHeight:0,showViewer:!1}},computed:{imageStyle:function(){var e=this.fit;return!this.$isServer&&e?cm()?{\"object-fit\":e}:this.getImageStyle(e):{}},alignCenter:function(){return!this.$isServer&&!cm()&&this.fit!==um.FILL},preview:function(){var e=this.previewSrcList;return Array.isArray(e)&&e.length>0},imageIndex:function(){var e=0,t=this.previewSrcList.indexOf(this.src);return t>=0&&(e=t),e}},watch:{src:function(e){this.show&&this.loadImage()},show:function(e){e&&this.loadImage()}},mounted:function(){this.lazy?this.addLazyLoadListener():this.loadImage()},beforeDestroy:function(){this.lazy&&this.removeLazyLoadListener()},methods:{loadImage:function(){var e=this;if(!this.$isServer){this.loading=!0,this.error=!1;var t=new Image;t.onload=function(n){return e.handleLoad(n,t)},t.onerror=this.handleError.bind(this),Object.keys(this.$attrs).forEach((function(n){var i=e.$attrs[n];t.setAttribute(n,i)})),t.src=this.src}},handleLoad:function(e,t){this.imageWidth=t.width,this.imageHeight=t.height,this.loading=!1,this.error=!1},handleError:function(e){this.loading=!1,this.error=!0,this.$emit(\"error\",e)},handleLazyLoad:function(){Object(Be[\"isInContainer\"])(this.$el,this._scrollContainer)&&(this.show=!0,this.removeLazyLoadListener())},addLazyLoadListener:function(){if(!this.$isServer){var e=this.scrollContainer,t=null;t=Object(pp[\"isHtmlElement\"])(e)?e:Object(pp[\"isString\"])(e)?document.querySelector(e):Object(Be[\"getScrollContainer\"])(this.$el),t&&(this._scrollContainer=t,this._lazyLoadHandler=Lp()(200,this.handleLazyLoad),Object(Be[\"on\"])(t,\"scroll\",this._lazyLoadHandler),this.handleLazyLoad())}},removeLazyLoadListener:function(){var e=this._scrollContainer,t=this._lazyLoadHandler;!this.$isServer&&e&&t&&(Object(Be[\"off\"])(e,\"scroll\",t),this._scrollContainer=null,this._lazyLoadHandler=null)},getImageStyle:function(e){var t=this.imageWidth,n=this.imageHeight,i=this.$el,r=i.clientWidth,a=i.clientHeight;if(!t||!n||!r||!a)return{};var o=t/n<1;if(e===um.SCALE_DOWN){var s=t<r&&n<a;e=s?um.NONE:um.CONTAIN}switch(e){case um.NONE:return{width:\"auto\",height:\"auto\"};case um.CONTAIN:return o?{width:\"auto\"}:{height:\"auto\"};case um.COVER:return o?{height:\"auto\"}:{width:\"auto\"};default:return{}}},clickHandler:function(){this.preview&&(dm=document.body.style.overflow,document.body.style.overflow=\"hidden\",this.showViewer=!0)},closeViewer:function(){document.body.style.overflow=dm,this.showViewer=!1}}},hm=pm,fm=s(hm,Z_,J_,!1,null,null,null);fm.options.__file=\"packages/image/src/main.vue\";var _m=fm.exports;_m.install=function(e){e.component(_m.name,_m)};var mm=_m,gm=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-calendar\"},[n(\"div\",{staticClass:\"el-calendar__header\"},[n(\"div\",{staticClass:\"el-calendar__title\"},[e._v(\"\\n      \"+e._s(e.i18nDate)+\"\\n    \")]),0===e.validatedRange.length?n(\"div\",{staticClass:\"el-calendar__button-group\"},[n(\"el-button-group\",[n(\"el-button\",{attrs:{type:\"plain\",size:\"mini\"},on:{click:function(t){e.selectDate(\"prev-month\")}}},[e._v(\"\\n          \"+e._s(e.t(\"el.datepicker.prevMonth\"))+\"\\n        \")]),n(\"el-button\",{attrs:{type:\"plain\",size:\"mini\"},on:{click:function(t){e.selectDate(\"today\")}}},[e._v(\"\\n          \"+e._s(e.t(\"el.datepicker.today\"))+\"\\n        \")]),n(\"el-button\",{attrs:{type:\"plain\",size:\"mini\"},on:{click:function(t){e.selectDate(\"next-month\")}}},[e._v(\"\\n          \"+e._s(e.t(\"el.datepicker.nextMonth\"))+\"\\n        \")])],1)],1):e._e()]),0===e.validatedRange.length?n(\"div\",{key:\"no-range\",staticClass:\"el-calendar__body\"},[n(\"date-table\",{attrs:{date:e.date,\"selected-day\":e.realSelectedDay,\"first-day-of-week\":e.realFirstDayOfWeek},on:{pick:e.pickDay}})],1):n(\"div\",{key:\"has-range\",staticClass:\"el-calendar__body\"},e._l(e.validatedRange,(function(t,i){return n(\"date-table\",{key:i,attrs:{date:t[0],\"selected-day\":e.realSelectedDay,range:t,\"hide-header\":0!==i,\"first-day-of-week\":e.realFirstDayOfWeek},on:{pick:e.pickDay}})})),1)])},bm=[];gm._withStripped=!0;var vm,Em,ym=n(20),Sm=n.n(ym),Cm={props:{selectedDay:String,range:{type:Array,validator:function(e){if(!e||!e.length)return!0;var t=e[0],n=e[1];return Object(oa[\"validateRangeInOneMonth\"])(t,n)}},date:Date,hideHeader:Boolean,firstDayOfWeek:Number},inject:[\"elCalendar\"],data:function(){return{WEEK_DAYS:Object(oa[\"getI18nSettings\"])().dayNames}},methods:{toNestedArr:function(e){return Object(oa[\"range\"])(e.length/7).map((function(t,n){var i=7*n;return e.slice(i,i+7)}))},getFormateDate:function(e,t){if(!e||-1===[\"prev\",\"current\",\"next\"].indexOf(t))throw new Error(\"invalid day or type\");var n=this.curMonthDatePrefix;return\"prev\"===t?n=this.prevMonthDatePrefix:\"next\"===t&&(n=this.nextMonthDatePrefix),e=(\"00\"+e).slice(-2),n+\"-\"+e},getCellClass:function(e){var t=e.text,n=e.type,i=[n];if(\"current\"===n){var r=this.getFormateDate(t,n);r===this.selectedDay&&i.push(\"is-selected\"),r===this.formatedToday&&i.push(\"is-today\")}return i},pickDay:function(e){var t=e.text,n=e.type,i=this.getFormateDate(t,n);this.$emit(\"pick\",i)},cellRenderProxy:function(e){var t=e.text,n=e.type,i=this.$createElement,r=this.elCalendar.$scopedSlots.dateCell;if(!r)return i(\"span\",[t]);var a=this.getFormateDate(t,n),o=new Date(a),s={isSelected:this.selectedDay===a,type:n+\"-month\",day:a};return r({date:o,data:s})}},computed:{prevMonthDatePrefix:function(){var e=new Date(this.date.getTime());return e.setDate(0),Sm.a.format(e,\"yyyy-MM\")},curMonthDatePrefix:function(){return Sm.a.format(this.date,\"yyyy-MM\")},nextMonthDatePrefix:function(){var e=new Date(this.date.getFullYear(),this.date.getMonth()+1,1);return Sm.a.format(e,\"yyyy-MM\")},formatedToday:function(){return this.elCalendar.formatedToday},isInRange:function(){return this.range&&this.range.length},rows:function(){var e=[];if(this.isInRange){var t=this.range,n=t[0],i=t[1],r=Object(oa[\"range\"])(i.getDate()-n.getDate()+1).map((function(e,t){return{text:n.getDate()+t,type:\"current\"}})),a=r.length%7;a=0===a?0:7-a;var o=Object(oa[\"range\"])(a).map((function(e,t){return{text:t+1,type:\"next\"}}));e=r.concat(o)}else{var s=this.date,l=Object(oa[\"getFirstDayOfMonth\"])(s);l=0===l?7:l;var c=\"number\"===typeof this.firstDayOfWeek?this.firstDayOfWeek:1,u=Object(oa[\"getPrevMonthLastDays\"])(s,l-c).map((function(e){return{text:e,type:\"prev\"}})),d=Object(oa[\"getMonthDays\"])(s).map((function(e){return{text:e,type:\"current\"}}));e=[].concat(u,d);var p=Object(oa[\"range\"])(42-e.length).map((function(e,t){return{text:t+1,type:\"next\"}}));e=e.concat(p)}return this.toNestedArr(e)},weekDays:function(){var e=this.firstDayOfWeek,t=this.WEEK_DAYS;return\"number\"!==typeof e||0===e?t.slice():t.slice(e).concat(t.slice(0,e))}},render:function(){var e=this,t=arguments[0],n=this.hideHeader?null:t(\"thead\",[this.weekDays.map((function(e){return t(\"th\",{key:e},[e])}))]);return t(\"table\",{class:{\"el-calendar-table\":!0,\"is-range\":this.isInRange},attrs:{cellspacing:\"0\",cellpadding:\"0\"}},[n,t(\"tbody\",[this.rows.map((function(n,i){return t(\"tr\",{class:{\"el-calendar-table__row\":!0,\"el-calendar-table__row--hide-border\":0===i&&e.hideHeader},key:i},[n.map((function(n,i){return t(\"td\",{key:i,class:e.getCellClass(n),on:{click:e.pickDay.bind(e,n)}},[t(\"div\",{class:\"el-calendar-day\"},[e.cellRenderProxy(n)])])}))])}))])])}},Tm=Cm,xm=s(Tm,vm,Em,!1,null,null,null);xm.options.__file=\"packages/calendar/src/date-table.vue\";var wm=xm.exports,Om=[\"prev-month\",\"today\",\"next-month\"],Nm=[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],Rm=864e5,km={name:\"ElCalendar\",mixins:[g.a],components:{DateTable:wm,ElButton:oe.a,ElButtonGroup:le.a},props:{value:[Date,String,Number],range:{type:Array,validator:function(e){return!Array.isArray(e)||2===e.length&&e.every((function(e){return\"string\"===typeof e||\"number\"===typeof e||e instanceof Date}))}},firstDayOfWeek:{type:Number,default:1}},provide:function(){return{elCalendar:this}},methods:{pickDay:function(e){this.realSelectedDay=e},selectDate:function(e){if(-1===Om.indexOf(e))throw new Error(\"invalid type \"+e);var t=\"\";t=\"prev-month\"===e?this.prevMonthDatePrefix+\"-01\":\"next-month\"===e?this.nextMonthDatePrefix+\"-01\":this.formatedToday,t!==this.formatedDate&&this.pickDay(t)},toDate:function(e){if(!e)throw new Error(\"invalid val\");return e instanceof Date?e:new Date(e)},rangeValidator:function(e,t){var n=this.realFirstDayOfWeek,i=t?n:0===n?6:n-1;Nm[i];return e.getDay()===i}},computed:{prevMonthDatePrefix:function(){var e=new Date(this.date.getTime());return e.setDate(0),Sm.a.format(e,\"yyyy-MM\")},curMonthDatePrefix:function(){return Sm.a.format(this.date,\"yyyy-MM\")},nextMonthDatePrefix:function(){var e=new Date(this.date.getFullYear(),this.date.getMonth()+1,1);return Sm.a.format(e,\"yyyy-MM\")},formatedDate:function(){return Sm.a.format(this.date,\"yyyy-MM-dd\")},i18nDate:function(){var e=this.date.getFullYear(),t=this.date.getMonth()+1;return e+\" \"+this.t(\"el.datepicker.year\")+\" \"+this.t(\"el.datepicker.month\"+t)},formatedToday:function(){return Sm.a.format(this.now,\"yyyy-MM-dd\")},realSelectedDay:{get:function(){return this.value?this.formatedDate:this.selectedDay},set:function(e){this.selectedDay=e;var t=new Date(e);this.$emit(\"input\",t)}},date:function(){if(this.value)return this.toDate(this.value);if(this.realSelectedDay){var e=this.selectedDay.split(\"-\");return new Date(e[0],e[1]-1,e[2])}return this.validatedRange.length?this.validatedRange[0][0]:this.now},validatedRange:function(){var e=this,t=this.range;if(!t)return[];if(t=t.reduce((function(t,n,i){var r=e.toDate(n);return e.rangeValidator(r,0===i)&&(t=t.concat(r)),t}),[]),2===t.length){var n=t,i=n[0],r=n[1];if(i>r)return[];if(Object(oa[\"validateRangeInOneMonth\"])(i,r))return[[i,r]];var a=[],o=new Date(i.getFullYear(),i.getMonth()+1,1),s=this.toDate(o.getTime()-Rm);if(!Object(oa[\"validateRangeInOneMonth\"])(o,r))return[];a.push([i,s]);var l=this.realFirstDayOfWeek,c=o.getDay(),u=0;return c!==l&&(0===l?u=7-c:(u=l-c,u=u>0?u:7+u)),o=this.toDate(o.getTime()+u*Rm),o.getDate()<r.getDate()&&a.push([o,r]),a}return[]},realFirstDayOfWeek:function(){return this.firstDayOfWeek<1||this.firstDayOfWeek>6?0:Math.floor(this.firstDayOfWeek)}},data:function(){return{selectedDay:\"\",now:new Date}}},Am=km,Dm=s(Am,gm,bm,!1,null,null,null);Dm.options.__file=\"packages/calendar/src/main.vue\";var Im=Dm.exports;Im.install=function(e){e.component(Im.name,Im)};var Mm=Im,Lm=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-fade-in\"}},[e.visible?n(\"div\",{staticClass:\"el-backtop\",style:{right:e.styleRight,bottom:e.styleBottom},on:{click:function(t){return t.stopPropagation(),e.handleClick(t)}}},[e._t(\"default\",[n(\"el-icon\",{attrs:{name:\"caret-top\"}})])],2):e._e()])},Pm=[];Lm._withStripped=!0;var Fm=function(e){return Math.pow(e,3)},Bm=function(e){return e<.5?Fm(2*e)/2:1-Fm(2*(1-e))/2},Um={name:\"ElBacktop\",props:{visibilityHeight:{type:Number,default:200},target:[String],right:{type:Number,default:40},bottom:{type:Number,default:40}},data:function(){return{el:null,container:null,visible:!1}},computed:{styleBottom:function(){return this.bottom+\"px\"},styleRight:function(){return this.right+\"px\"}},mounted:function(){this.init(),this.throttledScrollHandler=Lp()(300,this.onScroll),this.container.addEventListener(\"scroll\",this.throttledScrollHandler)},methods:{init:function(){if(this.container=document,this.el=document.documentElement,this.target){if(this.el=document.querySelector(this.target),!this.el)throw new Error(\"target is not existed: \"+this.target);this.container=this.el}},onScroll:function(){var e=this.el.scrollTop;this.visible=e>=this.visibilityHeight},handleClick:function(e){this.scrollToTop(),this.$emit(\"click\",e)},scrollToTop:function(){var e=this.el,t=Date.now(),n=e.scrollTop,i=window.requestAnimationFrame||function(e){return setTimeout(e,16)},r=function r(){var a=(Date.now()-t)/500;a<1?(e.scrollTop=n*(1-Bm(a)),i(r)):e.scrollTop=0};i(r)}},beforeDestroy:function(){this.container.removeEventListener(\"scroll\",this.throttledScrollHandler)}},$m=Um,jm=s($m,Lm,Pm,!1,null,null,null);jm.options.__file=\"packages/backtop/src/main.vue\";var Gm=jm.exports;Gm.install=function(e){e.component(Gm.name,Gm)};var qm=Gm,Hm=function(e,t){if(e===window&&(e=document.documentElement),1!==e.nodeType)return[];var n=window.getComputedStyle(e,null);return t?n[t]:n},Vm=function(e){return Object.keys(e||{}).map((function(t){return[t,e[t]]}))},zm=function(e,t){return e===window||e===document?document.documentElement[t]:e[t]},Ym=function(e){return zm(e,\"offsetHeight\")},Wm=function(e){return zm(e,\"clientHeight\")},Km=\"ElInfiniteScroll\",Qm={delay:{type:Number,default:200},distance:{type:Number,default:0},disabled:{type:Boolean,default:!1},immediate:{type:Boolean,default:!0}},Xm=function(e,t){return Object(pp[\"isHtmlElement\"])(e)?Vm(Qm).reduce((function(n,i){var r=i[0],a=i[1],o=a.type,s=a.default,l=e.getAttribute(\"infinite-scroll-\"+r);switch(l=Object(pp[\"isUndefined\"])(t[l])?l:t[l],o){case Number:l=Number(l),l=Number.isNaN(l)?s:l;break;case Boolean:l=Object(pp[\"isDefined\"])(l)?\"false\"!==l&&Boolean(l):s;break;default:l=o(l)}return n[r]=l,n}),{}):{}},Zm=function(e){return e.getBoundingClientRect().top},Jm=function(e){var t=this[Km],n=t.el,i=t.vm,r=t.container,a=t.observer,o=Xm(n,i),s=o.distance,l=o.disabled;if(!l){var c=r.getBoundingClientRect();if(c.width||c.height){var u=!1;if(r===n){var d=r.scrollTop+Wm(r);u=r.scrollHeight-d<=s}else{var p=Ym(n)+Zm(n)-Zm(r),h=Ym(r),f=Number.parseFloat(Hm(r,\"borderBottomWidth\"));u=p-h+f<=s}u&&Object(pp[\"isFunction\"])(e)?e.call(i):a&&(a.disconnect(),this[Km].observer=null)}}},eg={name:\"InfiniteScroll\",inserted:function(e,t,n){var i=t.value,r=n.context,a=Object(Be[\"getScrollContainer\"])(e,!0),o=Xm(e,r),s=o.delay,l=o.immediate,c=F()(s,Jm.bind(e,i));if(e[Km]={el:e,vm:r,container:a,onScroll:c},a&&(a.addEventListener(\"scroll\",c),l)){var u=e[Km].observer=new MutationObserver(c);u.observe(a,{childList:!0,subtree:!0}),c()}},unbind:function(e){var t=e[Km],n=t.container,i=t.onScroll;n&&n.removeEventListener(\"scroll\",i)},install:function(e){e.directive(eg.name,eg)}},tg=eg,ng=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-page-header\"},[n(\"div\",{staticClass:\"el-page-header__left\",on:{click:function(t){e.$emit(\"back\")}}},[n(\"i\",{staticClass:\"el-icon-back\"}),n(\"div\",{staticClass:\"el-page-header__title\"},[e._t(\"title\",[e._v(e._s(e.title))])],2)]),n(\"div\",{staticClass:\"el-page-header__content\"},[e._t(\"content\",[e._v(e._s(e.content))])],2)])},ig=[];ng._withStripped=!0;var rg={name:\"ElPageHeader\",props:{title:{type:String,default:function(){return Object(ti[\"t\"])(\"el.pageHeader.title\")}},content:String}},ag=rg,og=s(ag,ng,ig,!1,null,null,null);og.options.__file=\"packages/page-header/src/main.vue\";var sg=og.exports;sg.install=function(e){e.component(sg.name,sg)};var lg=sg,cg=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{class:[\"el-cascader-panel\",e.border&&\"is-bordered\"],on:{keydown:e.handleKeyDown}},e._l(e.menus,(function(e,t){return n(\"cascader-menu\",{key:t,ref:\"menu\",refInFor:!0,attrs:{index:t,nodes:e}})})),1)},ug=[];cg._withStripped=!0;var dg,pg,hg=n(43),fg=n.n(hg),_g=function(e){return e.stopPropagation()},mg={inject:[\"panel\"],components:{ElCheckbox:Pi.a,ElRadio:fg.a},props:{node:{required:!0},nodeId:String},computed:{config:function(){return this.panel.config},isLeaf:function(){return this.node.isLeaf},isDisabled:function(){return this.node.isDisabled},checkedValue:function(){return this.panel.checkedValue},isChecked:function(){return this.node.isSameNode(this.checkedValue)},inActivePath:function(){return this.isInPath(this.panel.activePath)},inCheckedPath:function(){var e=this;return!!this.config.checkStrictly&&this.panel.checkedNodePaths.some((function(t){return e.isInPath(t)}))},value:function(){return this.node.getValueByOption()}},methods:{handleExpand:function(){var e=this,t=this.panel,n=this.node,i=this.isDisabled,r=this.config,a=r.multiple,o=r.checkStrictly;!o&&i||n.loading||(r.lazy&&!n.loaded?t.lazyLoad(n,(function(){var t=e.isLeaf;if(t||e.handleExpand(),a){var i=!!t&&n.checked;e.handleMultiCheckChange(i)}})):t.handleExpand(n))},handleCheckChange:function(){var e=this.panel,t=this.value,n=this.node;e.handleCheckChange(t),e.handleExpand(n)},handleMultiCheckChange:function(e){this.node.doCheck(e),this.panel.calculateMultiCheckedValue()},isInPath:function(e){var t=this.node,n=e[t.level-1]||{};return n.uid===t.uid},renderPrefix:function(e){var t=this.isLeaf,n=this.isChecked,i=this.config,r=i.checkStrictly,a=i.multiple;return a?this.renderCheckbox(e):r?this.renderRadio(e):t&&n?this.renderCheckIcon(e):null},renderPostfix:function(e){var t=this.node,n=this.isLeaf;return t.loading?this.renderLoadingIcon(e):n?null:this.renderExpandIcon(e)},renderCheckbox:function(e){var t=this.node,n=this.config,i=this.isDisabled,r={on:{change:this.handleMultiCheckChange},nativeOn:{}};return n.checkStrictly&&(r.nativeOn.click=_g),e(\"el-checkbox\",Zu()([{attrs:{value:t.checked,indeterminate:t.indeterminate,disabled:i}},r]))},renderRadio:function(e){var t=this.checkedValue,n=this.value,i=this.isDisabled;return Object(b[\"isEqual\"])(n,t)&&(n=t),e(\"el-radio\",{attrs:{value:t,label:n,disabled:i},on:{change:this.handleCheckChange},nativeOn:{click:_g}},[e(\"span\")])},renderCheckIcon:function(e){return e(\"i\",{class:\"el-icon-check el-cascader-node__prefix\"})},renderLoadingIcon:function(e){return e(\"i\",{class:\"el-icon-loading el-cascader-node__postfix\"})},renderExpandIcon:function(e){return e(\"i\",{class:\"el-icon-arrow-right el-cascader-node__postfix\"})},renderContent:function(e){var t=this.panel,n=this.node,i=t.renderLabelFn,r=i?i({node:n,data:n.data}):null;return e(\"span\",{class:\"el-cascader-node__label\"},[r||n.label])}},render:function(e){var t=this,n=this.inActivePath,i=this.inCheckedPath,r=this.isChecked,a=this.isLeaf,o=this.isDisabled,s=this.config,l=this.nodeId,c=s.expandTrigger,u=s.checkStrictly,d=s.multiple,p=!u&&o,h={on:{}};return\"click\"===c?h.on.click=this.handleExpand:(h.on.mouseenter=function(e){t.handleExpand(),t.$emit(\"expand\",e)},h.on.focus=function(e){t.handleExpand(),t.$emit(\"expand\",e)}),!a||o||u||d||(h.on.click=this.handleCheckChange),e(\"li\",Zu()([{attrs:{role:\"menuitem\",id:l,\"aria-expanded\":n,tabindex:p?null:-1},class:{\"el-cascader-node\":!0,\"is-selectable\":u,\"in-active-path\":n,\"in-checked-path\":i,\"is-active\":r,\"is-disabled\":p}},h]),[this.renderPrefix(e),this.renderContent(e),this.renderPostfix(e)])}},gg=mg,bg=s(gg,dg,pg,!1,null,null,null);bg.options.__file=\"packages/cascader-panel/src/cascader-node.vue\";var vg,Eg,yg=bg.exports,Sg={name:\"ElCascaderMenu\",mixins:[g.a],inject:[\"panel\"],components:{ElScrollbar:V.a,CascaderNode:yg},props:{nodes:{type:Array,required:!0},index:Number},data:function(){return{activeNode:null,hoverTimer:null,id:Object(b[\"generateId\"])()}},computed:{isEmpty:function(){return!this.nodes.length},menuId:function(){return\"cascader-menu-\"+this.id+\"-\"+this.index}},methods:{handleExpand:function(e){this.activeNode=e.target},handleMouseMove:function(e){var t=this.activeNode,n=this.hoverTimer,i=this.$refs.hoverZone;if(t&&i)if(t.contains(e.target)){clearTimeout(n);var r=this.$el.getBoundingClientRect(),a=r.left,o=e.clientX-a,s=this.$el,l=s.offsetWidth,c=s.offsetHeight,u=t.offsetTop,d=u+t.offsetHeight;i.innerHTML='\\n          <path style=\"pointer-events: auto;\" fill=\"transparent\" d=\"M'+o+\" \"+u+\" L\"+l+\" 0 V\"+u+' Z\" />\\n          <path style=\"pointer-events: auto;\" fill=\"transparent\" d=\"M'+o+\" \"+d+\" L\"+l+\" \"+c+\" V\"+d+' Z\" />\\n        '}else n||(this.hoverTimer=setTimeout(this.clearHoverZone,this.panel.config.hoverThreshold))},clearHoverZone:function(){var e=this.$refs.hoverZone;e&&(e.innerHTML=\"\")},renderEmptyText:function(e){return e(\"div\",{class:\"el-cascader-menu__empty-text\"},[this.t(\"el.cascader.noData\")])},renderNodeList:function(e){var t=this.menuId,n=this.panel.isHoverMenu,i={on:{}};n&&(i.on.expand=this.handleExpand);var r=this.nodes.map((function(n,r){var a=n.hasChildren;return e(\"cascader-node\",Zu()([{key:n.uid,attrs:{node:n,\"node-id\":t+\"-\"+r,\"aria-haspopup\":a,\"aria-owns\":a?t:null}},i]))}));return[].concat(r,[n?e(\"svg\",{ref:\"hoverZone\",class:\"el-cascader-menu__hover-zone\"}):null])}},render:function(e){var t=this.isEmpty,n=this.menuId,i={nativeOn:{}};return this.panel.isHoverMenu&&(i.nativeOn.mousemove=this.handleMouseMove),e(\"el-scrollbar\",Zu()([{attrs:{tag:\"ul\",role:\"menu\",id:n,\"wrap-class\":\"el-cascader-menu__wrap\",\"view-class\":{\"el-cascader-menu__list\":!0,\"is-empty\":t}},class:\"el-cascader-menu\"},i]),[t?this.renderEmptyText(e):this.renderNodeList(e)])}},Cg=Sg,Tg=s(Cg,vg,Eg,!1,null,null,null);Tg.options.__file=\"packages/cascader-panel/src/cascader-menu.vue\";var xg=Tg.exports,wg=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,\"value\"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}();function Og(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}var Ng=0,Rg=function(){function e(t,n,i){Og(this,e),this.data=t,this.config=n,this.parent=i||null,this.level=this.parent?this.parent.level+1:1,this.uid=Ng++,this.initState(),this.initChildren()}return e.prototype.initState=function(){var e=this.config,t=e.value,n=e.label;this.value=this.data[t],this.label=this.data[n],this.pathNodes=this.calculatePathNodes(),this.path=this.pathNodes.map((function(e){return e.value})),this.pathLabels=this.pathNodes.map((function(e){return e.label})),this.loading=!1,this.loaded=!1},e.prototype.initChildren=function(){var t=this,n=this.config,i=n.children,r=this.data[i];this.hasChildren=Array.isArray(r),this.children=(r||[]).map((function(i){return new e(i,n,t)}))},e.prototype.calculatePathNodes=function(){var e=[this],t=this.parent;while(t)e.unshift(t),t=t.parent;return e},e.prototype.getPath=function(){return this.path},e.prototype.getValue=function(){return this.value},e.prototype.getValueByOption=function(){return this.config.emitPath?this.getPath():this.getValue()},e.prototype.getText=function(e,t){return e?this.pathLabels.join(t):this.label},e.prototype.isSameNode=function(e){var t=this.getValueByOption();return this.config.multiple&&Array.isArray(e)?e.some((function(e){return Object(b[\"isEqual\"])(e,t)})):Object(b[\"isEqual\"])(e,t)},e.prototype.broadcast=function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),i=1;i<t;i++)n[i-1]=arguments[i];var r=\"onParent\"+Object(b[\"capitalize\"])(e);this.children.forEach((function(t){t&&(t.broadcast.apply(t,[e].concat(n)),t[r]&&t[r].apply(t,n))}))},e.prototype.emit=function(e){var t=this.parent,n=\"onChild\"+Object(b[\"capitalize\"])(e);if(t){for(var i=arguments.length,r=Array(i>1?i-1:0),a=1;a<i;a++)r[a-1]=arguments[a];t[n]&&t[n].apply(t,r),t.emit.apply(t,[e].concat(r))}},e.prototype.onParentCheck=function(e){this.isDisabled||this.setCheckState(e)},e.prototype.onChildCheck=function(){var e=this.children,t=e.filter((function(e){return!e.isDisabled})),n=!!t.length&&t.every((function(e){return e.checked}));this.setCheckState(n)},e.prototype.setCheckState=function(e){var t=this.children.length,n=this.children.reduce((function(e,t){var n=t.checked?1:t.indeterminate?.5:0;return e+n}),0);this.checked=e,this.indeterminate=n!==t&&n>0},e.prototype.syncCheckState=function(e){var t=this.getValueByOption(),n=this.isSameNode(e,t);this.doCheck(n)},e.prototype.doCheck=function(e){this.checked!==e&&(this.config.checkStrictly?this.checked=e:(this.broadcast(\"check\",e),this.setCheckState(e),this.emit(\"check\")))},wg(e,[{key:\"isDisabled\",get:function(){var e=this.data,t=this.parent,n=this.config,i=n.disabled,r=n.checkStrictly;return e[i]||!r&&t&&t.isDisabled}},{key:\"isLeaf\",get:function(){var e=this.data,t=this.loaded,n=this.hasChildren,i=this.children,r=this.config,a=r.lazy,o=r.leaf;if(a){var s=Object(wt[\"isDef\"])(e[o])?e[o]:!!t&&!i.length;return this.hasChildren=!s,s}return!n}}]),e}(),kg=Rg;function Ag(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}var Dg=function e(t,n){return t.reduce((function(t,i){return i.isLeaf?t.push(i):(!n&&t.push(i),t=t.concat(e(i.children,n))),t}),[])},Ig=function(){function e(t,n){Ag(this,e),this.config=n,this.initNodes(t)}return e.prototype.initNodes=function(e){var t=this;e=Object(b[\"coerceTruthyValueToArray\"])(e),this.nodes=e.map((function(e){return new kg(e,t.config)})),this.flattedNodes=this.getFlattedNodes(!1,!1),this.leafNodes=this.getFlattedNodes(!0,!1)},e.prototype.appendNode=function(e,t){var n=new kg(e,this.config,t),i=t?t.children:this.nodes;i.push(n)},e.prototype.appendNodes=function(e,t){var n=this;e=Object(b[\"coerceTruthyValueToArray\"])(e),e.forEach((function(e){return n.appendNode(e,t)}))},e.prototype.getNodes=function(){return this.nodes},e.prototype.getFlattedNodes=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=e?this.leafNodes:this.flattedNodes;return t?n:Dg(this.nodes,e)},e.prototype.getNodeByValue=function(e){if(e){var t=this.getFlattedNodes(!1,!this.config.lazy).filter((function(t){return Object(b[\"valueEquals\"])(t.path,e)||t.value===e}));return t&&t.length?t[0]:null}return null},e}(),Mg=Ig,Lg=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},Pg=vh.a.keys,Fg={expandTrigger:\"click\",multiple:!1,checkStrictly:!1,emitPath:!0,lazy:!1,lazyLoad:b[\"noop\"],value:\"value\",label:\"label\",children:\"children\",leaf:\"leaf\",disabled:\"disabled\",hoverThreshold:500},Bg=function(e){return!e.getAttribute(\"aria-owns\")},Ug=function(e,t){var n=e.parentNode;if(n){var i=n.querySelectorAll('.el-cascader-node[tabindex=\"-1\"]'),r=Array.prototype.indexOf.call(i,e);return i[r+t]||null}return null},$g=function(e,t){if(e){var n=e.id.split(\"-\");return Number(n[n.length-2])}},jg=function(e){e&&(e.focus(),!Bg(e)&&e.click())},Gg=function(e){if(e){var t=e.querySelector(\"input\");t?t.click():Bg(e)&&e.click()}},qg={name:\"ElCascaderPanel\",components:{CascaderMenu:xg},props:{value:{},options:Array,props:Object,border:{type:Boolean,default:!0},renderLabel:Function},provide:function(){return{panel:this}},data:function(){return{checkedValue:null,checkedNodePaths:[],store:[],menus:[],activePath:[],loadCount:0}},computed:{config:function(){return xt()(Lg({},Fg),this.props||{})},multiple:function(){return this.config.multiple},checkStrictly:function(){return this.config.checkStrictly},leafOnly:function(){return!this.checkStrictly},isHoverMenu:function(){return\"hover\"===this.config.expandTrigger},renderLabelFn:function(){return this.renderLabel||this.$scopedSlots.default}},watch:{options:{handler:function(){this.initStore()},immediate:!0,deep:!0},value:function(){this.syncCheckedValue(),this.checkStrictly&&this.calculateCheckedNodePaths()},checkedValue:function(e){Object(b[\"isEqual\"])(e,this.value)||(this.checkStrictly&&this.calculateCheckedNodePaths(),this.$emit(\"input\",e),this.$emit(\"change\",e))}},mounted:function(){Object(b[\"isEmpty\"])(this.value)||this.syncCheckedValue()},methods:{initStore:function(){var e=this.config,t=this.options;e.lazy&&Object(b[\"isEmpty\"])(t)?this.lazyLoad():(this.store=new Mg(t,e),this.menus=[this.store.getNodes()],this.syncMenuState())},syncCheckedValue:function(){var e=this.value,t=this.checkedValue;Object(b[\"isEqual\"])(e,t)||(this.checkedValue=e,this.syncMenuState())},syncMenuState:function(){var e=this.multiple,t=this.checkStrictly;this.syncActivePath(),e&&this.syncMultiCheckState(),t&&this.calculateCheckedNodePaths(),this.$nextTick(this.scrollIntoView)},syncMultiCheckState:function(){var e=this,t=this.getFlattedNodes(this.leafOnly);t.forEach((function(t){t.syncCheckState(e.checkedValue)}))},syncActivePath:function(){var e=this,t=this.store,n=this.multiple,i=this.activePath,r=this.checkedValue;if(Object(b[\"isEmpty\"])(i))if(Object(b[\"isEmpty\"])(r))this.activePath=[],this.menus=[t.getNodes()];else{var a=n?r[0]:r,o=this.getNodeByValue(a)||{},s=(o.pathNodes||[]).slice(0,-1);this.expandNodes(s)}else{var l=i.map((function(t){return e.getNodeByValue(t.getValue())}));this.expandNodes(l)}},expandNodes:function(e){var t=this;e.forEach((function(e){return t.handleExpand(e,!0)}))},calculateCheckedNodePaths:function(){var e=this,t=this.checkedValue,n=this.multiple,i=n?Object(b[\"coerceTruthyValueToArray\"])(t):[t];this.checkedNodePaths=i.map((function(t){var n=e.getNodeByValue(t);return n?n.pathNodes:[]}))},handleKeyDown:function(e){var t=e.target,n=e.keyCode;switch(n){case Pg.up:var i=Ug(t,-1);jg(i);break;case Pg.down:var r=Ug(t,1);jg(r);break;case Pg.left:var a=this.$refs.menu[$g(t)-1];if(a){var o=a.$el.querySelector('.el-cascader-node[aria-expanded=\"true\"]');jg(o)}break;case Pg.right:var s=this.$refs.menu[$g(t)+1];if(s){var l=s.$el.querySelector('.el-cascader-node[tabindex=\"-1\"]');jg(l)}break;case Pg.enter:Gg(t);break;case Pg.esc:case Pg.tab:this.$emit(\"close\");break;default:return}},handleExpand:function(e,t){var n=this.activePath,i=e.level,r=n.slice(0,i-1),a=this.menus.slice(0,i);if(e.isLeaf||(r.push(e),a.push(e.children)),this.activePath=r,this.menus=a,!t){var o=r.map((function(e){return e.getValue()})),s=n.map((function(e){return e.getValue()}));Object(b[\"valueEquals\"])(o,s)||(this.$emit(\"active-item-change\",o),this.$emit(\"expand-change\",o))}},handleCheckChange:function(e){this.checkedValue=e},lazyLoad:function(e,t){var n=this,i=this.config;e||(e=e||{root:!0,level:0},this.store=new Mg([],i),this.menus=[this.store.getNodes()]),e.loading=!0;var r=function(i){var r=e.root?null:e;if(i&&i.length&&n.store.appendNodes(i,r),e.loading=!1,e.loaded=!0,Array.isArray(n.checkedValue)){var a=n.checkedValue[n.loadCount++],o=n.config.value,s=n.config.leaf;if(Array.isArray(i)&&i.filter((function(e){return e[o]===a})).length>0){var l=n.store.getNodeByValue(a);l.data[s]||n.lazyLoad(l,(function(){n.handleExpand(l)})),n.loadCount===n.checkedValue.length&&n.$parent.computePresentText()}}t&&t(i)};i.lazyLoad(e,r)},calculateMultiCheckedValue:function(){this.checkedValue=this.getCheckedNodes(this.leafOnly).map((function(e){return e.getValueByOption()}))},scrollIntoView:function(){if(!this.$isServer){var e=this.$refs.menu||[];e.forEach((function(e){var t=e.$el;if(t){var n=t.querySelector(\".el-scrollbar__wrap\"),i=t.querySelector(\".el-cascader-node.is-active\")||t.querySelector(\".el-cascader-node.in-active-path\");ri()(n,i)}}))}},getNodeByValue:function(e){return this.store.getNodeByValue(e)},getFlattedNodes:function(e){var t=!this.config.lazy;return this.store.getFlattedNodes(e,t)},getCheckedNodes:function(e){var t=this.checkedValue,n=this.multiple;if(n){var i=this.getFlattedNodes(e);return i.filter((function(e){return e.checked}))}return Object(b[\"isEmpty\"])(t)?[]:[this.getNodeByValue(t)]},clearCheckedNodes:function(){var e=this.config,t=this.leafOnly,n=e.multiple,i=e.emitPath;n?(this.getCheckedNodes(t).filter((function(e){return!e.isDisabled})).forEach((function(e){return e.doCheck(!1)})),this.calculateMultiCheckedValue()):this.checkedValue=i?[]:null}}},Hg=qg,Vg=s(Hg,cg,ug,!1,null,null,null);Vg.options.__file=\"packages/cascader-panel/src/cascader-panel.vue\";var zg=Vg.exports;zg.install=function(e){e.component(zg.name,zg)};var Yg,Wg,Kg=zg,Qg={name:\"ElAvatar\",props:{size:{type:[Number,String],validator:function(e){return\"string\"===typeof e?[\"large\",\"medium\",\"small\"].includes(e):\"number\"===typeof e}},shape:{type:String,default:\"circle\",validator:function(e){return[\"circle\",\"square\"].includes(e)}},icon:String,src:String,alt:String,srcSet:String,error:Function,fit:{type:String,default:\"cover\"}},data:function(){return{isImageExist:!0}},computed:{avatarClass:function(){var e=this.size,t=this.icon,n=this.shape,i=[\"el-avatar\"];return e&&\"string\"===typeof e&&i.push(\"el-avatar--\"+e),t&&i.push(\"el-avatar--icon\"),n&&i.push(\"el-avatar--\"+n),i.join(\" \")}},methods:{handleError:function(){var e=this.error,t=e?e():void 0;!1!==t&&(this.isImageExist=!1)},renderAvatar:function(){var e=this.$createElement,t=this.icon,n=this.src,i=this.alt,r=this.isImageExist,a=this.srcSet,o=this.fit;return r&&n?e(\"img\",{attrs:{src:n,alt:i,srcSet:a},on:{error:this.handleError},style:{\"object-fit\":o}}):t?e(\"i\",{class:t}):this.$slots.default}},render:function(){var e=arguments[0],t=this.avatarClass,n=this.size,i=\"number\"===typeof n?{height:n+\"px\",width:n+\"px\",lineHeight:n+\"px\"}:{};return e(\"span\",{class:t,style:i},[this.renderAvatar()])}},Xg=Qg,Zg=s(Xg,Yg,Wg,!1,null,null,null);Zg.options.__file=\"packages/avatar/src/main.vue\";var Jg=Zg.exports;Jg.install=function(e){e.component(Jg.name,Jg)};var eb=Jg,tb=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"transition\",{attrs:{name:\"el-drawer-fade\"},on:{\"after-enter\":e.afterEnter,\"after-leave\":e.afterLeave}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-drawer__wrapper\",attrs:{tabindex:\"-1\"}},[n(\"div\",{staticClass:\"el-drawer__container\",class:e.visible&&\"el-drawer__open\",attrs:{role:\"document\",tabindex:\"-1\"},on:{click:function(t){return t.target!==t.currentTarget?null:e.handleWrapperClick(t)}}},[n(\"div\",{ref:\"drawer\",staticClass:\"el-drawer\",class:[e.direction,e.customClass],style:e.isHorizontal?\"width: \"+e.size:\"height: \"+e.size,attrs:{\"aria-modal\":\"true\",\"aria-labelledby\":\"el-drawer__title\",\"aria-label\":e.title,role:\"dialog\",tabindex:\"-1\"}},[e.withHeader?n(\"header\",{staticClass:\"el-drawer__header\",attrs:{id:\"el-drawer__title\"}},[e._t(\"title\",[n(\"span\",{attrs:{role:\"heading\",tabindex:\"0\",title:e.title}},[e._v(e._s(e.title))])]),e.showClose?n(\"button\",{staticClass:\"el-drawer__close-btn\",attrs:{\"aria-label\":\"close \"+(e.title||\"drawer\"),type:\"button\"},on:{click:e.closeDrawer}},[n(\"i\",{staticClass:\"el-dialog__close el-icon el-icon-close\"})]):e._e()],2):e._e(),e.rendered?n(\"section\",{staticClass:\"el-drawer__body\"},[e._t(\"default\")],2):e._e()])])])])},nb=[];tb._withStripped=!0;var ib={name:\"ElDrawer\",mixins:[T.a,N.a],props:{appendToBody:{type:Boolean,default:!1},beforeClose:{type:Function},customClass:{type:String,default:\"\"},closeOnPressEscape:{type:Boolean,default:!0},destroyOnClose:{type:Boolean,default:!1},modal:{type:Boolean,default:!0},direction:{type:String,default:\"rtl\",validator:function(e){return-1!==[\"ltr\",\"rtl\",\"ttb\",\"btt\"].indexOf(e)}},modalAppendToBody:{type:Boolean,default:!0},showClose:{type:Boolean,default:!0},size:{type:String,default:\"30%\"},title:{type:String,default:\"\"},visible:{type:Boolean},wrapperClosable:{type:Boolean,default:!0},withHeader:{type:Boolean,default:!0}},computed:{isHorizontal:function(){return\"rtl\"===this.direction||\"ltr\"===this.direction}},data:function(){return{closed:!1,prevActiveElement:null}},watch:{visible:function(e){var t=this;e?(this.closed=!1,this.$emit(\"open\"),this.appendToBody&&document.body.appendChild(this.$el),this.prevActiveElement=document.activeElement,this.$nextTick((function(){vh.a.focusFirstDescendant(t.$refs.drawer)}))):(this.closed||this.$emit(\"close\"),this.$nextTick((function(){t.prevActiveElement&&t.prevActiveElement.focus()})))}},methods:{afterEnter:function(){this.$emit(\"opened\")},afterLeave:function(){this.$emit(\"closed\")},hide:function(e){!1!==e&&(this.$emit(\"update:visible\",!1),this.$emit(\"close\"),!0===this.destroyOnClose&&(this.rendered=!1),this.closed=!0)},handleWrapperClick:function(){this.wrapperClosable&&this.closeDrawer()},closeDrawer:function(){\"function\"===typeof this.beforeClose?this.beforeClose(this.hide):this.hide()},handleClose:function(){this.closeDrawer()}},mounted:function(){this.visible&&(this.rendered=!0,this.open())},destroyed:function(){this.appendToBody&&this.$el&&this.$el.parentNode&&this.$el.parentNode.removeChild(this.$el)}},rb=ib,ab=s(rb,tb,nb,!1,null,null,null);ab.options.__file=\"packages/drawer/src/main.vue\";var ob=ab.exports;ob.install=function(e){e.component(ob.name,ob)};var sb=ob,lb=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"el-popover\",e._b({attrs:{trigger:\"click\"},model:{value:e.visible,callback:function(t){e.visible=t},expression:\"visible\"}},\"el-popover\",e.$attrs,!1),[n(\"div\",{staticClass:\"el-popconfirm\"},[n(\"p\",{staticClass:\"el-popconfirm__main\"},[e.hideIcon?e._e():n(\"i\",{staticClass:\"el-popconfirm__icon\",class:e.icon,style:{color:e.iconColor}}),e._v(\"\\n      \"+e._s(e.title)+\"\\n    \")]),n(\"div\",{staticClass:\"el-popconfirm__action\"},[n(\"el-button\",{attrs:{size:\"mini\",type:e.cancelButtonType},on:{click:e.cancel}},[e._v(\"\\n        \"+e._s(e.cancelButtonText)+\"\\n      \")]),n(\"el-button\",{attrs:{size:\"mini\",type:e.confirmButtonType},on:{click:e.confirm}},[e._v(\"\\n        \"+e._s(e.confirmButtonText)+\"\\n      \")])],1)]),e._t(\"reference\",null,{slot:\"reference\"})],2)},cb=[];lb._withStripped=!0;var ub=n(44),db=n.n(ub),pb={name:\"ElPopconfirm\",props:{title:{type:String},confirmButtonText:{type:String,default:Object(ti[\"t\"])(\"el.popconfirm.confirmButtonText\")},cancelButtonText:{type:String,default:Object(ti[\"t\"])(\"el.popconfirm.cancelButtonText\")},confirmButtonType:{type:String,default:\"primary\"},cancelButtonType:{type:String,default:\"text\"},icon:{type:String,default:\"el-icon-question\"},iconColor:{type:String,default:\"#f90\"},hideIcon:{type:Boolean,default:!1}},components:{ElPopover:db.a,ElButton:oe.a},data:function(){return{visible:!1}},methods:{confirm:function(){this.visible=!1,this.$emit(\"confirm\")},cancel:function(){this.visible=!1,this.$emit(\"cancel\")}}},hb=pb,fb=s(hb,lb,cb,!1,null,null,null);fb.options.__file=\"packages/popconfirm/src/main.vue\";var _b=fb.exports;_b.install=function(e){e.component(_b.name,_b)};var mb=_b,gb=[E,I,re,he,Ee,Oe,Ve,et,ct,mt,At,Ut,zt,en,ln,_n,Sn,Rn,Pn,ui,di,bi,xi,Di,Kr,ia,Ao,qo,ns,ds,hs,qs,Qs,il,bl,Ul,Wl,Jl,Nc,Pc,pu,Fu,Uu,Gu,yd,Nd,Ld,np,cp,gp,Tp,Ap,$p,Vp,Jp,oh,hh,Nh,Rf,Gf,Kf,n_,c_,m_,x_,k_,F_,H_,X_,mm,Mm,qm,lg,Kg,eb,sb,mb,Ye.a],bb=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};ni.a.use(t.locale),ni.a.i18n(t.i18n),gb.forEach((function(t){e.component(t.name,t)})),e.use(tg),e.use(ku.directive),e.prototype.$ELEMENT={size:t.size||\"\",zIndex:t.zIndex||2e3},e.prototype.$loading=ku.service,e.prototype.$msgbox=Ps,e.prototype.$alert=Ps.alert,e.prototype.$confirm=Ps.confirm,e.prototype.$prompt=Ps.prompt,e.prototype.$notify=Qc,e.prototype.$message=Kd};\"undefined\"!==typeof window&&window.Vue&&bb(window.Vue);t[\"default\"]={version:\"2.14.1\",locale:ni.a.use,i18n:ni.a.i18n,install:bb,CollapseTransition:Ye.a,Loading:ku,Pagination:E,Dialog:I,Autocomplete:re,Dropdown:he,DropdownMenu:Ee,DropdownItem:Oe,Menu:Ve,Submenu:et,MenuItem:ct,MenuItemGroup:mt,Input:At,InputNumber:Ut,Radio:zt,RadioGroup:en,RadioButton:ln,Checkbox:_n,CheckboxButton:Sn,CheckboxGroup:Rn,Switch:Pn,Select:ui,Option:di,OptionGroup:bi,Button:xi,ButtonGroup:Di,Table:Kr,TableColumn:ia,DatePicker:Ao,TimeSelect:qo,TimePicker:ns,Popover:ds,Tooltip:hs,MessageBox:Ps,Breadcrumb:qs,BreadcrumbItem:Qs,Form:il,FormItem:bl,Tabs:Ul,TabPane:Wl,Tag:Jl,Tree:Nc,Alert:Pc,Notification:Qc,Slider:pu,Icon:Fu,Row:Uu,Col:Gu,Upload:yd,Progress:Nd,Spinner:Ld,Message:Kd,Badge:np,Card:cp,Rate:gp,Steps:Tp,Step:Ap,Carousel:$p,Scrollbar:Vp,CarouselItem:Jp,Collapse:oh,CollapseItem:hh,Cascader:Nh,ColorPicker:Rf,Transfer:Gf,Container:Kf,Header:n_,Aside:c_,Main:m_,Footer:x_,Timeline:k_,TimelineItem:F_,Link:H_,Divider:X_,Image:mm,Calendar:Mm,Backtop:qm,InfiniteScroll:tg,PageHeader:lg,CascaderPanel:Kg,Avatar:eb,Drawer:sb,Popconfirm:mb}}])[\"default\"]},\"5ca1\":function(e,t,n){var i=n(\"7726\"),r=n(\"8378\"),a=n(\"32e9\"),o=n(\"2aba\"),s=n(\"9b43\"),l=\"prototype\",c=function(e,t,n){var u,d,p,h,f=e&c.F,_=e&c.G,m=e&c.S,g=e&c.P,b=e&c.B,v=_?i:m?i[t]||(i[t]={}):(i[t]||{})[l],E=_?r:r[t]||(r[t]={}),y=E[l]||(E[l]={});for(u in _&&(n=t),n)d=!f&&v&&void 0!==v[u],p=(d?v:n)[u],h=b&&d?s(p,i):g&&\"function\"==typeof p?s(Function.call,p):p,v&&o(v,u,p,e&c.U),E[u]!=p&&a(E,u,h),g&&y[u]!=p&&(y[u]=p)};i.core=r,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,e.exports=c},\"5cc5\":function(e,t,n){var i=n(\"2b4c\")(\"iterator\"),r=!1;try{var a=[7][i]();a[\"return\"]=function(){r=!0},Array.from(a,(function(){throw 2}))}catch(o){}e.exports=function(e,t){if(!t&&!r)return!1;var n=!1;try{var a=[7],s=a[i]();s.next=function(){return{done:n=!0}},a[i]=function(){return s},e(a)}catch(o){}return n}},\"5dfb\":function(e,t){function n(e){const t={$pattern:/(`?)[A-Za-z0-9_]+\\b/,keyword:\"do while select delete by update from\",literal:\"0b 1b\",built_in:\"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum\",type:\"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid\"};return{name:\"Q\",aliases:[\"k\",\"kdb\"],keywords:t,contains:[e.C_LINE_COMMENT_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE]}}e.exports=n},\"5eda\":function(e,t,n){var i=n(\"5ca1\"),r=n(\"8378\"),a=n(\"79e5\");e.exports=function(e,t){var n=(r.Object||{})[e]||Object[e],o={};o[e]=t(n),i(i.S+i.F*a((function(){n(1)})),\"Object\",o)}},6113:function(e,t){const n=e=>({IMPORTANT:{className:\"meta\",begin:\"!important\"},HEXCOLOR:{className:\"number\",begin:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\"},ATTRIBUTE_SELECTOR_MODE:{className:\"selector-attr\",begin:/\\[/,end:/\\]/,illegal:\"$\",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}}),i=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"main\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],r=[\"any-hover\",\"any-pointer\",\"aspect-ratio\",\"color\",\"color-gamut\",\"color-index\",\"device-aspect-ratio\",\"device-height\",\"device-width\",\"display-mode\",\"forced-colors\",\"grid\",\"height\",\"hover\",\"inverted-colors\",\"monochrome\",\"orientation\",\"overflow-block\",\"overflow-inline\",\"pointer\",\"prefers-color-scheme\",\"prefers-contrast\",\"prefers-reduced-motion\",\"prefers-reduced-transparency\",\"resolution\",\"scan\",\"scripting\",\"update\",\"width\",\"min-width\",\"max-width\",\"min-height\",\"max-height\"],a=[\"active\",\"any-link\",\"blank\",\"checked\",\"current\",\"default\",\"defined\",\"dir\",\"disabled\",\"drop\",\"empty\",\"enabled\",\"first\",\"first-child\",\"first-of-type\",\"fullscreen\",\"future\",\"focus\",\"focus-visible\",\"focus-within\",\"has\",\"host\",\"host-context\",\"hover\",\"indeterminate\",\"in-range\",\"invalid\",\"is\",\"lang\",\"last-child\",\"last-of-type\",\"left\",\"link\",\"local-link\",\"not\",\"nth-child\",\"nth-col\",\"nth-last-child\",\"nth-last-col\",\"nth-last-of-type\",\"nth-of-type\",\"only-child\",\"only-of-type\",\"optional\",\"out-of-range\",\"past\",\"placeholder-shown\",\"read-only\",\"read-write\",\"required\",\"right\",\"root\",\"scope\",\"target\",\"target-within\",\"user-invalid\",\"valid\",\"visited\",\"where\"],o=[\"after\",\"backdrop\",\"before\",\"cue\",\"cue-region\",\"first-letter\",\"first-line\",\"grammar-error\",\"marker\",\"part\",\"placeholder\",\"selection\",\"slotted\",\"spelling-error\"],s=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-display\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-variation-settings\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"src\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"].reverse();function l(e){const t=n(e),l=o,c=a,u=\"@[a-z-]+\",d=\"and or not only\",p=\"[a-zA-Z-][a-zA-Z0-9_-]*\",h={className:\"variable\",begin:\"(\\\\$\"+p+\")\\\\b\"};return{name:\"SCSS\",case_insensitive:!0,illegal:\"[=/|']\",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"selector-id\",begin:\"#[A-Za-z0-9_-]+\",relevance:0},{className:\"selector-class\",begin:\"\\\\.[A-Za-z0-9_-]+\",relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:\"selector-tag\",begin:\"\\\\b(\"+i.join(\"|\")+\")\\\\b\",relevance:0},{className:\"selector-pseudo\",begin:\":(\"+c.join(\"|\")+\")\"},{className:\"selector-pseudo\",begin:\"::(\"+l.join(\"|\")+\")\"},h,{begin:/\\(/,end:/\\)/,contains:[e.CSS_NUMBER_MODE]},{className:\"attribute\",begin:\"\\\\b(\"+s.join(\"|\")+\")\\\\b\"},{begin:\"\\\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\\\b\"},{begin:\":\",end:\";\",contains:[h,t.HEXCOLOR,e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.IMPORTANT]},{begin:\"@(page|font-face)\",lexemes:u,keywords:\"@page @font-face\"},{begin:\"@\",end:\"[{;]\",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,keyword:d,attribute:r.join(\" \")},contains:[{begin:u,className:\"keyword\"},{begin:/[a-z-]+(?=:)/,className:\"attribute\"},h,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.HEXCOLOR,e.CSS_NUMBER_MODE]}]}}e.exports=l},\"612a\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(e){const t={keyword:\"in of on 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 import\",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 Behavior bool color coordinate date double enumeration font geocircle georectangle geoshape int list matrix4x4 parent point quaternion real rect size string url variant vector2d vector3d vector4d Promise\"},n=\"[a-zA-Z_][a-zA-Z0-9\\\\._]*\",r={className:\"keyword\",begin:\"\\\\bproperty\\\\b\",starts:{className:\"string\",end:\"(:|=|;|,|//|/\\\\*|$)\",returnEnd:!0}},a={className:\"keyword\",begin:\"\\\\bsignal\\\\b\",starts:{className:\"string\",end:\"(\\\\(|:|=|;|,|//|/\\\\*|$)\",returnEnd:!0}},o={className:\"attribute\",begin:\"\\\\bid\\\\s*:\",starts:{className:\"string\",end:n,returnEnd:!1}},s={begin:n+\"\\\\s*:\",returnBegin:!0,contains:[{className:\"attribute\",begin:n,end:\"\\\\s*:\",excludeEnd:!0,relevance:0}],relevance:0},l={begin:i(n,/\\s*\\{/),end:/\\{/,returnBegin:!0,relevance:0,contains:[e.inherit(e.TITLE_MODE,{begin:n})]};return{name:\"QML\",aliases:[\"qt\"],case_insensitive:!1,keywords:t,contains:[{className:\"meta\",begin:/^\\s*['\"]use (strict|asm)['\"]/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:\"string\",begin:\"`\",end:\"`\",contains:[e.BACKSLASH_ESCAPE,{className:\"subst\",begin:\"\\\\$\\\\{\",end:\"\\\\}\"}]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"number\",variants:[{begin:\"\\\\b(0[bB][01]+)\"},{begin:\"\\\\b(0[oO][0-7]+)\"},{begin:e.C_NUMBER_RE}],relevance:0},{begin:\"(\"+e.RE_STARTERS_RE+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",keywords:\"return throw case\",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.REGEXP_MODE,{begin:/</,end:/>\\s*[);\\]]/,relevance:0,subLanguage:\"xml\"}],relevance:0},a,r,{className:\"function\",beginKeywords:\"function\",end:/\\{/,excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/[A-Za-z$_][0-9A-Za-z$_]*/}),{className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]}],illegal:/\\[|%/},{begin:\"\\\\.\"+e.IDENT_RE,relevance:0},o,s,l],illegal:/#/}}e.exports=r},\"613b\":function(e,t,n){var i=n(\"5537\")(\"keys\"),r=n(\"ca5a\");e.exports=function(e){return i[e]||(i[e]=r(e))}},6167:function(e,t,n){\"use strict\";var i,r;\"function\"===typeof Symbol&&Symbol.iterator;(function(a,o){i=o,r=\"function\"===typeof i?i.call(t,n,t,e):i,void 0===r||(e.exports=r)})(0,(function(){var e=window,t={placement:\"bottom\",gpuAcceleration:!0,offset:0,boundariesElement:\"viewport\",boundariesPadding:5,preventOverflowOrder:[\"left\",\"right\",\"top\",\"bottom\"],flipBehavior:\"flip\",arrowElement:\"[x-arrow]\",arrowOffset:0,modifiers:[\"shift\",\"offset\",\"preventOverflow\",\"keepTogether\",\"arrow\",\"flip\",\"applyStyle\"],modifiersIgnored:[],forceAbsolute:!1};function n(e,n,i){this._reference=e.jquery?e[0]:e,this.state={};var r=\"undefined\"===typeof n||null===n,a=n&&\"[object Object]\"===Object.prototype.toString.call(n);return this._popper=r||a?this.parse(a?n:{}):n.jquery?n[0]:n,this._options=Object.assign({},t,i),this._options.modifiers=this._options.modifiers.map(function(e){if(-1===this._options.modifiersIgnored.indexOf(e))return\"applyStyle\"===e&&this._popper.setAttribute(\"x-placement\",this._options.placement),this.modifiers[e]||e}.bind(this)),this.state.position=this._getPosition(this._popper,this._reference),d(this._popper,{position:this.state.position,top:0}),this.update(),this._setupEventListeners(),this}function i(t){var n=t.style.display,i=t.style.visibility;t.style.display=\"block\",t.style.visibility=\"hidden\";t.offsetWidth;var r=e.getComputedStyle(t),a=parseFloat(r.marginTop)+parseFloat(r.marginBottom),o=parseFloat(r.marginLeft)+parseFloat(r.marginRight),s={width:t.offsetWidth+o,height:t.offsetHeight+a};return t.style.display=n,t.style.visibility=i,s}function r(e){var t={left:\"right\",right:\"left\",bottom:\"top\",top:\"bottom\"};return e.replace(/left|right|bottom|top/g,(function(e){return t[e]}))}function a(e){var t=Object.assign({},e);return t.right=t.left+t.width,t.bottom=t.top+t.height,t}function o(e,t){var n,i=0;for(n in e){if(e[n]===t)return i;i++}return null}function s(t,n){var i=e.getComputedStyle(t,null);return i[n]}function l(t){var n=t.offsetParent;return n!==e.document.body&&n?n:e.document.documentElement}function c(t){var n=t.parentNode;return n?n===e.document?e.document.body.scrollTop||e.document.body.scrollLeft?e.document.body:e.document.documentElement:-1!==[\"scroll\",\"auto\"].indexOf(s(n,\"overflow\"))||-1!==[\"scroll\",\"auto\"].indexOf(s(n,\"overflow-x\"))||-1!==[\"scroll\",\"auto\"].indexOf(s(n,\"overflow-y\"))?n:c(t.parentNode):t}function u(t){return t!==e.document.body&&(\"fixed\"===s(t,\"position\")||(t.parentNode?u(t.parentNode):t))}function d(e,t){function n(e){return\"\"!==e&&!isNaN(parseFloat(e))&&isFinite(e)}Object.keys(t).forEach((function(i){var r=\"\";-1!==[\"width\",\"height\",\"top\",\"right\",\"bottom\",\"left\"].indexOf(i)&&n(t[i])&&(r=\"px\"),e.style[i]=t[i]+r}))}function p(e){var t={};return e&&\"[object Function]\"===t.toString.call(e)}function h(e){var t={width:e.offsetWidth,height:e.offsetHeight,left:e.offsetLeft,top:e.offsetTop};return t.right=t.left+t.width,t.bottom=t.top+t.height,t}function f(e){var t=e.getBoundingClientRect(),n=-1!=navigator.userAgent.indexOf(\"MSIE\"),i=n&&\"HTML\"===e.tagName?-e.scrollTop:t.top;return{left:t.left,top:i,right:t.right,bottom:t.bottom,width:t.right-t.left,height:t.bottom-i}}function _(e,t,n){var i=f(e),r=f(t);if(n){var a=c(t);r.top+=a.scrollTop,r.bottom+=a.scrollTop,r.left+=a.scrollLeft,r.right+=a.scrollLeft}var o={top:i.top-r.top,left:i.left-r.left,bottom:i.top-r.top+i.height,right:i.left-r.left+i.width,width:i.width,height:i.height};return o}function m(t){for(var n=[\"\",\"ms\",\"webkit\",\"moz\",\"o\"],i=0;i<n.length;i++){var r=n[i]?n[i]+t.charAt(0).toUpperCase()+t.slice(1):t;if(\"undefined\"!==typeof e.document.body.style[r])return r}return null}return n.prototype.destroy=function(){return this._popper.removeAttribute(\"x-placement\"),this._popper.style.left=\"\",this._popper.style.position=\"\",this._popper.style.top=\"\",this._popper.style[m(\"transform\")]=\"\",this._removeEventListeners(),this._options.removeOnDestroy&&this._popper.remove(),this},n.prototype.update=function(){var e={instance:this,styles:{}};e.placement=this._options.placement,e._originalPlacement=this._options.placement,e.offsets=this._getOffsets(this._popper,this._reference,e.placement),e.boundaries=this._getBoundaries(e,this._options.boundariesPadding,this._options.boundariesElement),e=this.runModifiers(e,this._options.modifiers),\"function\"===typeof this.state.updateCallback&&this.state.updateCallback(e)},n.prototype.onCreate=function(e){return e(this),this},n.prototype.onUpdate=function(e){return this.state.updateCallback=e,this},n.prototype.parse=function(t){var n={tagName:\"div\",classNames:[\"popper\"],attributes:[],parent:e.document.body,content:\"\",contentType:\"text\",arrowTagName:\"div\",arrowClassNames:[\"popper__arrow\"],arrowAttributes:[\"x-arrow\"]};t=Object.assign({},n,t);var i=e.document,r=i.createElement(t.tagName);if(s(r,t.classNames),l(r,t.attributes),\"node\"===t.contentType?r.appendChild(t.content.jquery?t.content[0]:t.content):\"html\"===t.contentType?r.innerHTML=t.content:r.textContent=t.content,t.arrowTagName){var a=i.createElement(t.arrowTagName);s(a,t.arrowClassNames),l(a,t.arrowAttributes),r.appendChild(a)}var o=t.parent.jquery?t.parent[0]:t.parent;if(\"string\"===typeof o){if(o=i.querySelectorAll(t.parent),o.length,0===o.length)throw\"ERROR: the given `parent` doesn't exists!\";o=o[0]}return o.length>1&&o instanceof Element===!1&&(o=o[0]),o.appendChild(r),r;function s(e,t){t.forEach((function(t){e.classList.add(t)}))}function l(e,t){t.forEach((function(t){e.setAttribute(t.split(\":\")[0],t.split(\":\")[1]||\"\")}))}},n.prototype._getPosition=function(e,t){var n=l(t);if(this._options.forceAbsolute)return\"absolute\";var i=u(t,n);return i?\"fixed\":\"absolute\"},n.prototype._getOffsets=function(e,t,n){n=n.split(\"-\")[0];var r={};r.position=this.state.position;var a=\"fixed\"===r.position,o=_(t,l(e),a),s=i(e);return-1!==[\"right\",\"left\"].indexOf(n)?(r.top=o.top+o.height/2-s.height/2,r.left=\"left\"===n?o.left-s.width:o.right):(r.left=o.left+o.width/2-s.width/2,r.top=\"top\"===n?o.top-s.height:o.bottom),r.width=s.width,r.height=s.height,{popper:r,reference:o}},n.prototype._setupEventListeners=function(){if(this.state.updateBound=this.update.bind(this),e.addEventListener(\"resize\",this.state.updateBound),\"window\"!==this._options.boundariesElement){var t=c(this._reference);t!==e.document.body&&t!==e.document.documentElement||(t=e),t.addEventListener(\"scroll\",this.state.updateBound),this.state.scrollTarget=t}},n.prototype._removeEventListeners=function(){e.removeEventListener(\"resize\",this.state.updateBound),\"window\"!==this._options.boundariesElement&&this.state.scrollTarget&&(this.state.scrollTarget.removeEventListener(\"scroll\",this.state.updateBound),this.state.scrollTarget=null),this.state.updateBound=null},n.prototype._getBoundaries=function(t,n,i){var r,a,o={};if(\"window\"===i){var s=e.document.body,u=e.document.documentElement;a=Math.max(s.scrollHeight,s.offsetHeight,u.clientHeight,u.scrollHeight,u.offsetHeight),r=Math.max(s.scrollWidth,s.offsetWidth,u.clientWidth,u.scrollWidth,u.offsetWidth),o={top:0,right:r,bottom:a,left:0}}else if(\"viewport\"===i){var d=l(this._popper),p=c(this._popper),f=h(d),_=function(e){return e==document.body?Math.max(document.documentElement.scrollTop,document.body.scrollTop):e.scrollTop},m=function(e){return e==document.body?Math.max(document.documentElement.scrollLeft,document.body.scrollLeft):e.scrollLeft},g=\"fixed\"===t.offsets.popper.position?0:_(p),b=\"fixed\"===t.offsets.popper.position?0:m(p);o={top:0-(f.top-g),right:e.document.documentElement.clientWidth-(f.left-b),bottom:e.document.documentElement.clientHeight-(f.top-g),left:0-(f.left-b)}}else o=l(this._popper)===i?{top:0,left:0,right:i.clientWidth,bottom:i.clientHeight}:h(i);return o.left+=n,o.right-=n,o.top=o.top+n,o.bottom=o.bottom-n,o},n.prototype.runModifiers=function(e,t,n){var i=t.slice();return void 0!==n&&(i=this._options.modifiers.slice(0,o(this._options.modifiers,n))),i.forEach(function(t){p(t)&&(e=t.call(this,e))}.bind(this)),e},n.prototype.isModifierRequired=function(e,t){var n=o(this._options.modifiers,e);return!!this._options.modifiers.slice(0,n).filter((function(e){return e===t})).length},n.prototype.modifiers={},n.prototype.modifiers.applyStyle=function(e){var t,n={position:e.offsets.popper.position},i=Math.round(e.offsets.popper.left),r=Math.round(e.offsets.popper.top);return this._options.gpuAcceleration&&(t=m(\"transform\"))?(n[t]=\"translate3d(\"+i+\"px, \"+r+\"px, 0)\",n.top=0,n.left=0):(n.left=i,n.top=r),Object.assign(n,e.styles),d(this._popper,n),this._popper.setAttribute(\"x-placement\",e.placement),this.isModifierRequired(this.modifiers.applyStyle,this.modifiers.arrow)&&e.offsets.arrow&&d(e.arrowElement,e.offsets.arrow),e},n.prototype.modifiers.shift=function(e){var t=e.placement,n=t.split(\"-\")[0],i=t.split(\"-\")[1];if(i){var r=e.offsets.reference,o=a(e.offsets.popper),s={y:{start:{top:r.top},end:{top:r.top+r.height-o.height}},x:{start:{left:r.left},end:{left:r.left+r.width-o.width}}},l=-1!==[\"bottom\",\"top\"].indexOf(n)?\"x\":\"y\";e.offsets.popper=Object.assign(o,s[l][i])}return e},n.prototype.modifiers.preventOverflow=function(e){var t=this._options.preventOverflowOrder,n=a(e.offsets.popper),i={left:function(){var t=n.left;return n.left<e.boundaries.left&&(t=Math.max(n.left,e.boundaries.left)),{left:t}},right:function(){var t=n.left;return n.right>e.boundaries.right&&(t=Math.min(n.left,e.boundaries.right-n.width)),{left:t}},top:function(){var t=n.top;return n.top<e.boundaries.top&&(t=Math.max(n.top,e.boundaries.top)),{top:t}},bottom:function(){var t=n.top;return n.bottom>e.boundaries.bottom&&(t=Math.min(n.top,e.boundaries.bottom-n.height)),{top:t}}};return t.forEach((function(t){e.offsets.popper=Object.assign(n,i[t]())})),e},n.prototype.modifiers.keepTogether=function(e){var t=a(e.offsets.popper),n=e.offsets.reference,i=Math.floor;return t.right<i(n.left)&&(e.offsets.popper.left=i(n.left)-t.width),t.left>i(n.right)&&(e.offsets.popper.left=i(n.right)),t.bottom<i(n.top)&&(e.offsets.popper.top=i(n.top)-t.height),t.top>i(n.bottom)&&(e.offsets.popper.top=i(n.bottom)),e},n.prototype.modifiers.flip=function(e){if(!this.isModifierRequired(this.modifiers.flip,this.modifiers.preventOverflow))return e;if(e.flipped&&e.placement===e._originalPlacement)return e;var t=e.placement.split(\"-\")[0],n=r(t),i=e.placement.split(\"-\")[1]||\"\",o=[];return o=\"flip\"===this._options.flipBehavior?[t,n]:this._options.flipBehavior,o.forEach(function(s,l){if(t===s&&o.length!==l+1){t=e.placement.split(\"-\")[0],n=r(t);var c=a(e.offsets.popper),u=-1!==[\"right\",\"bottom\"].indexOf(t);(u&&Math.floor(e.offsets.reference[t])>Math.floor(c[n])||!u&&Math.floor(e.offsets.reference[t])<Math.floor(c[n]))&&(e.flipped=!0,e.placement=o[l+1],i&&(e.placement+=\"-\"+i),e.offsets.popper=this._getOffsets(this._popper,this._reference,e.placement).popper,e=this.runModifiers(e,this._options.modifiers,this._flip))}}.bind(this)),e},n.prototype.modifiers.offset=function(e){var t=this._options.offset,n=e.offsets.popper;return-1!==e.placement.indexOf(\"left\")?n.top-=t:-1!==e.placement.indexOf(\"right\")?n.top+=t:-1!==e.placement.indexOf(\"top\")?n.left-=t:-1!==e.placement.indexOf(\"bottom\")&&(n.left+=t),e},n.prototype.modifiers.arrow=function(e){var t=this._options.arrowElement,n=this._options.arrowOffset;if(\"string\"===typeof t&&(t=this._popper.querySelector(t)),!t)return e;if(!this._popper.contains(t))return e;if(!this.isModifierRequired(this.modifiers.arrow,this.modifiers.keepTogether))return e;var r={},o=e.placement.split(\"-\")[0],s=a(e.offsets.popper),l=e.offsets.reference,c=-1!==[\"left\",\"right\"].indexOf(o),u=c?\"height\":\"width\",d=c?\"top\":\"left\",p=c?\"left\":\"top\",h=c?\"bottom\":\"right\",f=i(t)[u];l[h]-f<s[d]&&(e.offsets.popper[d]-=s[d]-(l[h]-f)),l[d]+f>s[h]&&(e.offsets.popper[d]+=l[d]+f-s[h]);var _=l[d]+(n||l[u]/2-f/2),m=_-s[d];return m=Math.max(Math.min(s[u]-f-8,m),8),r[d]=m,r[p]=\"\",e.offsets.arrow=r,e.arrowElement=t,e},Object.assign||Object.defineProperty(Object,\"assign\",{enumerable:!1,configurable:!0,writable:!0,value:function(e){if(void 0===e||null===e)throw new TypeError(\"Cannot convert first argument to object\");for(var t=Object(e),n=1;n<arguments.length;n++){var i=arguments[n];if(void 0!==i&&null!==i){i=Object(i);for(var r=Object.keys(i),a=0,o=r.length;a<o;a++){var s=r[a],l=Object.getOwnPropertyDescriptor(i,s);void 0!==l&&l.enumerable&&(t[s]=i[s])}}}return t}}),n}))},\"626a\":function(e,t,n){var i=n(\"2d95\");e.exports=Object(\"z\").propertyIsEnumerable(0)?Object:function(e){return\"String\"==i(e)?e.split(\"\"):Object(e)}},\"62a0\":function(e,t){var n=0,i=Math.random();e.exports=function(e){return\"Symbol(\".concat(void 0===e?\"\":e,\")_\",(++n+i).toString(36))}},\"63b6\":function(e,t,n){var i=n(\"e53d\"),r=n(\"584a\"),a=n(\"d864\"),o=n(\"35e8\"),s=n(\"07e3\"),l=\"prototype\",c=function(e,t,n){var u,d,p,h=e&c.F,f=e&c.G,_=e&c.S,m=e&c.P,g=e&c.B,b=e&c.W,v=f?r:r[t]||(r[t]={}),E=v[l],y=f?i:_?i[t]:(i[t]||{})[l];for(u in f&&(n=t),n)d=!h&&y&&void 0!==y[u],d&&s(v,u)||(p=d?y[u]:n[u],v[u]=f&&\"function\"!=typeof y[u]?n[u]:g&&d?a(p,i):b&&y[u]==p?function(e){var t=function(t,n,i){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,n)}return new e(t,n,i)}return e.apply(this,arguments)};return t[l]=e[l],t}(p):m&&\"function\"==typeof p?a(Function.call,p):p,m&&((v.virtual||(v.virtual={}))[u]=p,e&c.R&&E&&!E[u]&&o(E,u,p)))};c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,e.exports=c},\"64e1\":function(e,t,n){},\"66ba\":function(e,t){function n(e){return{name:\"Mojolicious\",subLanguage:\"xml\",contains:[{className:\"meta\",begin:\"^__(END|DATA)__$\"},{begin:\"^\\\\s*%{1,2}={0,2}\",end:\"$\",subLanguage:\"perl\"},{begin:\"<%{1,2}={0,2}\",end:\"={0,1}%>\",subLanguage:\"perl\",excludeBegin:!0,excludeEnd:!0}]}}e.exports=n},6718:function(e,t,n){var i=n(\"e53d\"),r=n(\"584a\"),a=n(\"b8e3\"),o=n(\"ccb9\"),s=n(\"d9f6\").f;e.exports=function(e){var t=r.Symbol||(r.Symbol=a?{}:i.Symbol||{});\"_\"==e.charAt(0)||e in t||s(t,e,{value:o.f(e)})}},6821:function(e,t,n){var i=n(\"626a\"),r=n(\"be13\");e.exports=function(e){return i(r(e))}},6981:function(e,t,n){\n/*!\n * clipboard.js v2.0.6\n * https://clipboardjs.com/\n * \n * Licensed MIT © Zeno Rocha\n */\n!function(t,n){e.exports=n()}(0,(function(){return n={},e.m=t=[function(e,t){e.exports=function(e){var t;if(\"SELECT\"===e.nodeName)e.focus(),t=e.value;else if(\"INPUT\"===e.nodeName||\"TEXTAREA\"===e.nodeName){var n=e.hasAttribute(\"readonly\");n||e.setAttribute(\"readonly\",\"\"),e.select(),e.setSelectionRange(0,e.value.length),n||e.removeAttribute(\"readonly\"),t=e.value}else{e.hasAttribute(\"contenteditable\")&&e.focus();var i=window.getSelection(),r=document.createRange();r.selectNodeContents(e),i.removeAllRanges(),i.addRange(r),t=i.toString()}return t}},function(e,t){function n(){}n.prototype={on:function(e,t,n){var i=this.e||(this.e={});return(i[e]||(i[e]=[])).push({fn:t,ctx:n}),this},once:function(e,t,n){var i=this;function r(){i.off(e,r),t.apply(n,arguments)}return r._=t,this.on(e,r,n)},emit:function(e){for(var t=[].slice.call(arguments,1),n=((this.e||(this.e={}))[e]||[]).slice(),i=0,r=n.length;i<r;i++)n[i].fn.apply(n[i].ctx,t);return this},off:function(e,t){var n=this.e||(this.e={}),i=n[e],r=[];if(i&&t)for(var a=0,o=i.length;a<o;a++)i[a].fn!==t&&i[a].fn._!==t&&r.push(i[a]);return r.length?n[e]=r:delete n[e],this}},e.exports=n,e.exports.TinyEmitter=n},function(e,t,n){var i=n(3),r=n(4);e.exports=function(e,t,n){if(!e&&!t&&!n)throw new Error(\"Missing required arguments\");if(!i.string(t))throw new TypeError(\"Second argument must be a String\");if(!i.fn(n))throw new TypeError(\"Third argument must be a Function\");if(i.node(e))return p=t,h=n,(d=e).addEventListener(p,h),{destroy:function(){d.removeEventListener(p,h)}};if(i.nodeList(e))return l=e,c=t,u=n,Array.prototype.forEach.call(l,(function(e){e.addEventListener(c,u)})),{destroy:function(){Array.prototype.forEach.call(l,(function(e){e.removeEventListener(c,u)}))}};if(i.string(e))return a=e,o=t,s=n,r(document.body,a,o,s);throw new TypeError(\"First argument must be a String, HTMLElement, HTMLCollection, or NodeList\");var a,o,s,l,c,u,d,p,h}},function(e,t){t.node=function(e){return void 0!==e&&e instanceof HTMLElement&&1===e.nodeType},t.nodeList=function(e){var n=Object.prototype.toString.call(e);return void 0!==e&&(\"[object NodeList]\"===n||\"[object HTMLCollection]\"===n)&&\"length\"in e&&(0===e.length||t.node(e[0]))},t.string=function(e){return\"string\"==typeof e||e instanceof String},t.fn=function(e){return\"[object Function]\"===Object.prototype.toString.call(e)}},function(e,t,n){var i=n(5);function r(e,t,n,r,a){var o=function(e,t,n,r){return function(n){n.delegateTarget=i(n.target,t),n.delegateTarget&&r.call(e,n)}}.apply(this,arguments);return e.addEventListener(n,o,a),{destroy:function(){e.removeEventListener(n,o,a)}}}e.exports=function(e,t,n,i,a){return\"function\"==typeof e.addEventListener?r.apply(null,arguments):\"function\"==typeof n?r.bind(null,document).apply(null,arguments):(\"string\"==typeof e&&(e=document.querySelectorAll(e)),Array.prototype.map.call(e,(function(e){return r(e,t,n,i,a)})))}},function(e,t){if(\"undefined\"!=typeof Element&&!Element.prototype.matches){var n=Element.prototype;n.matches=n.matchesSelector||n.mozMatchesSelector||n.msMatchesSelector||n.oMatchesSelector||n.webkitMatchesSelector}e.exports=function(e,t){for(;e&&9!==e.nodeType;){if(\"function\"==typeof e.matches&&e.matches(t))return e;e=e.parentNode}}},function(e,t,n){\"use strict\";n.r(t);var i=n(0),r=n.n(i),a=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e};function o(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,\"value\"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function s(e){!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,s),this.resolveOptions(e),this.initSelection()}var l=(function(e,t,n){t&&o(e.prototype,t),n&&o(e,n)}(s,[{key:\"resolveOptions\",value:function(e){var t=0<arguments.length&&void 0!==e?e:{};this.action=t.action,this.container=t.container,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=\"\"}},{key:\"initSelection\",value:function(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:\"selectFake\",value:function(){var e=this,t=\"rtl\"==document.documentElement.getAttribute(\"dir\");this.removeFake(),this.fakeHandlerCallback=function(){return e.removeFake()},this.fakeHandler=this.container.addEventListener(\"click\",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement(\"textarea\"),this.fakeElem.style.fontSize=\"12pt\",this.fakeElem.style.border=\"0\",this.fakeElem.style.padding=\"0\",this.fakeElem.style.margin=\"0\",this.fakeElem.style.position=\"absolute\",this.fakeElem.style[t?\"right\":\"left\"]=\"-9999px\";var n=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.style.top=n+\"px\",this.fakeElem.setAttribute(\"readonly\",\"\"),this.fakeElem.value=this.text,this.container.appendChild(this.fakeElem),this.selectedText=r()(this.fakeElem),this.copyText()}},{key:\"removeFake\",value:function(){this.fakeHandler&&(this.container.removeEventListener(\"click\",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(this.container.removeChild(this.fakeElem),this.fakeElem=null)}},{key:\"selectTarget\",value:function(){this.selectedText=r()(this.target),this.copyText()}},{key:\"copyText\",value:function(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:\"handleResult\",value:function(e){this.emitter.emit(e?\"success\":\"error\",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:\"clearSelection\",value:function(){this.trigger&&this.trigger.focus(),document.activeElement.blur(),window.getSelection().removeAllRanges()}},{key:\"destroy\",value:function(){this.removeFake()}},{key:\"action\",set:function(e){var t=0<arguments.length&&void 0!==e?e:\"copy\";if(this._action=t,\"copy\"!==this._action&&\"cut\"!==this._action)throw new Error('Invalid \"action\" value, use either \"copy\" or \"cut\"')},get:function(){return this._action}},{key:\"target\",set:function(e){if(void 0!==e){if(!e||\"object\"!==(void 0===e?\"undefined\":a(e))||1!==e.nodeType)throw new Error('Invalid \"target\" value, use a valid Element');if(\"copy\"===this.action&&e.hasAttribute(\"disabled\"))throw new Error('Invalid \"target\" attribute. Please use \"readonly\" instead of \"disabled\" attribute');if(\"cut\"===this.action&&(e.hasAttribute(\"readonly\")||e.hasAttribute(\"disabled\")))throw new Error('Invalid \"target\" attribute. You can\\'t cut text from elements with \"readonly\" or \"disabled\" attributes');this._target=e}},get:function(){return this._target}}]),s),c=n(1),u=n.n(c),d=n(2),p=n.n(d),h=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},f=function(e,t,n){return t&&_(e.prototype,t),n&&_(e,n),e};function _(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,\"value\"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var m=(function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function, not \"+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(g,u.a),f(g,[{key:\"resolveOptions\",value:function(e){var t=0<arguments.length&&void 0!==e?e:{};this.action=\"function\"==typeof t.action?t.action:this.defaultAction,this.target=\"function\"==typeof t.target?t.target:this.defaultTarget,this.text=\"function\"==typeof t.text?t.text:this.defaultText,this.container=\"object\"===h(t.container)?t.container:document.body}},{key:\"listenClick\",value:function(e){var t=this;this.listener=p()(e,\"click\",(function(e){return t.onClick(e)}))}},{key:\"onClick\",value:function(e){var t=e.delegateTarget||e.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new l({action:this.action(t),target:this.target(t),text:this.text(t),container:this.container,trigger:t,emitter:this})}},{key:\"defaultAction\",value:function(e){return b(\"action\",e)}},{key:\"defaultTarget\",value:function(e){var t=b(\"target\",e);if(t)return document.querySelector(t)}},{key:\"defaultText\",value:function(e){return b(\"text\",e)}},{key:\"destroy\",value:function(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:\"isSupported\",value:function(e){var t=0<arguments.length&&void 0!==e?e:[\"copy\",\"cut\"],n=\"string\"==typeof t?[t]:t,i=!!document.queryCommandSupported;return n.forEach((function(e){i=i&&!!document.queryCommandSupported(e)})),i}}]),g);function g(e,t){!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,g);var n=function(e,t){if(!e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return!t||\"object\"!=typeof t&&\"function\"!=typeof t?e:t}(this,(g.__proto__||Object.getPrototypeOf(g)).call(this));return n.resolveOptions(t),n.listenClick(e),n}function b(e,t){var n=\"data-clipboard-\"+e;if(t.hasAttribute(n))return t.getAttribute(n)}t.default=m}],e.c=n,e.d=function(t,n,i){e.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:i})},e.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},e.t=function(t,n){if(1&n&&(t=e(t)),8&n)return t;if(4&n&&\"object\"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(e.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:t}),2&n&&\"string\"!=typeof t)for(var r in t)e.d(i,r,function(e){return t[e]}.bind(null,r));return i},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,\"a\",n),n},e.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},e.p=\"\",e(e.s=6).default;function e(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var t,n}))},\"69a8\":function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},\"69d3\":function(e,t,n){n(\"6718\")(\"asyncIterator\")},\"6a51\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(...e){const t=\"(\"+e.map(e=>n(e)).join(\"|\")+\")\";return t}function a(e){const t=[\"abs\",\"accept\",\"alarm\",\"and\",\"atan2\",\"bind\",\"binmode\",\"bless\",\"break\",\"caller\",\"chdir\",\"chmod\",\"chomp\",\"chop\",\"chown\",\"chr\",\"chroot\",\"close\",\"closedir\",\"connect\",\"continue\",\"cos\",\"crypt\",\"dbmclose\",\"dbmopen\",\"defined\",\"delete\",\"die\",\"do\",\"dump\",\"each\",\"else\",\"elsif\",\"endgrent\",\"endhostent\",\"endnetent\",\"endprotoent\",\"endpwent\",\"endservent\",\"eof\",\"eval\",\"exec\",\"exists\",\"exit\",\"exp\",\"fcntl\",\"fileno\",\"flock\",\"for\",\"foreach\",\"fork\",\"format\",\"formline\",\"getc\",\"getgrent\",\"getgrgid\",\"getgrnam\",\"gethostbyaddr\",\"gethostbyname\",\"gethostent\",\"getlogin\",\"getnetbyaddr\",\"getnetbyname\",\"getnetent\",\"getpeername\",\"getpgrp\",\"getpriority\",\"getprotobyname\",\"getprotobynumber\",\"getprotoent\",\"getpwent\",\"getpwnam\",\"getpwuid\",\"getservbyname\",\"getservbyport\",\"getservent\",\"getsockname\",\"getsockopt\",\"given\",\"glob\",\"gmtime\",\"goto\",\"grep\",\"gt\",\"hex\",\"if\",\"index\",\"int\",\"ioctl\",\"join\",\"keys\",\"kill\",\"last\",\"lc\",\"lcfirst\",\"length\",\"link\",\"listen\",\"local\",\"localtime\",\"log\",\"lstat\",\"lt\",\"ma\",\"map\",\"mkdir\",\"msgctl\",\"msgget\",\"msgrcv\",\"msgsnd\",\"my\",\"ne\",\"next\",\"no\",\"not\",\"oct\",\"open\",\"opendir\",\"or\",\"ord\",\"our\",\"pack\",\"package\",\"pipe\",\"pop\",\"pos\",\"print\",\"printf\",\"prototype\",\"push\",\"q|0\",\"qq\",\"quotemeta\",\"qw\",\"qx\",\"rand\",\"read\",\"readdir\",\"readline\",\"readlink\",\"readpipe\",\"recv\",\"redo\",\"ref\",\"rename\",\"require\",\"reset\",\"return\",\"reverse\",\"rewinddir\",\"rindex\",\"rmdir\",\"say\",\"scalar\",\"seek\",\"seekdir\",\"select\",\"semctl\",\"semget\",\"semop\",\"send\",\"setgrent\",\"sethostent\",\"setnetent\",\"setpgrp\",\"setpriority\",\"setprotoent\",\"setpwent\",\"setservent\",\"setsockopt\",\"shift\",\"shmctl\",\"shmget\",\"shmread\",\"shmwrite\",\"shutdown\",\"sin\",\"sleep\",\"socket\",\"socketpair\",\"sort\",\"splice\",\"split\",\"sprintf\",\"sqrt\",\"srand\",\"stat\",\"state\",\"study\",\"sub\",\"substr\",\"symlink\",\"syscall\",\"sysopen\",\"sysread\",\"sysseek\",\"system\",\"syswrite\",\"tell\",\"telldir\",\"tie\",\"tied\",\"time\",\"times\",\"tr\",\"truncate\",\"uc\",\"ucfirst\",\"umask\",\"undef\",\"unless\",\"unlink\",\"unpack\",\"unshift\",\"untie\",\"until\",\"use\",\"utime\",\"values\",\"vec\",\"wait\",\"waitpid\",\"wantarray\",\"warn\",\"when\",\"while\",\"write\",\"x|0\",\"xor\",\"y|0\"],n=/[dualxmsipngr]{0,12}/,a={$pattern:/[\\w.]+/,keyword:t.join(\" \")},o={className:\"subst\",begin:\"[$@]\\\\{\",end:\"\\\\}\",keywords:a},s={begin:/->\\{/,end:/\\}/},l={variants:[{begin:/\\$\\d/},{begin:i(/[$%@](\\^\\w\\b|#\\w+(::\\w+)*|\\{\\w+\\}|\\w+(::\\w*)*)/,\"(?![A-Za-z])(?![@$%])\")},{begin:/[$%@][^\\s\\w{]/,relevance:0}]},c=[e.BACKSLASH_ESCAPE,o,l],u=[/!/,/\\//,/\\|/,/\\?/,/'/,/\"/,/#/],d=(e,t,r=\"\\\\1\")=>{const a=\"\\\\1\"===r?r:i(r,t);return i(i(\"(?:\",e,\")\"),t,/(?:\\\\.|[^\\\\\\/])*?/,a,/(?:\\\\.|[^\\\\\\/])*?/,r,n)},p=(e,t,r)=>i(i(\"(?:\",e,\")\"),t,/(?:\\\\.|[^\\\\\\/])*?/,r,n),h=[l,e.HASH_COMMENT_MODE,e.COMMENT(/^=\\w/,/=cut/,{endsWithParent:!0}),s,{className:\"string\",contains:c,variants:[{begin:\"q[qwxr]?\\\\s*\\\\(\",end:\"\\\\)\",relevance:5},{begin:\"q[qwxr]?\\\\s*\\\\[\",end:\"\\\\]\",relevance:5},{begin:\"q[qwxr]?\\\\s*\\\\{\",end:\"\\\\}\",relevance:5},{begin:\"q[qwxr]?\\\\s*\\\\|\",end:\"\\\\|\",relevance:5},{begin:\"q[qwxr]?\\\\s*<\",end:\">\",relevance:5},{begin:\"qw\\\\s+q\",end:\"q\",relevance:5},{begin:\"'\",end:\"'\",contains:[e.BACKSLASH_ESCAPE]},{begin:'\"',end:'\"'},{begin:\"`\",end:\"`\",contains:[e.BACKSLASH_ESCAPE]},{begin:/\\{\\w+\\}/,relevance:0},{begin:\"-?\\\\w+\\\\s*=>\",relevance:0}]},{className:\"number\",begin:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",relevance:0},{begin:\"(\\\\/\\\\/|\"+e.RE_STARTERS_RE+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",keywords:\"split return print reverse grep\",relevance:0,contains:[e.HASH_COMMENT_MODE,{className:\"regexp\",variants:[{begin:d(\"s|tr|y\",r(...u))},{begin:d(\"s|tr|y\",\"\\\\(\",\"\\\\)\")},{begin:d(\"s|tr|y\",\"\\\\[\",\"\\\\]\")},{begin:d(\"s|tr|y\",\"\\\\{\",\"\\\\}\")}],relevance:2},{className:\"regexp\",variants:[{begin:/(m|qr)\\/\\//,relevance:0},{begin:p(\"(?:m|qr)?\",/\\//,/\\//)},{begin:p(\"m|qr\",r(...u),/\\1/)},{begin:p(\"m|qr\",/\\(/,/\\)/)},{begin:p(\"m|qr\",/\\[/,/\\]/)},{begin:p(\"m|qr\",/\\{/,/\\}/)}]}]},{className:\"function\",beginKeywords:\"sub\",end:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{begin:\"-\\\\w\\\\b\",relevance:0},{begin:\"^__DATA__$\",end:\"^__END__$\",subLanguage:\"mojolicious\",contains:[{begin:\"^@@.*\",end:\"$\",className:\"comment\"}]}];return o.contains=h,s.contains=h,{name:\"Perl\",aliases:[\"pl\",\"pm\"],keywords:a,contains:h}}e.exports=a},\"6a99\":function(e,t,n){var i=n(\"d3f4\");e.exports=function(e,t){if(!i(e))return e;var n,r;if(t&&\"function\"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;if(\"function\"==typeof(n=e.valueOf)&&!i(r=n.call(e)))return r;if(!t&&\"function\"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;throw TypeError(\"Can't convert object to primitive value\")}},\"6abf\":function(e,t,n){var i=n(\"e6f3\"),r=n(\"1691\").concat(\"length\",\"prototype\");t.f=Object.getOwnPropertyNames||function(e){return i(e,r)}},\"6ac9\":function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=74)}({0:function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},2:function(e,t){e.exports=n(\"5924\")},3:function(e,t){e.exports=n(\"8122\")},5:function(e,t){e.exports=n(\"e974\")},7:function(e,t){e.exports=n(\"2b0e\")},74:function(e,t,n){\"use strict\";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"span\",[n(\"transition\",{attrs:{name:e.transition},on:{\"after-enter\":e.handleAfterEnter,\"after-leave\":e.handleAfterLeave}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.disabled&&e.showPopper,expression:\"!disabled && showPopper\"}],ref:\"popper\",staticClass:\"el-popover el-popper\",class:[e.popperClass,e.content&&\"el-popover--plain\"],style:{width:e.width+\"px\"},attrs:{role:\"tooltip\",id:e.tooltipId,\"aria-hidden\":e.disabled||!e.showPopper?\"true\":\"false\"}},[e.title?n(\"div\",{staticClass:\"el-popover__title\",domProps:{textContent:e._s(e.title)}}):e._e(),e._t(\"default\",[e._v(e._s(e.content))])],2)]),n(\"span\",{ref:\"wrapper\",staticClass:\"el-popover__reference-wrapper\"},[e._t(\"reference\")],2)],1)},r=[];i._withStripped=!0;var a=n(5),o=n.n(a),s=n(2),l=n(3),c={name:\"ElPopover\",mixins:[o.a],props:{trigger:{type:String,default:\"click\",validator:function(e){return[\"click\",\"focus\",\"hover\",\"manual\"].indexOf(e)>-1}},openDelay:{type:Number,default:0},closeDelay:{type:Number,default:200},title:String,disabled:Boolean,content:String,reference:{},popperClass:String,width:{},visibleArrow:{default:!0},arrowOffset:{type:Number,default:0},transition:{type:String,default:\"fade-in-linear\"},tabindex:{type:Number,default:0}},computed:{tooltipId:function(){return\"el-popover-\"+Object(l[\"generateId\"])()}},watch:{showPopper:function(e){this.disabled||(e?this.$emit(\"show\"):this.$emit(\"hide\"))}},mounted:function(){var e=this,t=this.referenceElm=this.reference||this.$refs.reference,n=this.popper||this.$refs.popper;!t&&this.$refs.wrapper.children&&(t=this.referenceElm=this.$refs.wrapper.children[0]),t&&(Object(s[\"addClass\"])(t,\"el-popover__reference\"),t.setAttribute(\"aria-describedby\",this.tooltipId),t.setAttribute(\"tabindex\",this.tabindex),n.setAttribute(\"tabindex\",0),\"click\"!==this.trigger&&(Object(s[\"on\"])(t,\"focusin\",(function(){e.handleFocus();var n=t.__vue__;n&&\"function\"===typeof n.focus&&n.focus()})),Object(s[\"on\"])(n,\"focusin\",this.handleFocus),Object(s[\"on\"])(t,\"focusout\",this.handleBlur),Object(s[\"on\"])(n,\"focusout\",this.handleBlur)),Object(s[\"on\"])(t,\"keydown\",this.handleKeydown),Object(s[\"on\"])(t,\"click\",this.handleClick)),\"click\"===this.trigger?(Object(s[\"on\"])(t,\"click\",this.doToggle),Object(s[\"on\"])(document,\"click\",this.handleDocumentClick)):\"hover\"===this.trigger?(Object(s[\"on\"])(t,\"mouseenter\",this.handleMouseEnter),Object(s[\"on\"])(n,\"mouseenter\",this.handleMouseEnter),Object(s[\"on\"])(t,\"mouseleave\",this.handleMouseLeave),Object(s[\"on\"])(n,\"mouseleave\",this.handleMouseLeave)):\"focus\"===this.trigger&&(this.tabindex,t.querySelector(\"input, textarea\")?(Object(s[\"on\"])(t,\"focusin\",this.doShow),Object(s[\"on\"])(t,\"focusout\",this.doClose)):(Object(s[\"on\"])(t,\"mousedown\",this.doShow),Object(s[\"on\"])(t,\"mouseup\",this.doClose)))},beforeDestroy:function(){this.cleanup()},deactivated:function(){this.cleanup()},methods:{doToggle:function(){this.showPopper=!this.showPopper},doShow:function(){this.showPopper=!0},doClose:function(){this.showPopper=!1},handleFocus:function(){Object(s[\"addClass\"])(this.referenceElm,\"focusing\"),\"click\"!==this.trigger&&\"focus\"!==this.trigger||(this.showPopper=!0)},handleClick:function(){Object(s[\"removeClass\"])(this.referenceElm,\"focusing\")},handleBlur:function(){Object(s[\"removeClass\"])(this.referenceElm,\"focusing\"),\"click\"!==this.trigger&&\"focus\"!==this.trigger||(this.showPopper=!1)},handleMouseEnter:function(){var e=this;clearTimeout(this._timer),this.openDelay?this._timer=setTimeout((function(){e.showPopper=!0}),this.openDelay):this.showPopper=!0},handleKeydown:function(e){27===e.keyCode&&\"manual\"!==this.trigger&&this.doClose()},handleMouseLeave:function(){var e=this;clearTimeout(this._timer),this.closeDelay?this._timer=setTimeout((function(){e.showPopper=!1}),this.closeDelay):this.showPopper=!1},handleDocumentClick:function(e){var t=this.reference||this.$refs.reference,n=this.popper||this.$refs.popper;!t&&this.$refs.wrapper.children&&(t=this.referenceElm=this.$refs.wrapper.children[0]),this.$el&&t&&!this.$el.contains(e.target)&&!t.contains(e.target)&&n&&!n.contains(e.target)&&(this.showPopper=!1)},handleAfterEnter:function(){this.$emit(\"after-enter\")},handleAfterLeave:function(){this.$emit(\"after-leave\"),this.doDestroy()},cleanup:function(){(this.openDelay||this.closeDelay)&&clearTimeout(this._timer)}},destroyed:function(){var e=this.reference;Object(s[\"off\"])(e,\"click\",this.doToggle),Object(s[\"off\"])(e,\"mouseup\",this.doClose),Object(s[\"off\"])(e,\"mousedown\",this.doShow),Object(s[\"off\"])(e,\"focusin\",this.doShow),Object(s[\"off\"])(e,\"focusout\",this.doClose),Object(s[\"off\"])(e,\"mousedown\",this.doShow),Object(s[\"off\"])(e,\"mouseup\",this.doClose),Object(s[\"off\"])(e,\"mouseleave\",this.handleMouseLeave),Object(s[\"off\"])(e,\"mouseenter\",this.handleMouseEnter),Object(s[\"off\"])(document,\"click\",this.handleDocumentClick)}},u=c,d=n(0),p=Object(d[\"a\"])(u,i,r,!1,null,null,null);p.options.__file=\"packages/popover/src/main.vue\";var h=p.exports,f=function(e,t,n){var i=t.expression?t.value:t.arg,r=n.context.$refs[i];r&&(Array.isArray(r)?r[0].$refs.reference=e:r.$refs.reference=e)},_={bind:function(e,t,n){f(e,t,n)},inserted:function(e,t,n){f(e,t,n)}},m=n(7),g=n.n(m);g.a.directive(\"popover\",_),h.install=function(e){e.directive(\"popover\",_),e.component(h.name,h)},h.directive=_;t[\"default\"]=h}})},\"6b4c\":function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},\"6b7c\":function(e,t,n){\"use strict\";t.__esModule=!0;var i=n(\"4897\");t.default={methods:{t:function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return i.t.apply(this,t)}}}},\"6c1c\":function(e,t,n){n(\"c367\");for(var i=n(\"e53d\"),r=n(\"35e8\"),a=n(\"481b\"),o=n(\"5168\")(\"toStringTag\"),s=\"CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList\".split(\",\"),l=0;l<s.length;l++){var c=s[l],u=i[c],d=u&&u.prototype;d&&!d[o]&&r(d,o,c),a[c]=a.Array}},\"6dd8\":function(e,t,n){\"use strict\";n.r(t),function(e){var n=function(){if(\"undefined\"!==typeof Map)return Map;function e(e,t){var n=-1;return e.some((function(e,i){return e[0]===t&&(n=i,!0)})),n}return function(){function t(){this.__entries__=[]}return Object.defineProperty(t.prototype,\"size\",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),t.prototype.get=function(t){var n=e(this.__entries__,t),i=this.__entries__[n];return i&&i[1]},t.prototype.set=function(t,n){var i=e(this.__entries__,t);~i?this.__entries__[i][1]=n:this.__entries__.push([t,n])},t.prototype.delete=function(t){var n=this.__entries__,i=e(n,t);~i&&n.splice(i,1)},t.prototype.has=function(t){return!!~e(this.__entries__,t)},t.prototype.clear=function(){this.__entries__.splice(0)},t.prototype.forEach=function(e,t){void 0===t&&(t=null);for(var n=0,i=this.__entries__;n<i.length;n++){var r=i[n];e.call(t,r[1],r[0])}},t}()}(),i=\"undefined\"!==typeof window&&\"undefined\"!==typeof document&&window.document===document,r=function(){return\"undefined\"!==typeof e&&e.Math===Math?e:\"undefined\"!==typeof self&&self.Math===Math?self:\"undefined\"!==typeof window&&window.Math===Math?window:Function(\"return this\")()}(),a=function(){return\"function\"===typeof requestAnimationFrame?requestAnimationFrame.bind(r):function(e){return setTimeout((function(){return e(Date.now())}),1e3/60)}}(),o=2;function s(e,t){var n=!1,i=!1,r=0;function s(){n&&(n=!1,e()),i&&c()}function l(){a(s)}function c(){var e=Date.now();if(n){if(e-r<o)return;i=!0}else n=!0,i=!1,setTimeout(l,t);r=e}return c}var l=20,c=[\"top\",\"right\",\"bottom\",\"left\",\"width\",\"height\",\"size\",\"weight\"],u=\"undefined\"!==typeof MutationObserver,d=function(){function e(){this.connected_=!1,this.mutationEventsAdded_=!1,this.mutationsObserver_=null,this.observers_=[],this.onTransitionEnd_=this.onTransitionEnd_.bind(this),this.refresh=s(this.refresh.bind(this),l)}return e.prototype.addObserver=function(e){~this.observers_.indexOf(e)||this.observers_.push(e),this.connected_||this.connect_()},e.prototype.removeObserver=function(e){var t=this.observers_,n=t.indexOf(e);~n&&t.splice(n,1),!t.length&&this.connected_&&this.disconnect_()},e.prototype.refresh=function(){var e=this.updateObservers_();e&&this.refresh()},e.prototype.updateObservers_=function(){var e=this.observers_.filter((function(e){return e.gatherActive(),e.hasActive()}));return e.forEach((function(e){return e.broadcastActive()})),e.length>0},e.prototype.connect_=function(){i&&!this.connected_&&(document.addEventListener(\"transitionend\",this.onTransitionEnd_),window.addEventListener(\"resize\",this.refresh),u?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener(\"DOMSubtreeModified\",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},e.prototype.disconnect_=function(){i&&this.connected_&&(document.removeEventListener(\"transitionend\",this.onTransitionEnd_),window.removeEventListener(\"resize\",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener(\"DOMSubtreeModified\",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},e.prototype.onTransitionEnd_=function(e){var t=e.propertyName,n=void 0===t?\"\":t,i=c.some((function(e){return!!~n.indexOf(e)}));i&&this.refresh()},e.getInstance=function(){return this.instance_||(this.instance_=new e),this.instance_},e.instance_=null,e}(),p=function(e,t){for(var n=0,i=Object.keys(t);n<i.length;n++){var r=i[n];Object.defineProperty(e,r,{value:t[r],enumerable:!1,writable:!1,configurable:!0})}return e},h=function(e){var t=e&&e.ownerDocument&&e.ownerDocument.defaultView;return t||r},f=T(0,0,0,0);function _(e){return parseFloat(e)||0}function m(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];return t.reduce((function(t,n){var i=e[\"border-\"+n+\"-width\"];return t+_(i)}),0)}function g(e){for(var t=[\"top\",\"right\",\"bottom\",\"left\"],n={},i=0,r=t;i<r.length;i++){var a=r[i],o=e[\"padding-\"+a];n[a]=_(o)}return n}function b(e){var t=e.getBBox();return T(0,0,t.width,t.height)}function v(e){var t=e.clientWidth,n=e.clientHeight;if(!t&&!n)return f;var i=h(e).getComputedStyle(e),r=g(i),a=r.left+r.right,o=r.top+r.bottom,s=_(i.width),l=_(i.height);if(\"border-box\"===i.boxSizing&&(Math.round(s+a)!==t&&(s-=m(i,\"left\",\"right\")+a),Math.round(l+o)!==n&&(l-=m(i,\"top\",\"bottom\")+o)),!y(e)){var c=Math.round(s+a)-t,u=Math.round(l+o)-n;1!==Math.abs(c)&&(s-=c),1!==Math.abs(u)&&(l-=u)}return T(r.left,r.top,s,l)}var E=function(){return\"undefined\"!==typeof SVGGraphicsElement?function(e){return e instanceof h(e).SVGGraphicsElement}:function(e){return e instanceof h(e).SVGElement&&\"function\"===typeof e.getBBox}}();function y(e){return e===h(e).document.documentElement}function S(e){return i?E(e)?b(e):v(e):f}function C(e){var t=e.x,n=e.y,i=e.width,r=e.height,a=\"undefined\"!==typeof DOMRectReadOnly?DOMRectReadOnly:Object,o=Object.create(a.prototype);return p(o,{x:t,y:n,width:i,height:r,top:n,right:t+i,bottom:r+n,left:t}),o}function T(e,t,n,i){return{x:e,y:t,width:n,height:i}}var x=function(){function e(e){this.broadcastWidth=0,this.broadcastHeight=0,this.contentRect_=T(0,0,0,0),this.target=e}return e.prototype.isActive=function(){var e=S(this.target);return this.contentRect_=e,e.width!==this.broadcastWidth||e.height!==this.broadcastHeight},e.prototype.broadcastRect=function(){var e=this.contentRect_;return this.broadcastWidth=e.width,this.broadcastHeight=e.height,e},e}(),w=function(){function e(e,t){var n=C(t);p(this,{target:e,contentRect:n})}return e}(),O=function(){function e(e,t,i){if(this.activeObservations_=[],this.observations_=new n,\"function\"!==typeof e)throw new TypeError(\"The callback provided as parameter 1 is not a function.\");this.callback_=e,this.controller_=t,this.callbackCtx_=i}return e.prototype.observe=function(e){if(!arguments.length)throw new TypeError(\"1 argument required, but only 0 present.\");if(\"undefined\"!==typeof Element&&Element instanceof Object){if(!(e instanceof h(e).Element))throw new TypeError('parameter 1 is not of type \"Element\".');var t=this.observations_;t.has(e)||(t.set(e,new x(e)),this.controller_.addObserver(this),this.controller_.refresh())}},e.prototype.unobserve=function(e){if(!arguments.length)throw new TypeError(\"1 argument required, but only 0 present.\");if(\"undefined\"!==typeof Element&&Element instanceof Object){if(!(e instanceof h(e).Element))throw new TypeError('parameter 1 is not of type \"Element\".');var t=this.observations_;t.has(e)&&(t.delete(e),t.size||this.controller_.removeObserver(this))}},e.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},e.prototype.gatherActive=function(){var e=this;this.clearActive(),this.observations_.forEach((function(t){t.isActive()&&e.activeObservations_.push(t)}))},e.prototype.broadcastActive=function(){if(this.hasActive()){var e=this.callbackCtx_,t=this.activeObservations_.map((function(e){return new w(e.target,e.broadcastRect())}));this.callback_.call(e,t,e),this.clearActive()}},e.prototype.clearActive=function(){this.activeObservations_.splice(0)},e.prototype.hasActive=function(){return this.activeObservations_.length>0},e}(),N=\"undefined\"!==typeof WeakMap?new WeakMap:new n,R=function(){function e(t){if(!(this instanceof e))throw new TypeError(\"Cannot call a class as a function.\");if(!arguments.length)throw new TypeError(\"1 argument required, but only 0 present.\");var n=d.getInstance(),i=new O(t,n,this);N.set(this,i)}return e}();[\"observe\",\"unobserve\",\"disconnect\"].forEach((function(e){R.prototype[e]=function(){var t;return(t=N.get(this))[e].apply(t,arguments)}}));var k=function(){return\"undefined\"!==typeof r.ResizeObserver?r.ResizeObserver:R}();t[\"default\"]=k}.call(this,n(\"c8ba\"))},\"6de8\":function(e,t){function n(e){const t={$pattern:/\\.?\\w+/,keyword:\"abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained\"},n=e.COMMENT(/\\{/,/\\}/,{relevance:0}),i=e.COMMENT(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{relevance:10}),r={className:\"string\",begin:\"'\",end:\"'\",contains:[{begin:\"''\"}]},a={className:\"string\",begin:\"(#\\\\d+)+\"},o={className:\"function\",beginKeywords:\"function constructor destructor procedure method\",end:\"[:;]\",keywords:\"function constructor|10 destructor|10 procedure|10 method|10\",contains:[e.TITLE_MODE,{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",keywords:t,contains:[r,a]},n,i]};return{name:\"Oxygene\",case_insensitive:!0,keywords:t,illegal:'(\"|\\\\$[G-Zg-z]|\\\\/\\\\*|</|=>|->)',contains:[n,i,e.C_LINE_COMMENT_MODE,r,a,e.NUMBER_MODE,o,{className:\"class\",begin:\"=\\\\bclass\\\\b\",end:\"end;\",keywords:t,contains:[r,a,n,i,e.C_LINE_COMMENT_MODE,o]}]}}e.exports=n},\"71c1\":function(e,t,n){var i=n(\"3a38\"),r=n(\"25eb\");e.exports=function(e){return function(t,n){var a,o,s=String(r(t)),l=i(n),c=s.length;return l<0||l>=c?e?\"\":void 0:(a=s.charCodeAt(l),a<55296||a>56319||l+1===c||(o=s.charCodeAt(l+1))<56320||o>57343?e?s.charAt(l):a:e?s.slice(l,l+2):o-56320+(a-55296<<10)+65536)}}},\"722f\":function(e,t,n){\"use strict\";t.__esModule=!0;var i=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},r=n(\"e452\"),a=o(r);function o(e){return e&&e.__esModule?e:{default:e}}var s,l=l||{};l.Dialog=function(e,t,n){var r=this;if(this.dialogNode=e,null===this.dialogNode||\"dialog\"!==this.dialogNode.getAttribute(\"role\"))throw new Error(\"Dialog() requires a DOM element with ARIA role of dialog.\");\"string\"===typeof t?this.focusAfterClosed=document.getElementById(t):\"object\"===(\"undefined\"===typeof t?\"undefined\":i(t))?this.focusAfterClosed=t:this.focusAfterClosed=null,\"string\"===typeof n?this.focusFirst=document.getElementById(n):\"object\"===(\"undefined\"===typeof n?\"undefined\":i(n))?this.focusFirst=n:this.focusFirst=null,this.focusFirst?this.focusFirst.focus():a.default.focusFirstDescendant(this.dialogNode),this.lastFocus=document.activeElement,s=function(e){r.trapFocus(e)},this.addListeners()},l.Dialog.prototype.addListeners=function(){document.addEventListener(\"focus\",s,!0)},l.Dialog.prototype.removeListeners=function(){document.removeEventListener(\"focus\",s,!0)},l.Dialog.prototype.closeDialog=function(){var e=this;this.removeListeners(),this.focusAfterClosed&&setTimeout((function(){e.focusAfterClosed.focus()}))},l.Dialog.prototype.trapFocus=function(e){a.default.IgnoreUtilFocusChanges||(this.dialogNode.contains(e.target)?this.lastFocus=e.target:(a.default.focusFirstDescendant(this.dialogNode),this.lastFocus===document.activeElement&&a.default.focusLastDescendant(this.dialogNode),this.lastFocus=document.activeElement))},t.default=l.Dialog},7333:function(e,t,n){\"use strict\";var i=n(\"9e1e\"),r=n(\"0d58\"),a=n(\"2621\"),o=n(\"52a7\"),s=n(\"4bf8\"),l=n(\"626a\"),c=Object.assign;e.exports=!c||n(\"79e5\")((function(){var e={},t={},n=Symbol(),i=\"abcdefghijklmnopqrst\";return e[n]=7,i.split(\"\").forEach((function(e){t[e]=e})),7!=c({},e)[n]||Object.keys(c({},t)).join(\"\")!=i}))?function(e,t){var n=s(e),c=arguments.length,u=1,d=a.f,p=o.f;while(c>u){var h,f=l(arguments[u++]),_=d?r(f).concat(d(f)):r(f),m=_.length,g=0;while(m>g)h=_[g++],i&&!p.call(f,h)||(n[h]=f[h])}return n}:c},\"75da\":function(e,t){function n(e){return{name:\"Backus–Naur Form\",contains:[{className:\"attribute\",begin:/</,end:/>/},{begin:/::=/,end:/$/,contains:[{begin:/</,end:/>/},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}]}}e.exports=n},\"765d\":function(e,t,n){n(\"6718\")(\"observable\")},\"767a\":function(e,t){function n(e){const t={className:\"variable\",begin:/\\$[\\w\\d#@][\\w\\d_]*/},n={className:\"variable\",begin:/<(?!\\/)/,end:/>/};return{name:\"Packet Filter config\",aliases:[\"pf.conf\"],keywords:{$pattern:/[a-z0-9_<>-]+/,built_in:\"block match pass load anchor|5 antispoof|10 set table\",keyword:\"in out log quick on rdomain inet inet6 proto from port os to route allow-opts divert-packet divert-reply divert-to flags group icmp-type icmp6-type label once probability recieved-on rtable prio queue tos tag tagged user keep fragment for os drop af-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robin source-hash static-port dup-to reply-to route-to parent bandwidth default min max qlimit block-policy debug fingerprints hostid limit loginterface optimization reassemble ruleset-optimization basic none profile skip state-defaults state-policy timeout const counters persist no modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppy source-track global rule max-src-nodes max-src-states max-src-conn max-src-conn-rate overload flush scrub|5 max-mss min-ttl no-df|10 random-id\",literal:\"all any no-route self urpf-failed egress|5 unknown\"},contains:[e.HASH_COMMENT_MODE,e.NUMBER_MODE,e.QUOTE_STRING_MODE,t,n]}}e.exports=n},7726:function(e,t){var n=e.exports=\"undefined\"!=typeof window&&window.Math==Math?window:\"undefined\"!=typeof self&&self.Math==Math?self:Function(\"return this\")();\"number\"==typeof __g&&(__g=n)},7727:function(e,t){function n(e){const t=\"[a-zA-Z_][a-zA-Z0-9_.]*(!|\\\\?)?\",n=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",i={$pattern:t,keyword:\"and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote require import with|0\"},r={className:\"subst\",begin:/#\\{/,end:/\\}/,keywords:i},a={className:\"number\",begin:\"(\\\\b0o[0-7_]+)|(\\\\b0b[01_]+)|(\\\\b0x[0-9a-fA-F_]+)|(-?\\\\b[1-9][0-9_]*(\\\\.[0-9_]+([eE][-+]?[0-9]+)?)?)\",relevance:0},o=\"[/|([{<\\\"']\",s={className:\"string\",begin:\"~[a-z](?=\"+o+\")\",contains:[{endsParent:!0,contains:[{contains:[e.BACKSLASH_ESCAPE,r],variants:[{begin:/\"/,end:/\"/},{begin:/'/,end:/'/},{begin:/\\//,end:/\\//},{begin:/\\|/,end:/\\|/},{begin:/\\(/,end:/\\)/},{begin:/\\[/,end:/\\]/},{begin:/\\{/,end:/\\}/},{begin:/</,end:/>/}]}]}]},l={className:\"string\",begin:\"~[A-Z](?=\"+o+\")\",contains:[{begin:/\"/,end:/\"/},{begin:/'/,end:/'/},{begin:/\\//,end:/\\//},{begin:/\\|/,end:/\\|/},{begin:/\\(/,end:/\\)/},{begin:/\\[/,end:/\\]/},{begin:/\\{/,end:/\\}/},{begin:/</,end:/>/}]},c={className:\"string\",contains:[e.BACKSLASH_ESCAPE,r],variants:[{begin:/\"\"\"/,end:/\"\"\"/},{begin:/'''/,end:/'''/},{begin:/~S\"\"\"/,end:/\"\"\"/,contains:[]},{begin:/~S\"/,end:/\"/,contains:[]},{begin:/~S'''/,end:/'''/,contains:[]},{begin:/~S'/,end:/'/,contains:[]},{begin:/'/,end:/'/},{begin:/\"/,end:/\"/}]},u={className:\"function\",beginKeywords:\"def defp defmacro\",end:/\\B\\b/,contains:[e.inherit(e.TITLE_MODE,{begin:t,endsParent:!0})]},d=e.inherit(u,{className:\"class\",beginKeywords:\"defimpl defmodule defprotocol defrecord\",end:/\\bdo\\b|$|;/}),p=[c,l,s,e.HASH_COMMENT_MODE,d,u,{begin:\"::\"},{className:\"symbol\",begin:\":(?![\\\\s:])\",contains:[c,{begin:n}],relevance:0},{className:\"symbol\",begin:t+\":(?!:)\",relevance:0},a,{className:\"variable\",begin:\"(\\\\$\\\\W)|((\\\\$|@@?)(\\\\w+))\"},{begin:\"->\"},{begin:\"(\"+e.RE_STARTERS_RE+\")\\\\s*\",contains:[e.HASH_COMMENT_MODE,{begin:/\\/: (?=\\d+\\s*[,\\]])/,relevance:0,contains:[a]},{className:\"regexp\",illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE,r],variants:[{begin:\"/\",end:\"/[a-z]*\"},{begin:\"%r\\\\[\",end:\"\\\\][a-z]*\"}]}],relevance:0}];return r.contains=p,{name:\"Elixir\",keywords:i,contains:p}}e.exports=n},7781:function(e,t){function n(e){const t=\"div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var\",n=\"false true\",i=[e.C_LINE_COMMENT_MODE,e.COMMENT(/\\{/,/\\}/,{relevance:0}),e.COMMENT(/\\(\\*/,/\\*\\)/,{relevance:10})],r={className:\"string\",begin:/'/,end:/'/,contains:[{begin:/''/}]},a={className:\"string\",begin:/(#\\d+)+/},o={className:\"number\",begin:\"\\\\b\\\\d+(\\\\.\\\\d+)?(DT|D|T)\",relevance:0},s={className:\"string\",begin:'\"',end:'\"'},l={className:\"function\",beginKeywords:\"procedure\",end:/[:;]/,keywords:\"procedure|10\",contains:[e.TITLE_MODE,{className:\"params\",begin:/\\(/,end:/\\)/,keywords:t,contains:[r,a]}].concat(i)},c={className:\"class\",begin:\"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\\\d+) ([^\\\\r\\\\n]+)\",returnBegin:!0,contains:[e.TITLE_MODE,l]};return{name:\"C/AL\",case_insensitive:!0,keywords:{keyword:t,literal:n},illegal:/\\/\\*/,contains:[r,a,o,s,e.NUMBER_MODE,c,l]}}e.exports=n},\"77f1\":function(e,t,n){var i=n(\"4588\"),r=Math.max,a=Math.min;e.exports=function(e,t){return e=i(e),e<0?r(e+t,0):a(e,t)}},\"794b\":function(e,t,n){e.exports=!n(\"8e60\")&&!n(\"294c\")((function(){return 7!=Object.defineProperty(n(\"1ec9\")(\"div\"),\"a\",{get:function(){return 7}}).a}))},\"79aa\":function(e,t){e.exports=function(e){if(\"function\"!=typeof e)throw TypeError(e+\" is not a function!\");return e}},\"79b5\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(e){return a(\"(\",e,\")*\")}function r(e){return a(\"(\",e,\")?\")}function a(...e){const t=e.map(e=>n(e)).join(\"\");return t}function o(...e){const t=\"(\"+e.map(e=>n(e)).join(\"|\")+\")\";return t}function s(e){const t={\"builtin-name\":[\"action\",\"bindattr\",\"collection\",\"component\",\"concat\",\"debugger\",\"each\",\"each-in\",\"get\",\"hash\",\"if\",\"in\",\"input\",\"link-to\",\"loc\",\"log\",\"lookup\",\"mut\",\"outlet\",\"partial\",\"query-params\",\"render\",\"template\",\"textarea\",\"unbound\",\"unless\",\"view\",\"with\",\"yield\"]},n={literal:[\"true\",\"false\",\"undefined\",\"null\"]},s=/\"\"|\"[^\"]+\"/,l=/''|'[^']+'/,c=/\\[\\]|\\[[^\\]]+\\]/,u=/[^\\s!\"#%&'()*+,.\\/;<=>@\\[\\\\\\]^`{|}~]+/,d=/(\\.|\\/)/,p=o(s,l,c,u),h=a(r(/\\.|\\.\\/|\\//),p,i(a(d,p))),f=a(\"(\",c,\"|\",u,\")(?==)\"),_={begin:h,lexemes:/[\\w.\\/]+/},m=e.inherit(_,{keywords:n}),g={begin:/\\(/,end:/\\)/},b={className:\"attr\",begin:f,relevance:0,starts:{begin:/=/,end:/=/,starts:{contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,m,g]}}},v={begin:/as\\s+\\|/,keywords:{keyword:\"as\"},end:/\\|/,contains:[{begin:/\\w+/}]},E={contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,v,b,m,g],returnEnd:!0},y=e.inherit(_,{className:\"name\",keywords:t,starts:e.inherit(E,{end:/\\)/})});g.contains=[y];const S=e.inherit(_,{keywords:t,className:\"name\",starts:e.inherit(E,{end:/\\}\\}/})}),C=e.inherit(_,{keywords:t,className:\"name\"}),T=e.inherit(_,{className:\"name\",keywords:t,starts:e.inherit(E,{end:/\\}\\}/})}),x={begin:/\\\\\\{\\{/,skip:!0},w={begin:/\\\\\\\\(?=\\{\\{)/,skip:!0};return{name:\"Handlebars\",aliases:[\"hbs\",\"html.hbs\",\"html.handlebars\",\"htmlbars\"],case_insensitive:!0,subLanguage:\"xml\",contains:[x,w,e.COMMENT(/\\{\\{!--/,/--\\}\\}/),e.COMMENT(/\\{\\{!/,/\\}\\}/),{className:\"template-tag\",begin:/\\{\\{\\{\\{(?!\\/)/,end:/\\}\\}\\}\\}/,contains:[S],starts:{end:/\\{\\{\\{\\{\\//,returnEnd:!0,subLanguage:\"xml\"}},{className:\"template-tag\",begin:/\\{\\{\\{\\{\\//,end:/\\}\\}\\}\\}/,contains:[C]},{className:\"template-tag\",begin:/\\{\\{#/,end:/\\}\\}/,contains:[S]},{className:\"template-tag\",begin:/\\{\\{(?=else\\}\\})/,end:/\\}\\}/,keywords:\"else\"},{className:\"template-tag\",begin:/\\{\\{(?=else if)/,end:/\\}\\}/,keywords:\"else if\"},{className:\"template-tag\",begin:/\\{\\{\\//,end:/\\}\\}/,contains:[C]},{className:\"template-variable\",begin:/\\{\\{\\{/,end:/\\}\\}\\}/,contains:[T]},{className:\"template-variable\",begin:/\\{\\{/,end:/\\}\\}/,contains:[T]}]}}function l(e){const t=s(e);return t.name=\"HTMLbars\",e.getLanguage(\"handlebars\")&&(t.disableAutodetect=!0),t}e.exports=l},\"79e5\":function(e,t){e.exports=function(e){try{return!!e()}catch(t){return!0}}},\"7a56\":function(e,t,n){\"use strict\";var i=n(\"7726\"),r=n(\"86cc\"),a=n(\"9e1e\"),o=n(\"2b4c\")(\"species\");e.exports=function(e){var t=i[e];a&&t&&!t[o]&&r.f(t,o,{configurable:!0,get:function(){return this}})}},\"7a5e\":function(e,t){function n(e){const t={className:\"variable\",variants:[{begin:\"\\\\$\\\\(\"+e.UNDERSCORE_IDENT_RE+\"\\\\)\",contains:[e.BACKSLASH_ESCAPE]},{begin:/\\$[@%<?\\^\\+\\*]/}]},n={className:\"string\",begin:/\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,t]},i={className:\"variable\",begin:/\\$\\([\\w-]+\\s/,end:/\\)/,keywords:{built_in:\"subst patsubst strip findstring filter filter-out sort word wordlist firstword lastword dir notdir suffix basename addsuffix addprefix join wildcard realpath abspath error warning shell origin flavor foreach if or and call eval file value\"},contains:[t]},r={begin:\"^\"+e.UNDERSCORE_IDENT_RE+\"\\\\s*(?=[:+?]?=)\"},a={className:\"meta\",begin:/^\\.PHONY:/,end:/$/,keywords:{$pattern:/[\\.\\w]+/,\"meta-keyword\":\".PHONY\"}},o={className:\"section\",begin:/^[^\\s]+:/,end:/$/,contains:[t]};return{name:\"Makefile\",aliases:[\"mk\",\"mak\",\"make\"],keywords:{$pattern:/[\\w-]+/,keyword:\"define endef undefine ifdef ifndef ifeq ifneq else endif include -include sinclude override export unexport private vpath\"},contains:[e.HASH_COMMENT_MODE,t,n,i,r,a,o]}}e.exports=n},\"7a77\":function(e,t,n){\"use strict\";function i(e){this.message=e}i.prototype.toString=function(){return\"Cancel\"+(this.message?\": \"+this.message:\"\")},i.prototype.__CANCEL__=!0,e.exports=i},\"7aac\":function(e,t,n){\"use strict\";var i=n(\"c532\");e.exports=i.isStandardBrowserEnv()?function(){return{write:function(e,t,n,r,a,o){var s=[];s.push(e+\"=\"+encodeURIComponent(t)),i.isNumber(n)&&s.push(\"expires=\"+new Date(n).toGMTString()),i.isString(r)&&s.push(\"path=\"+r),i.isString(a)&&s.push(\"domain=\"+a),!0===o&&s.push(\"secure\"),document.cookie=s.join(\"; \")},read:function(e){var t=document.cookie.match(new RegExp(\"(^|;\\\\s*)(\"+e+\")=([^;]*)\"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,\"\",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}()},\"7b3e\":function(e,t,n){\"use strict\";var i,r=n(\"a3de\");\n/**\n * Checks if an event is supported in the current execution environment.\n *\n * NOTE: This will not work correctly for non-generic events such as `change`,\n * `reset`, `load`, `error`, and `select`.\n *\n * Borrows from Modernizr.\n *\n * @param {string} eventNameSuffix Event name, e.g. \"click\".\n * @param {?boolean} capture Check if the capture phase is supported.\n * @return {boolean} True if the event is supported.\n * @internal\n * @license Modernizr 3.0.0pre (Custom Build) | MIT\n */\nfunction a(e,t){if(!r.canUseDOM||t&&!(\"addEventListener\"in document))return!1;var n=\"on\"+e,a=n in document;if(!a){var o=document.createElement(\"div\");o.setAttribute(n,\"return;\"),a=\"function\"===typeof o[n]}return!a&&i&&\"wheel\"===e&&(a=document.implementation.hasFeature(\"Events.wheel\",\"3.0\")),a}r.canUseDOM&&(i=document.implementation&&document.implementation.hasFeature&&!0!==document.implementation.hasFeature(\"\",\"\")),e.exports=a},\"7bc1\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(...e){const t=\"(\"+e.map(e=>n(e)).join(\"|\")+\")\";return t}function a(e){const t=e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),n={className:\"params\",begin:/\\(/,end:/\\)/,contains:[\"self\",e.C_NUMBER_MODE,t]},a=e.COMMENT(/--/,/$/),o=e.COMMENT(/\\(\\*/,/\\*\\)/,{contains:[\"self\",a]}),s=[a,o,e.HASH_COMMENT_MODE],l=[/apart from/,/aside from/,/instead of/,/out of/,/greater than/,/isn't|(doesn't|does not) (equal|come before|come after|contain)/,/(greater|less) than( or equal)?/,/(starts?|ends|begins?) with/,/contained by/,/comes (before|after)/,/a (ref|reference)/,/POSIX (file|path)/,/(date|time) string/,/quoted form/],c=[/clipboard info/,/the clipboard/,/info for/,/list (disks|folder)/,/mount volume/,/path to/,/(close|open for) access/,/(get|set) eof/,/current date/,/do shell script/,/get volume settings/,/random number/,/set volume/,/system attribute/,/system info/,/time to GMT/,/(load|run|store) script/,/scripting components/,/ASCII (character|number)/,/localized string/,/choose (application|color|file|file name|folder|from list|remote application|URL)/,/display (alert|dialog)/];return{name:\"AppleScript\",aliases:[\"osascript\"],keywords:{keyword:\"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without\",literal:\"AppleScript false linefeed return pi quote result space tab true\",built_in:\"alias application boolean class constant date file integer list number real record string text activate beep count delay launch log offset read round run say summarize write character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year\"},contains:[t,e.C_NUMBER_MODE,{className:\"built_in\",begin:i(/\\b/,r(...c),/\\b/)},{className:\"built_in\",begin:/^\\s*return\\b/},{className:\"literal\",begin:/\\b(text item delimiters|current application|missing value)\\b/},{className:\"keyword\",begin:i(/\\b/,r(...l),/\\b/)},{beginKeywords:\"on\",illegal:/[${=;\\n]/,contains:[e.UNDERSCORE_TITLE_MODE,n]},...s],illegal:/\\/\\/|->|=>|\\[\\[/}}e.exports=a},\"7c30\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(e){const t=/([-a-zA-Z$._][\\w$.-]*)/,n={className:\"type\",begin:/\\bi\\d+(?=\\s|\\b)/},r={className:\"operator\",relevance:0,begin:/=/},a={className:\"punctuation\",relevance:0,begin:/,/},o={className:\"number\",variants:[{begin:/0[xX][a-fA-F0-9]+/},{begin:/-?\\d+(?:[.]\\d+)?(?:[eE][-+]?\\d+(?:[.]\\d+)?)?/}],relevance:0},s={className:\"symbol\",variants:[{begin:/^\\s*[a-z]+:/}],relevance:0},l={className:\"variable\",variants:[{begin:i(/%/,t)},{begin:/%\\d+/},{begin:/#\\d+/}]},c={className:\"title\",variants:[{begin:i(/@/,t)},{begin:/@\\d+/},{begin:i(/!/,t)},{begin:i(/!\\d+/,t)},{begin:/!\\d+/}]};return{name:\"LLVM IR\",keywords:\"begin end true false declare define global constant private linker_private internal available_externally linkonce linkonce_odr weak weak_odr appending dllimport dllexport common default hidden protected extern_weak external thread_local zeroinitializer undef null to tail target triple datalayout volatile nuw nsw nnan ninf nsz arcp fast exact inbounds align addrspace section alias module asm sideeffect gc dbg linker_private_weak attributes blockaddress initialexec localdynamic localexec prefix unnamed_addr ccc fastcc coldcc x86_stdcallcc x86_fastcallcc arm_apcscc arm_aapcscc arm_aapcs_vfpcc ptx_device ptx_kernel intel_ocl_bicc msp430_intrcc spir_func spir_kernel x86_64_sysvcc x86_64_win64cc x86_thiscallcc cc c signext zeroext inreg sret nounwind noreturn noalias nocapture byval nest readnone readonly inlinehint noinline alwaysinline optsize ssp sspreq noredzone noimplicitfloat naked builtin cold nobuiltin noduplicate nonlazybind optnone returns_twice sanitize_address sanitize_memory sanitize_thread sspstrong uwtable returned type opaque eq ne slt sgt sle sge ult ugt ule uge oeq one olt ogt ole oge ord uno ueq une x acq_rel acquire alignstack atomic catch cleanup filter inteldialect max min monotonic nand personality release seq_cst singlethread umax umin unordered xchg add fadd sub fsub mul fmul udiv sdiv fdiv urem srem frem shl lshr ashr and or xor icmp fcmp phi call trunc zext sext fptrunc fpext uitofp sitofp fptoui fptosi inttoptr ptrtoint bitcast addrspacecast select va_arg ret br switch invoke unwind unreachable indirectbr landingpad resume malloc alloca free load store getelementptr extractelement insertelement shufflevector getresult extractvalue insertvalue atomicrmw cmpxchg fence argmemonly double\",contains:[n,e.COMMENT(/;\\s*$/,null,{relevance:0}),e.COMMENT(/;/,/$/),e.QUOTE_STRING_MODE,{className:\"string\",variants:[{begin:/\"/,end:/[^\\\\]\"/}]},c,a,r,l,s,o]}}e.exports=r},\"7c46\":function(e,t){function n(e){const t={className:\"subst\",variants:[{begin:\"\\\\$[A-Za-z0-9_]+\"}]},n={className:\"subst\",variants:[{begin:/\\$\\{/,end:/\\}/}],keywords:\"true false null this is new super\"},i={className:\"string\",variants:[{begin:\"r'''\",end:\"'''\"},{begin:'r\"\"\"',end:'\"\"\"'},{begin:\"r'\",end:\"'\",illegal:\"\\\\n\"},{begin:'r\"',end:'\"',illegal:\"\\\\n\"},{begin:\"'''\",end:\"'''\",contains:[e.BACKSLASH_ESCAPE,t,n]},{begin:'\"\"\"',end:'\"\"\"',contains:[e.BACKSLASH_ESCAPE,t,n]},{begin:\"'\",end:\"'\",illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE,t,n]},{begin:'\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE,t,n]}]};n.contains=[e.C_NUMBER_MODE,i];const r=[\"Comparable\",\"DateTime\",\"Duration\",\"Function\",\"Iterable\",\"Iterator\",\"List\",\"Map\",\"Match\",\"Object\",\"Pattern\",\"RegExp\",\"Set\",\"Stopwatch\",\"String\",\"StringBuffer\",\"StringSink\",\"Symbol\",\"Type\",\"Uri\",\"bool\",\"double\",\"int\",\"num\",\"Element\",\"ElementList\"],a=r.map(e=>e+\"?\"),o={keyword:\"abstract as assert async await break case catch class const continue covariant default deferred do dynamic else enum export extends extension external factory false final finally for Function get hide if implements import in inferface is late library mixin new null on operator part required rethrow return set show static super switch sync this throw true try typedef var void while with yield\",built_in:r.concat(a).concat([\"Never\",\"Null\",\"dynamic\",\"print\",\"document\",\"querySelector\",\"querySelectorAll\",\"window\"]),$pattern:/[A-Za-z][A-Za-z0-9_]*\\??/};return{name:\"Dart\",keywords:o,contains:[i,e.COMMENT(/\\/\\*\\*(?!\\/)/,/\\*\\//,{subLanguage:\"markdown\",relevance:0}),e.COMMENT(/\\/{3,} ?/,/$/,{contains:[{subLanguage:\"markdown\",begin:\".\",end:\"$\",relevance:0}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"class\",beginKeywords:\"class interface\",end:/\\{/,excludeEnd:!0,contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]},e.C_NUMBER_MODE,{className:\"meta\",begin:\"@[A-Za-z]+\"},{begin:\"=>\"}]}}e.exports=n},\"7c71\":function(e,t){function n(e){const t=\"Int Float String Bool Dynamic Void Array \";return{name:\"Haxe\",aliases:[\"hx\"],keywords:{keyword:\"break case cast catch continue default do dynamic else enum extern for function here if import in inline never new override package private get set public return static super switch this throw trace try typedef untyped using var while \"+t,built_in:\"trace this\",literal:\"true false null _\"},contains:[{className:\"string\",begin:\"'\",end:\"'\",contains:[e.BACKSLASH_ESCAPE,{className:\"subst\",begin:\"\\\\$\\\\{\",end:\"\\\\}\"},{className:\"subst\",begin:\"\\\\$\",end:/\\W\\}/}]},e.QUOTE_STRING_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,{className:\"meta\",begin:\"@:\",end:\"$\"},{className:\"meta\",begin:\"#\",end:\"$\",keywords:{\"meta-keyword\":\"if else elseif end error\"}},{className:\"type\",begin:\":[ \\t]*\",end:\"[^A-Za-z0-9_ \\t\\\\->]\",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:\"type\",begin:\":[ \\t]*\",end:\"\\\\W\",excludeBegin:!0,excludeEnd:!0},{className:\"type\",begin:\"new *\",end:\"\\\\W\",excludeBegin:!0,excludeEnd:!0},{className:\"class\",beginKeywords:\"enum\",end:\"\\\\{\",contains:[e.TITLE_MODE]},{className:\"class\",beginKeywords:\"abstract\",end:\"[\\\\{$]\",contains:[{className:\"type\",begin:\"\\\\(\",end:\"\\\\)\",excludeBegin:!0,excludeEnd:!0},{className:\"type\",begin:\"from +\",end:\"\\\\W\",excludeBegin:!0,excludeEnd:!0},{className:\"type\",begin:\"to +\",end:\"\\\\W\",excludeBegin:!0,excludeEnd:!0},e.TITLE_MODE],keywords:{keyword:\"abstract from to\"}},{className:\"class\",begin:\"\\\\b(class|interface) +\",end:\"[\\\\{$]\",excludeEnd:!0,keywords:\"class interface\",contains:[{className:\"keyword\",begin:\"\\\\b(extends|implements) +\",keywords:\"extends implements\",contains:[{className:\"type\",begin:e.IDENT_RE,relevance:0}]},e.TITLE_MODE]},{className:\"function\",beginKeywords:\"function\",end:\"\\\\(\",excludeEnd:!0,illegal:\"\\\\S\",contains:[e.TITLE_MODE]}],illegal:/<\\//}}e.exports=n},\"7cff\":function(e,t){function n(e){const t=e.COMMENT(/^\\s*@?rem\\b/,/$/,{relevance:10}),n={className:\"symbol\",begin:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\",relevance:0};return{name:\"Batch file (DOS)\",aliases:[\"bat\",\"cmd\"],case_insensitive:!0,illegal:/\\/\\*/,keywords:{keyword:\"if else goto for in do call exit not exist errorlevel defined equ neq lss leq gtr geq\",built_in:\"prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux shift cd dir echo setlocal endlocal set pause copy append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shift sort start subst time title tree type ver verify vol ping net ipconfig taskkill xcopy ren del\"},contains:[{className:\"variable\",begin:/%%[^ ]|%[^ ]+?%|![^ ]+?!/},{className:\"function\",begin:n.begin,end:\"goto:eof\",contains:[e.inherit(e.TITLE_MODE,{begin:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),t]},{className:\"number\",begin:\"\\\\b\\\\d+\",relevance:0},t]}}e.exports=n},\"7d9d\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(e){return r(\"(\",e,\")*\")}function r(...e){const t=e.map(e=>n(e)).join(\"\");return t}function a(e){const t={keyword:\"abort acronym acronyms alias all and assign binary card diag display else eq file files for free ge gt if integer le loop lt maximizing minimizing model models ne negative no not option options or ord positive prod put putpage puttl repeat sameas semicont semiint smax smin solve sos1 sos2 sum system table then until using while xor yes\",literal:\"eps inf na\",built_in:\"abs arccos arcsin arctan arctan2 Beta betaReg binomial ceil centropy cos cosh cvPower div div0 eDist entropy errorf execSeed exp fact floor frac gamma gammaReg log logBeta logGamma log10 log2 mapVal max min mod ncpCM ncpF ncpVUpow ncpVUsin normal pi poly power randBinomial randLinear randTriangle round rPower sigmoid sign signPower sin sinh slexp sllog10 slrec sqexp sqlog10 sqr sqrec sqrt tan tanh trunc uniform uniformInt vcPower bool_and bool_eqv bool_imp bool_not bool_or bool_xor ifThen rel_eq rel_ge rel_gt rel_le rel_lt rel_ne gday gdow ghour gleap gmillisec gminute gmonth gsecond gyear jdate jnow jstart jtime errorLevel execError gamsRelease gamsVersion handleCollect handleDelete handleStatus handleSubmit heapFree heapLimit heapSize jobHandle jobKill jobStatus jobTerminate licenseLevel licenseStatus maxExecError sleep timeClose timeComp timeElapsed timeExec timeStart\"},n={className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0},a={className:\"symbol\",variants:[{begin:/=[lgenxc]=/},{begin:/\\$/}]},o={className:\"comment\",variants:[{begin:\"'\",end:\"'\"},{begin:'\"',end:'\"'}],illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},s={begin:\"/\",end:\"/\",keywords:t,contains:[o,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_NUMBER_MODE]},l=/[a-z0-9&#*=?@\\\\><:,()$[\\]_.{}!+%^-]+/,c={begin:/[a-z][a-z0-9_]*(\\([a-z0-9_, ]*\\))?[ \\t]+/,excludeBegin:!0,end:\"$\",endsWithParent:!0,contains:[o,s,{className:\"comment\",begin:r(l,i(r(/[ ]+/,l))),relevance:0}]};return{name:\"GAMS\",aliases:[\"gms\"],case_insensitive:!0,keywords:t,contains:[e.COMMENT(/^\\$ontext/,/^\\$offtext/),{className:\"meta\",begin:\"^\\\\$[a-z0-9]+\",end:\"$\",returnBegin:!0,contains:[{className:\"meta-keyword\",begin:\"^\\\\$[a-z0-9]+\"}]},e.COMMENT(\"^\\\\*\",\"$\"),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{beginKeywords:\"set sets parameter parameters variable variables scalar scalars equation equations\",end:\";\",contains:[e.COMMENT(\"^\\\\*\",\"$\"),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,s,c]},{beginKeywords:\"table\",end:\";\",returnBegin:!0,contains:[{beginKeywords:\"table\",end:\"$\",contains:[c]},e.COMMENT(\"^\\\\*\",\"$\"),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_NUMBER_MODE]},{className:\"function\",begin:/^[a-z][a-z0-9_,\\-+' ()$]+\\.{2}/,returnBegin:!0,contains:[{className:\"title\",begin:/^[a-z0-9_]+/},n,a]},e.C_NUMBER_MODE,a]}}e.exports=a},\"7e90\":function(e,t,n){var i=n(\"d9f6\"),r=n(\"e4ae\"),a=n(\"c3a1\");e.exports=n(\"8e60\")?Object.defineProperties:function(e,t){r(e);var n,o=a(t),s=o.length,l=0;while(s>l)i.f(e,n=o[l++],t[n]);return e}},\"7f20\":function(e,t,n){var i=n(\"86cc\").f,r=n(\"69a8\"),a=n(\"2b4c\")(\"toStringTag\");e.exports=function(e,t,n){e&&!r(e=n?e:e.prototype,a)&&i(e,a,{configurable:!0,value:t})}},\"7f4d\":function(e,t,n){\"use strict\";t.__esModule=!0,t.default=function(e){for(var t=1,n=arguments.length;t<n;t++){var i=arguments[t]||{};for(var r in i)if(i.hasOwnProperty(r)){var a=i[r];void 0!==a&&(e[r]=a)}}return e}},\"7f7f\":function(e,t,n){var i=n(\"86cc\").f,r=Function.prototype,a=/^\\s*function ([^ (]*)/,o=\"name\";o in r||n(\"9e1e\")&&i(r,o,{configurable:!0,get:function(){try{return(\"\"+this).match(a)[1]}catch(e){return\"\"}}})},\"7fc1\":function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=86)}({0:function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},4:function(e,t){e.exports=n(\"d010\")},86:function(e,t,n){\"use strict\";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-checkbox-group\",attrs:{role:\"group\",\"aria-label\":\"checkbox-group\"}},[e._t(\"default\")],2)},r=[];i._withStripped=!0;var a=n(4),o=n.n(a),s={name:\"ElCheckboxGroup\",componentName:\"ElCheckboxGroup\",mixins:[o.a],inject:{elFormItem:{default:\"\"}},props:{value:{},disabled:Boolean,min:Number,max:Number,size:String,fill:String,textColor:String},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},checkboxGroupSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size}},watch:{value:function(e){this.dispatch(\"ElFormItem\",\"el.form.change\",[e])}}},l=s,c=n(0),u=Object(c[\"a\"])(l,i,r,!1,null,null,null);u.options.__file=\"packages/checkbox/src/checkbox-group.vue\";var d=u.exports;d.install=function(e){e.component(d.name,d)};t[\"default\"]=d}})},8079:function(e,t,n){var i=n(\"7726\"),r=n(\"1991\").set,a=i.MutationObserver||i.WebKitMutationObserver,o=i.process,s=i.Promise,l=\"process\"==n(\"2d95\")(o);e.exports=function(){var e,t,n,c=function(){var i,r;l&&(i=o.domain)&&i.exit();while(e){r=e.fn,e=e.next;try{r()}catch(a){throw e?n():t=void 0,a}}t=void 0,i&&i.enter()};if(l)n=function(){o.nextTick(c)};else if(!a||i.navigator&&i.navigator.standalone)if(s&&s.resolve){var u=s.resolve(void 0);n=function(){u.then(c)}}else n=function(){r.call(i,c)};else{var d=!0,p=document.createTextNode(\"\");new a(c).observe(p,{characterData:!0}),n=function(){p.data=d=!d}}return function(i){var r={fn:i,next:void 0};t&&(t.next=r),e||(e=r,n()),t=r}}},\"80b3\":function(e,t){function n(e){return{name:\"Coq\",keywords:{keyword:\"_|0 as at cofix else end exists exists2 fix for forall fun if IF in let match mod Prop return Set then Type using where with Abort About Add Admit Admitted All Arguments Assumptions Axiom Back BackTo Backtrack Bind Blacklist Canonical Cd Check Class Classes Close Coercion Coercions CoFixpoint CoInductive Collection Combined Compute Conjecture Conjectures Constant constr Constraint Constructors Context Corollary CreateHintDb Cut Declare Defined Definition Delimit Dependencies Dependent Derive Drop eauto End Equality Eval Example Existential Existentials Existing Export exporting Extern Extract Extraction Fact Field Fields File Fixpoint Focus for From Function Functional Generalizable Global Goal Grab Grammar Graph Guarded Heap Hint HintDb Hints Hypotheses Hypothesis ident Identity If Immediate Implicit Import Include Inductive Infix Info Initial Inline Inspect Instance Instances Intro Intros Inversion Inversion_clear Language Left Lemma Let Libraries Library Load LoadPath Local Locate Ltac ML Mode Module Modules Monomorphic Morphism Next NoInline Notation Obligation Obligations Opaque Open Optimize Options Parameter Parameters Parametric Path Paths pattern Polymorphic Preterm Print Printing Program Projections Proof Proposition Pwd Qed Quit Rec Record Recursive Redirect Relation Remark Remove Require Reserved Reset Resolve Restart Rewrite Right Ring Rings Save Scheme Scope Scopes Script Search SearchAbout SearchHead SearchPattern SearchRewrite Section Separate Set Setoid Show Solve Sorted Step Strategies Strategy Structure SubClass Table Tables Tactic Term Test Theorem Time Timeout Transparent Type Typeclasses Types Undelimit Undo Unfocus Unfocused Unfold Universe Universes Unset Unshelve using Variable Variables Variant Verbose Visibility where with\",built_in:\"abstract absurd admit after apply as assert assumption at auto autorewrite autounfold before bottom btauto by case case_eq cbn cbv change classical_left classical_right clear clearbody cofix compare compute congruence constr_eq constructor contradict contradiction cut cutrewrite cycle decide decompose dependent destruct destruction dintuition discriminate discrR do double dtauto eapply eassumption eauto ecase econstructor edestruct ediscriminate eelim eexact eexists einduction einjection eleft elim elimtype enough equality erewrite eright esimplify_eq esplit evar exact exactly_once exfalso exists f_equal fail field field_simplify field_simplify_eq first firstorder fix fold fourier functional generalize generalizing gfail give_up has_evar hnf idtac in induction injection instantiate intro intro_pattern intros intuition inversion inversion_clear is_evar is_var lapply lazy left lia lra move native_compute nia nsatz omega once pattern pose progress proof psatz quote record red refine reflexivity remember rename repeat replace revert revgoals rewrite rewrite_strat right ring ring_simplify rtauto set setoid_reflexivity setoid_replace setoid_rewrite setoid_symmetry setoid_transitivity shelve shelve_unifiable simpl simple simplify_eq solve specialize split split_Rabs split_Rmult stepl stepr subst sum swap symmetry tactic tauto time timeout top transitivity trivial try tryif unfold unify until using vm_compute with\"},contains:[e.QUOTE_STRING_MODE,e.COMMENT(\"\\\\(\\\\*\",\"\\\\*\\\\)\"),e.C_NUMBER_MODE,{className:\"type\",excludeBegin:!0,begin:\"\\\\|\\\\s*\",end:\"\\\\w+\"},{begin:/[-=]>/}]}}e.exports=n},8122:function(e,t,n){\"use strict\";t.__esModule=!0,t.isEmpty=t.isEqual=t.arrayEquals=t.looseEqual=t.capitalize=t.kebabCase=t.autoprefixer=t.isFirefox=t.isEdge=t.isIE=t.coerceTruthyValueToArray=t.arrayFind=t.arrayFindIndex=t.escapeRegexpString=t.valueEquals=t.generateId=t.getValueByPath=void 0;var i=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e};t.noop=c,t.hasOwn=u,t.toObject=p,t.getPropByPath=h,t.rafThrottle=b,t.objToArray=v;var r=n(\"2b0e\"),a=s(r),o=n(\"a742\");function s(e){return e&&e.__esModule?e:{default:e}}var l=Object.prototype.hasOwnProperty;function c(){}function u(e,t){return l.call(e,t)}function d(e,t){for(var n in t)e[n]=t[n];return e}function p(e){for(var t={},n=0;n<e.length;n++)e[n]&&d(t,e[n]);return t}t.getValueByPath=function(e,t){t=t||\"\";for(var n=t.split(\".\"),i=e,r=null,a=0,o=n.length;a<o;a++){var s=n[a];if(!i)break;if(a===o-1){r=i[s];break}i=i[s]}return r};function h(e,t,n){var i=e;t=t.replace(/\\[(\\w+)\\]/g,\".$1\"),t=t.replace(/^\\./,\"\");for(var r=t.split(\".\"),a=0,o=r.length;a<o-1;++a){if(!i&&!n)break;var s=r[a];if(!(s in i)){if(n)throw new Error(\"please transfer a valid prop path to form item!\");break}i=i[s]}return{o:i,k:r[a],v:i?i[r[a]]:null}}t.generateId=function(){return Math.floor(1e4*Math.random())},t.valueEquals=function(e,t){if(e===t)return!0;if(!(e instanceof Array))return!1;if(!(t instanceof Array))return!1;if(e.length!==t.length)return!1;for(var n=0;n!==e.length;++n)if(e[n]!==t[n])return!1;return!0},t.escapeRegexpString=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return String(e).replace(/[|\\\\{}()[\\]^$+*?.]/g,\"\\\\$&\")};var f=t.arrayFindIndex=function(e,t){for(var n=0;n!==e.length;++n)if(t(e[n]))return n;return-1},_=(t.arrayFind=function(e,t){var n=f(e,t);return-1!==n?e[n]:void 0},t.coerceTruthyValueToArray=function(e){return Array.isArray(e)?e:e?[e]:[]},t.isIE=function(){return!a.default.prototype.$isServer&&!isNaN(Number(document.documentMode))},t.isEdge=function(){return!a.default.prototype.$isServer&&navigator.userAgent.indexOf(\"Edge\")>-1},t.isFirefox=function(){return!a.default.prototype.$isServer&&!!window.navigator.userAgent.match(/firefox/i)},t.autoprefixer=function(e){if(\"object\"!==(\"undefined\"===typeof e?\"undefined\":i(e)))return e;var t=[\"transform\",\"transition\",\"animation\"],n=[\"ms-\",\"webkit-\"];return t.forEach((function(t){var i=e[t];t&&i&&n.forEach((function(n){e[n+t]=i}))})),e},t.kebabCase=function(e){var t=/([^-])([A-Z])/g;return e.replace(t,\"$1-$2\").replace(t,\"$1-$2\").toLowerCase()},t.capitalize=function(e){return(0,o.isString)(e)?e.charAt(0).toUpperCase()+e.slice(1):e},t.looseEqual=function(e,t){var n=(0,o.isObject)(e),i=(0,o.isObject)(t);return n&&i?JSON.stringify(e)===JSON.stringify(t):!n&&!i&&String(e)===String(t)}),m=t.arrayEquals=function(e,t){if(e=e||[],t=t||[],e.length!==t.length)return!1;for(var n=0;n<e.length;n++)if(!_(e[n],t[n]))return!1;return!0},g=(t.isEqual=function(e,t){return Array.isArray(e)&&Array.isArray(t)?m(e,t):_(e,t)},t.isEmpty=function(e){if(null==e)return!0;if(\"boolean\"===typeof e)return!1;if(\"number\"===typeof e)return!e;if(e instanceof Error)return\"\"===e.message;switch(Object.prototype.toString.call(e)){case\"[object String]\":case\"[object Array]\":return!e.length;case\"[object File]\":case\"[object Map]\":case\"[object Set]\":return!e.size;case\"[object Object]\":return!Object.keys(e).length}return!1});function b(e){var t=!1;return function(){for(var n=this,i=arguments.length,r=Array(i),a=0;a<i;a++)r[a]=arguments[a];t||(t=!0,window.requestAnimationFrame((function(i){e.apply(n,r),t=!1})))}}function v(e){return Array.isArray(e)?e:g(e)?[]:[e]}},8261:function(e,t){function n(e){const t={className:\"string\",variants:[{begin:'\"',end:'\"',contains:[{begin:'\"\"',relevance:0}]}]},n={className:\"number\",begin:\"\\\\b(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)\",relevance:0},i=\"property parameter class classmethod clientmethod extends as break catch close continue do d|0 else elseif for goto halt hang h|0 if job j|0 kill k|0 lock l|0 merge new open quit q|0 read r|0 return set s|0 tcommit throw trollback try tstart use view while write w|0 xecute x|0 zkill znspace zn ztrap zwrite zw zzdump zzwrite print zbreak zinsert zload zprint zremove zsave zzprint mv mvcall mvcrt mvdim mvprint zquit zsync ascii\";return{name:\"Caché Object Script\",case_insensitive:!0,aliases:[\"cos\",\"cls\"],keywords:i,contains:[n,t,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"comment\",begin:/;/,end:\"$\",relevance:0},{className:\"built_in\",begin:/(?:\\$\\$?|\\.\\.)\\^?[a-zA-Z]+/},{className:\"built_in\",begin:/\\$\\$\\$[a-zA-Z]+/},{className:\"built_in\",begin:/%[a-z]+(?:\\.[a-z]+)*/},{className:\"symbol\",begin:/\\^%?[a-zA-Z][\\w]*/},{className:\"keyword\",begin:/##class|##super|#define|#dim/},{begin:/&sql\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,subLanguage:\"sql\"},{begin:/&(js|jscript|javascript)</,end:/>/,excludeBegin:!0,excludeEnd:!0,subLanguage:\"javascript\"},{begin:/&html<\\s*</,end:/>\\s*>/,subLanguage:\"xml\"}]}}e.exports=n},\"82cb\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(e){return r(\"(?=\",e,\")\")}function r(...e){const t=e.map(e=>n(e)).join(\"\");return t}function a(e){const t=\"([a-zA-Z_]\\\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?)\",n={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 __FILE__\",built_in:\"proc lambda\",literal:\"true false nil\"},a={className:\"doctag\",begin:\"@[A-Za-z]+\"},o={begin:\"#<\",end:\">\"},s=[e.COMMENT(\"#\",\"$\",{contains:[a]}),e.COMMENT(\"^=begin\",\"^=end\",{contains:[a],relevance:10}),e.COMMENT(\"^__END__\",\"\\\\n$\")],l={className:\"subst\",begin:/#\\{/,end:/\\}/,keywords:n},c={className:\"string\",contains:[e.BACKSLASH_ESCAPE,l],variants:[{begin:/'/,end:/'/},{begin:/\"/,end:/\"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\\(/,end:/\\)/},{begin:/%[qQwWx]?\\[/,end:/\\]/},{begin:/%[qQwWx]?\\{/,end:/\\}/},{begin:/%[qQwWx]?</,end:/>/},{begin:/%[qQwWx]?\\//,end:/\\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\\|/,end:/\\|/},{begin:/\\B\\?(\\\\\\d{1,3})/},{begin:/\\B\\?(\\\\x[A-Fa-f0-9]{1,2})/},{begin:/\\B\\?(\\\\u\\{?[A-Fa-f0-9]{1,6}\\}?)/},{begin:/\\B\\?(\\\\M-\\\\C-|\\\\M-\\\\c|\\\\c\\\\M-|\\\\M-|\\\\C-\\\\M-)[\\x20-\\x7e]/},{begin:/\\B\\?\\\\(c|C-)[\\x20-\\x7e]/},{begin:/\\B\\?\\\\?\\S/},{begin:/<<[-~]?'?(\\w+)\\n(?:[^\\n]*\\n)*?\\s*\\1\\b/,returnBegin:!0,contains:[{begin:/<<[-~]?'?/},e.END_SAME_AS_BEGIN({begin:/(\\w+)/,end:/(\\w+)/,contains:[e.BACKSLASH_ESCAPE,l]})]}]},u=\"[1-9](_?[0-9])*|0\",d=\"[0-9](_?[0-9])*\",p={className:\"number\",relevance:0,variants:[{begin:`\\\\b(${u})(\\\\.(${d}))?([eE][+-]?(${d})|r)?i?\\\\b`},{begin:\"\\\\b0[dD][0-9](_?[0-9])*r?i?\\\\b\"},{begin:\"\\\\b0[bB][0-1](_?[0-1])*r?i?\\\\b\"},{begin:\"\\\\b0[oO][0-7](_?[0-7])*r?i?\\\\b\"},{begin:\"\\\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\\\b\"},{begin:\"\\\\b0(_?[0-7])+r?i?\\\\b\"}]},h={className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",endsParent:!0,keywords:n},f=[c,{className:\"class\",beginKeywords:\"class module\",end:\"$|;\",illegal:/=/,contains:[e.inherit(e.TITLE_MODE,{begin:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|!)?\"}),{begin:\"<\\\\s*\",contains:[{begin:\"(\"+e.IDENT_RE+\"::)?\"+e.IDENT_RE,relevance:0}]}].concat(s)},{className:\"function\",begin:r(/def\\s*/,i(t+\"\\\\s*(\\\\(|;|$)\")),relevance:0,keywords:\"def\",end:\"$|;\",contains:[e.inherit(e.TITLE_MODE,{begin:t}),h].concat(s)},{begin:e.IDENT_RE+\"::\"},{className:\"symbol\",begin:e.UNDERSCORE_IDENT_RE+\"(!|\\\\?)?:\",relevance:0},{className:\"symbol\",begin:\":(?!\\\\s)\",contains:[c,{begin:t}],relevance:0},p,{className:\"variable\",begin:\"(\\\\$\\\\W)|((\\\\$|@@?)(\\\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])\"},{className:\"params\",begin:/\\|/,end:/\\|/,relevance:0,keywords:n},{begin:\"(\"+e.RE_STARTERS_RE+\"|unless)\\\\s*\",keywords:\"unless\",contains:[{className:\"regexp\",contains:[e.BACKSLASH_ESCAPE,l],illegal:/\\n/,variants:[{begin:\"/\",end:\"/[a-z]*\"},{begin:/%r\\{/,end:/\\}[a-z]*/},{begin:\"%r\\\\(\",end:\"\\\\)[a-z]*\"},{begin:\"%r!\",end:\"![a-z]*\"},{begin:\"%r\\\\[\",end:\"\\\\][a-z]*\"}]}].concat(o,s),relevance:0}].concat(o,s);l.contains=f,h.contains=f;const _=\"[>?]>\",m=\"[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>\",g=\"(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d+(p\\\\d+)?[^\\\\d][^>]+>\",b=[{begin:/^\\s*=>/,starts:{end:\"$\",contains:f}},{className:\"meta\",begin:\"^(\"+_+\"|\"+m+\"|\"+g+\")(?=[ ])\",starts:{end:\"$\",contains:f}}];return s.unshift(o),{name:\"Ruby\",aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],keywords:n,illegal:/\\/\\*/,contains:[e.SHEBANG({binary:\"ruby\"})].concat(b).concat(s).concat(f)}}e.exports=a},8378:function(e,t){var n=e.exports={version:\"2.6.12\"};\"number\"==typeof __e&&(__e=n)},\"83b9\":function(e,t,n){\"use strict\";var i=n(\"d925\"),r=n(\"e683\");e.exports=function(e,t){return e&&!i(t)?r(e,t):t}},8436:function(e,t){e.exports=function(){}},\"845f\":function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=99)}({0:function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},99:function(e,t,n){\"use strict\";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-button-group\"},[e._t(\"default\")],2)},r=[];i._withStripped=!0;var a={name:\"ElButtonGroup\"},o=a,s=n(0),l=Object(s[\"a\"])(o,i,r,!1,null,null,null);l.options.__file=\"packages/button/src/button-group.vue\";var c=l.exports;c.install=function(e){e.component(c.name,c)};t[\"default\"]=c}})},\"84f2\":function(e,t){e.exports={}},\"85e4\":function(e,t,n){},\"861d\":function(e,t){function n(e){return{name:\"Nim\",aliases:[\"nim\"],keywords:{keyword:\"addr and as asm bind block break case cast const continue converter discard distinct div do elif else end enum except export finally for from func generic if import in include interface is isnot iterator let macro method mixin mod nil not notin object of or out proc ptr raise ref return shl shr static template try tuple type using var when while with without xor yield\",literal:\"shared guarded stdin stdout stderr result true false\",built_in:\"int int8 int16 int32 int64 uint uint8 uint16 uint32 uint64 float float32 float64 bool char string cstring pointer expr stmt void auto any range array openarray varargs seq set clong culong cchar cschar cshort cint csize clonglong cfloat cdouble clongdouble cuchar cushort cuint culonglong cstringarray semistatic\"},contains:[{className:\"meta\",begin:/\\{\\./,end:/\\.\\}/,relevance:10},{className:\"string\",begin:/[a-zA-Z]\\w*\"/,end:/\"/,contains:[{begin:/\"\"/}]},{className:\"string\",begin:/([a-zA-Z]\\w*)?\"\"\"/,end:/\"\"\"/},e.QUOTE_STRING_MODE,{className:\"type\",begin:/\\b[A-Z]\\w+\\b/,relevance:0},{className:\"number\",relevance:0,variants:[{begin:/\\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/},{begin:/\\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/},{begin:/\\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/},{begin:/\\b(\\d[_\\d]*)('?[iIuUfF](8|16|32|64))?/}]},e.HASH_COMMENT_MODE]}}e.exports=n},8667:function(e,t){function n(e){var t=\"a-zA-Z_\\\\-!.?+*=<>&#'\",n=\"[\"+t+\"][\"+t+\"0-9/;:]*\",i={$pattern:n,\"builtin-name\":\"!= % %= & &= * ** **= *= *map + += , --build-class-- --import-- -= . / // //= /= < << <<= <= = > >= >> >>= @ @= ^ ^= abs accumulate all and any ap-compose ap-dotimes ap-each ap-each-while ap-filter ap-first ap-if ap-last ap-map ap-map-when ap-pipe ap-reduce ap-reject apply as-> ascii assert assoc bin break butlast callable calling-module-name car case cdr chain chr coll? combinations compile compress cond cons cons? continue count curry cut cycle dec def default-method defclass defmacro defmacro-alias defmacro/g! defmain defmethod defmulti defn defn-alias defnc defnr defreader defseq del delattr delete-route dict-comp dir disassemble dispatch-reader-macro distinct divmod do doto drop drop-last drop-while empty? end-sequence eval eval-and-compile eval-when-compile even? every? except exec filter first flatten float? fn fnc fnr for for* format fraction genexpr gensym get getattr global globals group-by hasattr hash hex id identity if if* if-not if-python2 import in inc input instance? integer integer-char? integer? interleave interpose is is-coll is-cons is-empty is-even is-every is-float is-instance is-integer is-integer-char is-iterable is-iterator is-keyword is-neg is-none is-not is-numeric is-odd is-pos is-string is-symbol is-zero isinstance islice issubclass iter iterable? iterate iterator? keyword keyword? lambda last len let lif lif-not list* list-comp locals loop macro-error macroexpand macroexpand-1 macroexpand-all map max merge-with method-decorator min multi-decorator multicombinations name neg? next none? nonlocal not not-in not? nth numeric? oct odd? open or ord partition permutations pos? post-route postwalk pow prewalk print product profile/calls profile/cpu put-route quasiquote quote raise range read read-str recursive-replace reduce remove repeat repeatedly repr require rest round route route-with-methods rwm second seq set-comp setattr setv some sorted string string? sum switch symbol? take take-nth take-while tee try unless unquote unquote-splicing vars walk when while with with* with-decorator with-gensyms xi xor yield yield-from zero? zip zip-longest | |= ~\"},r=\"[-+]?\\\\d+(\\\\.\\\\d+)?\",a={begin:n,relevance:0},o={className:\"number\",begin:r,relevance:0},s=e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),l=e.COMMENT(\";\",\"$\",{relevance:0}),c={className:\"literal\",begin:/\\b([Tt]rue|[Ff]alse|nil|None)\\b/},u={begin:\"[\\\\[\\\\{]\",end:\"[\\\\]\\\\}]\"},d={className:\"comment\",begin:\"\\\\^\"+n},p=e.COMMENT(\"\\\\^\\\\{\",\"\\\\}\"),h={className:\"symbol\",begin:\"[:]{1,2}\"+n},f={begin:\"\\\\(\",end:\"\\\\)\"},_={endsWithParent:!0,relevance:0},m={className:\"name\",relevance:0,keywords:i,begin:n,starts:_},g=[f,s,d,p,l,h,u,o,c,a];return f.contains=[e.COMMENT(\"comment\",\"\"),m,_],_.contains=g,u.contains=g,{name:\"Hy\",aliases:[\"hylang\"],illegal:/\\S/,contains:[e.SHEBANG(),f,s,d,p,l,h,u,o,c]}}e.exports=n},\"86cc\":function(e,t,n){var i=n(\"cb7c\"),r=n(\"c69a\"),a=n(\"6a99\"),o=Object.defineProperty;t.f=n(\"9e1e\")?Object.defineProperty:function(e,t,n){if(i(e),t=a(t,!0),i(n),r)try{return o(e,t,n)}catch(s){}if(\"get\"in n||\"set\"in n)throw TypeError(\"Accessors not supported!\");return\"value\"in n&&(e[t]=n.value),e}},8931:function(e,t){function n(e){const t=[\"functions\",\"model\",\"data\",\"parameters\",\"quantities\",\"transformed\",\"generated\"],n=[\"for\",\"in\",\"if\",\"else\",\"while\",\"break\",\"continue\",\"return\"],i=[\"print\",\"reject\",\"increment_log_prob|10\",\"integrate_ode|10\",\"integrate_ode_rk45|10\",\"integrate_ode_bdf|10\",\"algebra_solver\"],r=[\"int\",\"real\",\"vector\",\"ordered\",\"positive_ordered\",\"simplex\",\"unit_vector\",\"row_vector\",\"matrix\",\"cholesky_factor_corr|10\",\"cholesky_factor_cov|10\",\"corr_matrix|10\",\"cov_matrix|10\",\"void\"],a=[\"Phi\",\"Phi_approx\",\"abs\",\"acos\",\"acosh\",\"algebra_solver\",\"append_array\",\"append_col\",\"append_row\",\"asin\",\"asinh\",\"atan\",\"atan2\",\"atanh\",\"bernoulli_cdf\",\"bernoulli_lccdf\",\"bernoulli_lcdf\",\"bernoulli_logit_lpmf\",\"bernoulli_logit_rng\",\"bernoulli_lpmf\",\"bernoulli_rng\",\"bessel_first_kind\",\"bessel_second_kind\",\"beta_binomial_cdf\",\"beta_binomial_lccdf\",\"beta_binomial_lcdf\",\"beta_binomial_lpmf\",\"beta_binomial_rng\",\"beta_cdf\",\"beta_lccdf\",\"beta_lcdf\",\"beta_lpdf\",\"beta_rng\",\"binary_log_loss\",\"binomial_cdf\",\"binomial_coefficient_log\",\"binomial_lccdf\",\"binomial_lcdf\",\"binomial_logit_lpmf\",\"binomial_lpmf\",\"binomial_rng\",\"block\",\"categorical_logit_lpmf\",\"categorical_logit_rng\",\"categorical_lpmf\",\"categorical_rng\",\"cauchy_cdf\",\"cauchy_lccdf\",\"cauchy_lcdf\",\"cauchy_lpdf\",\"cauchy_rng\",\"cbrt\",\"ceil\",\"chi_square_cdf\",\"chi_square_lccdf\",\"chi_square_lcdf\",\"chi_square_lpdf\",\"chi_square_rng\",\"cholesky_decompose\",\"choose\",\"col\",\"cols\",\"columns_dot_product\",\"columns_dot_self\",\"cos\",\"cosh\",\"cov_exp_quad\",\"crossprod\",\"csr_extract_u\",\"csr_extract_v\",\"csr_extract_w\",\"csr_matrix_times_vector\",\"csr_to_dense_matrix\",\"cumulative_sum\",\"determinant\",\"diag_matrix\",\"diag_post_multiply\",\"diag_pre_multiply\",\"diagonal\",\"digamma\",\"dims\",\"dirichlet_lpdf\",\"dirichlet_rng\",\"distance\",\"dot_product\",\"dot_self\",\"double_exponential_cdf\",\"double_exponential_lccdf\",\"double_exponential_lcdf\",\"double_exponential_lpdf\",\"double_exponential_rng\",\"e\",\"eigenvalues_sym\",\"eigenvectors_sym\",\"erf\",\"erfc\",\"exp\",\"exp2\",\"exp_mod_normal_cdf\",\"exp_mod_normal_lccdf\",\"exp_mod_normal_lcdf\",\"exp_mod_normal_lpdf\",\"exp_mod_normal_rng\",\"expm1\",\"exponential_cdf\",\"exponential_lccdf\",\"exponential_lcdf\",\"exponential_lpdf\",\"exponential_rng\",\"fabs\",\"falling_factorial\",\"fdim\",\"floor\",\"fma\",\"fmax\",\"fmin\",\"fmod\",\"frechet_cdf\",\"frechet_lccdf\",\"frechet_lcdf\",\"frechet_lpdf\",\"frechet_rng\",\"gamma_cdf\",\"gamma_lccdf\",\"gamma_lcdf\",\"gamma_lpdf\",\"gamma_p\",\"gamma_q\",\"gamma_rng\",\"gaussian_dlm_obs_lpdf\",\"get_lp\",\"gumbel_cdf\",\"gumbel_lccdf\",\"gumbel_lcdf\",\"gumbel_lpdf\",\"gumbel_rng\",\"head\",\"hypergeometric_lpmf\",\"hypergeometric_rng\",\"hypot\",\"inc_beta\",\"int_step\",\"integrate_ode\",\"integrate_ode_bdf\",\"integrate_ode_rk45\",\"inv\",\"inv_Phi\",\"inv_chi_square_cdf\",\"inv_chi_square_lccdf\",\"inv_chi_square_lcdf\",\"inv_chi_square_lpdf\",\"inv_chi_square_rng\",\"inv_cloglog\",\"inv_gamma_cdf\",\"inv_gamma_lccdf\",\"inv_gamma_lcdf\",\"inv_gamma_lpdf\",\"inv_gamma_rng\",\"inv_logit\",\"inv_sqrt\",\"inv_square\",\"inv_wishart_lpdf\",\"inv_wishart_rng\",\"inverse\",\"inverse_spd\",\"is_inf\",\"is_nan\",\"lbeta\",\"lchoose\",\"lgamma\",\"lkj_corr_cholesky_lpdf\",\"lkj_corr_cholesky_rng\",\"lkj_corr_lpdf\",\"lkj_corr_rng\",\"lmgamma\",\"lmultiply\",\"log\",\"log10\",\"log1m\",\"log1m_exp\",\"log1m_inv_logit\",\"log1p\",\"log1p_exp\",\"log2\",\"log_determinant\",\"log_diff_exp\",\"log_falling_factorial\",\"log_inv_logit\",\"log_mix\",\"log_rising_factorial\",\"log_softmax\",\"log_sum_exp\",\"logistic_cdf\",\"logistic_lccdf\",\"logistic_lcdf\",\"logistic_lpdf\",\"logistic_rng\",\"logit\",\"lognormal_cdf\",\"lognormal_lccdf\",\"lognormal_lcdf\",\"lognormal_lpdf\",\"lognormal_rng\",\"machine_precision\",\"matrix_exp\",\"max\",\"mdivide_left_spd\",\"mdivide_left_tri_low\",\"mdivide_right_spd\",\"mdivide_right_tri_low\",\"mean\",\"min\",\"modified_bessel_first_kind\",\"modified_bessel_second_kind\",\"multi_gp_cholesky_lpdf\",\"multi_gp_lpdf\",\"multi_normal_cholesky_lpdf\",\"multi_normal_cholesky_rng\",\"multi_normal_lpdf\",\"multi_normal_prec_lpdf\",\"multi_normal_rng\",\"multi_student_t_lpdf\",\"multi_student_t_rng\",\"multinomial_lpmf\",\"multinomial_rng\",\"multiply_log\",\"multiply_lower_tri_self_transpose\",\"neg_binomial_2_cdf\",\"neg_binomial_2_lccdf\",\"neg_binomial_2_lcdf\",\"neg_binomial_2_log_lpmf\",\"neg_binomial_2_log_rng\",\"neg_binomial_2_lpmf\",\"neg_binomial_2_rng\",\"neg_binomial_cdf\",\"neg_binomial_lccdf\",\"neg_binomial_lcdf\",\"neg_binomial_lpmf\",\"neg_binomial_rng\",\"negative_infinity\",\"normal_cdf\",\"normal_lccdf\",\"normal_lcdf\",\"normal_lpdf\",\"normal_rng\",\"not_a_number\",\"num_elements\",\"ordered_logistic_lpmf\",\"ordered_logistic_rng\",\"owens_t\",\"pareto_cdf\",\"pareto_lccdf\",\"pareto_lcdf\",\"pareto_lpdf\",\"pareto_rng\",\"pareto_type_2_cdf\",\"pareto_type_2_lccdf\",\"pareto_type_2_lcdf\",\"pareto_type_2_lpdf\",\"pareto_type_2_rng\",\"pi\",\"poisson_cdf\",\"poisson_lccdf\",\"poisson_lcdf\",\"poisson_log_lpmf\",\"poisson_log_rng\",\"poisson_lpmf\",\"poisson_rng\",\"positive_infinity\",\"pow\",\"print\",\"prod\",\"qr_Q\",\"qr_R\",\"quad_form\",\"quad_form_diag\",\"quad_form_sym\",\"rank\",\"rayleigh_cdf\",\"rayleigh_lccdf\",\"rayleigh_lcdf\",\"rayleigh_lpdf\",\"rayleigh_rng\",\"reject\",\"rep_array\",\"rep_matrix\",\"rep_row_vector\",\"rep_vector\",\"rising_factorial\",\"round\",\"row\",\"rows\",\"rows_dot_product\",\"rows_dot_self\",\"scaled_inv_chi_square_cdf\",\"scaled_inv_chi_square_lccdf\",\"scaled_inv_chi_square_lcdf\",\"scaled_inv_chi_square_lpdf\",\"scaled_inv_chi_square_rng\",\"sd\",\"segment\",\"sin\",\"singular_values\",\"sinh\",\"size\",\"skew_normal_cdf\",\"skew_normal_lccdf\",\"skew_normal_lcdf\",\"skew_normal_lpdf\",\"skew_normal_rng\",\"softmax\",\"sort_asc\",\"sort_desc\",\"sort_indices_asc\",\"sort_indices_desc\",\"sqrt\",\"sqrt2\",\"square\",\"squared_distance\",\"step\",\"student_t_cdf\",\"student_t_lccdf\",\"student_t_lcdf\",\"student_t_lpdf\",\"student_t_rng\",\"sub_col\",\"sub_row\",\"sum\",\"tail\",\"tan\",\"tanh\",\"target\",\"tcrossprod\",\"tgamma\",\"to_array_1d\",\"to_array_2d\",\"to_matrix\",\"to_row_vector\",\"to_vector\",\"trace\",\"trace_gen_quad_form\",\"trace_quad_form\",\"trigamma\",\"trunc\",\"uniform_cdf\",\"uniform_lccdf\",\"uniform_lcdf\",\"uniform_lpdf\",\"uniform_rng\",\"variance\",\"von_mises_lpdf\",\"von_mises_rng\",\"weibull_cdf\",\"weibull_lccdf\",\"weibull_lcdf\",\"weibull_lpdf\",\"weibull_rng\",\"wiener_lpdf\",\"wishart_lpdf\",\"wishart_rng\"],o=[\"bernoulli\",\"bernoulli_logit\",\"beta\",\"beta_binomial\",\"binomial\",\"binomial_logit\",\"categorical\",\"categorical_logit\",\"cauchy\",\"chi_square\",\"dirichlet\",\"double_exponential\",\"exp_mod_normal\",\"exponential\",\"frechet\",\"gamma\",\"gaussian_dlm_obs\",\"gumbel\",\"hypergeometric\",\"inv_chi_square\",\"inv_gamma\",\"inv_wishart\",\"lkj_corr\",\"lkj_corr_cholesky\",\"logistic\",\"lognormal\",\"multi_gp\",\"multi_gp_cholesky\",\"multi_normal\",\"multi_normal_cholesky\",\"multi_normal_prec\",\"multi_student_t\",\"multinomial\",\"neg_binomial\",\"neg_binomial_2\",\"neg_binomial_2_log\",\"normal\",\"ordered_logistic\",\"pareto\",\"pareto_type_2\",\"poisson\",\"poisson_log\",\"rayleigh\",\"scaled_inv_chi_square\",\"skew_normal\",\"student_t\",\"uniform\",\"von_mises\",\"weibull\",\"wiener\",\"wishart\"];return{name:\"Stan\",aliases:[\"stanfuncs\"],keywords:{$pattern:e.IDENT_RE,title:t,keyword:n.concat(r).concat(i),built_in:a},contains:[e.C_LINE_COMMENT_MODE,e.COMMENT(/#/,/$/,{relevance:0,keywords:{\"meta-keyword\":\"include\"}}),e.COMMENT(/\\/\\*/,/\\*\\//,{relevance:0,contains:[{className:\"doctag\",begin:/@(return|param)/}]}),{begin:/<\\s*lower\\s*=/,keywords:\"lower\"},{begin:/[<,]\\s*upper\\s*=/,keywords:\"upper\"},{className:\"keyword\",begin:/\\btarget\\s*\\+=/,relevance:10},{begin:\"~\\\\s*(\"+e.IDENT_RE+\")\\\\s*\\\\(\",keywords:o},{className:\"number\",variants:[{begin:/\\b\\d+(?:\\.\\d*)?(?:[eE][+-]?\\d+)?/},{begin:/\\.\\d+(?:[eE][+-]?\\d+)?\\b/}],relevance:0},{className:\"string\",begin:'\"',end:'\"',relevance:0}]}}e.exports=n},\"89e7\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(...e){const t=\"(\"+e.map(e=>n(e)).join(\"|\")+\")\";return t}function a(e){const t={className:\"string\",begin:/\"(\"\"|[^/n])\"C\\b/},n={className:\"string\",begin:/\"/,end:/\"/,illegal:/\\n/,contains:[{begin:/\"\"/}]},a=/\\d{1,2}\\/\\d{1,2}\\/\\d{4}/,o=/\\d{4}-\\d{1,2}-\\d{1,2}/,s=/(\\d|1[012])(:\\d+){0,2} *(AM|PM)/,l=/\\d{1,2}(:\\d{1,2}){1,2}/,c={className:\"literal\",variants:[{begin:i(/# */,r(o,a),/ *#/)},{begin:i(/# */,l,/ *#/)},{begin:i(/# */,s,/ *#/)},{begin:i(/# */,r(o,a),/ +/,r(s,l),/ *#/)}]},u={className:\"number\",relevance:0,variants:[{begin:/\\b\\d[\\d_]*((\\.[\\d_]+(E[+-]?[\\d_]+)?)|(E[+-]?[\\d_]+))[RFD@!#]?/},{begin:/\\b\\d[\\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\\dA-F_]+((U?[SIL])|[%&])?/},{begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},d={className:\"label\",begin:/^\\w+:/},p=e.COMMENT(/'''/,/$/,{contains:[{className:\"doctag\",begin:/<\\/?/,end:/>/}]}),h=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\\t ]|^)REM(?=\\s)/}]}),f={className:\"meta\",begin:/[\\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\\b/,end:/$/,keywords:{\"meta-keyword\":\"const disable else elseif enable end externalsource if region then\"},contains:[h]};return{name:\"Visual Basic .NET\",aliases:[\"vb\"],case_insensitive:!0,classNameAliases:{label:\"symbol\"},keywords:{keyword:\"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield\",built_in:\"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort\",type:\"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort\",literal:\"true false nothing\"},illegal:\"//|\\\\{|\\\\}|endif|gosub|variant|wend|^\\\\$ \",contains:[t,n,c,u,d,p,h,f]}}e.exports=a},\"8a86\":function(e,t){function n(e){return{name:\"DNS Zone\",aliases:[\"bind\",\"zone\"],keywords:{keyword:\"IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT\"},contains:[e.COMMENT(\";\",\"$\",{relevance:0}),{className:\"meta\",begin:/^\\$(TTL|GENERATE|INCLUDE|ORIGIN)\\b/},{className:\"number\",begin:\"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:)))\\\\b\"},{className:\"number\",begin:\"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\b\"},e.inherit(e.NUMBER_MODE,{begin:/\\b\\d+[dhwm]?/})]}}e.exports=n},\"8aba\":function(e,t){function n(e){return{name:\"Oracle Rules Language\",keywords:{keyword:\"BILL_PERIOD BILL_START BILL_STOP RS_EFFECTIVE_START RS_EFFECTIVE_STOP RS_JURIS_CODE RS_OPCO_CODE INTDADDATTRIBUTE|5 INTDADDVMSG|5 INTDBLOCKOP|5 INTDBLOCKOPNA|5 INTDCLOSE|5 INTDCOUNT|5 INTDCOUNTSTATUSCODE|5 INTDCREATEMASK|5 INTDCREATEDAYMASK|5 INTDCREATEFACTORMASK|5 INTDCREATEHANDLE|5 INTDCREATEOVERRIDEDAYMASK|5 INTDCREATEOVERRIDEMASK|5 INTDCREATESTATUSCODEMASK|5 INTDCREATETOUPERIOD|5 INTDDELETE|5 INTDDIPTEST|5 INTDEXPORT|5 INTDGETERRORCODE|5 INTDGETERRORMESSAGE|5 INTDISEQUAL|5 INTDJOIN|5 INTDLOAD|5 INTDLOADACTUALCUT|5 INTDLOADDATES|5 INTDLOADHIST|5 INTDLOADLIST|5 INTDLOADLISTDATES|5 INTDLOADLISTENERGY|5 INTDLOADLISTHIST|5 INTDLOADRELATEDCHANNEL|5 INTDLOADSP|5 INTDLOADSTAGING|5 INTDLOADUOM|5 INTDLOADUOMDATES|5 INTDLOADUOMHIST|5 INTDLOADVERSION|5 INTDOPEN|5 INTDREADFIRST|5 INTDREADNEXT|5 INTDRECCOUNT|5 INTDRELEASE|5 INTDREPLACE|5 INTDROLLAVG|5 INTDROLLPEAK|5 INTDSCALAROP|5 INTDSCALE|5 INTDSETATTRIBUTE|5 INTDSETDSTPARTICIPANT|5 INTDSETSTRING|5 INTDSETVALUE|5 INTDSETVALUESTATUS|5 INTDSHIFTSTARTTIME|5 INTDSMOOTH|5 INTDSORT|5 INTDSPIKETEST|5 INTDSUBSET|5 INTDTOU|5 INTDTOURELEASE|5 INTDTOUVALUE|5 INTDUPDATESTATS|5 INTDVALUE|5 STDEV INTDDELETEEX|5 INTDLOADEXACTUAL|5 INTDLOADEXCUT|5 INTDLOADEXDATES|5 INTDLOADEX|5 INTDLOADEXRELATEDCHANNEL|5 INTDSAVEEX|5 MVLOAD|5 MVLOADACCT|5 MVLOADACCTDATES|5 MVLOADACCTHIST|5 MVLOADDATES|5 MVLOADHIST|5 MVLOADLIST|5 MVLOADLISTDATES|5 MVLOADLISTHIST|5 IF FOR NEXT DONE SELECT END CALL ABORT CLEAR CHANNEL FACTOR LIST NUMBER OVERRIDE SET WEEK DISTRIBUTIONNODE ELSE WHEN THEN OTHERWISE IENUM CSV INCLUDE LEAVE RIDER SAVE DELETE NOVALUE SECTION WARN SAVE_UPDATE DETERMINANT LABEL REPORT REVENUE EACH IN FROM TOTAL CHARGE BLOCK AND OR CSV_FILE RATE_CODE AUXILIARY_DEMAND UIDACCOUNT RS BILL_PERIOD_SELECT HOURS_PER_MONTH INTD_ERROR_STOP SEASON_SCHEDULE_NAME ACCOUNTFACTOR ARRAYUPPERBOUND CALLSTOREDPROC GETADOCONNECTION GETCONNECT GETDATASOURCE GETQUALIFIER GETUSERID HASVALUE LISTCOUNT LISTOP LISTUPDATE LISTVALUE PRORATEFACTOR RSPRORATE SETBINPATH SETDBMONITOR WQ_OPEN BILLINGHOURS DATE DATEFROMFLOAT DATETIMEFROMSTRING DATETIMETOSTRING DATETOFLOAT DAY DAYDIFF DAYNAME DBDATETIME HOUR MINUTE MONTH MONTHDIFF MONTHHOURS MONTHNAME ROUNDDATE SAMEWEEKDAYLASTYEAR SECOND WEEKDAY WEEKDIFF YEAR YEARDAY YEARSTR COMPSUM HISTCOUNT HISTMAX HISTMIN HISTMINNZ HISTVALUE MAXNRANGE MAXRANGE MINRANGE COMPIKVA COMPKVA COMPKVARFROMKQKW COMPLF IDATTR FLAG LF2KW LF2KWH MAXKW POWERFACTOR READING2USAGE AVGSEASON MAXSEASON MONTHLYMERGE SEASONVALUE SUMSEASON ACCTREADDATES ACCTTABLELOAD CONFIGADD CONFIGGET CREATEOBJECT CREATEREPORT EMAILCLIENT EXPBLKMDMUSAGE EXPMDMUSAGE EXPORT_USAGE FACTORINEFFECT GETUSERSPECIFIEDSTOP INEFFECT ISHOLIDAY RUNRATE SAVE_PROFILE SETREPORTTITLE USEREXIT WATFORRUNRATE TO TABLE ACOS ASIN ATAN ATAN2 BITAND CEIL COS COSECANT COSH COTANGENT DIVQUOT DIVREM EXP FABS FLOOR FMOD FREPM FREXPN LOG LOG10 MAX MAXN MIN MINNZ MODF POW ROUND ROUND2VALUE ROUNDINT SECANT SIN SINH SQROOT TAN TANH FLOAT2STRING FLOAT2STRINGNC INSTR LEFT LEN LTRIM MID RIGHT RTRIM STRING STRINGNC TOLOWER TOUPPER TRIM NUMDAYS READ_DATE STAGING\",built_in:\"IDENTIFIER OPTIONS XML_ELEMENT XML_OP XML_ELEMENT_OF DOMDOCCREATE DOMDOCLOADFILE DOMDOCLOADXML DOMDOCSAVEFILE DOMDOCGETROOT DOMDOCADDPI DOMNODEGETNAME DOMNODEGETTYPE DOMNODEGETVALUE DOMNODEGETCHILDCT DOMNODEGETFIRSTCHILD DOMNODEGETSIBLING DOMNODECREATECHILDELEMENT DOMNODESETATTRIBUTE DOMNODEGETCHILDELEMENTCT DOMNODEGETFIRSTCHILDELEMENT DOMNODEGETSIBLINGELEMENT DOMNODEGETATTRIBUTECT DOMNODEGETATTRIBUTEI DOMNODEGETATTRIBUTEBYNAME DOMNODEGETBYNAME\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,{className:\"literal\",variants:[{begin:\"#\\\\s+\",relevance:0},{begin:\"#[a-zA-Z .]+\"}]}]}}e.exports=n},\"8bbc\":function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=124)}({0:function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},124:function(e,t,n){\"use strict\";n.r(t);var i,r,a={name:\"ElTag\",props:{text:String,closable:Boolean,type:String,hit:Boolean,disableTransitions:Boolean,color:String,size:String,effect:{type:String,default:\"light\",validator:function(e){return-1!==[\"dark\",\"light\",\"plain\"].indexOf(e)}}},methods:{handleClose:function(e){e.stopPropagation(),this.$emit(\"close\",e)},handleClick:function(e){this.$emit(\"click\",e)}},computed:{tagSize:function(){return this.size||(this.$ELEMENT||{}).size}},render:function(e){var t=this.type,n=this.tagSize,i=this.hit,r=this.effect,a=[\"el-tag\",t?\"el-tag--\"+t:\"\",n?\"el-tag--\"+n:\"\",r?\"el-tag--\"+r:\"\",i&&\"is-hit\"],o=e(\"span\",{class:a,style:{backgroundColor:this.color},on:{click:this.handleClick}},[this.$slots.default,this.closable&&e(\"i\",{class:\"el-tag__close el-icon-close\",on:{click:this.handleClose}})]);return this.disableTransitions?o:e(\"transition\",{attrs:{name:\"el-zoom-in-center\"}},[o])}},o=a,s=n(0),l=Object(s[\"a\"])(o,i,r,!1,null,null,null);l.options.__file=\"packages/tag/src/tag.vue\";var c=l.exports;c.install=function(e){e.component(c.name,c)};t[\"default\"]=c}})},\"8c4f\":function(e,t,n){\"use strict\";\n/*!\n  * vue-router v3.4.9\n  * (c) 2020 Evan You\n  * @license MIT\n  */function i(e,t){0}function r(e,t){for(var n in t)e[n]=t[n];return e}var a=/[!'()*]/g,o=function(e){return\"%\"+e.charCodeAt(0).toString(16)},s=/%2C/g,l=function(e){return encodeURIComponent(e).replace(a,o).replace(s,\",\")};function c(e){try{return decodeURIComponent(e)}catch(t){0}return e}function u(e,t,n){void 0===t&&(t={});var i,r=n||p;try{i=r(e||\"\")}catch(s){i={}}for(var a in t){var o=t[a];i[a]=Array.isArray(o)?o.map(d):d(o)}return i}var d=function(e){return null==e||\"object\"===typeof e?e:String(e)};function p(e){var t={};return e=e.trim().replace(/^(\\?|#|&)/,\"\"),e?(e.split(\"&\").forEach((function(e){var n=e.replace(/\\+/g,\" \").split(\"=\"),i=c(n.shift()),r=n.length>0?c(n.join(\"=\")):null;void 0===t[i]?t[i]=r:Array.isArray(t[i])?t[i].push(r):t[i]=[t[i],r]})),t):t}function h(e){var t=e?Object.keys(e).map((function(t){var n=e[t];if(void 0===n)return\"\";if(null===n)return l(t);if(Array.isArray(n)){var i=[];return n.forEach((function(e){void 0!==e&&(null===e?i.push(l(t)):i.push(l(t)+\"=\"+l(e)))})),i.join(\"&\")}return l(t)+\"=\"+l(n)})).filter((function(e){return e.length>0})).join(\"&\"):null;return t?\"?\"+t:\"\"}var f=/\\/?$/;function _(e,t,n,i){var r=i&&i.options.stringifyQuery,a=t.query||{};try{a=m(a)}catch(s){}var o={name:t.name||e&&e.name,meta:e&&e.meta||{},path:t.path||\"/\",hash:t.hash||\"\",query:a,params:t.params||{},fullPath:v(t,r),matched:e?b(e):[]};return n&&(o.redirectedFrom=v(n,r)),Object.freeze(o)}function m(e){if(Array.isArray(e))return e.map(m);if(e&&\"object\"===typeof e){var t={};for(var n in e)t[n]=m(e[n]);return t}return e}var g=_(null,{path:\"/\"});function b(e){var t=[];while(e)t.unshift(e),e=e.parent;return t}function v(e,t){var n=e.path,i=e.query;void 0===i&&(i={});var r=e.hash;void 0===r&&(r=\"\");var a=t||h;return(n||\"/\")+a(i)+r}function E(e,t){return t===g?e===t:!!t&&(e.path&&t.path?e.path.replace(f,\"\")===t.path.replace(f,\"\")&&e.hash===t.hash&&y(e.query,t.query):!(!e.name||!t.name)&&(e.name===t.name&&e.hash===t.hash&&y(e.query,t.query)&&y(e.params,t.params)))}function y(e,t){if(void 0===e&&(e={}),void 0===t&&(t={}),!e||!t)return e===t;var n=Object.keys(e).sort(),i=Object.keys(t).sort();return n.length===i.length&&n.every((function(n,r){var a=e[n],o=i[r];if(o!==n)return!1;var s=t[n];return null==a||null==s?a===s:\"object\"===typeof a&&\"object\"===typeof s?y(a,s):String(a)===String(s)}))}function S(e,t){return 0===e.path.replace(f,\"/\").indexOf(t.path.replace(f,\"/\"))&&(!t.hash||e.hash===t.hash)&&C(e.query,t.query)}function C(e,t){for(var n in t)if(!(n in e))return!1;return!0}function T(e){for(var t=0;t<e.matched.length;t++){var n=e.matched[t];for(var i in n.instances){var r=n.instances[i],a=n.enteredCbs[i];if(r&&a){delete n.enteredCbs[i];for(var o=0;o<a.length;o++)r._isBeingDestroyed||a[o](r)}}}}var x={name:\"RouterView\",functional:!0,props:{name:{type:String,default:\"default\"}},render:function(e,t){var n=t.props,i=t.children,a=t.parent,o=t.data;o.routerView=!0;var s=a.$createElement,l=n.name,c=a.$route,u=a._routerViewCache||(a._routerViewCache={}),d=0,p=!1;while(a&&a._routerRoot!==a){var h=a.$vnode?a.$vnode.data:{};h.routerView&&d++,h.keepAlive&&a._directInactive&&a._inactive&&(p=!0),a=a.$parent}if(o.routerViewDepth=d,p){var f=u[l],_=f&&f.component;return _?(f.configProps&&w(_,o,f.route,f.configProps),s(_,o,i)):s()}var m=c.matched[d],g=m&&m.components[l];if(!m||!g)return u[l]=null,s();u[l]={component:g},o.registerRouteInstance=function(e,t){var n=m.instances[l];(t&&n!==e||!t&&n===e)&&(m.instances[l]=t)},(o.hook||(o.hook={})).prepatch=function(e,t){m.instances[l]=t.componentInstance},o.hook.init=function(e){e.data.keepAlive&&e.componentInstance&&e.componentInstance!==m.instances[l]&&(m.instances[l]=e.componentInstance),T(c)};var b=m.props&&m.props[l];return b&&(r(u[l],{route:c,configProps:b}),w(g,o,c,b)),s(g,o,i)}};function w(e,t,n,i){var a=t.props=O(n,i);if(a){a=t.props=r({},a);var o=t.attrs=t.attrs||{};for(var s in a)e.props&&s in e.props||(o[s]=a[s],delete a[s])}}function O(e,t){switch(typeof t){case\"undefined\":return;case\"object\":return t;case\"function\":return t(e);case\"boolean\":return t?e.params:void 0;default:0}}function N(e,t,n){var i=e.charAt(0);if(\"/\"===i)return e;if(\"?\"===i||\"#\"===i)return t+e;var r=t.split(\"/\");n&&r[r.length-1]||r.pop();for(var a=e.replace(/^\\//,\"\").split(\"/\"),o=0;o<a.length;o++){var s=a[o];\"..\"===s?r.pop():\".\"!==s&&r.push(s)}return\"\"!==r[0]&&r.unshift(\"\"),r.join(\"/\")}function R(e){var t=\"\",n=\"\",i=e.indexOf(\"#\");i>=0&&(t=e.slice(i),e=e.slice(0,i));var r=e.indexOf(\"?\");return r>=0&&(n=e.slice(r+1),e=e.slice(0,r)),{path:e,query:n,hash:t}}function k(e){return e.replace(/\\/\\//g,\"/\")}var A=Array.isArray||function(e){return\"[object Array]\"==Object.prototype.toString.call(e)},D=X,I=B,M=U,L=G,P=Q,F=new RegExp([\"(\\\\\\\\.)\",\"([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))\"].join(\"|\"),\"g\");function B(e,t){var n,i=[],r=0,a=0,o=\"\",s=t&&t.delimiter||\"/\";while(null!=(n=F.exec(e))){var l=n[0],c=n[1],u=n.index;if(o+=e.slice(a,u),a=u+l.length,c)o+=c[1];else{var d=e[a],p=n[2],h=n[3],f=n[4],_=n[5],m=n[6],g=n[7];o&&(i.push(o),o=\"\");var b=null!=p&&null!=d&&d!==p,v=\"+\"===m||\"*\"===m,E=\"?\"===m||\"*\"===m,y=n[2]||s,S=f||_;i.push({name:h||r++,prefix:p||\"\",delimiter:y,optional:E,repeat:v,partial:b,asterisk:!!g,pattern:S?H(S):g?\".*\":\"[^\"+q(y)+\"]+?\"})}}return a<e.length&&(o+=e.substr(a)),o&&i.push(o),i}function U(e,t){return G(B(e,t),t)}function $(e){return encodeURI(e).replace(/[\\/?#]/g,(function(e){return\"%\"+e.charCodeAt(0).toString(16).toUpperCase()}))}function j(e){return encodeURI(e).replace(/[?#]/g,(function(e){return\"%\"+e.charCodeAt(0).toString(16).toUpperCase()}))}function G(e,t){for(var n=new Array(e.length),i=0;i<e.length;i++)\"object\"===typeof e[i]&&(n[i]=new RegExp(\"^(?:\"+e[i].pattern+\")$\",z(t)));return function(t,i){for(var r=\"\",a=t||{},o=i||{},s=o.pretty?$:encodeURIComponent,l=0;l<e.length;l++){var c=e[l];if(\"string\"!==typeof c){var u,d=a[c.name];if(null==d){if(c.optional){c.partial&&(r+=c.prefix);continue}throw new TypeError('Expected \"'+c.name+'\" to be defined')}if(A(d)){if(!c.repeat)throw new TypeError('Expected \"'+c.name+'\" to not repeat, but received `'+JSON.stringify(d)+\"`\");if(0===d.length){if(c.optional)continue;throw new TypeError('Expected \"'+c.name+'\" to not be empty')}for(var p=0;p<d.length;p++){if(u=s(d[p]),!n[l].test(u))throw new TypeError('Expected all \"'+c.name+'\" to match \"'+c.pattern+'\", but received `'+JSON.stringify(u)+\"`\");r+=(0===p?c.prefix:c.delimiter)+u}}else{if(u=c.asterisk?j(d):s(d),!n[l].test(u))throw new TypeError('Expected \"'+c.name+'\" to match \"'+c.pattern+'\", but received \"'+u+'\"');r+=c.prefix+u}}else r+=c}return r}}function q(e){return e.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g,\"\\\\$1\")}function H(e){return e.replace(/([=!:$\\/()])/g,\"\\\\$1\")}function V(e,t){return e.keys=t,e}function z(e){return e&&e.sensitive?\"\":\"i\"}function Y(e,t){var n=e.source.match(/\\((?!\\?)/g);if(n)for(var i=0;i<n.length;i++)t.push({name:i,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return V(e,t)}function W(e,t,n){for(var i=[],r=0;r<e.length;r++)i.push(X(e[r],t,n).source);var a=new RegExp(\"(?:\"+i.join(\"|\")+\")\",z(n));return V(a,t)}function K(e,t,n){return Q(B(e,n),t,n)}function Q(e,t,n){A(t)||(n=t||n,t=[]),n=n||{};for(var i=n.strict,r=!1!==n.end,a=\"\",o=0;o<e.length;o++){var s=e[o];if(\"string\"===typeof s)a+=q(s);else{var l=q(s.prefix),c=\"(?:\"+s.pattern+\")\";t.push(s),s.repeat&&(c+=\"(?:\"+l+c+\")*\"),c=s.optional?s.partial?l+\"(\"+c+\")?\":\"(?:\"+l+\"(\"+c+\"))?\":l+\"(\"+c+\")\",a+=c}}var u=q(n.delimiter||\"/\"),d=a.slice(-u.length)===u;return i||(a=(d?a.slice(0,-u.length):a)+\"(?:\"+u+\"(?=$))?\"),a+=r?\"$\":i&&d?\"\":\"(?=\"+u+\"|$)\",V(new RegExp(\"^\"+a,z(n)),t)}function X(e,t,n){return A(t)||(n=t||n,t=[]),n=n||{},e instanceof RegExp?Y(e,t):A(e)?W(e,t,n):K(e,t,n)}D.parse=I,D.compile=M,D.tokensToFunction=L,D.tokensToRegExp=P;var Z=Object.create(null);function J(e,t,n){t=t||{};try{var i=Z[e]||(Z[e]=D.compile(e));return\"string\"===typeof t.pathMatch&&(t[0]=t.pathMatch),i(t,{pretty:!0})}catch(r){return\"\"}finally{delete t[0]}}function ee(e,t,n,i){var a=\"string\"===typeof e?{path:e}:e;if(a._normalized)return a;if(a.name){a=r({},e);var o=a.params;return o&&\"object\"===typeof o&&(a.params=r({},o)),a}if(!a.path&&a.params&&t){a=r({},a),a._normalized=!0;var s=r(r({},t.params),a.params);if(t.name)a.name=t.name,a.params=s;else if(t.matched.length){var l=t.matched[t.matched.length-1].path;a.path=J(l,s,\"path \"+t.path)}else 0;return a}var c=R(a.path||\"\"),d=t&&t.path||\"/\",p=c.path?N(c.path,d,n||a.append):d,h=u(c.query,a.query,i&&i.options.parseQuery),f=a.hash||c.hash;return f&&\"#\"!==f.charAt(0)&&(f=\"#\"+f),{_normalized:!0,path:p,query:h,hash:f}}var te,ne=[String,Object],ie=[String,Array],re=function(){},ae={name:\"RouterLink\",props:{to:{type:ne,required:!0},tag:{type:String,default:\"a\"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:{type:String,default:\"page\"},event:{type:ie,default:\"click\"}},render:function(e){var t=this,n=this.$router,i=this.$route,a=n.resolve(this.to,i,this.append),o=a.location,s=a.route,l=a.href,c={},u=n.options.linkActiveClass,d=n.options.linkExactActiveClass,p=null==u?\"router-link-active\":u,h=null==d?\"router-link-exact-active\":d,f=null==this.activeClass?p:this.activeClass,m=null==this.exactActiveClass?h:this.exactActiveClass,g=s.redirectedFrom?_(null,ee(s.redirectedFrom),null,n):s;c[m]=E(i,g),c[f]=this.exact?c[m]:S(i,g);var b=c[m]?this.ariaCurrentValue:null,v=function(e){oe(e)&&(t.replace?n.replace(o,re):n.push(o,re))},y={click:oe};Array.isArray(this.event)?this.event.forEach((function(e){y[e]=v})):y[this.event]=v;var C={class:c},T=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:l,route:s,navigate:v,isActive:c[f],isExactActive:c[m]});if(T){if(1===T.length)return T[0];if(T.length>1||!T.length)return 0===T.length?e():e(\"span\",{},T)}if(\"a\"===this.tag)C.on=y,C.attrs={href:l,\"aria-current\":b};else{var x=se(this.$slots.default);if(x){x.isStatic=!1;var w=x.data=r({},x.data);for(var O in w.on=w.on||{},w.on){var N=w.on[O];O in y&&(w.on[O]=Array.isArray(N)?N:[N])}for(var R in y)R in w.on?w.on[R].push(y[R]):w.on[R]=v;var k=x.data.attrs=r({},x.data.attrs);k.href=l,k[\"aria-current\"]=b}else C.on=y}return e(this.tag,C,this.$slots.default)}};function oe(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&(void 0===e.button||0===e.button)){if(e.currentTarget&&e.currentTarget.getAttribute){var t=e.currentTarget.getAttribute(\"target\");if(/\\b_blank\\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function se(e){if(e)for(var t,n=0;n<e.length;n++){if(t=e[n],\"a\"===t.tag)return t;if(t.children&&(t=se(t.children)))return t}}function le(e){if(!le.installed||te!==e){le.installed=!0,te=e;var t=function(e){return void 0!==e},n=function(e,n){var i=e.$options._parentVnode;t(i)&&t(i=i.data)&&t(i=i.registerRouteInstance)&&i(e,n)};e.mixin({beforeCreate:function(){t(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),e.util.defineReactive(this,\"_route\",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,n(this,this)},destroyed:function(){n(this)}}),Object.defineProperty(e.prototype,\"$router\",{get:function(){return this._routerRoot._router}}),Object.defineProperty(e.prototype,\"$route\",{get:function(){return this._routerRoot._route}}),e.component(\"RouterView\",x),e.component(\"RouterLink\",ae);var i=e.config.optionMergeStrategies;i.beforeRouteEnter=i.beforeRouteLeave=i.beforeRouteUpdate=i.created}}var ce=\"undefined\"!==typeof window;function ue(e,t,n,i){var r=t||[],a=n||Object.create(null),o=i||Object.create(null);e.forEach((function(e){de(r,a,o,e)}));for(var s=0,l=r.length;s<l;s++)\"*\"===r[s]&&(r.push(r.splice(s,1)[0]),l--,s--);return{pathList:r,pathMap:a,nameMap:o}}function de(e,t,n,i,r,a){var o=i.path,s=i.name;var l=i.pathToRegexpOptions||{},c=he(o,r,l.strict);\"boolean\"===typeof i.caseSensitive&&(l.sensitive=i.caseSensitive);var u={path:c,regex:pe(c,l),components:i.components||{default:i.component},instances:{},enteredCbs:{},name:s,parent:r,matchAs:a,redirect:i.redirect,beforeEnter:i.beforeEnter,meta:i.meta||{},props:null==i.props?{}:i.components?i.props:{default:i.props}};if(i.children&&i.children.forEach((function(i){var r=a?k(a+\"/\"+i.path):void 0;de(e,t,n,i,u,r)})),t[u.path]||(e.push(u.path),t[u.path]=u),void 0!==i.alias)for(var d=Array.isArray(i.alias)?i.alias:[i.alias],p=0;p<d.length;++p){var h=d[p];0;var f={path:h,children:i.children};de(e,t,n,f,r,u.path||\"/\")}s&&(n[s]||(n[s]=u))}function pe(e,t){var n=D(e,[],t);return n}function he(e,t,n){return n||(e=e.replace(/\\/$/,\"\")),\"/\"===e[0]||null==t?e:k(t.path+\"/\"+e)}function fe(e,t){var n=ue(e),i=n.pathList,r=n.pathMap,a=n.nameMap;function o(e){ue(e,i,r,a)}function s(e,n,o){var s=ee(e,n,!1,t),l=s.name;if(l){var c=a[l];if(!c)return u(null,s);var d=c.regex.keys.filter((function(e){return!e.optional})).map((function(e){return e.name}));if(\"object\"!==typeof s.params&&(s.params={}),n&&\"object\"===typeof n.params)for(var p in n.params)!(p in s.params)&&d.indexOf(p)>-1&&(s.params[p]=n.params[p]);return s.path=J(c.path,s.params,'named route \"'+l+'\"'),u(c,s,o)}if(s.path){s.params={};for(var h=0;h<i.length;h++){var f=i[h],_=r[f];if(_e(_.regex,s.path,s.params))return u(_,s,o)}}return u(null,s)}function l(e,n){var i=e.redirect,r=\"function\"===typeof i?i(_(e,n,null,t)):i;if(\"string\"===typeof r&&(r={path:r}),!r||\"object\"!==typeof r)return u(null,n);var o=r,l=o.name,c=o.path,d=n.query,p=n.hash,h=n.params;if(d=o.hasOwnProperty(\"query\")?o.query:d,p=o.hasOwnProperty(\"hash\")?o.hash:p,h=o.hasOwnProperty(\"params\")?o.params:h,l){a[l];return s({_normalized:!0,name:l,query:d,hash:p,params:h},void 0,n)}if(c){var f=me(c,e),m=J(f,h,'redirect route with path \"'+f+'\"');return s({_normalized:!0,path:m,query:d,hash:p},void 0,n)}return u(null,n)}function c(e,t,n){var i=J(n,t.params,'aliased route with path \"'+n+'\"'),r=s({_normalized:!0,path:i});if(r){var a=r.matched,o=a[a.length-1];return t.params=r.params,u(o,t)}return u(null,t)}function u(e,n,i){return e&&e.redirect?l(e,i||n):e&&e.matchAs?c(e,n,e.matchAs):_(e,n,i,t)}return{match:s,addRoutes:o}}function _e(e,t,n){var i=t.match(e);if(!i)return!1;if(!n)return!0;for(var r=1,a=i.length;r<a;++r){var o=e.keys[r-1];o&&(n[o.name||\"pathMatch\"]=\"string\"===typeof i[r]?c(i[r]):i[r])}return!0}function me(e,t){return N(e,t.parent?t.parent.path:\"/\",!0)}var ge=ce&&window.performance&&window.performance.now?window.performance:Date;function be(){return ge.now().toFixed(3)}var ve=be();function Ee(){return ve}function ye(e){return ve=e}var Se=Object.create(null);function Ce(){\"scrollRestoration\"in window.history&&(window.history.scrollRestoration=\"manual\");var e=window.location.protocol+\"//\"+window.location.host,t=window.location.href.replace(e,\"\"),n=r({},window.history.state);return n.key=Ee(),window.history.replaceState(n,\"\",t),window.addEventListener(\"popstate\",we),function(){window.removeEventListener(\"popstate\",we)}}function Te(e,t,n,i){if(e.app){var r=e.options.scrollBehavior;r&&e.app.$nextTick((function(){var a=Oe(),o=r.call(e,t,n,i?a:null);o&&(\"function\"===typeof o.then?o.then((function(e){Me(e,a)})).catch((function(e){0})):Me(o,a))}))}}function xe(){var e=Ee();e&&(Se[e]={x:window.pageXOffset,y:window.pageYOffset})}function we(e){xe(),e.state&&e.state.key&&ye(e.state.key)}function Oe(){var e=Ee();if(e)return Se[e]}function Ne(e,t){var n=document.documentElement,i=n.getBoundingClientRect(),r=e.getBoundingClientRect();return{x:r.left-i.left-t.x,y:r.top-i.top-t.y}}function Re(e){return De(e.x)||De(e.y)}function ke(e){return{x:De(e.x)?e.x:window.pageXOffset,y:De(e.y)?e.y:window.pageYOffset}}function Ae(e){return{x:De(e.x)?e.x:0,y:De(e.y)?e.y:0}}function De(e){return\"number\"===typeof e}var Ie=/^#\\d/;function Me(e,t){var n=\"object\"===typeof e;if(n&&\"string\"===typeof e.selector){var i=Ie.test(e.selector)?document.getElementById(e.selector.slice(1)):document.querySelector(e.selector);if(i){var r=e.offset&&\"object\"===typeof e.offset?e.offset:{};r=Ae(r),t=Ne(i,r)}else Re(e)&&(t=ke(e))}else n&&Re(e)&&(t=ke(e));t&&(\"scrollBehavior\"in document.documentElement.style?window.scrollTo({left:t.x,top:t.y,behavior:e.behavior}):window.scrollTo(t.x,t.y))}var Le=ce&&function(){var e=window.navigator.userAgent;return(-1===e.indexOf(\"Android 2.\")&&-1===e.indexOf(\"Android 4.0\")||-1===e.indexOf(\"Mobile Safari\")||-1!==e.indexOf(\"Chrome\")||-1!==e.indexOf(\"Windows Phone\"))&&(window.history&&\"function\"===typeof window.history.pushState)}();function Pe(e,t){xe();var n=window.history;try{if(t){var i=r({},n.state);i.key=Ee(),n.replaceState(i,\"\",e)}else n.pushState({key:ye(be())},\"\",e)}catch(a){window.location[t?\"replace\":\"assign\"](e)}}function Fe(e){Pe(e,!0)}function Be(e,t,n){var i=function(r){r>=e.length?n():e[r]?t(e[r],(function(){i(r+1)})):i(r+1)};i(0)}var Ue={redirected:2,aborted:4,cancelled:8,duplicated:16};function $e(e,t){return He(e,t,Ue.redirected,'Redirected when going from \"'+e.fullPath+'\" to \"'+ze(t)+'\" via a navigation guard.')}function je(e,t){var n=He(e,t,Ue.duplicated,'Avoided redundant navigation to current location: \"'+e.fullPath+'\".');return n.name=\"NavigationDuplicated\",n}function Ge(e,t){return He(e,t,Ue.cancelled,'Navigation cancelled from \"'+e.fullPath+'\" to \"'+t.fullPath+'\" with a new navigation.')}function qe(e,t){return He(e,t,Ue.aborted,'Navigation aborted from \"'+e.fullPath+'\" to \"'+t.fullPath+'\" via a navigation guard.')}function He(e,t,n,i){var r=new Error(i);return r._isRouter=!0,r.from=e,r.to=t,r.type=n,r}var Ve=[\"params\",\"query\",\"hash\"];function ze(e){if(\"string\"===typeof e)return e;if(\"path\"in e)return e.path;var t={};return Ve.forEach((function(n){n in e&&(t[n]=e[n])})),JSON.stringify(t,null,2)}function Ye(e){return Object.prototype.toString.call(e).indexOf(\"Error\")>-1}function We(e,t){return Ye(e)&&e._isRouter&&(null==t||e.type===t)}function Ke(e){return function(t,n,i){var r=!1,a=0,o=null;Qe(e,(function(e,t,n,s){if(\"function\"===typeof e&&void 0===e.cid){r=!0,a++;var l,c=et((function(t){Je(t)&&(t=t.default),e.resolved=\"function\"===typeof t?t:te.extend(t),n.components[s]=t,a--,a<=0&&i()})),u=et((function(e){var t=\"Failed to resolve async component \"+s+\": \"+e;o||(o=Ye(e)?e:new Error(t),i(o))}));try{l=e(c,u)}catch(p){u(p)}if(l)if(\"function\"===typeof l.then)l.then(c,u);else{var d=l.component;d&&\"function\"===typeof d.then&&d.then(c,u)}}})),r||i()}}function Qe(e,t){return Xe(e.map((function(e){return Object.keys(e.components).map((function(n){return t(e.components[n],e.instances[n],e,n)}))})))}function Xe(e){return Array.prototype.concat.apply([],e)}var Ze=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.toStringTag;function Je(e){return e.__esModule||Ze&&\"Module\"===e[Symbol.toStringTag]}function et(e){var t=!1;return function(){var n=[],i=arguments.length;while(i--)n[i]=arguments[i];if(!t)return t=!0,e.apply(this,n)}}var tt=function(e,t){this.router=e,this.base=nt(t),this.current=g,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function nt(e){if(!e)if(ce){var t=document.querySelector(\"base\");e=t&&t.getAttribute(\"href\")||\"/\",e=e.replace(/^https?:\\/\\/[^\\/]+/,\"\")}else e=\"/\";return\"/\"!==e.charAt(0)&&(e=\"/\"+e),e.replace(/\\/$/,\"\")}function it(e,t){var n,i=Math.max(e.length,t.length);for(n=0;n<i;n++)if(e[n]!==t[n])break;return{updated:t.slice(0,n),activated:t.slice(n),deactivated:e.slice(n)}}function rt(e,t,n,i){var r=Qe(e,(function(e,i,r,a){var o=at(e,t);if(o)return Array.isArray(o)?o.map((function(e){return n(e,i,r,a)})):n(o,i,r,a)}));return Xe(i?r.reverse():r)}function at(e,t){return\"function\"!==typeof e&&(e=te.extend(e)),e.options[t]}function ot(e){return rt(e,\"beforeRouteLeave\",lt,!0)}function st(e){return rt(e,\"beforeRouteUpdate\",lt)}function lt(e,t){if(t)return function(){return e.apply(t,arguments)}}function ct(e){return rt(e,\"beforeRouteEnter\",(function(e,t,n,i){return ut(e,n,i)}))}function ut(e,t,n){return function(i,r,a){return e(i,r,(function(e){\"function\"===typeof e&&(t.enteredCbs[n]||(t.enteredCbs[n]=[]),t.enteredCbs[n].push(e)),a(e)}))}}tt.prototype.listen=function(e){this.cb=e},tt.prototype.onReady=function(e,t){this.ready?e():(this.readyCbs.push(e),t&&this.readyErrorCbs.push(t))},tt.prototype.onError=function(e){this.errorCbs.push(e)},tt.prototype.transitionTo=function(e,t,n){var i,r=this;try{i=this.router.match(e,this.current)}catch(o){throw this.errorCbs.forEach((function(e){e(o)})),o}var a=this.current;this.confirmTransition(i,(function(){r.updateRoute(i),t&&t(i),r.ensureURL(),r.router.afterHooks.forEach((function(e){e&&e(i,a)})),r.ready||(r.ready=!0,r.readyCbs.forEach((function(e){e(i)})))}),(function(e){n&&n(e),e&&!r.ready&&(We(e,Ue.redirected)&&a===g||(r.ready=!0,r.readyErrorCbs.forEach((function(t){t(e)}))))}))},tt.prototype.confirmTransition=function(e,t,n){var r=this,a=this.current;this.pending=e;var o=function(e){!We(e)&&Ye(e)&&(r.errorCbs.length?r.errorCbs.forEach((function(t){t(e)})):i(!1,\"uncaught error during route navigation:\")),n&&n(e)},s=e.matched.length-1,l=a.matched.length-1;if(E(e,a)&&s===l&&e.matched[s]===a.matched[l])return this.ensureURL(),o(je(a,e));var c=it(this.current.matched,e.matched),u=c.updated,d=c.deactivated,p=c.activated,h=[].concat(ot(d),this.router.beforeHooks,st(u),p.map((function(e){return e.beforeEnter})),Ke(p)),f=function(t,n){if(r.pending!==e)return o(Ge(a,e));try{t(e,a,(function(t){!1===t?(r.ensureURL(!0),o(qe(a,e))):Ye(t)?(r.ensureURL(!0),o(t)):\"string\"===typeof t||\"object\"===typeof t&&(\"string\"===typeof t.path||\"string\"===typeof t.name)?(o($e(a,e)),\"object\"===typeof t&&t.replace?r.replace(t):r.push(t)):n(t)}))}catch(i){o(i)}};Be(h,f,(function(){var n=ct(p),i=n.concat(r.router.resolveHooks);Be(i,f,(function(){if(r.pending!==e)return o(Ge(a,e));r.pending=null,t(e),r.router.app&&r.router.app.$nextTick((function(){T(e)}))}))}))},tt.prototype.updateRoute=function(e){this.current=e,this.cb&&this.cb(e)},tt.prototype.setupListeners=function(){},tt.prototype.teardown=function(){this.listeners.forEach((function(e){e()})),this.listeners=[],this.current=g,this.pending=null};var dt=function(e){function t(t,n){e.call(this,t,n),this._startLocation=pt(this.base)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.setupListeners=function(){var e=this;if(!(this.listeners.length>0)){var t=this.router,n=t.options.scrollBehavior,i=Le&&n;i&&this.listeners.push(Ce());var r=function(){var n=e.current,r=pt(e.base);e.current===g&&r===e._startLocation||e.transitionTo(r,(function(e){i&&Te(t,e,n,!0)}))};window.addEventListener(\"popstate\",r),this.listeners.push((function(){window.removeEventListener(\"popstate\",r)}))}},t.prototype.go=function(e){window.history.go(e)},t.prototype.push=function(e,t,n){var i=this,r=this,a=r.current;this.transitionTo(e,(function(e){Pe(k(i.base+e.fullPath)),Te(i.router,e,a,!1),t&&t(e)}),n)},t.prototype.replace=function(e,t,n){var i=this,r=this,a=r.current;this.transitionTo(e,(function(e){Fe(k(i.base+e.fullPath)),Te(i.router,e,a,!1),t&&t(e)}),n)},t.prototype.ensureURL=function(e){if(pt(this.base)!==this.current.fullPath){var t=k(this.base+this.current.fullPath);e?Pe(t):Fe(t)}},t.prototype.getCurrentLocation=function(){return pt(this.base)},t}(tt);function pt(e){var t=window.location.pathname;return e&&0===t.toLowerCase().indexOf(e.toLowerCase())&&(t=t.slice(e.length)),(t||\"/\")+window.location.search+window.location.hash}var ht=function(e){function t(t,n,i){e.call(this,t,n),i&&ft(this.base)||_t()}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.setupListeners=function(){var e=this;if(!(this.listeners.length>0)){var t=this.router,n=t.options.scrollBehavior,i=Le&&n;i&&this.listeners.push(Ce());var r=function(){var t=e.current;_t()&&e.transitionTo(mt(),(function(n){i&&Te(e.router,n,t,!0),Le||vt(n.fullPath)}))},a=Le?\"popstate\":\"hashchange\";window.addEventListener(a,r),this.listeners.push((function(){window.removeEventListener(a,r)}))}},t.prototype.push=function(e,t,n){var i=this,r=this,a=r.current;this.transitionTo(e,(function(e){bt(e.fullPath),Te(i.router,e,a,!1),t&&t(e)}),n)},t.prototype.replace=function(e,t,n){var i=this,r=this,a=r.current;this.transitionTo(e,(function(e){vt(e.fullPath),Te(i.router,e,a,!1),t&&t(e)}),n)},t.prototype.go=function(e){window.history.go(e)},t.prototype.ensureURL=function(e){var t=this.current.fullPath;mt()!==t&&(e?bt(t):vt(t))},t.prototype.getCurrentLocation=function(){return mt()},t}(tt);function ft(e){var t=pt(e);if(!/^\\/#/.test(t))return window.location.replace(k(e+\"/#\"+t)),!0}function _t(){var e=mt();return\"/\"===e.charAt(0)||(vt(\"/\"+e),!1)}function mt(){var e=window.location.href,t=e.indexOf(\"#\");return t<0?\"\":(e=e.slice(t+1),e)}function gt(e){var t=window.location.href,n=t.indexOf(\"#\"),i=n>=0?t.slice(0,n):t;return i+\"#\"+e}function bt(e){Le?Pe(gt(e)):window.location.hash=e}function vt(e){Le?Fe(gt(e)):window.location.replace(gt(e))}var Et=function(e){function t(t,n){e.call(this,t,n),this.stack=[],this.index=-1}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.push=function(e,t,n){var i=this;this.transitionTo(e,(function(e){i.stack=i.stack.slice(0,i.index+1).concat(e),i.index++,t&&t(e)}),n)},t.prototype.replace=function(e,t,n){var i=this;this.transitionTo(e,(function(e){i.stack=i.stack.slice(0,i.index).concat(e),t&&t(e)}),n)},t.prototype.go=function(e){var t=this,n=this.index+e;if(!(n<0||n>=this.stack.length)){var i=this.stack[n];this.confirmTransition(i,(function(){var e=t.current;t.index=n,t.updateRoute(i),t.router.afterHooks.forEach((function(t){t&&t(i,e)}))}),(function(e){We(e,Ue.duplicated)&&(t.index=n)}))}},t.prototype.getCurrentLocation=function(){var e=this.stack[this.stack.length-1];return e?e.fullPath:\"/\"},t.prototype.ensureURL=function(){},t}(tt),yt=function(e){void 0===e&&(e={}),this.app=null,this.apps=[],this.options=e,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=fe(e.routes||[],this);var t=e.mode||\"hash\";switch(this.fallback=\"history\"===t&&!Le&&!1!==e.fallback,this.fallback&&(t=\"hash\"),ce||(t=\"abstract\"),this.mode=t,t){case\"history\":this.history=new dt(this,e.base);break;case\"hash\":this.history=new ht(this,e.base,this.fallback);break;case\"abstract\":this.history=new Et(this,e.base);break;default:0}},St={currentRoute:{configurable:!0}};function Ct(e,t){return e.push(t),function(){var n=e.indexOf(t);n>-1&&e.splice(n,1)}}function Tt(e,t,n){var i=\"hash\"===n?\"#\"+t:t;return e?k(e+\"/\"+i):i}yt.prototype.match=function(e,t,n){return this.matcher.match(e,t,n)},St.currentRoute.get=function(){return this.history&&this.history.current},yt.prototype.init=function(e){var t=this;if(this.apps.push(e),e.$once(\"hook:destroyed\",(function(){var n=t.apps.indexOf(e);n>-1&&t.apps.splice(n,1),t.app===e&&(t.app=t.apps[0]||null),t.app||t.history.teardown()})),!this.app){this.app=e;var n=this.history;if(n instanceof dt||n instanceof ht){var i=function(e){var i=n.current,r=t.options.scrollBehavior,a=Le&&r;a&&\"fullPath\"in e&&Te(t,e,i,!1)},r=function(e){n.setupListeners(),i(e)};n.transitionTo(n.getCurrentLocation(),r,r)}n.listen((function(e){t.apps.forEach((function(t){t._route=e}))}))}},yt.prototype.beforeEach=function(e){return Ct(this.beforeHooks,e)},yt.prototype.beforeResolve=function(e){return Ct(this.resolveHooks,e)},yt.prototype.afterEach=function(e){return Ct(this.afterHooks,e)},yt.prototype.onReady=function(e,t){this.history.onReady(e,t)},yt.prototype.onError=function(e){this.history.onError(e)},yt.prototype.push=function(e,t,n){var i=this;if(!t&&!n&&\"undefined\"!==typeof Promise)return new Promise((function(t,n){i.history.push(e,t,n)}));this.history.push(e,t,n)},yt.prototype.replace=function(e,t,n){var i=this;if(!t&&!n&&\"undefined\"!==typeof Promise)return new Promise((function(t,n){i.history.replace(e,t,n)}));this.history.replace(e,t,n)},yt.prototype.go=function(e){this.history.go(e)},yt.prototype.back=function(){this.go(-1)},yt.prototype.forward=function(){this.go(1)},yt.prototype.getMatchedComponents=function(e){var t=e?e.matched?e:this.resolve(e).route:this.currentRoute;return t?[].concat.apply([],t.matched.map((function(e){return Object.keys(e.components).map((function(t){return e.components[t]}))}))):[]},yt.prototype.resolve=function(e,t,n){t=t||this.history.current;var i=ee(e,t,n,this),r=this.match(i,t),a=r.redirectedFrom||r.fullPath,o=this.history.base,s=Tt(o,a,this.mode);return{location:i,route:r,href:s,normalizedTo:i,resolved:r}},yt.prototype.addRoutes=function(e){this.matcher.addRoutes(e),this.history.current!==g&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(yt.prototype,St),yt.install=le,yt.version=\"3.4.9\",yt.isNavigationFailure=We,yt.NavigationFailureType=Ue,ce&&window.Vue&&window.Vue.use(yt),t[\"a\"]=yt},\"8ca5\":function(e,t){function n(e){var t=\"('|\\\\.')+\",n={relevance:0,contains:[{begin:t}]};return{name:\"Matlab\",keywords:{keyword:\"arguments break case catch classdef continue else elseif end enumeration events for function global if methods otherwise parfor persistent properties return spmd switch try while\",built_in:\"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i|0 inf nan isnan isinf isfinite j|0 why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson max min nanmax nanmin mean nanmean type table readtable writetable sortrows sort figure plot plot3 scatter scatter3 cellfun legend intersect ismember procrustes hold num2cell \"},illegal:'(//|\"|#|/\\\\*|\\\\s+/\\\\w+)',contains:[{className:\"function\",beginKeywords:\"function\",end:\"$\",contains:[e.UNDERSCORE_TITLE_MODE,{className:\"params\",variants:[{begin:\"\\\\(\",end:\"\\\\)\"},{begin:\"\\\\[\",end:\"\\\\]\"}]}]},{className:\"built_in\",begin:/true|false/,relevance:0,starts:n},{begin:\"[a-zA-Z][a-zA-Z_0-9]*\"+t,relevance:0},{className:\"number\",begin:e.C_NUMBER_RE,relevance:0,starts:n},{className:\"string\",begin:\"'\",end:\"'\",contains:[e.BACKSLASH_ESCAPE,{begin:\"''\"}]},{begin:/\\]|\\}|\\)/,relevance:0,starts:n},{className:\"string\",begin:'\"',end:'\"',contains:[e.BACKSLASH_ESCAPE,{begin:'\"\"'}],starts:n},e.COMMENT(\"^\\\\s*%\\\\{\\\\s*$\",\"^\\\\s*%\\\\}\\\\s*$\"),e.COMMENT(\"%\",\"$\")]}}e.exports=n},\"8d4f\":function(e,t){function n(e){const t=\"[a-z][a-zA-Z0-9_]*\",n={className:\"string\",begin:\"\\\\$.{1}\"},i={className:\"symbol\",begin:\"#\"+e.UNDERSCORE_IDENT_RE};return{name:\"Smalltalk\",aliases:[\"st\"],keywords:\"self super nil true false thisContext\",contains:[e.COMMENT('\"','\"'),e.APOS_STRING_MODE,{className:\"type\",begin:\"\\\\b[A-Z][A-Za-z0-9_]*\",relevance:0},{begin:t+\":\",relevance:0},e.C_NUMBER_MODE,i,n,{begin:\"\\\\|[ ]*\"+t+\"([ ]+\"+t+\")*[ ]*\\\\|\",returnBegin:!0,end:/\\|/,illegal:/\\S/,contains:[{begin:\"(\\\\|[ ]*)?\"+t}]},{begin:\"#\\\\(\",end:\"\\\\)\",contains:[e.APOS_STRING_MODE,n,e.C_NUMBER_MODE,i]}]}}e.exports=n},\"8d6d\":function(e,t){function n(e){const t={$pattern:e.UNDERSCORE_IDENT_RE,keyword:\"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__\",built_in:\"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring\",literal:\"false null true\"},n=\"(0|[1-9][\\\\d_]*)\",i=\"(0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d)\",r=\"0[bB][01_]+\",a=\"([\\\\da-fA-F][\\\\da-fA-F_]*|_[\\\\da-fA-F][\\\\da-fA-F_]*)\",o=\"0[xX]\"+a,s=\"([eE][+-]?\"+i+\")\",l=\"(\"+i+\"(\\\\.\\\\d*|\"+s+\")|\\\\d+\\\\.\"+i+\"|\\\\.\"+n+s+\"?)\",c=\"(0[xX](\"+a+\"\\\\.\"+a+\"|\\\\.?\"+a+\")[pP][+-]?\"+i+\")\",u=\"(\"+n+\"|\"+r+\"|\"+o+\")\",d=\"(\"+c+\"|\"+l+\")\",p=\"\\\\\\\\(['\\\"\\\\?\\\\\\\\abfnrtv]|u[\\\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\\\dA-Fa-f]{2}|U[\\\\dA-Fa-f]{8})|&[a-zA-Z\\\\d]{2,};\",h={className:\"number\",begin:\"\\\\b\"+u+\"(L|u|U|Lu|LU|uL|UL)?\",relevance:0},f={className:\"number\",begin:\"\\\\b(\"+d+\"([fF]|L|i|[fF]i|Li)?|\"+u+\"(i|[fF]i|Li))\",relevance:0},_={className:\"string\",begin:\"'(\"+p+\"|.)\",end:\"'\",illegal:\".\"},m={begin:p,relevance:0},g={className:\"string\",begin:'\"',contains:[m],end:'\"[cwd]?'},b={className:\"string\",begin:'[rq]\"',end:'\"[cwd]?',relevance:5},v={className:\"string\",begin:\"`\",end:\"`[cwd]?\"},E={className:\"string\",begin:'x\"[\\\\da-fA-F\\\\s\\\\n\\\\r]*\"[cwd]?',relevance:10},y={className:\"string\",begin:'q\"\\\\{',end:'\\\\}\"'},S={className:\"meta\",begin:\"^#!\",end:\"$\",relevance:5},C={className:\"meta\",begin:\"#(line)\",end:\"$\",relevance:5},T={className:\"keyword\",begin:\"@[a-zA-Z_][a-zA-Z_\\\\d]*\"},x=e.COMMENT(\"\\\\/\\\\+\",\"\\\\+\\\\/\",{contains:[\"self\"],relevance:10});return{name:\"D\",keywords:t,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,x,E,g,b,v,y,f,h,_,S,C,T]}}e.exports=n},\"8dcb\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(e){return a(\"(?=\",e,\")\")}function r(e){return a(\"(\",e,\")?\")}function a(...e){const t=e.map(e=>n(e)).join(\"\");return t}function o(...e){const t=\"(\"+e.map(e=>n(e)).join(\"|\")+\")\";return t}function s(e){const t=a(/[A-Z_]/,r(/[A-Z0-9_.-]*:/),/[A-Z0-9_.-]*/),n=/[A-Za-z0-9._:-]+/,s={className:\"symbol\",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},l={begin:/\\s/,contains:[{className:\"meta-keyword\",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\\n/}]},c=e.inherit(l,{begin:/\\(/,end:/\\)/}),u=e.inherit(e.APOS_STRING_MODE,{className:\"meta-string\"}),d=e.inherit(e.QUOTE_STRING_MODE,{className:\"meta-string\"}),p={endsWithParent:!0,illegal:/</,relevance:0,contains:[{className:\"attr\",begin:n,relevance:0},{begin:/=\\s*/,relevance:0,contains:[{className:\"string\",endsParent:!0,variants:[{begin:/\"/,end:/\"/,contains:[s]},{begin:/'/,end:/'/,contains:[s]},{begin:/[^\\s\"'=<>`]+/}]}]}]};return{name:\"HTML, XML\",aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xjb\",\"xsd\",\"xsl\",\"plist\",\"wsf\",\"svg\"],case_insensitive:!0,contains:[{className:\"meta\",begin:/<![a-z]/,end:/>/,relevance:10,contains:[l,d,u,c,{begin:/\\[/,end:/\\]/,contains:[{className:\"meta\",begin:/<![a-z]/,end:/>/,contains:[l,c,d,u]}]}]},e.COMMENT(/<!--/,/-->/,{relevance:10}),{begin:/<!\\[CDATA\\[/,end:/\\]\\]>/,relevance:10},s,{className:\"meta\",begin:/<\\?xml/,end:/\\?>/,relevance:10},{className:\"tag\",begin:/<style(?=\\s|>)/,end:/>/,keywords:{name:\"style\"},contains:[p],starts:{end:/<\\/style>/,returnEnd:!0,subLanguage:[\"css\",\"xml\"]}},{className:\"tag\",begin:/<script(?=\\s|>)/,end:/>/,keywords:{name:\"script\"},contains:[p],starts:{end:/<\\/script>/,returnEnd:!0,subLanguage:[\"javascript\",\"handlebars\",\"xml\"]}},{className:\"tag\",begin:/<>|<\\/>/},{className:\"tag\",begin:a(/</,i(a(t,o(/\\/>/,/>/,/\\s/)))),end:/\\/?>/,contains:[{className:\"name\",begin:t,relevance:0,starts:p}]},{className:\"tag\",begin:a(/<\\//,i(a(t,/>/))),contains:[{className:\"name\",begin:t,relevance:0},{begin:/>/,relevance:0}]}]}}e.exports=s},\"8df4\":function(e,t,n){\"use strict\";var i=n(\"7a77\");function r(e){if(\"function\"!==typeof e)throw new TypeError(\"executor must be a function.\");var t;this.promise=new Promise((function(e){t=e}));var n=this;e((function(e){n.reason||(n.reason=new i(e),t(n.reason))}))}r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e,t=new r((function(t){e=t}));return{token:t,cancel:e}},e.exports=r},\"8e60\":function(e,t,n){e.exports=!n(\"294c\")((function(){return 7!=Object.defineProperty({},\"a\",{get:function(){return 7}}).a}))},\"8eb7\":function(e,t){var n,i,r,a,o,s,l,c,u,d,p,h,f,_,m,g=!1;function b(){if(!g){g=!0;var e=navigator.userAgent,t=/(?:MSIE.(\\d+\\.\\d+))|(?:(?:Firefox|GranParadiso|Iceweasel).(\\d+\\.\\d+))|(?:Opera(?:.+Version.|.)(\\d+\\.\\d+))|(?:AppleWebKit.(\\d+(?:\\.\\d+)?))|(?:Trident\\/\\d+\\.\\d+.*rv:(\\d+\\.\\d+))/.exec(e),b=/(Mac OS X)|(Windows)|(Linux)/.exec(e);if(h=/\\b(iPhone|iP[ao]d)/.exec(e),f=/\\b(iP[ao]d)/.exec(e),d=/Android/i.exec(e),_=/FBAN\\/\\w+;/i.exec(e),m=/Mobile/i.exec(e),p=!!/Win64/.exec(e),t){n=t[1]?parseFloat(t[1]):t[5]?parseFloat(t[5]):NaN,n&&document&&document.documentMode&&(n=document.documentMode);var v=/(?:Trident\\/(\\d+.\\d+))/.exec(e);s=v?parseFloat(v[1])+4:n,i=t[2]?parseFloat(t[2]):NaN,r=t[3]?parseFloat(t[3]):NaN,a=t[4]?parseFloat(t[4]):NaN,a?(t=/(?:Chrome\\/(\\d+\\.\\d+))/.exec(e),o=t&&t[1]?parseFloat(t[1]):NaN):o=NaN}else n=i=r=o=a=NaN;if(b){if(b[1]){var E=/(?:Mac OS X (\\d+(?:[._]\\d+)?))/.exec(e);l=!E||parseFloat(E[1].replace(\"_\",\".\"))}else l=!1;c=!!b[2],u=!!b[3]}else l=c=u=!1}}var v={ie:function(){return b()||n},ieCompatibilityMode:function(){return b()||s>n},ie64:function(){return v.ie()&&p},firefox:function(){return b()||i},opera:function(){return b()||r},webkit:function(){return b()||a},safari:function(){return v.webkit()},chrome:function(){return b()||o},windows:function(){return b()||c},osx:function(){return b()||l},linux:function(){return b()||u},iphone:function(){return b()||h},mobile:function(){return b()||h||f||d||m},nativeApp:function(){return b()||_},android:function(){return b()||d},ipad:function(){return b()||f}};e.exports=v},\"8f60\":function(e,t,n){\"use strict\";var i=n(\"a159\"),r=n(\"aebd\"),a=n(\"45f2\"),o={};n(\"35e8\")(o,n(\"5168\")(\"iterator\"),(function(){return this})),e.exports=function(e,t,n){e.prototype=i(o,{next:r(1,n)}),a(e,t+\" Iterator\")}},9003:function(e,t,n){var i=n(\"6b4c\");e.exports=Array.isArray||function(e){return\"Array\"==i(e)}},9138:function(e,t,n){e.exports=n(\"35e8\")},\"919d\":function(e,t){function n(e){return{name:\"Golo\",keywords:{keyword:\"println readln print import module function local return let var while for foreach times in case when match with break continue augment augmentation each find filter reduce if then else otherwise try catch finally raise throw orIfNull DynamicObject|10 DynamicVariable struct Observable map set vector list array\",literal:\"true false null\"},contains:[e.HASH_COMMENT_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,{className:\"meta\",begin:\"@[A-Za-z]+\"}]}}e.exports=n},\"92fa\":function(e,t){var n=/^(attrs|props|on|nativeOn|class|style|hook)$/;function i(e,t){return function(){e&&e.apply(this,arguments),t&&t.apply(this,arguments)}}e.exports=function(e){return e.reduce((function(e,t){var r,a,o,s,l;for(o in t)if(r=e[o],a=t[o],r&&n.test(o))if(\"class\"===o&&(\"string\"===typeof r&&(l=r,e[o]=r={},r[l]=!0),\"string\"===typeof a&&(l=a,t[o]=a={},a[l]=!0)),\"on\"===o||\"nativeOn\"===o||\"hook\"===o)for(s in a)r[s]=i(r[s],a[s]);else if(Array.isArray(r))e[o]=r.concat(a);else if(Array.isArray(a))e[o]=[r].concat(a);else for(s in a)r[s]=a[s];else e[o]=t[o];return e}),{})}},9306:function(e,t,n){\"use strict\";var i=n(\"8e60\"),r=n(\"c3a1\"),a=n(\"9aa9\"),o=n(\"355d\"),s=n(\"241e\"),l=n(\"335c\"),c=Object.assign;e.exports=!c||n(\"294c\")((function(){var e={},t={},n=Symbol(),i=\"abcdefghijklmnopqrst\";return e[n]=7,i.split(\"\").forEach((function(e){t[e]=e})),7!=c({},e)[n]||Object.keys(c({},t)).join(\"\")!=i}))?function(e,t){var n=s(e),c=arguments.length,u=1,d=a.f,p=o.f;while(c>u){var h,f=l(arguments[u++]),_=d?r(f).concat(d(f)):r(f),m=_.length,g=0;while(m>g)h=_[g++],i&&!p.call(f,h)||(n[h]=f[h])}return n}:c},\"944e\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(e){return r(\"(\",e,\")?\")}function r(...e){const t=e.map(e=>n(e)).join(\"\");return t}function a(e){const t=e.COMMENT(\"//\",\"$\",{contains:[{begin:/\\\\\\n/}]}),n=\"decltype\\\\(auto\\\\)\",r=\"[a-zA-Z_]\\\\w*::\",a=\"<[^<>]+>\",o=\"(\"+n+\"|\"+i(r)+\"[a-zA-Z_]\\\\w*\"+i(a)+\")\",s={className:\"keyword\",begin:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},l=\"\\\\\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\\\S)\",c={className:\"string\",variants:[{begin:'(u8?|U|L)?\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},{begin:\"(u8?|U|L)?'(\"+l+\"|.)\",end:\"'\",illegal:\".\"},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R\"([^()\\\\ ]{0,16})\\(/,end:/\\)([^()\\\\ ]{0,16})\"/})]},u={className:\"number\",variants:[{begin:\"\\\\b(0b[01']+)\"},{begin:\"(-?)\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)\"},{begin:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],relevance:0},d={className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{\"meta-keyword\":\"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(c,{className:\"meta-string\"}),{className:\"meta-string\",begin:/<.*?>/,end:/$/,illegal:\"\\\\n\"},t,e.C_BLOCK_COMMENT_MODE]},p={className:\"title\",begin:i(r)+e.IDENT_RE,relevance:0},h=i(r)+e.IDENT_RE+\"\\\\s*\\\\(\",f={keyword:\"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const 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 asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override 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 and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq\",built_in:\"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future 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 _Bool complex _Complex imaginary _Imaginary\",literal:\"true false nullptr NULL\"},_=[d,s,t,e.C_BLOCK_COMMENT_MODE,u,c],m={variants:[{begin:/=/,end:/;/},{begin:/\\(/,end:/\\)/},{beginKeywords:\"new throw return else\",end:/;/}],keywords:f,contains:_.concat([{begin:/\\(/,end:/\\)/,keywords:f,contains:_.concat([\"self\"]),relevance:0}]),relevance:0},g={className:\"function\",begin:\"(\"+o+\"[\\\\*&\\\\s]+)+\"+h,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:f,illegal:/[^\\w\\s\\*&:<>.]/,contains:[{begin:n,keywords:f,relevance:0},{begin:h,returnBegin:!0,contains:[p],relevance:0},{className:\"params\",begin:/\\(/,end:/\\)/,keywords:f,relevance:0,contains:[t,e.C_BLOCK_COMMENT_MODE,c,u,s,{begin:/\\(/,end:/\\)/,keywords:f,relevance:0,contains:[\"self\",t,e.C_BLOCK_COMMENT_MODE,c,u,s]}]},s,t,e.C_BLOCK_COMMENT_MODE,d]};return{name:\"C++\",aliases:[\"cc\",\"c++\",\"h++\",\"hpp\",\"hh\",\"hxx\",\"cxx\"],keywords:f,illegal:\"</\",contains:[].concat(m,g,_,[d,{begin:\"\\\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",end:\">\",keywords:f,contains:[\"self\",s]},{begin:e.IDENT_RE+\"::\",keywords:f},{className:\"class\",beginKeywords:\"enum class struct union\",end:/[{;:<>=]/,contains:[{beginKeywords:\"final class struct\"},e.TITLE_MODE]}]),exports:{preprocessor:d,strings:c,keywords:f}}}function o(e){const t={keyword:\"boolean byte word String\",built_in:\"setup loop KeyboardController MouseController SoftwareSerial EthernetServer EthernetClient LiquidCrystal RobotControl GSMVoiceCall EthernetUDP EsploraTFT HttpClient RobotMotor WiFiClient GSMScanner FileSystem Scheduler GSMServer YunClient YunServer IPAddress GSMClient GSMModem Keyboard Ethernet Console GSMBand Esplora Stepper Process WiFiUDP GSM_SMS Mailbox USBHost Firmata PImage Client Server GSMPIN FileIO Bridge Serial EEPROM Stream Mouse Audio Servo File Task GPRS WiFi Wire TFT GSM SPI SD runShellCommandAsynchronously analogWriteResolution retrieveCallingNumber printFirmwareVersion analogReadResolution sendDigitalPortPair noListenOnLocalhost readJoystickButton setFirmwareVersion readJoystickSwitch scrollDisplayRight getVoiceCallStatus scrollDisplayLeft writeMicroseconds delayMicroseconds beginTransmission getSignalStrength runAsynchronously getAsynchronously listenOnLocalhost getCurrentCarrier readAccelerometer messageAvailable sendDigitalPorts lineFollowConfig countryNameWrite runShellCommand readStringUntil rewindDirectory readTemperature setClockDivider readLightSensor endTransmission analogReference detachInterrupt countryNameRead attachInterrupt encryptionType readBytesUntil robotNameWrite readMicrophone robotNameRead cityNameWrite userNameWrite readJoystickY readJoystickX mouseReleased openNextFile scanNetworks noInterrupts digitalWrite beginSpeaker mousePressed isActionDone mouseDragged displayLogos noAutoscroll addParameter remoteNumber getModifiers keyboardRead userNameRead waitContinue processInput parseCommand printVersion readNetworks writeMessage blinkVersion cityNameRead readMessage setDataMode parsePacket isListening setBitOrder beginPacket isDirectory motorsWrite drawCompass digitalRead clearScreen serialEvent rightToLeft setTextSize leftToRight requestFrom keyReleased compassRead analogWrite interrupts WiFiServer disconnect playMelody parseFloat autoscroll getPINUsed setPINUsed setTimeout sendAnalog readSlider analogRead beginWrite createChar motorsStop keyPressed tempoWrite readButton subnetMask debugPrint macAddress writeGreen randomSeed attachGPRS readString sendString remotePort releaseAll mouseMoved background getXChange getYChange answerCall getResult voiceCall endPacket constrain getSocket writeJSON getButton available connected findUntil readBytes exitValue readGreen writeBlue startLoop IPAddress isPressed sendSysex pauseMode gatewayIP setCursor getOemKey tuneWrite noDisplay loadImage switchPIN onRequest onReceive changePIN playFile noBuffer parseInt overflow checkPIN knobRead beginTFT bitClear updateIR bitWrite position writeRGB highByte writeRed setSpeed readBlue noStroke remoteIP transfer shutdown hangCall beginSMS endWrite attached maintain noCursor checkReg checkPUK shiftOut isValid shiftIn pulseIn connect println localIP pinMode getIMEI display noBlink process getBand running beginSD drawBMP lowByte setBand release bitRead prepare pointTo readRed setMode noFill remove listen stroke detach attach noTone exists buffer height bitSet circle config cursor random IRread setDNS endSMS getKey micros millis begin print write ready flush width isPIN blink clear press mkdir rmdir close point yield image BSSID click delay read text move peek beep rect line open seek fill size turn stop home find step tone sqrt RSSI SSID end bit tan cos sin pow map abs max min get run put\",literal:\"DIGITAL_MESSAGE FIRMATA_STRING ANALOG_MESSAGE REPORT_DIGITAL REPORT_ANALOG INPUT_PULLUP SET_PIN_MODE INTERNAL2V56 SYSTEM_RESET LED_BUILTIN INTERNAL1V1 SYSEX_START INTERNAL EXTERNAL DEFAULT OUTPUT INPUT HIGH LOW\"},n=a(e),i=n.keywords;return i.keyword+=\" \"+t.keyword,i.literal+=\" \"+t.literal,i.built_in+=\" \"+t.built_in,n.name=\"Arduino\",n.aliases=[\"ino\"],n.supersetOf=\"cpp\",n}e.exports=o},\"94a2\":function(e,t){function n(e){const t=\"[A-Z_][A-Z0-9_.]*\",n=\"%\",i={$pattern:t,keyword:\"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR\"},r={className:\"meta\",begin:\"([O])([0-9]+)\"},a=e.inherit(e.C_NUMBER_MODE,{begin:\"([-+]?((\\\\.\\\\d+)|(\\\\d+)(\\\\.\\\\d*)?))|\"+e.C_NUMBER_RE}),o=[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.COMMENT(/\\(/,/\\)/),a,e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),{className:\"name\",begin:\"([G])([0-9]+\\\\.?[0-9]?)\"},{className:\"name\",begin:\"([M])([0-9]+\\\\.?[0-9]?)\"},{className:\"attr\",begin:\"(VC|VS|#)\",end:\"(\\\\d+)\"},{className:\"attr\",begin:\"(VZOFX|VZOFY|VZOFZ)\"},{className:\"built_in\",begin:\"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\\\[)\",contains:[a],end:\"\\\\]\"},{className:\"symbol\",variants:[{begin:\"N\",end:\"\\\\d+\",illegal:\"\\\\W\"}]}];return{name:\"G-code (ISO 6983)\",aliases:[\"nc\"],case_insensitive:!0,keywords:i,contains:[{className:\"meta\",begin:n},r].concat(o)}}e.exports=n},9510:function(e,t){function n(e){const t=[\"and\",\"as\",\"assert\",\"async\",\"await\",\"break\",\"class\",\"continue\",\"def\",\"del\",\"elif\",\"else\",\"except\",\"finally\",\"for\",\"\",\"from\",\"global\",\"if\",\"import\",\"in\",\"is\",\"lambda\",\"nonlocal|10\",\"not\",\"or\",\"pass\",\"raise\",\"return\",\"try\",\"while\",\"with\",\"yield\"],n=[\"__import__\",\"abs\",\"all\",\"any\",\"ascii\",\"bin\",\"bool\",\"breakpoint\",\"bytearray\",\"bytes\",\"callable\",\"chr\",\"classmethod\",\"compile\",\"complex\",\"delattr\",\"dict\",\"dir\",\"divmod\",\"enumerate\",\"eval\",\"exec\",\"filter\",\"float\",\"format\",\"frozenset\",\"getattr\",\"globals\",\"hasattr\",\"hash\",\"help\",\"hex\",\"id\",\"input\",\"int\",\"isinstance\",\"issubclass\",\"iter\",\"len\",\"list\",\"locals\",\"map\",\"max\",\"memoryview\",\"min\",\"next\",\"object\",\"oct\",\"open\",\"ord\",\"pow\",\"print\",\"property\",\"range\",\"repr\",\"reversed\",\"round\",\"set\",\"setattr\",\"slice\",\"sorted\",\"staticmethod\",\"str\",\"sum\",\"super\",\"tuple\",\"type\",\"vars\",\"zip\"],i=[\"__debug__\",\"Ellipsis\",\"False\",\"None\",\"NotImplemented\",\"True\"],r={keyword:t,built_in:n,literal:i},a={className:\"meta\",begin:/^(>>>|\\.\\.\\.) /},o={className:\"subst\",begin:/\\{/,end:/\\}/,keywords:r,illegal:/#/},s={begin:/\\{\\{/,relevance:0},l={className:\"string\",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?\"\"\"/,end:/\"\"\"/,contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,a,s,o]},{begin:/([fF][rR]|[rR][fF]|[fF])\"\"\"/,end:/\"\"\"/,contains:[e.BACKSLASH_ESCAPE,a,s,o]},{begin:/([uU]|[rR])'/,end:/'/,relevance:10},{begin:/([uU]|[rR])\"/,end:/\"/,relevance:10},{begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])\"/,end:/\"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,s,o]},{begin:/([fF][rR]|[rR][fF]|[fF])\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,s,o]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},c=\"[0-9](_?[0-9])*\",u=`(\\\\b(${c}))?\\\\.(${c})|\\\\b(${c})\\\\.`,d={className:\"number\",relevance:0,variants:[{begin:`(\\\\b(${c})|(${u}))[eE][+-]?(${c})[jJ]?\\\\b`},{begin:`(${u})[jJ]?`},{begin:\"\\\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?\\\\b\"},{begin:\"\\\\b0[bB](_?[01])+[lL]?\\\\b\"},{begin:\"\\\\b0[oO](_?[0-7])+[lL]?\\\\b\"},{begin:\"\\\\b0[xX](_?[0-9a-fA-F])+[lL]?\\\\b\"},{begin:`\\\\b(${c})[jJ]\\\\b`}]},p={className:\"params\",variants:[{begin:/\\(\\s*\\)/,skip:!0,className:null},{begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:r,contains:[\"self\",a,d,l,e.HASH_COMMENT_MODE]}]};return o.contains=[l,d,a],{name:\"Python\",aliases:[\"py\",\"gyp\",\"ipython\"],keywords:r,illegal:/(<\\/|->|\\?)|=>/,contains:[a,d,{begin:/\\bself\\b/},{beginKeywords:\"if\",relevance:0},l,e.HASH_COMMENT_MODE,{variants:[{className:\"function\",beginKeywords:\"def\"},{className:\"class\",beginKeywords:\"class\"}],end:/:/,illegal:/[${=;\\n,]/,contains:[e.UNDERSCORE_TITLE_MODE,p,{begin:/->/,endsWithParent:!0,keywords:\"None\"}]},{className:\"meta\",begin:/^[\\t ]*@/,end:/(?=#)|$/,contains:[d,p,l]},{begin:/\\b(print|exec)\\(/}]}}e.exports=n},9544:function(e,t){function n(e){return{name:\"Gradle\",case_insensitive:!0,keywords:{keyword:\"task project allprojects subprojects artifacts buildscript configurations dependencies repositories sourceSets description delete from into include exclude source classpath destinationDir includes options sourceCompatibility targetCompatibility group flatDir doLast doFirst flatten todir fromdir ant def abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true antlrtask checkstyle codenarc copy boolean byte char class double float int interface long short void compile runTime file fileTree abs any append asList asWritable call collect compareTo count div dump each eachByte eachFile eachLine every find findAll flatten getAt getErr getIn getOut getText grep immutable inject inspect intersect invokeMethods isCase join leftShift minus multiply newInputStream newOutputStream newPrintWriter newReader newWriter next plus pop power previous print println push putAt read readBytes readLines reverse reverseEach round size sort splitEachLine step subMap times toInteger toList tokenize upto waitForOrKill withPrintWriter withReader withStream withWriter withWriterAppend write writeLine\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.NUMBER_MODE,e.REGEXP_MODE]}}e.exports=n},\"95d0\":function(e,t){function n(e){const t={keyword:\"actor addressof and as be break class compile_error compile_intrinsic consume continue delegate digestof do else elseif embed end error for fun if ifdef in interface is isnt lambda let match new not object or primitive recover repeat return struct then trait try type until use var where while with xor\",meta:\"iso val tag trn box ref\",literal:\"this false true\"},n={className:\"string\",begin:'\"\"\"',end:'\"\"\"',relevance:10},i={className:\"string\",begin:'\"',end:'\"',contains:[e.BACKSLASH_ESCAPE]},r={className:\"string\",begin:\"'\",end:\"'\",contains:[e.BACKSLASH_ESCAPE],relevance:0},a={className:\"type\",begin:\"\\\\b_?[A-Z][\\\\w]*\",relevance:0},o={begin:e.IDENT_RE+\"'\",relevance:0},s={className:\"number\",begin:\"(-?)(\\\\b0[xX][a-fA-F0-9]+|\\\\b0[bB][01]+|(\\\\b\\\\d+(_\\\\d+)?(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",relevance:0};return{name:\"Pony\",keywords:t,contains:[a,n,i,r,o,s,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]}}e.exports=n},9619:function(e,t,n){var i=n(\"597f\"),r=n(\"0e15\");e.exports={throttle:i,debounce:r}},\"96eb\":function(module,exports,__webpack_require__){(function(e,t){module.exports=t()})(0,(function(){return function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={exports:{},id:i,loaded:!1};return e[i].call(r.exports,r,r.exports,n),r.loaded=!0,r.exports}return n.m=e,n.c=t,n.p=\"\",n(0)}([function(e,t,n){var i,r=n(1),a=n(3),o=n(5),s=n(20),l=n(23),c=n(25);\"undefined\"!==typeof window&&(i=n(27)\n/*!\n\t    Mock - 模拟请求 & 模拟数据\n\t    https://github.com/nuysoft/Mock\n\t    墨智 mozhi.gyy@taobao.com nuysoft@gmail.com\n\t*/);var u={Handler:r,Random:o,Util:a,XHR:i,RE:s,toJSONSchema:l,valid:c,heredoc:a.heredoc,setup:function(e){return i.setup(e)},_mocked:{},version:\"1.0.1-beta3\"};i&&(i.Mock=u),u.mock=function(e,t,n){return 1===arguments.length?r.gen(e):(2===arguments.length&&(n=t,t=void 0),i&&(window.XMLHttpRequest=i),u._mocked[e+(t||\"\")]={rurl:e,rtype:t,template:n},u)},e.exports=u},function(module,exports,__webpack_require__){var Constant=__webpack_require__(2),Util=__webpack_require__(3),Parser=__webpack_require__(4),Random=__webpack_require__(5),RE=__webpack_require__(20),Handler={extend:Util.extend,gen:function(e,t,n){t=void 0==t?\"\":t+\"\",n=n||{},n={path:n.path||[Constant.GUID],templatePath:n.templatePath||[Constant.GUID++],currentContext:n.currentContext,templateCurrentContext:n.templateCurrentContext||e,root:n.root||n.currentContext,templateRoot:n.templateRoot||n.templateCurrentContext||e};var i,r=Parser.parse(t),a=Util.type(e);return Handler[a]?(i=Handler[a]({type:a,template:e,name:t,parsedName:t?t.replace(Constant.RE_KEY,\"$1\"):t,rule:r,context:n}),n.root||(n.root=i),i):e}};Handler.extend({array:function(e){var t,n,i=[];if(0===e.template.length)return i;if(e.rule.parameters)if(1===e.rule.min&&void 0===e.rule.max)e.context.path.push(e.name),e.context.templatePath.push(e.name),i=Random.pick(Handler.gen(e.template,void 0,{path:e.context.path,templatePath:e.context.templatePath,currentContext:i,templateCurrentContext:e.template,root:e.context.root||i,templateRoot:e.context.templateRoot||e.template})),e.context.path.pop(),e.context.templatePath.pop();else if(e.rule.parameters[2])e.template.__order_index=e.template.__order_index||0,e.context.path.push(e.name),e.context.templatePath.push(e.name),i=Handler.gen(e.template,void 0,{path:e.context.path,templatePath:e.context.templatePath,currentContext:i,templateCurrentContext:e.template,root:e.context.root||i,templateRoot:e.context.templateRoot||e.template})[e.template.__order_index%e.template.length],e.template.__order_index+=+e.rule.parameters[2],e.context.path.pop(),e.context.templatePath.pop();else for(t=0;t<e.rule.count;t++)for(n=0;n<e.template.length;n++)e.context.path.push(i.length),e.context.templatePath.push(n),i.push(Handler.gen(e.template[n],i.length,{path:e.context.path,templatePath:e.context.templatePath,currentContext:i,templateCurrentContext:e.template,root:e.context.root||i,templateRoot:e.context.templateRoot||e.template})),e.context.path.pop(),e.context.templatePath.pop();else for(t=0;t<e.template.length;t++)e.context.path.push(t),e.context.templatePath.push(t),i.push(Handler.gen(e.template[t],t,{path:e.context.path,templatePath:e.context.templatePath,currentContext:i,templateCurrentContext:e.template,root:e.context.root||i,templateRoot:e.context.templateRoot||e.template})),e.context.path.pop(),e.context.templatePath.pop();return i},object:function(e){var t,n,i,r,a,o,s={};if(void 0!=e.rule.min)for(t=Util.keys(e.template),t=Random.shuffle(t),t=t.slice(0,e.rule.count),o=0;o<t.length;o++)i=t[o],r=i.replace(Constant.RE_KEY,\"$1\"),e.context.path.push(r),e.context.templatePath.push(i),s[r]=Handler.gen(e.template[i],i,{path:e.context.path,templatePath:e.context.templatePath,currentContext:s,templateCurrentContext:e.template,root:e.context.root||s,templateRoot:e.context.templateRoot||e.template}),e.context.path.pop(),e.context.templatePath.pop();else{for(i in t=[],n=[],e.template)(\"function\"===typeof e.template[i]?n:t).push(i);for(t=t.concat(n),o=0;o<t.length;o++)i=t[o],r=i.replace(Constant.RE_KEY,\"$1\"),e.context.path.push(r),e.context.templatePath.push(i),s[r]=Handler.gen(e.template[i],i,{path:e.context.path,templatePath:e.context.templatePath,currentContext:s,templateCurrentContext:e.template,root:e.context.root||s,templateRoot:e.context.templateRoot||e.template}),e.context.path.pop(),e.context.templatePath.pop(),a=i.match(Constant.RE_KEY),a&&a[2]&&\"number\"===Util.type(e.template[i])&&(e.template[i]+=parseInt(a[2],10))}return s},number:function(e){var t,n;if(e.rule.decimal){e.template+=\"\",n=e.template.split(\".\"),n[0]=e.rule.range?e.rule.count:n[0],n[1]=(n[1]||\"\").slice(0,e.rule.dcount);while(n[1].length<e.rule.dcount)n[1]+=n[1].length<e.rule.dcount-1?Random.character(\"number\"):Random.character(\"123456789\");t=parseFloat(n.join(\".\"),10)}else t=e.rule.range&&!e.rule.parameters[2]?e.rule.count:e.template;return t},boolean:function(e){var t;return t=e.rule.parameters?Random.bool(e.rule.min,e.rule.max,e.template):e.template,t},string:function(e){var t,n,i,r,a=\"\";if(e.template.length){for(void 0==e.rule.count&&(a+=e.template),t=0;t<e.rule.count;t++)a+=e.template;for(n=a.match(Constant.RE_PLACEHOLDER)||[],t=0;t<n.length;t++)if(i=n[t],/^\\\\/.test(i))n.splice(t--,1);else{if(r=Handler.placeholder(i,e.context.currentContext,e.context.templateCurrentContext,e),1===n.length&&i===a&&typeof r!==typeof a){a=r;break}a=a.replace(i,r)}}else a=e.rule.range?Random.string(e.rule.count):e.template;return a},function:function(e){return e.template.call(e.context.currentContext,e)},regexp:function(e){var t=\"\";void 0==e.rule.count&&(t+=e.template.source);for(var n=0;n<e.rule.count;n++)t+=e.template.source;return RE.Handler.gen(RE.Parser.parse(t))}}),Handler.extend({_all:function(){var e={};for(var t in Random)e[t.toLowerCase()]=t;return e},placeholder:function(placeholder,obj,templateContext,options){Constant.RE_PLACEHOLDER.exec(\"\");var parts=Constant.RE_PLACEHOLDER.exec(placeholder),key=parts&&parts[1],lkey=key&&key.toLowerCase(),okey=this._all()[lkey],params=parts&&parts[2]||\"\",pathParts=this.splitPathToArray(key);try{params=eval(\"(function(){ return [].splice.call(arguments, 0 ) })(\"+params+\")\")}catch(error){params=parts[2].split(/,\\s*/)}if(obj&&key in obj)return obj[key];if(\"/\"===key.charAt(0)||pathParts.length>1)return this.getValueByKeyPath(key,options);if(templateContext&&\"object\"===typeof templateContext&&key in templateContext&&placeholder!==templateContext[key])return templateContext[key]=Handler.gen(templateContext[key],key,{currentContext:obj,templateCurrentContext:templateContext}),templateContext[key];if(!(key in Random)&&!(lkey in Random)&&!(okey in Random))return placeholder;for(var i=0;i<params.length;i++)Constant.RE_PLACEHOLDER.exec(\"\"),Constant.RE_PLACEHOLDER.test(params[i])&&(params[i]=Handler.placeholder(params[i],obj,templateContext,options));var handle=Random[key]||Random[lkey]||Random[okey];switch(Util.type(handle)){case\"array\":return Random.pick(handle);case\"function\":handle.options=options;var re=handle.apply(Random,params);return void 0===re&&(re=\"\"),delete handle.options,re}},getValueByKeyPath:function(e,t){var n=e,i=this.splitPathToArray(e),r=[];\"/\"===e.charAt(0)?r=[t.context.path[0]].concat(this.normalizePath(i)):i.length>1&&(r=t.context.path.slice(0),r.pop(),r=this.normalizePath(r.concat(i)));try{e=i[i.length-1];for(var a=t.context.root,o=t.context.templateRoot,s=1;s<r.length-1;s++)a=a[r[s]],o=o[r[s]];if(a&&e in a)return a[e];if(o&&\"object\"===typeof o&&e in o&&n!==o[e])return o[e]=Handler.gen(o[e],e,{currentContext:a,templateCurrentContext:o}),o[e]}catch(l){}return\"@\"+i.join(\"/\")},normalizePath:function(e){for(var t=[],n=0;n<e.length;n++)switch(e[n]){case\"..\":t.pop();break;case\".\":break;default:t.push(e[n])}return t},splitPathToArray:function(e){var t=e.split(/\\/+/);return t[t.length-1]||(t=t.slice(0,-1)),t[0]||(t=t.slice(1)),t}}),module.exports=Handler},function(e,t){e.exports={GUID:1,RE_KEY:/(.+)\\|(?:\\+(\\d+)|([\\+\\-]?\\d+-?[\\+\\-]?\\d*)?(?:\\.(\\d+-?\\d*))?)/,RE_RANGE:/([\\+\\-]?\\d+)-?([\\+\\-]?\\d+)?/,RE_PLACEHOLDER:/\\\\*@([^@#%&()\\?\\s]+)(?:\\((.*?)\\))?/g}},function(e,t){var n={extend:function(){var e,t,i,r,a,o=arguments[0]||{},s=1,l=arguments.length;for(1===l&&(o=this,s=0);s<l;s++)if(e=arguments[s],e)for(t in e)i=o[t],r=e[t],o!==r&&void 0!==r&&(n.isArray(r)||n.isObject(r)?(n.isArray(r)&&(a=i&&n.isArray(i)?i:[]),n.isObject(r)&&(a=i&&n.isObject(i)?i:{}),o[t]=n.extend(a,r)):o[t]=r);return o},each:function(e,t,n){var i,r;if(\"number\"===this.type(e))for(i=0;i<e;i++)t(i,i);else if(e.length===+e.length){for(i=0;i<e.length;i++)if(!1===t.call(n,e[i],i,e))break}else for(r in e)if(!1===t.call(n,e[r],r,e))break},type:function(e){return null===e||void 0===e?String(e):Object.prototype.toString.call(e).match(/\\[object (\\w+)\\]/)[1].toLowerCase()}};n.each(\"String Object Array RegExp Function\".split(\" \"),(function(e){n[\"is\"+e]=function(t){return n.type(t)===e.toLowerCase()}})),n.isObjectOrArray=function(e){return n.isObject(e)||n.isArray(e)},n.isNumeric=function(e){return!isNaN(parseFloat(e))&&isFinite(e)},n.keys=function(e){var t=[];for(var n in e)e.hasOwnProperty(n)&&t.push(n);return t},n.values=function(e){var t=[];for(var n in e)e.hasOwnProperty(n)&&t.push(e[n]);return t},n.heredoc=function(e){return e.toString().replace(/^[^\\/]+\\/\\*!?/,\"\").replace(/\\*\\/[^\\/]+$/,\"\").replace(/^[\\s\\xA0]+/,\"\").replace(/[\\s\\xA0]+$/,\"\")},n.noop=function(){},e.exports=n},function(e,t,n){var i=n(2),r=n(5);e.exports={parse:function(e){e=void 0==e?\"\":e+\"\";var t=(e||\"\").match(i.RE_KEY),n=t&&t[3]&&t[3].match(i.RE_RANGE),a=n&&n[1]&&parseInt(n[1],10),o=n&&n[2]&&parseInt(n[2],10),s=n?n[2]?r.integer(a,o):parseInt(n[1],10):void 0,l=t&&t[4]&&t[4].match(i.RE_RANGE),c=l&&l[1]&&parseInt(l[1],10),u=l&&l[2]&&parseInt(l[2],10),d=l?!l[2]&&parseInt(l[1],10)||r.integer(c,u):void 0,p={parameters:t,range:n,min:a,max:o,count:s,decimal:l,dmin:c,dmax:u,dcount:d};for(var h in p)if(void 0!=p[h])return p;return{}}}},function(e,t,n){var i=n(3),r={extend:i.extend};r.extend(n(6)),r.extend(n(7)),r.extend(n(8)),r.extend(n(10)),r.extend(n(13)),r.extend(n(15)),r.extend(n(16)),r.extend(n(17)),r.extend(n(14)),r.extend(n(19)),e.exports=r},function(e,t){e.exports={boolean:function(e,t,n){return void 0!==n?(e=\"undefined\"===typeof e||isNaN(e)?1:parseInt(e,10),t=\"undefined\"===typeof t||isNaN(t)?1:parseInt(t,10),Math.random()>1/(e+t)*e?!n:n):Math.random()>=.5},bool:function(e,t,n){return this.boolean(e,t,n)},natural:function(e,t){return e=\"undefined\"!==typeof e?parseInt(e,10):0,t=\"undefined\"!==typeof t?parseInt(t,10):9007199254740992,Math.round(Math.random()*(t-e))+e},integer:function(e,t){return e=\"undefined\"!==typeof e?parseInt(e,10):-9007199254740992,t=\"undefined\"!==typeof t?parseInt(t,10):9007199254740992,Math.round(Math.random()*(t-e))+e},int:function(e,t){return this.integer(e,t)},float:function(e,t,n,i){n=void 0===n?0:n,n=Math.max(Math.min(n,17),0),i=void 0===i?17:i,i=Math.max(Math.min(i,17),0);for(var r=this.integer(e,t)+\".\",a=0,o=this.natural(n,i);a<o;a++)r+=a<o-1?this.character(\"number\"):this.character(\"123456789\");return parseFloat(r,10)},character:function(e){var t={lower:\"abcdefghijklmnopqrstuvwxyz\",upper:\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\",number:\"0123456789\",symbol:\"!@#$%^&*()[]\"};return t.alpha=t.lower+t.upper,t[\"undefined\"]=t.lower+t.upper+t.number+t.symbol,e=t[(\"\"+e).toLowerCase()]||e,e.charAt(this.natural(0,e.length-1))},char:function(e){return this.character(e)},string:function(e,t,n){var i;switch(arguments.length){case 0:i=this.natural(3,7);break;case 1:i=e,e=void 0;break;case 2:\"string\"===typeof arguments[0]?i=t:(i=this.natural(e,t),e=void 0);break;case 3:i=this.natural(t,n);break}for(var r=\"\",a=0;a<i;a++)r+=this.character(e);return r},str:function(){return this.string.apply(this,arguments)},range:function(e,t,n){arguments.length<=1&&(t=e||0,e=0),n=arguments[2]||1,e=+e,t=+t,n=+n;var i=Math.max(Math.ceil((t-e)/n),0),r=0,a=new Array(i);while(r<i)a[r++]=e,e+=n;return a}}},function(e,t){var n={yyyy:\"getFullYear\",yy:function(e){return(\"\"+e.getFullYear()).slice(2)},y:\"yy\",MM:function(e){var t=e.getMonth()+1;return t<10?\"0\"+t:t},M:function(e){return e.getMonth()+1},dd:function(e){var t=e.getDate();return t<10?\"0\"+t:t},d:\"getDate\",HH:function(e){var t=e.getHours();return t<10?\"0\"+t:t},H:\"getHours\",hh:function(e){var t=e.getHours()%12;return t<10?\"0\"+t:t},h:function(e){return e.getHours()%12},mm:function(e){var t=e.getMinutes();return t<10?\"0\"+t:t},m:\"getMinutes\",ss:function(e){var t=e.getSeconds();return t<10?\"0\"+t:t},s:\"getSeconds\",SS:function(e){var t=e.getMilliseconds();return t<10&&\"00\"+t||t<100&&\"0\"+t||t},S:\"getMilliseconds\",A:function(e){return e.getHours()<12?\"AM\":\"PM\"},a:function(e){return e.getHours()<12?\"am\":\"pm\"},T:\"getTime\"};e.exports={_patternLetters:n,_rformat:new RegExp(function(){var e=[];for(var t in n)e.push(t);return\"(\"+e.join(\"|\")+\")\"}(),\"g\"),_formatDate:function(e,t){return t.replace(this._rformat,(function t(i,r){return\"function\"===typeof n[r]?n[r](e):n[r]in n?t(i,n[r]):e[n[r]]()}))},_randomDate:function(e,t){return e=void 0===e?new Date(0):e,t=void 0===t?new Date:t,new Date(Math.random()*(t.getTime()-e.getTime()))},date:function(e){return e=e||\"yyyy-MM-dd\",this._formatDate(this._randomDate(),e)},time:function(e){return e=e||\"HH:mm:ss\",this._formatDate(this._randomDate(),e)},datetime:function(e){return e=e||\"yyyy-MM-dd HH:mm:ss\",this._formatDate(this._randomDate(),e)},now:function(e,t){1===arguments.length&&(/year|month|day|hour|minute|second|week/.test(e)||(t=e,e=\"\")),e=(e||\"\").toLowerCase(),t=t||\"yyyy-MM-dd HH:mm:ss\";var n=new Date;switch(e){case\"year\":n.setMonth(0);case\"month\":n.setDate(1);case\"week\":case\"day\":n.setHours(0);case\"hour\":n.setMinutes(0);case\"minute\":n.setSeconds(0);case\"second\":n.setMilliseconds(0)}switch(e){case\"week\":n.setDate(n.getDate()-n.getDay())}return this._formatDate(n,t)}}},function(e,t,n){(function(e){e.exports={_adSize:[\"300x250\",\"250x250\",\"240x400\",\"336x280\",\"180x150\",\"720x300\",\"468x60\",\"234x60\",\"88x31\",\"120x90\",\"120x60\",\"120x240\",\"125x125\",\"728x90\",\"160x600\",\"120x600\",\"300x600\"],_screenSize:[\"320x200\",\"320x240\",\"640x480\",\"800x480\",\"800x480\",\"1024x600\",\"1024x768\",\"1280x800\",\"1440x900\",\"1920x1200\",\"2560x1600\"],_videoSize:[\"720x480\",\"768x576\",\"1280x720\",\"1920x1080\"],image:function(e,t,n,i,r){return 4===arguments.length&&(r=i,i=void 0),3===arguments.length&&(r=n,n=void 0),e||(e=this.pick(this._adSize)),t&&~t.indexOf(\"#\")&&(t=t.slice(1)),n&&~n.indexOf(\"#\")&&(n=n.slice(1)),\"http://dummyimage.com/\"+e+(t?\"/\"+t:\"\")+(n?\"/\"+n:\"\")+(i?\".\"+i:\"\")+(r?\"&text=\"+r:\"\")},img:function(){return this.image.apply(this,arguments)},_brandColors:{\"4ormat\":\"#fb0a2a\",\"500px\":\"#02adea\",\"About.me (blue)\":\"#00405d\",\"About.me (yellow)\":\"#ffcc33\",Addvocate:\"#ff6138\",Adobe:\"#ff0000\",Aim:\"#fcd20b\",Amazon:\"#e47911\",Android:\"#a4c639\",\"Angie's List\":\"#7fbb00\",AOL:\"#0060a3\",Atlassian:\"#003366\",Behance:\"#053eff\",\"Big Cartel\":\"#97b538\",bitly:\"#ee6123\",Blogger:\"#fc4f08\",Boeing:\"#0039a6\",\"Booking.com\":\"#003580\",Carbonmade:\"#613854\",Cheddar:\"#ff7243\",\"Code School\":\"#3d4944\",Delicious:\"#205cc0\",Dell:\"#3287c1\",Designmoo:\"#e54a4f\",Deviantart:\"#4e6252\",\"Designer News\":\"#2d72da\",Devour:\"#fd0001\",DEWALT:\"#febd17\",\"Disqus (blue)\":\"#59a3fc\",\"Disqus (orange)\":\"#db7132\",Dribbble:\"#ea4c89\",Dropbox:\"#3d9ae8\",Drupal:\"#0c76ab\",Dunked:\"#2a323a\",eBay:\"#89c507\",Ember:\"#f05e1b\",Engadget:\"#00bdf6\",Envato:\"#528036\",Etsy:\"#eb6d20\",Evernote:\"#5ba525\",\"Fab.com\":\"#dd0017\",Facebook:\"#3b5998\",Firefox:\"#e66000\",\"Flickr (blue)\":\"#0063dc\",\"Flickr (pink)\":\"#ff0084\",Forrst:\"#5b9a68\",Foursquare:\"#25a0ca\",Garmin:\"#007cc3\",GetGlue:\"#2d75a2\",Gimmebar:\"#f70078\",GitHub:\"#171515\",\"Google Blue\":\"#0140ca\",\"Google Green\":\"#16a61e\",\"Google Red\":\"#dd1812\",\"Google Yellow\":\"#fcca03\",\"Google+\":\"#dd4b39\",Grooveshark:\"#f77f00\",Groupon:\"#82b548\",\"Hacker News\":\"#ff6600\",HelloWallet:\"#0085ca\",\"Heroku (light)\":\"#c7c5e6\",\"Heroku (dark)\":\"#6567a5\",HootSuite:\"#003366\",Houzz:\"#73ba37\",HTML5:\"#ec6231\",IKEA:\"#ffcc33\",IMDb:\"#f3ce13\",Instagram:\"#3f729b\",Intel:\"#0071c5\",Intuit:\"#365ebf\",Kickstarter:\"#76cc1e\",kippt:\"#e03500\",Kodery:\"#00af81\",LastFM:\"#c3000d\",LinkedIn:\"#0e76a8\",Livestream:\"#cf0005\",Lumo:\"#576396\",Mixpanel:\"#a086d3\",Meetup:\"#e51937\",Nokia:\"#183693\",NVIDIA:\"#76b900\",Opera:\"#cc0f16\",Path:\"#e41f11\",\"PayPal (dark)\":\"#1e477a\",\"PayPal (light)\":\"#3b7bbf\",Pinboard:\"#0000e6\",Pinterest:\"#c8232c\",PlayStation:\"#665cbe\",Pocket:\"#ee4056\",Prezi:\"#318bff\",Pusha:\"#0f71b4\",Quora:\"#a82400\",\"QUOTE.fm\":\"#66ceff\",Rdio:\"#008fd5\",Readability:\"#9c0000\",\"Red Hat\":\"#cc0000\",Resource:\"#7eb400\",Rockpack:\"#0ba6ab\",Roon:\"#62b0d9\",RSS:\"#ee802f\",Salesforce:\"#1798c1\",Samsung:\"#0c4da2\",Shopify:\"#96bf48\",Skype:\"#00aff0\",Snagajob:\"#f47a20\",Softonic:\"#008ace\",SoundCloud:\"#ff7700\",\"Space Box\":\"#f86960\",Spotify:\"#81b71a\",Sprint:\"#fee100\",Squarespace:\"#121212\",StackOverflow:\"#ef8236\",Staples:\"#cc0000\",\"Status Chart\":\"#d7584f\",Stripe:\"#008cdd\",StudyBlue:\"#00afe1\",StumbleUpon:\"#f74425\",\"T-Mobile\":\"#ea0a8e\",Technorati:\"#40a800\",\"The Next Web\":\"#ef4423\",Treehouse:\"#5cb868\",Trulia:\"#5eab1f\",Tumblr:\"#34526f\",\"Twitch.tv\":\"#6441a5\",Twitter:\"#00acee\",TYPO3:\"#ff8700\",Ubuntu:\"#dd4814\",Ustream:\"#3388ff\",Verizon:\"#ef1d1d\",Vimeo:\"#86c9ef\",Vine:\"#00a478\",Virb:\"#06afd8\",\"Virgin Media\":\"#cc0000\",Wooga:\"#5b009c\",\"WordPress (blue)\":\"#21759b\",\"WordPress (orange)\":\"#d54e21\",\"WordPress (grey)\":\"#464646\",Wunderlist:\"#2b88d9\",XBOX:\"#9bc848\",XING:\"#126567\",\"Yahoo!\":\"#720e9e\",Yandex:\"#ffcc00\",Yelp:\"#c41200\",YouTube:\"#c4302b\",Zalongo:\"#5498dc\",Zendesk:\"#78a300\",Zerply:\"#9dcc7a\",Zootool:\"#5e8b1d\"},_brandNames:function(){var e=[];for(var t in this._brandColors)e.push(t);return e},dataImage:function(t,n){var i;if(\"undefined\"!==typeof document)i=document.createElement(\"canvas\");else{var r=e.require(\"canvas\");i=new r}var a=i&&i.getContext&&i.getContext(\"2d\");if(!i||!a)return\"\";t||(t=this.pick(this._adSize)),n=void 0!==n?n:t,t=t.split(\"x\");var o=parseInt(t[0],10),s=parseInt(t[1],10),l=this._brandColors[this.pick(this._brandNames())],c=\"#FFF\",u=14,d=\"sans-serif\";return i.width=o,i.height=s,a.textAlign=\"center\",a.textBaseline=\"middle\",a.fillStyle=l,a.fillRect(0,0,o,s),a.fillStyle=c,a.font=\"bold \"+u+\"px \"+d,a.fillText(n,o/2,s/2,o),i.toDataURL(\"image/png\")}}}).call(t,n(9)(e))},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children=[],e.webpackPolyfill=1),e}},function(e,t,n){var i=n(11),r=n(12);e.exports={color:function(e){return e||r[e]?r[e].nicer:this.hex()},hex:function(){var e=this._goldenRatioColor(),t=i.hsv2rgb(e),n=i.rgb2hex(t[0],t[1],t[2]);return n},rgb:function(){var e=this._goldenRatioColor(),t=i.hsv2rgb(e);return\"rgb(\"+parseInt(t[0],10)+\", \"+parseInt(t[1],10)+\", \"+parseInt(t[2],10)+\")\"},rgba:function(){var e=this._goldenRatioColor(),t=i.hsv2rgb(e);return\"rgba(\"+parseInt(t[0],10)+\", \"+parseInt(t[1],10)+\", \"+parseInt(t[2],10)+\", \"+Math.random().toFixed(2)+\")\"},hsl:function(){var e=this._goldenRatioColor(),t=i.hsv2hsl(e);return\"hsl(\"+parseInt(t[0],10)+\", \"+parseInt(t[1],10)+\", \"+parseInt(t[2],10)+\")\"},_goldenRatioColor:function(e,t){return this._goldenRatio=.618033988749895,this._hue=this._hue||Math.random(),this._hue+=this._goldenRatio,this._hue%=1,\"number\"!==typeof e&&(e=.5),\"number\"!==typeof t&&(t=.95),[360*this._hue,100*e,100*t]}}},function(e,t){e.exports={rgb2hsl:function(e){var t,n,i,r=e[0]/255,a=e[1]/255,o=e[2]/255,s=Math.min(r,a,o),l=Math.max(r,a,o),c=l-s;return l==s?t=0:r==l?t=(a-o)/c:a==l?t=2+(o-r)/c:o==l&&(t=4+(r-a)/c),t=Math.min(60*t,360),t<0&&(t+=360),i=(s+l)/2,n=l==s?0:i<=.5?c/(l+s):c/(2-l-s),[t,100*n,100*i]},rgb2hsv:function(e){var t,n,i,r=e[0],a=e[1],o=e[2],s=Math.min(r,a,o),l=Math.max(r,a,o),c=l-s;return n=0===l?0:c/l*1e3/10,l==s?t=0:r==l?t=(a-o)/c:a==l?t=2+(o-r)/c:o==l&&(t=4+(r-a)/c),t=Math.min(60*t,360),t<0&&(t+=360),i=l/255*1e3/10,[t,n,i]},hsl2rgb:function(e){var t,n,i,r,a,o=e[0]/360,s=e[1]/100,l=e[2]/100;if(0===s)return a=255*l,[a,a,a];n=l<.5?l*(1+s):l+s-l*s,t=2*l-n,r=[0,0,0];for(var c=0;c<3;c++)i=o+1/3*-(c-1),i<0&&i++,i>1&&i--,a=6*i<1?t+6*(n-t)*i:2*i<1?n:3*i<2?t+(n-t)*(2/3-i)*6:t,r[c]=255*a;return r},hsl2hsv:function(e){var t,n,i=e[0],r=e[1]/100,a=e[2]/100;return a*=2,r*=a<=1?a:2-a,n=(a+r)/2,t=2*r/(a+r),[i,100*t,100*n]},hsv2rgb:function(e){var t=e[0]/60,n=e[1]/100,i=e[2]/100,r=Math.floor(t)%6,a=t-Math.floor(t),o=255*i*(1-n),s=255*i*(1-n*a),l=255*i*(1-n*(1-a));switch(i*=255,r){case 0:return[i,l,o];case 1:return[s,i,o];case 2:return[o,i,l];case 3:return[o,s,i];case 4:return[l,o,i];case 5:return[i,o,s]}},hsv2hsl:function(e){var t,n,i=e[0],r=e[1]/100,a=e[2]/100;return n=(2-r)*a,t=r*a,t/=n<=1?n:2-n,n/=2,[i,100*t,100*n]},rgb2hex:function(e,t,n){return\"#\"+((256+e<<8|t)<<8|n).toString(16).slice(1)},hex2rgb:function(e){return e=\"0x\"+e.slice(1).replace(e.length>4?e:/./g,\"$&$&\")|0,[e>>16,e>>8&255,255&e]}}},function(e,t){e.exports={navy:{value:\"#000080\",nicer:\"#001F3F\"},blue:{value:\"#0000ff\",nicer:\"#0074D9\"},aqua:{value:\"#00ffff\",nicer:\"#7FDBFF\"},teal:{value:\"#008080\",nicer:\"#39CCCC\"},olive:{value:\"#008000\",nicer:\"#3D9970\"},green:{value:\"#008000\",nicer:\"#2ECC40\"},lime:{value:\"#00ff00\",nicer:\"#01FF70\"},yellow:{value:\"#ffff00\",nicer:\"#FFDC00\"},orange:{value:\"#ffa500\",nicer:\"#FF851B\"},red:{value:\"#ff0000\",nicer:\"#FF4136\"},maroon:{value:\"#800000\",nicer:\"#85144B\"},fuchsia:{value:\"#ff00ff\",nicer:\"#F012BE\"},purple:{value:\"#800080\",nicer:\"#B10DC9\"},silver:{value:\"#c0c0c0\",nicer:\"#DDDDDD\"},gray:{value:\"#808080\",nicer:\"#AAAAAA\"},black:{value:\"#000000\",nicer:\"#111111\"},white:{value:\"#FFFFFF\",nicer:\"#FFFFFF\"}}},function(e,t,n){var i=n(6),r=n(14);function a(e,t,n,r){return void 0===n?i.natural(e,t):void 0===r?n:i.natural(parseInt(n,10),parseInt(r,10))}e.exports={paragraph:function(e,t){for(var n=a(3,7,e,t),i=[],r=0;r<n;r++)i.push(this.sentence());return i.join(\" \")},cparagraph:function(e,t){for(var n=a(3,7,e,t),i=[],r=0;r<n;r++)i.push(this.csentence());return i.join(\"\")},sentence:function(e,t){for(var n=a(12,18,e,t),i=[],o=0;o<n;o++)i.push(this.word());return r.capitalize(i.join(\" \"))+\".\"},csentence:function(e,t){for(var n=a(12,18,e,t),i=[],r=0;r<n;r++)i.push(this.cword());return i.join(\"\")+\"。\"},word:function(e,t){for(var n=a(3,10,e,t),r=\"\",o=0;o<n;o++)r+=i.character(\"lower\");return r},cword:function(e,t,n){var i,r=\"的一是在不了有和人这中大为上个国我以要他时来用们生到作地于出就分对成会可主发年动同工也能下过子说产种面而方后多定行学法所民得经十三之进着等部度家电力里如水化高自二理起小物现实加量都两体制机当使点从业本去把性好应开它合还因由其些然前外天政四日那社义事平形相全表间样与关各重新线内数正心反你明看原又么利比或但质气第向道命此变条只没结解问意建月公无系军很情者最立代想已通并提直题党程展五果料象员革位入常文总次品式活设及管特件长求老头基资边流路级少图山统接知较将组见计别她手角期根论运农指几九区强放决西被干做必战先回则任取据处队南给色光门即保治北造百规热领七海口东导器压志世金增争济阶油思术极交受联什认六共权收证改清己美再采转更单风切打白教速花带安场身车例真务具万每目至达走积示议声报斗完类八离华名确才科张信马节话米整空元况今集温传土许步群广石记需段研界拉林律叫且究观越织装影算低持音众书布复容儿须际商非验连断深难近矿千周委素技备半办青省列习响约支般史感劳便团往酸历市克何除消构府称太准精值号率族维划选标写存候毛亲快效斯院查江型眼王按格养易置派层片始却专状育厂京识适属圆包火住调满县局照参红细引听该铁价严龙飞\";switch(arguments.length){case 0:e=r,i=1;break;case 1:\"string\"===typeof arguments[0]?i=1:(i=e,e=r);break;case 2:\"string\"===typeof arguments[0]?i=t:(i=this.natural(e,t),e=r);break;case 3:i=this.natural(t,n);break}for(var a=\"\",o=0;o<i;o++)a+=e.charAt(this.natural(0,e.length-1));return a},title:function(e,t){for(var n=a(3,7,e,t),i=[],r=0;r<n;r++)i.push(this.capitalize(this.word()));return i.join(\" \")},ctitle:function(e,t){for(var n=a(3,7,e,t),i=[],r=0;r<n;r++)i.push(this.cword());return i.join(\"\")}}},function(e,t,n){var i=n(3);e.exports={capitalize:function(e){return(e+\"\").charAt(0).toUpperCase()+(e+\"\").substr(1)},upper:function(e){return(e+\"\").toUpperCase()},lower:function(e){return(e+\"\").toLowerCase()},pick:function(e,t,n){return i.isArray(e)?(void 0===t&&(t=1),void 0===n&&(n=t)):(e=[].slice.call(arguments),t=1,n=1),1===t&&1===n?e[this.natural(0,e.length-1)]:this.shuffle(e,t,n)},shuffle:function(e,t,n){e=e||[];for(var i=e.slice(0),r=[],a=0,o=i.length,s=0;s<o;s++)a=this.natural(0,i.length-1),r.push(i[a]),i.splice(a,1);switch(arguments.length){case 0:case 1:return r;case 2:n=t;case 3:return t=parseInt(t,10),n=parseInt(n,10),r.slice(0,this.natural(t,n))}},order:function e(t){e.cache=e.cache||{},arguments.length>1&&(t=[].slice.call(arguments,0));var n=e.options,i=n.context.templatePath.join(\".\"),r=e.cache[i]=e.cache[i]||{index:0,array:t};return r.array[r.index++%r.array.length]}}},function(e,t){e.exports={first:function(){var e=[\"James\",\"John\",\"Robert\",\"Michael\",\"William\",\"David\",\"Richard\",\"Charles\",\"Joseph\",\"Thomas\",\"Christopher\",\"Daniel\",\"Paul\",\"Mark\",\"Donald\",\"George\",\"Kenneth\",\"Steven\",\"Edward\",\"Brian\",\"Ronald\",\"Anthony\",\"Kevin\",\"Jason\",\"Matthew\",\"Gary\",\"Timothy\",\"Jose\",\"Larry\",\"Jeffrey\",\"Frank\",\"Scott\",\"Eric\"].concat([\"Mary\",\"Patricia\",\"Linda\",\"Barbara\",\"Elizabeth\",\"Jennifer\",\"Maria\",\"Susan\",\"Margaret\",\"Dorothy\",\"Lisa\",\"Nancy\",\"Karen\",\"Betty\",\"Helen\",\"Sandra\",\"Donna\",\"Carol\",\"Ruth\",\"Sharon\",\"Michelle\",\"Laura\",\"Sarah\",\"Kimberly\",\"Deborah\",\"Jessica\",\"Shirley\",\"Cynthia\",\"Angela\",\"Melissa\",\"Brenda\",\"Amy\",\"Anna\"]);return this.pick(e)},last:function(){var e=[\"Smith\",\"Johnson\",\"Williams\",\"Brown\",\"Jones\",\"Miller\",\"Davis\",\"Garcia\",\"Rodriguez\",\"Wilson\",\"Martinez\",\"Anderson\",\"Taylor\",\"Thomas\",\"Hernandez\",\"Moore\",\"Martin\",\"Jackson\",\"Thompson\",\"White\",\"Lopez\",\"Lee\",\"Gonzalez\",\"Harris\",\"Clark\",\"Lewis\",\"Robinson\",\"Walker\",\"Perez\",\"Hall\",\"Young\",\"Allen\"];return this.pick(e)},name:function(e){return this.first()+\" \"+(e?this.first()+\" \":\"\")+this.last()},cfirst:function(){var e=\"王 李 张 刘 陈 杨 赵 黄 周 吴 徐 孙 胡 朱 高 林 何 郭 马 罗 梁 宋 郑 谢 韩 唐 冯 于 董 萧 程 曹 袁 邓 许 傅 沈 曾 彭 吕 苏 卢 蒋 蔡 贾 丁 魏 薛 叶 阎 余 潘 杜 戴 夏 锺 汪 田 任 姜 范 方 石 姚 谭 廖 邹 熊 金 陆 郝 孔 白 崔 康 毛 邱 秦 江 史 顾 侯 邵 孟 龙 万 段 雷 钱 汤 尹 黎 易 常 武 乔 贺 赖 龚 文\".split(\" \");return this.pick(e)},clast:function(){var e=\"伟 芳 娜 秀英 敏 静 丽 强 磊 军 洋 勇 艳 杰 娟 涛 明 超 秀兰 霞 平 刚 桂英\".split(\" \");return this.pick(e)},cname:function(){return this.cfirst()+this.clast()}}},function(e,t){e.exports={url:function(e,t){return(e||this.protocol())+\"://\"+(t||this.domain())+\"/\"+this.word()},protocol:function(){return this.pick(\"http ftp gopher mailto mid cid news nntp prospero telnet rlogin tn3270 wais\".split(\" \"))},domain:function(e){return this.word()+\".\"+(e||this.tld())},tld:function(){return this.pick(\"com net org edu gov int mil cn com.cn net.cn gov.cn org.cn 中国 中国互联.公司 中国互联.网络 tel biz cc tv info name hk mobi asia cd travel pro museum coop aero ad ae af ag ai al am an ao aq ar as at au aw az ba bb bd be bf bg bh bi bj bm bn bo br bs bt bv bw by bz ca cc cf cg ch ci ck cl cm cn co cq cr cu cv cx cy cz de dj dk dm do dz ec ee eg eh es et ev fi fj fk fm fo fr ga gb gd ge gf gh gi gl gm gn gp gr gt gu gw gy hk hm hn hr ht hu id ie il in io iq ir is it jm jo jp ke kg kh ki km kn kp kr kw ky kz la lb lc li lk lr ls lt lu lv ly ma mc md mg mh ml mm mn mo mp mq mr ms mt mv mw mx my mz na nc ne nf ng ni nl no np nr nt nu nz om qa pa pe pf pg ph pk pl pm pn pr pt pw py re ro ru rw sa sb sc sd se sg sh si sj sk sl sm sn so sr st su sy sz tc td tf tg th tj tk tm tn to tp tr tt tv tw tz ua ug uk us uy va vc ve vg vn vu wf ws ye yu za zm zr zw\".split(\" \"))},email:function(e){return this.character(\"lower\")+\".\"+this.word()+\"@\"+(e||this.word()+\".\"+this.tld())},ip:function(){return this.natural(0,255)+\".\"+this.natural(0,255)+\".\"+this.natural(0,255)+\".\"+this.natural(0,255)}}},function(e,t,n){var i=n(18),r=[\"东北\",\"华北\",\"华东\",\"华中\",\"华南\",\"西南\",\"西北\"];e.exports={region:function(){return this.pick(r)},province:function(){return this.pick(i).name},city:function(e){var t=this.pick(i),n=this.pick(t.children);return e?[t.name,n.name].join(\" \"):n.name},county:function(e){var t=this.pick(i),n=this.pick(t.children),r=this.pick(n.children)||{name:\"-\"};return e?[t.name,n.name,r.name].join(\" \"):r.name},zip:function(e){for(var t=\"\",n=0;n<(e||6);n++)t+=this.natural(0,9);return t}}},function(e,t){var n={11e4:\"北京\",110100:\"北京市\",110101:\"东城区\",110102:\"西城区\",110105:\"朝阳区\",110106:\"丰台区\",110107:\"石景山区\",110108:\"海淀区\",110109:\"门头沟区\",110111:\"房山区\",110112:\"通州区\",110113:\"顺义区\",110114:\"昌平区\",110115:\"大兴区\",110116:\"怀柔区\",110117:\"平谷区\",110228:\"密云县\",110229:\"延庆县\",110230:\"其它区\",12e4:\"天津\",120100:\"天津市\",120101:\"和平区\",120102:\"河东区\",120103:\"河西区\",120104:\"南开区\",120105:\"河北区\",120106:\"红桥区\",120110:\"东丽区\",120111:\"西青区\",120112:\"津南区\",120113:\"北辰区\",120114:\"武清区\",120115:\"宝坻区\",120116:\"滨海新区\",120221:\"宁河县\",120223:\"静海县\",120225:\"蓟县\",120226:\"其它区\",13e4:\"河北省\",130100:\"石家庄市\",130102:\"长安区\",130103:\"桥东区\",130104:\"桥西区\",130105:\"新华区\",130107:\"井陉矿区\",130108:\"裕华区\",130121:\"井陉县\",130123:\"正定县\",130124:\"栾城县\",130125:\"行唐县\",130126:\"灵寿县\",130127:\"高邑县\",130128:\"深泽县\",130129:\"赞皇县\",130130:\"无极县\",130131:\"平山县\",130132:\"元氏县\",130133:\"赵县\",130181:\"辛集市\",130182:\"藁城市\",130183:\"晋州市\",130184:\"新乐市\",130185:\"鹿泉市\",130186:\"其它区\",130200:\"唐山市\",130202:\"路南区\",130203:\"路北区\",130204:\"古冶区\",130205:\"开平区\",130207:\"丰南区\",130208:\"丰润区\",130223:\"滦县\",130224:\"滦南县\",130225:\"乐亭县\",130227:\"迁西县\",130229:\"玉田县\",130230:\"曹妃甸区\",130281:\"遵化市\",130283:\"迁安市\",130284:\"其它区\",130300:\"秦皇岛市\",130302:\"海港区\",130303:\"山海关区\",130304:\"北戴河区\",130321:\"青龙满族自治县\",130322:\"昌黎县\",130323:\"抚宁县\",130324:\"卢龙县\",130398:\"其它区\",130400:\"邯郸市\",130402:\"邯山区\",130403:\"丛台区\",130404:\"复兴区\",130406:\"峰峰矿区\",130421:\"邯郸县\",130423:\"临漳县\",130424:\"成安县\",130425:\"大名县\",130426:\"涉县\",130427:\"磁县\",130428:\"肥乡县\",130429:\"永年县\",130430:\"邱县\",130431:\"鸡泽县\",130432:\"广平县\",130433:\"馆陶县\",130434:\"魏县\",130435:\"曲周县\",130481:\"武安市\",130482:\"其它区\",130500:\"邢台市\",130502:\"桥东区\",130503:\"桥西区\",130521:\"邢台县\",130522:\"临城县\",130523:\"内丘县\",130524:\"柏乡县\",130525:\"隆尧县\",130526:\"任县\",130527:\"南和县\",130528:\"宁晋县\",130529:\"巨鹿县\",130530:\"新河县\",130531:\"广宗县\",130532:\"平乡县\",130533:\"威县\",130534:\"清河县\",130535:\"临西县\",130581:\"南宫市\",130582:\"沙河市\",130583:\"其它区\",130600:\"保定市\",130602:\"新市区\",130603:\"北市区\",130604:\"南市区\",130621:\"满城县\",130622:\"清苑县\",130623:\"涞水县\",130624:\"阜平县\",130625:\"徐水县\",130626:\"定兴县\",130627:\"唐县\",130628:\"高阳县\",130629:\"容城县\",130630:\"涞源县\",130631:\"望都县\",130632:\"安新县\",130633:\"易县\",130634:\"曲阳县\",130635:\"蠡县\",130636:\"顺平县\",130637:\"博野县\",130638:\"雄县\",130681:\"涿州市\",130682:\"定州市\",130683:\"安国市\",130684:\"高碑店市\",130699:\"其它区\",130700:\"张家口市\",130702:\"桥东区\",130703:\"桥西区\",130705:\"宣化区\",130706:\"下花园区\",130721:\"宣化县\",130722:\"张北县\",130723:\"康保县\",130724:\"沽源县\",130725:\"尚义县\",130726:\"蔚县\",130727:\"阳原县\",130728:\"怀安县\",130729:\"万全县\",130730:\"怀来县\",130731:\"涿鹿县\",130732:\"赤城县\",130733:\"崇礼县\",130734:\"其它区\",130800:\"承德市\",130802:\"双桥区\",130803:\"双滦区\",130804:\"鹰手营子矿区\",130821:\"承德县\",130822:\"兴隆县\",130823:\"平泉县\",130824:\"滦平县\",130825:\"隆化县\",130826:\"丰宁满族自治县\",130827:\"宽城满族自治县\",130828:\"围场满族蒙古族自治县\",130829:\"其它区\",130900:\"沧州市\",130902:\"新华区\",130903:\"运河区\",130921:\"沧县\",130922:\"青县\",130923:\"东光县\",130924:\"海兴县\",130925:\"盐山县\",130926:\"肃宁县\",130927:\"南皮县\",130928:\"吴桥县\",130929:\"献县\",130930:\"孟村回族自治县\",130981:\"泊头市\",130982:\"任丘市\",130983:\"黄骅市\",130984:\"河间市\",130985:\"其它区\",131e3:\"廊坊市\",131002:\"安次区\",131003:\"广阳区\",131022:\"固安县\",131023:\"永清县\",131024:\"香河县\",131025:\"大城县\",131026:\"文安县\",131028:\"大厂回族自治县\",131081:\"霸州市\",131082:\"三河市\",131083:\"其它区\",131100:\"衡水市\",131102:\"桃城区\",131121:\"枣强县\",131122:\"武邑县\",131123:\"武强县\",131124:\"饶阳县\",131125:\"安平县\",131126:\"故城县\",131127:\"景县\",131128:\"阜城县\",131181:\"冀州市\",131182:\"深州市\",131183:\"其它区\",14e4:\"山西省\",140100:\"太原市\",140105:\"小店区\",140106:\"迎泽区\",140107:\"杏花岭区\",140108:\"尖草坪区\",140109:\"万柏林区\",140110:\"晋源区\",140121:\"清徐县\",140122:\"阳曲县\",140123:\"娄烦县\",140181:\"古交市\",140182:\"其它区\",140200:\"大同市\",140202:\"城区\",140203:\"矿区\",140211:\"南郊区\",140212:\"新荣区\",140221:\"阳高县\",140222:\"天镇县\",140223:\"广灵县\",140224:\"灵丘县\",140225:\"浑源县\",140226:\"左云县\",140227:\"大同县\",140228:\"其它区\",140300:\"阳泉市\",140302:\"城区\",140303:\"矿区\",140311:\"郊区\",140321:\"平定县\",140322:\"盂县\",140323:\"其它区\",140400:\"长治市\",140421:\"长治县\",140423:\"襄垣县\",140424:\"屯留县\",140425:\"平顺县\",140426:\"黎城县\",140427:\"壶关县\",140428:\"长子县\",140429:\"武乡县\",140430:\"沁县\",140431:\"沁源县\",140481:\"潞城市\",140482:\"城区\",140483:\"郊区\",140485:\"其它区\",140500:\"晋城市\",140502:\"城区\",140521:\"沁水县\",140522:\"阳城县\",140524:\"陵川县\",140525:\"泽州县\",140581:\"高平市\",140582:\"其它区\",140600:\"朔州市\",140602:\"朔城区\",140603:\"平鲁区\",140621:\"山阴县\",140622:\"应县\",140623:\"右玉县\",140624:\"怀仁县\",140625:\"其它区\",140700:\"晋中市\",140702:\"榆次区\",140721:\"榆社县\",140722:\"左权县\",140723:\"和顺县\",140724:\"昔阳县\",140725:\"寿阳县\",140726:\"太谷县\",140727:\"祁县\",140728:\"平遥县\",140729:\"灵石县\",140781:\"介休市\",140782:\"其它区\",140800:\"运城市\",140802:\"盐湖区\",140821:\"临猗县\",140822:\"万荣县\",140823:\"闻喜县\",140824:\"稷山县\",140825:\"新绛县\",140826:\"绛县\",140827:\"垣曲县\",140828:\"夏县\",140829:\"平陆县\",140830:\"芮城县\",140881:\"永济市\",140882:\"河津市\",140883:\"其它区\",140900:\"忻州市\",140902:\"忻府区\",140921:\"定襄县\",140922:\"五台县\",140923:\"代县\",140924:\"繁峙县\",140925:\"宁武县\",140926:\"静乐县\",140927:\"神池县\",140928:\"五寨县\",140929:\"岢岚县\",140930:\"河曲县\",140931:\"保德县\",140932:\"偏关县\",140981:\"原平市\",140982:\"其它区\",141e3:\"临汾市\",141002:\"尧都区\",141021:\"曲沃县\",141022:\"翼城县\",141023:\"襄汾县\",141024:\"洪洞县\",141025:\"古县\",141026:\"安泽县\",141027:\"浮山县\",141028:\"吉县\",141029:\"乡宁县\",141030:\"大宁县\",141031:\"隰县\",141032:\"永和县\",141033:\"蒲县\",141034:\"汾西县\",141081:\"侯马市\",141082:\"霍州市\",141083:\"其它区\",141100:\"吕梁市\",141102:\"离石区\",141121:\"文水县\",141122:\"交城县\",141123:\"兴县\",141124:\"临县\",141125:\"柳林县\",141126:\"石楼县\",141127:\"岚县\",141128:\"方山县\",141129:\"中阳县\",141130:\"交口县\",141181:\"孝义市\",141182:\"汾阳市\",141183:\"其它区\",15e4:\"内蒙古自治区\",150100:\"呼和浩特市\",150102:\"新城区\",150103:\"回民区\",150104:\"玉泉区\",150105:\"赛罕区\",150121:\"土默特左旗\",150122:\"托克托县\",150123:\"和林格尔县\",150124:\"清水河县\",150125:\"武川县\",150126:\"其它区\",150200:\"包头市\",150202:\"东河区\",150203:\"昆都仑区\",150204:\"青山区\",150205:\"石拐区\",150206:\"白云鄂博矿区\",150207:\"九原区\",150221:\"土默特右旗\",150222:\"固阳县\",150223:\"达尔罕茂明安联合旗\",150224:\"其它区\",150300:\"乌海市\",150302:\"海勃湾区\",150303:\"海南区\",150304:\"乌达区\",150305:\"其它区\",150400:\"赤峰市\",150402:\"红山区\",150403:\"元宝山区\",150404:\"松山区\",150421:\"阿鲁科尔沁旗\",150422:\"巴林左旗\",150423:\"巴林右旗\",150424:\"林西县\",150425:\"克什克腾旗\",150426:\"翁牛特旗\",150428:\"喀喇沁旗\",150429:\"宁城县\",150430:\"敖汉旗\",150431:\"其它区\",150500:\"通辽市\",150502:\"科尔沁区\",150521:\"科尔沁左翼中旗\",150522:\"科尔沁左翼后旗\",150523:\"开鲁县\",150524:\"库伦旗\",150525:\"奈曼旗\",150526:\"扎鲁特旗\",150581:\"霍林郭勒市\",150582:\"其它区\",150600:\"鄂尔多斯市\",150602:\"东胜区\",150621:\"达拉特旗\",150622:\"准格尔旗\",150623:\"鄂托克前旗\",150624:\"鄂托克旗\",150625:\"杭锦旗\",150626:\"乌审旗\",150627:\"伊金霍洛旗\",150628:\"其它区\",150700:\"呼伦贝尔市\",150702:\"海拉尔区\",150703:\"扎赉诺尔区\",150721:\"阿荣旗\",150722:\"莫力达瓦达斡尔族自治旗\",150723:\"鄂伦春自治旗\",150724:\"鄂温克族自治旗\",150725:\"陈巴尔虎旗\",150726:\"新巴尔虎左旗\",150727:\"新巴尔虎右旗\",150781:\"满洲里市\",150782:\"牙克石市\",150783:\"扎兰屯市\",150784:\"额尔古纳市\",150785:\"根河市\",150786:\"其它区\",150800:\"巴彦淖尔市\",150802:\"临河区\",150821:\"五原县\",150822:\"磴口县\",150823:\"乌拉特前旗\",150824:\"乌拉特中旗\",150825:\"乌拉特后旗\",150826:\"杭锦后旗\",150827:\"其它区\",150900:\"乌兰察布市\",150902:\"集宁区\",150921:\"卓资县\",150922:\"化德县\",150923:\"商都县\",150924:\"兴和县\",150925:\"凉城县\",150926:\"察哈尔右翼前旗\",150927:\"察哈尔右翼中旗\",150928:\"察哈尔右翼后旗\",150929:\"四子王旗\",150981:\"丰镇市\",150982:\"其它区\",152200:\"兴安盟\",152201:\"乌兰浩特市\",152202:\"阿尔山市\",152221:\"科尔沁右翼前旗\",152222:\"科尔沁右翼中旗\",152223:\"扎赉特旗\",152224:\"突泉县\",152225:\"其它区\",152500:\"锡林郭勒盟\",152501:\"二连浩特市\",152502:\"锡林浩特市\",152522:\"阿巴嘎旗\",152523:\"苏尼特左旗\",152524:\"苏尼特右旗\",152525:\"东乌珠穆沁旗\",152526:\"西乌珠穆沁旗\",152527:\"太仆寺旗\",152528:\"镶黄旗\",152529:\"正镶白旗\",152530:\"正蓝旗\",152531:\"多伦县\",152532:\"其它区\",152900:\"阿拉善盟\",152921:\"阿拉善左旗\",152922:\"阿拉善右旗\",152923:\"额济纳旗\",152924:\"其它区\",21e4:\"辽宁省\",210100:\"沈阳市\",210102:\"和平区\",210103:\"沈河区\",210104:\"大东区\",210105:\"皇姑区\",210106:\"铁西区\",210111:\"苏家屯区\",210112:\"东陵区\",210113:\"新城子区\",210114:\"于洪区\",210122:\"辽中县\",210123:\"康平县\",210124:\"法库县\",210181:\"新民市\",210184:\"沈北新区\",210185:\"其它区\",210200:\"大连市\",210202:\"中山区\",210203:\"西岗区\",210204:\"沙河口区\",210211:\"甘井子区\",210212:\"旅顺口区\",210213:\"金州区\",210224:\"长海县\",210281:\"瓦房店市\",210282:\"普兰店市\",210283:\"庄河市\",210298:\"其它区\",210300:\"鞍山市\",210302:\"铁东区\",210303:\"铁西区\",210304:\"立山区\",210311:\"千山区\",210321:\"台安县\",210323:\"岫岩满族自治县\",210381:\"海城市\",210382:\"其它区\",210400:\"抚顺市\",210402:\"新抚区\",210403:\"东洲区\",210404:\"望花区\",210411:\"顺城区\",210421:\"抚顺县\",210422:\"新宾满族自治县\",210423:\"清原满族自治县\",210424:\"其它区\",210500:\"本溪市\",210502:\"平山区\",210503:\"溪湖区\",210504:\"明山区\",210505:\"南芬区\",210521:\"本溪满族自治县\",210522:\"桓仁满族自治县\",210523:\"其它区\",210600:\"丹东市\",210602:\"元宝区\",210603:\"振兴区\",210604:\"振安区\",210624:\"宽甸满族自治县\",210681:\"东港市\",210682:\"凤城市\",210683:\"其它区\",210700:\"锦州市\",210702:\"古塔区\",210703:\"凌河区\",210711:\"太和区\",210726:\"黑山县\",210727:\"义县\",210781:\"凌海市\",210782:\"北镇市\",210783:\"其它区\",210800:\"营口市\",210802:\"站前区\",210803:\"西市区\",210804:\"鲅鱼圈区\",210811:\"老边区\",210881:\"盖州市\",210882:\"大石桥市\",210883:\"其它区\",210900:\"阜新市\",210902:\"海州区\",210903:\"新邱区\",210904:\"太平区\",210905:\"清河门区\",210911:\"细河区\",210921:\"阜新蒙古族自治县\",210922:\"彰武县\",210923:\"其它区\",211e3:\"辽阳市\",211002:\"白塔区\",211003:\"文圣区\",211004:\"宏伟区\",211005:\"弓长岭区\",211011:\"太子河区\",211021:\"辽阳县\",211081:\"灯塔市\",211082:\"其它区\",211100:\"盘锦市\",211102:\"双台子区\",211103:\"兴隆台区\",211121:\"大洼县\",211122:\"盘山县\",211123:\"其它区\",211200:\"铁岭市\",211202:\"银州区\",211204:\"清河区\",211221:\"铁岭县\",211223:\"西丰县\",211224:\"昌图县\",211281:\"调兵山市\",211282:\"开原市\",211283:\"其它区\",211300:\"朝阳市\",211302:\"双塔区\",211303:\"龙城区\",211321:\"朝阳县\",211322:\"建平县\",211324:\"喀喇沁左翼蒙古族自治县\",211381:\"北票市\",211382:\"凌源市\",211383:\"其它区\",211400:\"葫芦岛市\",211402:\"连山区\",211403:\"龙港区\",211404:\"南票区\",211421:\"绥中县\",211422:\"建昌县\",211481:\"兴城市\",211482:\"其它区\",22e4:\"吉林省\",220100:\"长春市\",220102:\"南关区\",220103:\"宽城区\",220104:\"朝阳区\",220105:\"二道区\",220106:\"绿园区\",220112:\"双阳区\",220122:\"农安县\",220181:\"九台市\",220182:\"榆树市\",220183:\"德惠市\",220188:\"其它区\",220200:\"吉林市\",220202:\"昌邑区\",220203:\"龙潭区\",220204:\"船营区\",220211:\"丰满区\",220221:\"永吉县\",220281:\"蛟河市\",220282:\"桦甸市\",220283:\"舒兰市\",220284:\"磐石市\",220285:\"其它区\",220300:\"四平市\",220302:\"铁西区\",220303:\"铁东区\",220322:\"梨树县\",220323:\"伊通满族自治县\",220381:\"公主岭市\",220382:\"双辽市\",220383:\"其它区\",220400:\"辽源市\",220402:\"龙山区\",220403:\"西安区\",220421:\"东丰县\",220422:\"东辽县\",220423:\"其它区\",220500:\"通化市\",220502:\"东昌区\",220503:\"二道江区\",220521:\"通化县\",220523:\"辉南县\",220524:\"柳河县\",220581:\"梅河口市\",220582:\"集安市\",220583:\"其它区\",220600:\"白山市\",220602:\"浑江区\",220621:\"抚松县\",220622:\"靖宇县\",220623:\"长白朝鲜族自治县\",220625:\"江源区\",220681:\"临江市\",220682:\"其它区\",220700:\"松原市\",220702:\"宁江区\",220721:\"前郭尔罗斯蒙古族自治县\",220722:\"长岭县\",220723:\"乾安县\",220724:\"扶余市\",220725:\"其它区\",220800:\"白城市\",220802:\"洮北区\",220821:\"镇赉县\",220822:\"通榆县\",220881:\"洮南市\",220882:\"大安市\",220883:\"其它区\",222400:\"延边朝鲜族自治州\",222401:\"延吉市\",222402:\"图们市\",222403:\"敦化市\",222404:\"珲春市\",222405:\"龙井市\",222406:\"和龙市\",222424:\"汪清县\",222426:\"安图县\",222427:\"其它区\",23e4:\"黑龙江省\",230100:\"哈尔滨市\",230102:\"道里区\",230103:\"南岗区\",230104:\"道外区\",230106:\"香坊区\",230108:\"平房区\",230109:\"松北区\",230111:\"呼兰区\",230123:\"依兰县\",230124:\"方正县\",230125:\"宾县\",230126:\"巴彦县\",230127:\"木兰县\",230128:\"通河县\",230129:\"延寿县\",230181:\"阿城区\",230182:\"双城市\",230183:\"尚志市\",230184:\"五常市\",230186:\"其它区\",230200:\"齐齐哈尔市\",230202:\"龙沙区\",230203:\"建华区\",230204:\"铁锋区\",230205:\"昂昂溪区\",230206:\"富拉尔基区\",230207:\"碾子山区\",230208:\"梅里斯达斡尔族区\",230221:\"龙江县\",230223:\"依安县\",230224:\"泰来县\",230225:\"甘南县\",230227:\"富裕县\",230229:\"克山县\",230230:\"克东县\",230231:\"拜泉县\",230281:\"讷河市\",230282:\"其它区\",230300:\"鸡西市\",230302:\"鸡冠区\",230303:\"恒山区\",230304:\"滴道区\",230305:\"梨树区\",230306:\"城子河区\",230307:\"麻山区\",230321:\"鸡东县\",230381:\"虎林市\",230382:\"密山市\",230383:\"其它区\",230400:\"鹤岗市\",230402:\"向阳区\",230403:\"工农区\",230404:\"南山区\",230405:\"兴安区\",230406:\"东山区\",230407:\"兴山区\",230421:\"萝北县\",230422:\"绥滨县\",230423:\"其它区\",230500:\"双鸭山市\",230502:\"尖山区\",230503:\"岭东区\",230505:\"四方台区\",230506:\"宝山区\",230521:\"集贤县\",230522:\"友谊县\",230523:\"宝清县\",230524:\"饶河县\",230525:\"其它区\",230600:\"大庆市\",230602:\"萨尔图区\",230603:\"龙凤区\",230604:\"让胡路区\",230605:\"红岗区\",230606:\"大同区\",230621:\"肇州县\",230622:\"肇源县\",230623:\"林甸县\",230624:\"杜尔伯特蒙古族自治县\",230625:\"其它区\",230700:\"伊春市\",230702:\"伊春区\",230703:\"南岔区\",230704:\"友好区\",230705:\"西林区\",230706:\"翠峦区\",230707:\"新青区\",230708:\"美溪区\",230709:\"金山屯区\",230710:\"五营区\",230711:\"乌马河区\",230712:\"汤旺河区\",230713:\"带岭区\",230714:\"乌伊岭区\",230715:\"红星区\",230716:\"上甘岭区\",230722:\"嘉荫县\",230781:\"铁力市\",230782:\"其它区\",230800:\"佳木斯市\",230803:\"向阳区\",230804:\"前进区\",230805:\"东风区\",230811:\"郊区\",230822:\"桦南县\",230826:\"桦川县\",230828:\"汤原县\",230833:\"抚远县\",230881:\"同江市\",230882:\"富锦市\",230883:\"其它区\",230900:\"七台河市\",230902:\"新兴区\",230903:\"桃山区\",230904:\"茄子河区\",230921:\"勃利县\",230922:\"其它区\",231e3:\"牡丹江市\",231002:\"东安区\",231003:\"阳明区\",231004:\"爱民区\",231005:\"西安区\",231024:\"东宁县\",231025:\"林口县\",231081:\"绥芬河市\",231083:\"海林市\",231084:\"宁安市\",231085:\"穆棱市\",231086:\"其它区\",231100:\"黑河市\",231102:\"爱辉区\",231121:\"嫩江县\",231123:\"逊克县\",231124:\"孙吴县\",231181:\"北安市\",231182:\"五大连池市\",231183:\"其它区\",231200:\"绥化市\",231202:\"北林区\",231221:\"望奎县\",231222:\"兰西县\",231223:\"青冈县\",231224:\"庆安县\",231225:\"明水县\",231226:\"绥棱县\",231281:\"安达市\",231282:\"肇东市\",231283:\"海伦市\",231284:\"其它区\",232700:\"大兴安岭地区\",232702:\"松岭区\",232703:\"新林区\",232704:\"呼中区\",232721:\"呼玛县\",232722:\"塔河县\",232723:\"漠河县\",232724:\"加格达奇区\",232725:\"其它区\",31e4:\"上海\",310100:\"上海市\",310101:\"黄浦区\",310104:\"徐汇区\",310105:\"长宁区\",310106:\"静安区\",310107:\"普陀区\",310108:\"闸北区\",310109:\"虹口区\",310110:\"杨浦区\",310112:\"闵行区\",310113:\"宝山区\",310114:\"嘉定区\",310115:\"浦东新区\",310116:\"金山区\",310117:\"松江区\",310118:\"青浦区\",310120:\"奉贤区\",310230:\"崇明县\",310231:\"其它区\",32e4:\"江苏省\",320100:\"南京市\",320102:\"玄武区\",320104:\"秦淮区\",320105:\"建邺区\",320106:\"鼓楼区\",320111:\"浦口区\",320113:\"栖霞区\",320114:\"雨花台区\",320115:\"江宁区\",320116:\"六合区\",320124:\"溧水区\",320125:\"高淳区\",320126:\"其它区\",320200:\"无锡市\",320202:\"崇安区\",320203:\"南长区\",320204:\"北塘区\",320205:\"锡山区\",320206:\"惠山区\",320211:\"滨湖区\",320281:\"江阴市\",320282:\"宜兴市\",320297:\"其它区\",320300:\"徐州市\",320302:\"鼓楼区\",320303:\"云龙区\",320305:\"贾汪区\",320311:\"泉山区\",320321:\"丰县\",320322:\"沛县\",320323:\"铜山区\",320324:\"睢宁县\",320381:\"新沂市\",320382:\"邳州市\",320383:\"其它区\",320400:\"常州市\",320402:\"天宁区\",320404:\"钟楼区\",320405:\"戚墅堰区\",320411:\"新北区\",320412:\"武进区\",320481:\"溧阳市\",320482:\"金坛市\",320483:\"其它区\",320500:\"苏州市\",320505:\"虎丘区\",320506:\"吴中区\",320507:\"相城区\",320508:\"姑苏区\",320581:\"常熟市\",320582:\"张家港市\",320583:\"昆山市\",320584:\"吴江区\",320585:\"太仓市\",320596:\"其它区\",320600:\"南通市\",320602:\"崇川区\",320611:\"港闸区\",320612:\"通州区\",320621:\"海安县\",320623:\"如东县\",320681:\"启东市\",320682:\"如皋市\",320684:\"海门市\",320694:\"其它区\",320700:\"连云港市\",320703:\"连云区\",320705:\"新浦区\",320706:\"海州区\",320721:\"赣榆县\",320722:\"东海县\",320723:\"灌云县\",320724:\"灌南县\",320725:\"其它区\",320800:\"淮安市\",320802:\"清河区\",320803:\"淮安区\",320804:\"淮阴区\",320811:\"清浦区\",320826:\"涟水县\",320829:\"洪泽县\",320830:\"盱眙县\",320831:\"金湖县\",320832:\"其它区\",320900:\"盐城市\",320902:\"亭湖区\",320903:\"盐都区\",320921:\"响水县\",320922:\"滨海县\",320923:\"阜宁县\",320924:\"射阳县\",320925:\"建湖县\",320981:\"东台市\",320982:\"大丰市\",320983:\"其它区\",321e3:\"扬州市\",321002:\"广陵区\",321003:\"邗江区\",321023:\"宝应县\",321081:\"仪征市\",321084:\"高邮市\",321088:\"江都区\",321093:\"其它区\",321100:\"镇江市\",321102:\"京口区\",321111:\"润州区\",321112:\"丹徒区\",321181:\"丹阳市\",321182:\"扬中市\",321183:\"句容市\",321184:\"其它区\",321200:\"泰州市\",321202:\"海陵区\",321203:\"高港区\",321281:\"兴化市\",321282:\"靖江市\",321283:\"泰兴市\",321284:\"姜堰区\",321285:\"其它区\",321300:\"宿迁市\",321302:\"宿城区\",321311:\"宿豫区\",321322:\"沭阳县\",321323:\"泗阳县\",321324:\"泗洪县\",321325:\"其它区\",33e4:\"浙江省\",330100:\"杭州市\",330102:\"上城区\",330103:\"下城区\",330104:\"江干区\",330105:\"拱墅区\",330106:\"西湖区\",330108:\"滨江区\",330109:\"萧山区\",330110:\"余杭区\",330122:\"桐庐县\",330127:\"淳安县\",330182:\"建德市\",330183:\"富阳市\",330185:\"临安市\",330186:\"其它区\",330200:\"宁波市\",330203:\"海曙区\",330204:\"江东区\",330205:\"江北区\",330206:\"北仑区\",330211:\"镇海区\",330212:\"鄞州区\",330225:\"象山县\",330226:\"宁海县\",330281:\"余姚市\",330282:\"慈溪市\",330283:\"奉化市\",330284:\"其它区\",330300:\"温州市\",330302:\"鹿城区\",330303:\"龙湾区\",330304:\"瓯海区\",330322:\"洞头县\",330324:\"永嘉县\",330326:\"平阳县\",330327:\"苍南县\",330328:\"文成县\",330329:\"泰顺县\",330381:\"瑞安市\",330382:\"乐清市\",330383:\"其它区\",330400:\"嘉兴市\",330402:\"南湖区\",330411:\"秀洲区\",330421:\"嘉善县\",330424:\"海盐县\",330481:\"海宁市\",330482:\"平湖市\",330483:\"桐乡市\",330484:\"其它区\",330500:\"湖州市\",330502:\"吴兴区\",330503:\"南浔区\",330521:\"德清县\",330522:\"长兴县\",330523:\"安吉县\",330524:\"其它区\",330600:\"绍兴市\",330602:\"越城区\",330621:\"绍兴县\",330624:\"新昌县\",330681:\"诸暨市\",330682:\"上虞市\",330683:\"嵊州市\",330684:\"其它区\",330700:\"金华市\",330702:\"婺城区\",330703:\"金东区\",330723:\"武义县\",330726:\"浦江县\",330727:\"磐安县\",330781:\"兰溪市\",330782:\"义乌市\",330783:\"东阳市\",330784:\"永康市\",330785:\"其它区\",330800:\"衢州市\",330802:\"柯城区\",330803:\"衢江区\",330822:\"常山县\",330824:\"开化县\",330825:\"龙游县\",330881:\"江山市\",330882:\"其它区\",330900:\"舟山市\",330902:\"定海区\",330903:\"普陀区\",330921:\"岱山县\",330922:\"嵊泗县\",330923:\"其它区\",331e3:\"台州市\",331002:\"椒江区\",331003:\"黄岩区\",331004:\"路桥区\",331021:\"玉环县\",331022:\"三门县\",331023:\"天台县\",331024:\"仙居县\",331081:\"温岭市\",331082:\"临海市\",331083:\"其它区\",331100:\"丽水市\",331102:\"莲都区\",331121:\"青田县\",331122:\"缙云县\",331123:\"遂昌县\",331124:\"松阳县\",331125:\"云和县\",331126:\"庆元县\",331127:\"景宁畲族自治县\",331181:\"龙泉市\",331182:\"其它区\",34e4:\"安徽省\",340100:\"合肥市\",340102:\"瑶海区\",340103:\"庐阳区\",340104:\"蜀山区\",340111:\"包河区\",340121:\"长丰县\",340122:\"肥东县\",340123:\"肥西县\",340192:\"其它区\",340200:\"芜湖市\",340202:\"镜湖区\",340203:\"弋江区\",340207:\"鸠江区\",340208:\"三山区\",340221:\"芜湖县\",340222:\"繁昌县\",340223:\"南陵县\",340224:\"其它区\",340300:\"蚌埠市\",340302:\"龙子湖区\",340303:\"蚌山区\",340304:\"禹会区\",340311:\"淮上区\",340321:\"怀远县\",340322:\"五河县\",340323:\"固镇县\",340324:\"其它区\",340400:\"淮南市\",340402:\"大通区\",340403:\"田家庵区\",340404:\"谢家集区\",340405:\"八公山区\",340406:\"潘集区\",340421:\"凤台县\",340422:\"其它区\",340500:\"马鞍山市\",340503:\"花山区\",340504:\"雨山区\",340506:\"博望区\",340521:\"当涂县\",340522:\"其它区\",340600:\"淮北市\",340602:\"杜集区\",340603:\"相山区\",340604:\"烈山区\",340621:\"濉溪县\",340622:\"其它区\",340700:\"铜陵市\",340702:\"铜官山区\",340703:\"狮子山区\",340711:\"郊区\",340721:\"铜陵县\",340722:\"其它区\",340800:\"安庆市\",340802:\"迎江区\",340803:\"大观区\",340811:\"宜秀区\",340822:\"怀宁县\",340823:\"枞阳县\",340824:\"潜山县\",340825:\"太湖县\",340826:\"宿松县\",340827:\"望江县\",340828:\"岳西县\",340881:\"桐城市\",340882:\"其它区\",341e3:\"黄山市\",341002:\"屯溪区\",341003:\"黄山区\",341004:\"徽州区\",341021:\"歙县\",341022:\"休宁县\",341023:\"黟县\",341024:\"祁门县\",341025:\"其它区\",341100:\"滁州市\",341102:\"琅琊区\",341103:\"南谯区\",341122:\"来安县\",341124:\"全椒县\",341125:\"定远县\",341126:\"凤阳县\",341181:\"天长市\",341182:\"明光市\",341183:\"其它区\",341200:\"阜阳市\",341202:\"颍州区\",341203:\"颍东区\",341204:\"颍泉区\",341221:\"临泉县\",341222:\"太和县\",341225:\"阜南县\",341226:\"颍上县\",341282:\"界首市\",341283:\"其它区\",341300:\"宿州市\",341302:\"埇桥区\",341321:\"砀山县\",341322:\"萧县\",341323:\"灵璧县\",341324:\"泗县\",341325:\"其它区\",341400:\"巢湖市\",341421:\"庐江县\",341422:\"无为县\",341423:\"含山县\",341424:\"和县\",341500:\"六安市\",341502:\"金安区\",341503:\"裕安区\",341521:\"寿县\",341522:\"霍邱县\",341523:\"舒城县\",341524:\"金寨县\",341525:\"霍山县\",341526:\"其它区\",341600:\"亳州市\",341602:\"谯城区\",341621:\"涡阳县\",341622:\"蒙城县\",341623:\"利辛县\",341624:\"其它区\",341700:\"池州市\",341702:\"贵池区\",341721:\"东至县\",341722:\"石台县\",341723:\"青阳县\",341724:\"其它区\",341800:\"宣城市\",341802:\"宣州区\",341821:\"郎溪县\",341822:\"广德县\",341823:\"泾县\",341824:\"绩溪县\",341825:\"旌德县\",341881:\"宁国市\",341882:\"其它区\",35e4:\"福建省\",350100:\"福州市\",350102:\"鼓楼区\",350103:\"台江区\",350104:\"仓山区\",350105:\"马尾区\",350111:\"晋安区\",350121:\"闽侯县\",350122:\"连江县\",350123:\"罗源县\",350124:\"闽清县\",350125:\"永泰县\",350128:\"平潭县\",350181:\"福清市\",350182:\"长乐市\",350183:\"其它区\",350200:\"厦门市\",350203:\"思明区\",350205:\"海沧区\",350206:\"湖里区\",350211:\"集美区\",350212:\"同安区\",350213:\"翔安区\",350214:\"其它区\",350300:\"莆田市\",350302:\"城厢区\",350303:\"涵江区\",350304:\"荔城区\",350305:\"秀屿区\",350322:\"仙游县\",350323:\"其它区\",350400:\"三明市\",350402:\"梅列区\",350403:\"三元区\",350421:\"明溪县\",350423:\"清流县\",350424:\"宁化县\",350425:\"大田县\",350426:\"尤溪县\",350427:\"沙县\",350428:\"将乐县\",350429:\"泰宁县\",350430:\"建宁县\",350481:\"永安市\",350482:\"其它区\",350500:\"泉州市\",350502:\"鲤城区\",350503:\"丰泽区\",350504:\"洛江区\",350505:\"泉港区\",350521:\"惠安县\",350524:\"安溪县\",350525:\"永春县\",350526:\"德化县\",350527:\"金门县\",350581:\"石狮市\",350582:\"晋江市\",350583:\"南安市\",350584:\"其它区\",350600:\"漳州市\",350602:\"芗城区\",350603:\"龙文区\",350622:\"云霄县\",350623:\"漳浦县\",350624:\"诏安县\",350625:\"长泰县\",350626:\"东山县\",350627:\"南靖县\",350628:\"平和县\",350629:\"华安县\",350681:\"龙海市\",350682:\"其它区\",350700:\"南平市\",350702:\"延平区\",350721:\"顺昌县\",350722:\"浦城县\",350723:\"光泽县\",350724:\"松溪县\",350725:\"政和县\",350781:\"邵武市\",350782:\"武夷山市\",350783:\"建瓯市\",350784:\"建阳市\",350785:\"其它区\",350800:\"龙岩市\",350802:\"新罗区\",350821:\"长汀县\",350822:\"永定县\",350823:\"上杭县\",350824:\"武平县\",350825:\"连城县\",350881:\"漳平市\",350882:\"其它区\",350900:\"宁德市\",350902:\"蕉城区\",350921:\"霞浦县\",350922:\"古田县\",350923:\"屏南县\",350924:\"寿宁县\",350925:\"周宁县\",350926:\"柘荣县\",350981:\"福安市\",350982:\"福鼎市\",350983:\"其它区\",36e4:\"江西省\",360100:\"南昌市\",360102:\"东湖区\",360103:\"西湖区\",360104:\"青云谱区\",360105:\"湾里区\",360111:\"青山湖区\",360121:\"南昌县\",360122:\"新建县\",360123:\"安义县\",360124:\"进贤县\",360128:\"其它区\",360200:\"景德镇市\",360202:\"昌江区\",360203:\"珠山区\",360222:\"浮梁县\",360281:\"乐平市\",360282:\"其它区\",360300:\"萍乡市\",360302:\"安源区\",360313:\"湘东区\",360321:\"莲花县\",360322:\"上栗县\",360323:\"芦溪县\",360324:\"其它区\",360400:\"九江市\",360402:\"庐山区\",360403:\"浔阳区\",360421:\"九江县\",360423:\"武宁县\",360424:\"修水县\",360425:\"永修县\",360426:\"德安县\",360427:\"星子县\",360428:\"都昌县\",360429:\"湖口县\",360430:\"彭泽县\",360481:\"瑞昌市\",360482:\"其它区\",360483:\"共青城市\",360500:\"新余市\",360502:\"渝水区\",360521:\"分宜县\",360522:\"其它区\",360600:\"鹰潭市\",360602:\"月湖区\",360622:\"余江县\",360681:\"贵溪市\",360682:\"其它区\",360700:\"赣州市\",360702:\"章贡区\",360721:\"赣县\",360722:\"信丰县\",360723:\"大余县\",360724:\"上犹县\",360725:\"崇义县\",360726:\"安远县\",360727:\"龙南县\",360728:\"定南县\",360729:\"全南县\",360730:\"宁都县\",360731:\"于都县\",360732:\"兴国县\",360733:\"会昌县\",360734:\"寻乌县\",360735:\"石城县\",360781:\"瑞金市\",360782:\"南康市\",360783:\"其它区\",360800:\"吉安市\",360802:\"吉州区\",360803:\"青原区\",360821:\"吉安县\",360822:\"吉水县\",360823:\"峡江县\",360824:\"新干县\",360825:\"永丰县\",360826:\"泰和县\",360827:\"遂川县\",360828:\"万安县\",360829:\"安福县\",360830:\"永新县\",360881:\"井冈山市\",360882:\"其它区\",360900:\"宜春市\",360902:\"袁州区\",360921:\"奉新县\",360922:\"万载县\",360923:\"上高县\",360924:\"宜丰县\",360925:\"靖安县\",360926:\"铜鼓县\",360981:\"丰城市\",360982:\"樟树市\",360983:\"高安市\",360984:\"其它区\",361e3:\"抚州市\",361002:\"临川区\",361021:\"南城县\",361022:\"黎川县\",361023:\"南丰县\",361024:\"崇仁县\",361025:\"乐安县\",361026:\"宜黄县\",361027:\"金溪县\",361028:\"资溪县\",361029:\"东乡县\",361030:\"广昌县\",361031:\"其它区\",361100:\"上饶市\",361102:\"信州区\",361121:\"上饶县\",361122:\"广丰县\",361123:\"玉山县\",361124:\"铅山县\",361125:\"横峰县\",361126:\"弋阳县\",361127:\"余干县\",361128:\"鄱阳县\",361129:\"万年县\",361130:\"婺源县\",361181:\"德兴市\",361182:\"其它区\",37e4:\"山东省\",370100:\"济南市\",370102:\"历下区\",370103:\"市中区\",370104:\"槐荫区\",370105:\"天桥区\",370112:\"历城区\",370113:\"长清区\",370124:\"平阴县\",370125:\"济阳县\",370126:\"商河县\",370181:\"章丘市\",370182:\"其它区\",370200:\"青岛市\",370202:\"市南区\",370203:\"市北区\",370211:\"黄岛区\",370212:\"崂山区\",370213:\"李沧区\",370214:\"城阳区\",370281:\"胶州市\",370282:\"即墨市\",370283:\"平度市\",370285:\"莱西市\",370286:\"其它区\",370300:\"淄博市\",370302:\"淄川区\",370303:\"张店区\",370304:\"博山区\",370305:\"临淄区\",370306:\"周村区\",370321:\"桓台县\",370322:\"高青县\",370323:\"沂源县\",370324:\"其它区\",370400:\"枣庄市\",370402:\"市中区\",370403:\"薛城区\",370404:\"峄城区\",370405:\"台儿庄区\",370406:\"山亭区\",370481:\"滕州市\",370482:\"其它区\",370500:\"东营市\",370502:\"东营区\",370503:\"河口区\",370521:\"垦利县\",370522:\"利津县\",370523:\"广饶县\",370591:\"其它区\",370600:\"烟台市\",370602:\"芝罘区\",370611:\"福山区\",370612:\"牟平区\",370613:\"莱山区\",370634:\"长岛县\",370681:\"龙口市\",370682:\"莱阳市\",370683:\"莱州市\",370684:\"蓬莱市\",370685:\"招远市\",370686:\"栖霞市\",370687:\"海阳市\",370688:\"其它区\",370700:\"潍坊市\",370702:\"潍城区\",370703:\"寒亭区\",370704:\"坊子区\",370705:\"奎文区\",370724:\"临朐县\",370725:\"昌乐县\",370781:\"青州市\",370782:\"诸城市\",370783:\"寿光市\",370784:\"安丘市\",370785:\"高密市\",370786:\"昌邑市\",370787:\"其它区\",370800:\"济宁市\",370802:\"市中区\",370811:\"任城区\",370826:\"微山县\",370827:\"鱼台县\",370828:\"金乡县\",370829:\"嘉祥县\",370830:\"汶上县\",370831:\"泗水县\",370832:\"梁山县\",370881:\"曲阜市\",370882:\"兖州市\",370883:\"邹城市\",370884:\"其它区\",370900:\"泰安市\",370902:\"泰山区\",370903:\"岱岳区\",370921:\"宁阳县\",370923:\"东平县\",370982:\"新泰市\",370983:\"肥城市\",370984:\"其它区\",371e3:\"威海市\",371002:\"环翠区\",371081:\"文登市\",371082:\"荣成市\",371083:\"乳山市\",371084:\"其它区\",371100:\"日照市\",371102:\"东港区\",371103:\"岚山区\",371121:\"五莲县\",371122:\"莒县\",371123:\"其它区\",371200:\"莱芜市\",371202:\"莱城区\",371203:\"钢城区\",371204:\"其它区\",371300:\"临沂市\",371302:\"兰山区\",371311:\"罗庄区\",371312:\"河东区\",371321:\"沂南县\",371322:\"郯城县\",371323:\"沂水县\",371324:\"苍山县\",371325:\"费县\",371326:\"平邑县\",371327:\"莒南县\",371328:\"蒙阴县\",371329:\"临沭县\",371330:\"其它区\",371400:\"德州市\",371402:\"德城区\",371421:\"陵县\",371422:\"宁津县\",371423:\"庆云县\",371424:\"临邑县\",371425:\"齐河县\",371426:\"平原县\",371427:\"夏津县\",371428:\"武城县\",371481:\"乐陵市\",371482:\"禹城市\",371483:\"其它区\",371500:\"聊城市\",371502:\"东昌府区\",371521:\"阳谷县\",371522:\"莘县\",371523:\"茌平县\",371524:\"东阿县\",371525:\"冠县\",371526:\"高唐县\",371581:\"临清市\",371582:\"其它区\",371600:\"滨州市\",371602:\"滨城区\",371621:\"惠民县\",371622:\"阳信县\",371623:\"无棣县\",371624:\"沾化县\",371625:\"博兴县\",371626:\"邹平县\",371627:\"其它区\",371700:\"菏泽市\",371702:\"牡丹区\",371721:\"曹县\",371722:\"单县\",371723:\"成武县\",371724:\"巨野县\",371725:\"郓城县\",371726:\"鄄城县\",371727:\"定陶县\",371728:\"东明县\",371729:\"其它区\",41e4:\"河南省\",410100:\"郑州市\",410102:\"中原区\",410103:\"二七区\",410104:\"管城回族区\",410105:\"金水区\",410106:\"上街区\",410108:\"惠济区\",410122:\"中牟县\",410181:\"巩义市\",410182:\"荥阳市\",410183:\"新密市\",410184:\"新郑市\",410185:\"登封市\",410188:\"其它区\",410200:\"开封市\",410202:\"龙亭区\",410203:\"顺河回族区\",410204:\"鼓楼区\",410205:\"禹王台区\",410211:\"金明区\",410221:\"杞县\",410222:\"通许县\",410223:\"尉氏县\",410224:\"开封县\",410225:\"兰考县\",410226:\"其它区\",410300:\"洛阳市\",410302:\"老城区\",410303:\"西工区\",410304:\"瀍河回族区\",410305:\"涧西区\",410306:\"吉利区\",410307:\"洛龙区\",410322:\"孟津县\",410323:\"新安县\",410324:\"栾川县\",410325:\"嵩县\",410326:\"汝阳县\",410327:\"宜阳县\",410328:\"洛宁县\",410329:\"伊川县\",410381:\"偃师市\",410400:\"平顶山市\",410402:\"新华区\",410403:\"卫东区\",410404:\"石龙区\",410411:\"湛河区\",410421:\"宝丰县\",410422:\"叶县\",410423:\"鲁山县\",410425:\"郏县\",410481:\"舞钢市\",410482:\"汝州市\",410483:\"其它区\",410500:\"安阳市\",410502:\"文峰区\",410503:\"北关区\",410505:\"殷都区\",410506:\"龙安区\",410522:\"安阳县\",410523:\"汤阴县\",410526:\"滑县\",410527:\"内黄县\",410581:\"林州市\",410582:\"其它区\",410600:\"鹤壁市\",410602:\"鹤山区\",410603:\"山城区\",410611:\"淇滨区\",410621:\"浚县\",410622:\"淇县\",410623:\"其它区\",410700:\"新乡市\",410702:\"红旗区\",410703:\"卫滨区\",410704:\"凤泉区\",410711:\"牧野区\",410721:\"新乡县\",410724:\"获嘉县\",410725:\"原阳县\",410726:\"延津县\",410727:\"封丘县\",410728:\"长垣县\",410781:\"卫辉市\",410782:\"辉县市\",410783:\"其它区\",410800:\"焦作市\",410802:\"解放区\",410803:\"中站区\",410804:\"马村区\",410811:\"山阳区\",410821:\"修武县\",410822:\"博爱县\",410823:\"武陟县\",410825:\"温县\",410881:\"济源市\",410882:\"沁阳市\",410883:\"孟州市\",410884:\"其它区\",410900:\"濮阳市\",410902:\"华龙区\",410922:\"清丰县\",410923:\"南乐县\",410926:\"范县\",410927:\"台前县\",410928:\"濮阳县\",410929:\"其它区\",411e3:\"许昌市\",411002:\"魏都区\",411023:\"许昌县\",411024:\"鄢陵县\",411025:\"襄城县\",411081:\"禹州市\",411082:\"长葛市\",411083:\"其它区\",411100:\"漯河市\",411102:\"源汇区\",411103:\"郾城区\",411104:\"召陵区\",411121:\"舞阳县\",411122:\"临颍县\",411123:\"其它区\",411200:\"三门峡市\",411202:\"湖滨区\",411221:\"渑池县\",411222:\"陕县\",411224:\"卢氏县\",411281:\"义马市\",411282:\"灵宝市\",411283:\"其它区\",411300:\"南阳市\",411302:\"宛城区\",411303:\"卧龙区\",411321:\"南召县\",411322:\"方城县\",411323:\"西峡县\",411324:\"镇平县\",411325:\"内乡县\",411326:\"淅川县\",411327:\"社旗县\",411328:\"唐河县\",411329:\"新野县\",411330:\"桐柏县\",411381:\"邓州市\",411382:\"其它区\",411400:\"商丘市\",411402:\"梁园区\",411403:\"睢阳区\",411421:\"民权县\",411422:\"睢县\",411423:\"宁陵县\",411424:\"柘城县\",411425:\"虞城县\",411426:\"夏邑县\",411481:\"永城市\",411482:\"其它区\",411500:\"信阳市\",411502:\"浉河区\",411503:\"平桥区\",411521:\"罗山县\",411522:\"光山县\",411523:\"新县\",411524:\"商城县\",411525:\"固始县\",411526:\"潢川县\",411527:\"淮滨县\",411528:\"息县\",411529:\"其它区\",411600:\"周口市\",411602:\"川汇区\",411621:\"扶沟县\",411622:\"西华县\",411623:\"商水县\",411624:\"沈丘县\",411625:\"郸城县\",411626:\"淮阳县\",411627:\"太康县\",411628:\"鹿邑县\",411681:\"项城市\",411682:\"其它区\",411700:\"驻马店市\",411702:\"驿城区\",411721:\"西平县\",411722:\"上蔡县\",411723:\"平舆县\",411724:\"正阳县\",411725:\"确山县\",411726:\"泌阳县\",411727:\"汝南县\",411728:\"遂平县\",411729:\"新蔡县\",411730:\"其它区\",42e4:\"湖北省\",420100:\"武汉市\",420102:\"江岸区\",420103:\"江汉区\",420104:\"硚口区\",420105:\"汉阳区\",420106:\"武昌区\",420107:\"青山区\",420111:\"洪山区\",420112:\"东西湖区\",420113:\"汉南区\",420114:\"蔡甸区\",420115:\"江夏区\",420116:\"黄陂区\",420117:\"新洲区\",420118:\"其它区\",420200:\"黄石市\",420202:\"黄石港区\",420203:\"西塞山区\",420204:\"下陆区\",420205:\"铁山区\",420222:\"阳新县\",420281:\"大冶市\",420282:\"其它区\",420300:\"十堰市\",420302:\"茅箭区\",420303:\"张湾区\",420321:\"郧县\",420322:\"郧西县\",420323:\"竹山县\",420324:\"竹溪县\",420325:\"房县\",420381:\"丹江口市\",420383:\"其它区\",420500:\"宜昌市\",420502:\"西陵区\",420503:\"伍家岗区\",420504:\"点军区\",420505:\"猇亭区\",420506:\"夷陵区\",420525:\"远安县\",420526:\"兴山县\",420527:\"秭归县\",420528:\"长阳土家族自治县\",420529:\"五峰土家族自治县\",420581:\"宜都市\",420582:\"当阳市\",420583:\"枝江市\",420584:\"其它区\",420600:\"襄阳市\",420602:\"襄城区\",420606:\"樊城区\",420607:\"襄州区\",420624:\"南漳县\",420625:\"谷城县\",420626:\"保康县\",420682:\"老河口市\",420683:\"枣阳市\",420684:\"宜城市\",420685:\"其它区\",420700:\"鄂州市\",420702:\"梁子湖区\",420703:\"华容区\",420704:\"鄂城区\",420705:\"其它区\",420800:\"荆门市\",420802:\"东宝区\",420804:\"掇刀区\",420821:\"京山县\",420822:\"沙洋县\",420881:\"钟祥市\",420882:\"其它区\",420900:\"孝感市\",420902:\"孝南区\",420921:\"孝昌县\",420922:\"大悟县\",420923:\"云梦县\",420981:\"应城市\",420982:\"安陆市\",420984:\"汉川市\",420985:\"其它区\",421e3:\"荆州市\",421002:\"沙市区\",421003:\"荆州区\",421022:\"公安县\",421023:\"监利县\",421024:\"江陵县\",421081:\"石首市\",421083:\"洪湖市\",421087:\"松滋市\",421088:\"其它区\",421100:\"黄冈市\",421102:\"黄州区\",421121:\"团风县\",421122:\"红安县\",421123:\"罗田县\",421124:\"英山县\",421125:\"浠水县\",421126:\"蕲春县\",421127:\"黄梅县\",421181:\"麻城市\",421182:\"武穴市\",421183:\"其它区\",421200:\"咸宁市\",421202:\"咸安区\",421221:\"嘉鱼县\",421222:\"通城县\",421223:\"崇阳县\",421224:\"通山县\",421281:\"赤壁市\",421283:\"其它区\",421300:\"随州市\",421302:\"曾都区\",421321:\"随县\",421381:\"广水市\",421382:\"其它区\",422800:\"恩施土家族苗族自治州\",422801:\"恩施市\",422802:\"利川市\",422822:\"建始县\",422823:\"巴东县\",422825:\"宣恩县\",422826:\"咸丰县\",422827:\"来凤县\",422828:\"鹤峰县\",422829:\"其它区\",429004:\"仙桃市\",429005:\"潜江市\",429006:\"天门市\",429021:\"神农架林区\",43e4:\"湖南省\",430100:\"长沙市\",430102:\"芙蓉区\",430103:\"天心区\",430104:\"岳麓区\",430105:\"开福区\",430111:\"雨花区\",430121:\"长沙县\",430122:\"望城区\",430124:\"宁乡县\",430181:\"浏阳市\",430182:\"其它区\",430200:\"株洲市\",430202:\"荷塘区\",430203:\"芦淞区\",430204:\"石峰区\",430211:\"天元区\",430221:\"株洲县\",430223:\"攸县\",430224:\"茶陵县\",430225:\"炎陵县\",430281:\"醴陵市\",430282:\"其它区\",430300:\"湘潭市\",430302:\"雨湖区\",430304:\"岳塘区\",430321:\"湘潭县\",430381:\"湘乡市\",430382:\"韶山市\",430383:\"其它区\",430400:\"衡阳市\",430405:\"珠晖区\",430406:\"雁峰区\",430407:\"石鼓区\",430408:\"蒸湘区\",430412:\"南岳区\",430421:\"衡阳县\",430422:\"衡南县\",430423:\"衡山县\",430424:\"衡东县\",430426:\"祁东县\",430481:\"耒阳市\",430482:\"常宁市\",430483:\"其它区\",430500:\"邵阳市\",430502:\"双清区\",430503:\"大祥区\",430511:\"北塔区\",430521:\"邵东县\",430522:\"新邵县\",430523:\"邵阳县\",430524:\"隆回县\",430525:\"洞口县\",430527:\"绥宁县\",430528:\"新宁县\",430529:\"城步苗族自治县\",430581:\"武冈市\",430582:\"其它区\",430600:\"岳阳市\",430602:\"岳阳楼区\",430603:\"云溪区\",430611:\"君山区\",430621:\"岳阳县\",430623:\"华容县\",430624:\"湘阴县\",430626:\"平江县\",430681:\"汨罗市\",430682:\"临湘市\",430683:\"其它区\",430700:\"常德市\",430702:\"武陵区\",430703:\"鼎城区\",430721:\"安乡县\",430722:\"汉寿县\",430723:\"澧县\",430724:\"临澧县\",430725:\"桃源县\",430726:\"石门县\",430781:\"津市市\",430782:\"其它区\",430800:\"张家界市\",430802:\"永定区\",430811:\"武陵源区\",430821:\"慈利县\",430822:\"桑植县\",430823:\"其它区\",430900:\"益阳市\",430902:\"资阳区\",430903:\"赫山区\",430921:\"南县\",430922:\"桃江县\",430923:\"安化县\",430981:\"沅江市\",430982:\"其它区\",431e3:\"郴州市\",431002:\"北湖区\",431003:\"苏仙区\",431021:\"桂阳县\",431022:\"宜章县\",431023:\"永兴县\",431024:\"嘉禾县\",431025:\"临武县\",431026:\"汝城县\",431027:\"桂东县\",431028:\"安仁县\",431081:\"资兴市\",431082:\"其它区\",431100:\"永州市\",431102:\"零陵区\",431103:\"冷水滩区\",431121:\"祁阳县\",431122:\"东安县\",431123:\"双牌县\",431124:\"道县\",431125:\"江永县\",431126:\"宁远县\",431127:\"蓝山县\",431128:\"新田县\",431129:\"江华瑶族自治县\",431130:\"其它区\",431200:\"怀化市\",431202:\"鹤城区\",431221:\"中方县\",431222:\"沅陵县\",431223:\"辰溪县\",431224:\"溆浦县\",431225:\"会同县\",431226:\"麻阳苗族自治县\",431227:\"新晃侗族自治县\",431228:\"芷江侗族自治县\",431229:\"靖州苗族侗族自治县\",431230:\"通道侗族自治县\",431281:\"洪江市\",431282:\"其它区\",431300:\"娄底市\",431302:\"娄星区\",431321:\"双峰县\",431322:\"新化县\",431381:\"冷水江市\",431382:\"涟源市\",431383:\"其它区\",433100:\"湘西土家族苗族自治州\",433101:\"吉首市\",433122:\"泸溪县\",433123:\"凤凰县\",433124:\"花垣县\",433125:\"保靖县\",433126:\"古丈县\",433127:\"永顺县\",433130:\"龙山县\",433131:\"其它区\",44e4:\"广东省\",440100:\"广州市\",440103:\"荔湾区\",440104:\"越秀区\",440105:\"海珠区\",440106:\"天河区\",440111:\"白云区\",440112:\"黄埔区\",440113:\"番禺区\",440114:\"花都区\",440115:\"南沙区\",440116:\"萝岗区\",440183:\"增城市\",440184:\"从化市\",440189:\"其它区\",440200:\"韶关市\",440203:\"武江区\",440204:\"浈江区\",440205:\"曲江区\",440222:\"始兴县\",440224:\"仁化县\",440229:\"翁源县\",440232:\"乳源瑶族自治县\",440233:\"新丰县\",440281:\"乐昌市\",440282:\"南雄市\",440283:\"其它区\",440300:\"深圳市\",440303:\"罗湖区\",440304:\"福田区\",440305:\"南山区\",440306:\"宝安区\",440307:\"龙岗区\",440308:\"盐田区\",440309:\"其它区\",440320:\"光明新区\",440321:\"坪山新区\",440322:\"大鹏新区\",440323:\"龙华新区\",440400:\"珠海市\",440402:\"香洲区\",440403:\"斗门区\",440404:\"金湾区\",440488:\"其它区\",440500:\"汕头市\",440507:\"龙湖区\",440511:\"金平区\",440512:\"濠江区\",440513:\"潮阳区\",440514:\"潮南区\",440515:\"澄海区\",440523:\"南澳县\",440524:\"其它区\",440600:\"佛山市\",440604:\"禅城区\",440605:\"南海区\",440606:\"顺德区\",440607:\"三水区\",440608:\"高明区\",440609:\"其它区\",440700:\"江门市\",440703:\"蓬江区\",440704:\"江海区\",440705:\"新会区\",440781:\"台山市\",440783:\"开平市\",440784:\"鹤山市\",440785:\"恩平市\",440786:\"其它区\",440800:\"湛江市\",440802:\"赤坎区\",440803:\"霞山区\",440804:\"坡头区\",440811:\"麻章区\",440823:\"遂溪县\",440825:\"徐闻县\",440881:\"廉江市\",440882:\"雷州市\",440883:\"吴川市\",440884:\"其它区\",440900:\"茂名市\",440902:\"茂南区\",440903:\"茂港区\",440923:\"电白县\",440981:\"高州市\",440982:\"化州市\",440983:\"信宜市\",440984:\"其它区\",441200:\"肇庆市\",441202:\"端州区\",441203:\"鼎湖区\",441223:\"广宁县\",441224:\"怀集县\",441225:\"封开县\",441226:\"德庆县\",441283:\"高要市\",441284:\"四会市\",441285:\"其它区\",441300:\"惠州市\",441302:\"惠城区\",441303:\"惠阳区\",441322:\"博罗县\",441323:\"惠东县\",441324:\"龙门县\",441325:\"其它区\",441400:\"梅州市\",441402:\"梅江区\",441421:\"梅县\",441422:\"大埔县\",441423:\"丰顺县\",441424:\"五华县\",441426:\"平远县\",441427:\"蕉岭县\",441481:\"兴宁市\",441482:\"其它区\",441500:\"汕尾市\",441502:\"城区\",441521:\"海丰县\",441523:\"陆河县\",441581:\"陆丰市\",441582:\"其它区\",441600:\"河源市\",441602:\"源城区\",441621:\"紫金县\",441622:\"龙川县\",441623:\"连平县\",441624:\"和平县\",441625:\"东源县\",441626:\"其它区\",441700:\"阳江市\",441702:\"江城区\",441721:\"阳西县\",441723:\"阳东县\",441781:\"阳春市\",441782:\"其它区\",441800:\"清远市\",441802:\"清城区\",441821:\"佛冈县\",441823:\"阳山县\",441825:\"连山壮族瑶族自治县\",441826:\"连南瑶族自治县\",441827:\"清新区\",441881:\"英德市\",441882:\"连州市\",441883:\"其它区\",441900:\"东莞市\",442e3:\"中山市\",442101:\"东沙群岛\",445100:\"潮州市\",445102:\"湘桥区\",445121:\"潮安区\",445122:\"饶平县\",445186:\"其它区\",445200:\"揭阳市\",445202:\"榕城区\",445221:\"揭东区\",445222:\"揭西县\",445224:\"惠来县\",445281:\"普宁市\",445285:\"其它区\",445300:\"云浮市\",445302:\"云城区\",445321:\"新兴县\",445322:\"郁南县\",445323:\"云安县\",445381:\"罗定市\",445382:\"其它区\",45e4:\"广西壮族自治区\",450100:\"南宁市\",450102:\"兴宁区\",450103:\"青秀区\",450105:\"江南区\",450107:\"西乡塘区\",450108:\"良庆区\",450109:\"邕宁区\",450122:\"武鸣县\",450123:\"隆安县\",450124:\"马山县\",450125:\"上林县\",450126:\"宾阳县\",450127:\"横县\",450128:\"其它区\",450200:\"柳州市\",450202:\"城中区\",450203:\"鱼峰区\",450204:\"柳南区\",450205:\"柳北区\",450221:\"柳江县\",450222:\"柳城县\",450223:\"鹿寨县\",450224:\"融安县\",450225:\"融水苗族自治县\",450226:\"三江侗族自治县\",450227:\"其它区\",450300:\"桂林市\",450302:\"秀峰区\",450303:\"叠彩区\",450304:\"象山区\",450305:\"七星区\",450311:\"雁山区\",450321:\"阳朔县\",450322:\"临桂区\",450323:\"灵川县\",450324:\"全州县\",450325:\"兴安县\",450326:\"永福县\",450327:\"灌阳县\",450328:\"龙胜各族自治县\",450329:\"资源县\",450330:\"平乐县\",450331:\"荔浦县\",450332:\"恭城瑶族自治县\",450333:\"其它区\",450400:\"梧州市\",450403:\"万秀区\",450405:\"长洲区\",450406:\"龙圩区\",450421:\"苍梧县\",450422:\"藤县\",450423:\"蒙山县\",450481:\"岑溪市\",450482:\"其它区\",450500:\"北海市\",450502:\"海城区\",450503:\"银海区\",450512:\"铁山港区\",450521:\"合浦县\",450522:\"其它区\",450600:\"防城港市\",450602:\"港口区\",450603:\"防城区\",450621:\"上思县\",450681:\"东兴市\",450682:\"其它区\",450700:\"钦州市\",450702:\"钦南区\",450703:\"钦北区\",450721:\"灵山县\",450722:\"浦北县\",450723:\"其它区\",450800:\"贵港市\",450802:\"港北区\",450803:\"港南区\",450804:\"覃塘区\",450821:\"平南县\",450881:\"桂平市\",450882:\"其它区\",450900:\"玉林市\",450902:\"玉州区\",450903:\"福绵区\",450921:\"容县\",450922:\"陆川县\",450923:\"博白县\",450924:\"兴业县\",450981:\"北流市\",450982:\"其它区\",451e3:\"百色市\",451002:\"右江区\",451021:\"田阳县\",451022:\"田东县\",451023:\"平果县\",451024:\"德保县\",451025:\"靖西县\",451026:\"那坡县\",451027:\"凌云县\",451028:\"乐业县\",451029:\"田林县\",451030:\"西林县\",451031:\"隆林各族自治县\",451032:\"其它区\",451100:\"贺州市\",451102:\"八步区\",451119:\"平桂管理区\",451121:\"昭平县\",451122:\"钟山县\",451123:\"富川瑶族自治县\",451124:\"其它区\",451200:\"河池市\",451202:\"金城江区\",451221:\"南丹县\",451222:\"天峨县\",451223:\"凤山县\",451224:\"东兰县\",451225:\"罗城仫佬族自治县\",451226:\"环江毛南族自治县\",451227:\"巴马瑶族自治县\",451228:\"都安瑶族自治县\",451229:\"大化瑶族自治县\",451281:\"宜州市\",451282:\"其它区\",451300:\"来宾市\",451302:\"兴宾区\",451321:\"忻城县\",451322:\"象州县\",451323:\"武宣县\",451324:\"金秀瑶族自治县\",451381:\"合山市\",451382:\"其它区\",451400:\"崇左市\",451402:\"江州区\",451421:\"扶绥县\",451422:\"宁明县\",451423:\"龙州县\",451424:\"大新县\",451425:\"天等县\",451481:\"凭祥市\",451482:\"其它区\",46e4:\"海南省\",460100:\"海口市\",460105:\"秀英区\",460106:\"龙华区\",460107:\"琼山区\",460108:\"美兰区\",460109:\"其它区\",460200:\"三亚市\",460300:\"三沙市\",460321:\"西沙群岛\",460322:\"南沙群岛\",460323:\"中沙群岛的岛礁及其海域\",469001:\"五指山市\",469002:\"琼海市\",469003:\"儋州市\",469005:\"文昌市\",469006:\"万宁市\",469007:\"东方市\",469025:\"定安县\",469026:\"屯昌县\",469027:\"澄迈县\",469028:\"临高县\",469030:\"白沙黎族自治县\",469031:\"昌江黎族自治县\",469033:\"乐东黎族自治县\",469034:\"陵水黎族自治县\",469035:\"保亭黎族苗族自治县\",469036:\"琼中黎族苗族自治县\",471005:\"其它区\",5e5:\"重庆\",500100:\"重庆市\",500101:\"万州区\",500102:\"涪陵区\",500103:\"渝中区\",500104:\"大渡口区\",500105:\"江北区\",500106:\"沙坪坝区\",500107:\"九龙坡区\",500108:\"南岸区\",500109:\"北碚区\",500110:\"万盛区\",500111:\"双桥区\",500112:\"渝北区\",500113:\"巴南区\",500114:\"黔江区\",500115:\"长寿区\",500222:\"綦江区\",500223:\"潼南县\",500224:\"铜梁县\",500225:\"大足区\",500226:\"荣昌县\",500227:\"璧山县\",500228:\"梁平县\",500229:\"城口县\",500230:\"丰都县\",500231:\"垫江县\",500232:\"武隆县\",500233:\"忠县\",500234:\"开县\",500235:\"云阳县\",500236:\"奉节县\",500237:\"巫山县\",500238:\"巫溪县\",500240:\"石柱土家族自治县\",500241:\"秀山土家族苗族自治县\",500242:\"酉阳土家族苗族自治县\",500243:\"彭水苗族土家族自治县\",500381:\"江津区\",500382:\"合川区\",500383:\"永川区\",500384:\"南川区\",500385:\"其它区\",51e4:\"四川省\",510100:\"成都市\",510104:\"锦江区\",510105:\"青羊区\",510106:\"金牛区\",510107:\"武侯区\",510108:\"成华区\",510112:\"龙泉驿区\",510113:\"青白江区\",510114:\"新都区\",510115:\"温江区\",510121:\"金堂县\",510122:\"双流县\",510124:\"郫县\",510129:\"大邑县\",510131:\"蒲江县\",510132:\"新津县\",510181:\"都江堰市\",510182:\"彭州市\",510183:\"邛崃市\",510184:\"崇州市\",510185:\"其它区\",510300:\"自贡市\",510302:\"自流井区\",510303:\"贡井区\",510304:\"大安区\",510311:\"沿滩区\",510321:\"荣县\",510322:\"富顺县\",510323:\"其它区\",510400:\"攀枝花市\",510402:\"东区\",510403:\"西区\",510411:\"仁和区\",510421:\"米易县\",510422:\"盐边县\",510423:\"其它区\",510500:\"泸州市\",510502:\"江阳区\",510503:\"纳溪区\",510504:\"龙马潭区\",510521:\"泸县\",510522:\"合江县\",510524:\"叙永县\",510525:\"古蔺县\",510526:\"其它区\",510600:\"德阳市\",510603:\"旌阳区\",510623:\"中江县\",510626:\"罗江县\",510681:\"广汉市\",510682:\"什邡市\",510683:\"绵竹市\",510684:\"其它区\",510700:\"绵阳市\",510703:\"涪城区\",510704:\"游仙区\",510722:\"三台县\",510723:\"盐亭县\",510724:\"安县\",510725:\"梓潼县\",510726:\"北川羌族自治县\",510727:\"平武县\",510781:\"江油市\",510782:\"其它区\",510800:\"广元市\",510802:\"利州区\",510811:\"昭化区\",510812:\"朝天区\",510821:\"旺苍县\",510822:\"青川县\",510823:\"剑阁县\",510824:\"苍溪县\",510825:\"其它区\",510900:\"遂宁市\",510903:\"船山区\",510904:\"安居区\",510921:\"蓬溪县\",510922:\"射洪县\",510923:\"大英县\",510924:\"其它区\",511e3:\"内江市\",511002:\"市中区\",511011:\"东兴区\",511024:\"威远县\",511025:\"资中县\",511028:\"隆昌县\",511029:\"其它区\",511100:\"乐山市\",511102:\"市中区\",511111:\"沙湾区\",511112:\"五通桥区\",511113:\"金口河区\",511123:\"犍为县\",511124:\"井研县\",511126:\"夹江县\",511129:\"沐川县\",511132:\"峨边彝族自治县\",511133:\"马边彝族自治县\",511181:\"峨眉山市\",511182:\"其它区\",511300:\"南充市\",511302:\"顺庆区\",511303:\"高坪区\",511304:\"嘉陵区\",511321:\"南部县\",511322:\"营山县\",511323:\"蓬安县\",511324:\"仪陇县\",511325:\"西充县\",511381:\"阆中市\",511382:\"其它区\",511400:\"眉山市\",511402:\"东坡区\",511421:\"仁寿县\",511422:\"彭山县\",511423:\"洪雅县\",511424:\"丹棱县\",511425:\"青神县\",511426:\"其它区\",511500:\"宜宾市\",511502:\"翠屏区\",511521:\"宜宾县\",511522:\"南溪区\",511523:\"江安县\",511524:\"长宁县\",511525:\"高县\",511526:\"珙县\",511527:\"筠连县\",511528:\"兴文县\",511529:\"屏山县\",511530:\"其它区\",511600:\"广安市\",511602:\"广安区\",511603:\"前锋区\",511621:\"岳池县\",511622:\"武胜县\",511623:\"邻水县\",511681:\"华蓥市\",511683:\"其它区\",511700:\"达州市\",511702:\"通川区\",511721:\"达川区\",511722:\"宣汉县\",511723:\"开江县\",511724:\"大竹县\",511725:\"渠县\",511781:\"万源市\",511782:\"其它区\",511800:\"雅安市\",511802:\"雨城区\",511821:\"名山区\",511822:\"荥经县\",511823:\"汉源县\",511824:\"石棉县\",511825:\"天全县\",511826:\"芦山县\",511827:\"宝兴县\",511828:\"其它区\",511900:\"巴中市\",511902:\"巴州区\",511903:\"恩阳区\",511921:\"通江县\",511922:\"南江县\",511923:\"平昌县\",511924:\"其它区\",512e3:\"资阳市\",512002:\"雁江区\",512021:\"安岳县\",512022:\"乐至县\",512081:\"简阳市\",512082:\"其它区\",513200:\"阿坝藏族羌族自治州\",513221:\"汶川县\",513222:\"理县\",513223:\"茂县\",513224:\"松潘县\",513225:\"九寨沟县\",513226:\"金川县\",513227:\"小金县\",513228:\"黑水县\",513229:\"马尔康县\",513230:\"壤塘县\",513231:\"阿坝县\",513232:\"若尔盖县\",513233:\"红原县\",513234:\"其它区\",513300:\"甘孜藏族自治州\",513321:\"康定县\",513322:\"泸定县\",513323:\"丹巴县\",513324:\"九龙县\",513325:\"雅江县\",513326:\"道孚县\",513327:\"炉霍县\",513328:\"甘孜县\",513329:\"新龙县\",513330:\"德格县\",513331:\"白玉县\",513332:\"石渠县\",513333:\"色达县\",513334:\"理塘县\",513335:\"巴塘县\",513336:\"乡城县\",513337:\"稻城县\",513338:\"得荣县\",513339:\"其它区\",513400:\"凉山彝族自治州\",513401:\"西昌市\",513422:\"木里藏族自治县\",513423:\"盐源县\",513424:\"德昌县\",513425:\"会理县\",513426:\"会东县\",513427:\"宁南县\",513428:\"普格县\",513429:\"布拖县\",513430:\"金阳县\",513431:\"昭觉县\",513432:\"喜德县\",513433:\"冕宁县\",513434:\"越西县\",513435:\"甘洛县\",513436:\"美姑县\",513437:\"雷波县\",513438:\"其它区\",52e4:\"贵州省\",520100:\"贵阳市\",520102:\"南明区\",520103:\"云岩区\",520111:\"花溪区\",520112:\"乌当区\",520113:\"白云区\",520121:\"开阳县\",520122:\"息烽县\",520123:\"修文县\",520151:\"观山湖区\",520181:\"清镇市\",520182:\"其它区\",520200:\"六盘水市\",520201:\"钟山区\",520203:\"六枝特区\",520221:\"水城县\",520222:\"盘县\",520223:\"其它区\",520300:\"遵义市\",520302:\"红花岗区\",520303:\"汇川区\",520321:\"遵义县\",520322:\"桐梓县\",520323:\"绥阳县\",520324:\"正安县\",520325:\"道真仡佬族苗族自治县\",520326:\"务川仡佬族苗族自治县\",520327:\"凤冈县\",520328:\"湄潭县\",520329:\"余庆县\",520330:\"习水县\",520381:\"赤水市\",520382:\"仁怀市\",520383:\"其它区\",520400:\"安顺市\",520402:\"西秀区\",520421:\"平坝县\",520422:\"普定县\",520423:\"镇宁布依族苗族自治县\",520424:\"关岭布依族苗族自治县\",520425:\"紫云苗族布依族自治县\",520426:\"其它区\",522200:\"铜仁市\",522201:\"碧江区\",522222:\"江口县\",522223:\"玉屏侗族自治县\",522224:\"石阡县\",522225:\"思南县\",522226:\"印江土家族苗族自治县\",522227:\"德江县\",522228:\"沿河土家族自治县\",522229:\"松桃苗族自治县\",522230:\"万山区\",522231:\"其它区\",522300:\"黔西南布依族苗族自治州\",522301:\"兴义市\",522322:\"兴仁县\",522323:\"普安县\",522324:\"晴隆县\",522325:\"贞丰县\",522326:\"望谟县\",522327:\"册亨县\",522328:\"安龙县\",522329:\"其它区\",522400:\"毕节市\",522401:\"七星关区\",522422:\"大方县\",522423:\"黔西县\",522424:\"金沙县\",522425:\"织金县\",522426:\"纳雍县\",522427:\"威宁彝族回族苗族自治县\",522428:\"赫章县\",522429:\"其它区\",522600:\"黔东南苗族侗族自治州\",522601:\"凯里市\",522622:\"黄平县\",522623:\"施秉县\",522624:\"三穗县\",522625:\"镇远县\",522626:\"岑巩县\",522627:\"天柱县\",522628:\"锦屏县\",522629:\"剑河县\",522630:\"台江县\",522631:\"黎平县\",522632:\"榕江县\",522633:\"从江县\",522634:\"雷山县\",522635:\"麻江县\",522636:\"丹寨县\",522637:\"其它区\",522700:\"黔南布依族苗族自治州\",522701:\"都匀市\",522702:\"福泉市\",522722:\"荔波县\",522723:\"贵定县\",522725:\"瓮安县\",522726:\"独山县\",522727:\"平塘县\",522728:\"罗甸县\",522729:\"长顺县\",522730:\"龙里县\",522731:\"惠水县\",522732:\"三都水族自治县\",522733:\"其它区\",53e4:\"云南省\",530100:\"昆明市\",530102:\"五华区\",530103:\"盘龙区\",530111:\"官渡区\",530112:\"西山区\",530113:\"东川区\",530121:\"呈贡区\",530122:\"晋宁县\",530124:\"富民县\",530125:\"宜良县\",530126:\"石林彝族自治县\",530127:\"嵩明县\",530128:\"禄劝彝族苗族自治县\",530129:\"寻甸回族彝族自治县\",530181:\"安宁市\",530182:\"其它区\",530300:\"曲靖市\",530302:\"麒麟区\",530321:\"马龙县\",530322:\"陆良县\",530323:\"师宗县\",530324:\"罗平县\",530325:\"富源县\",530326:\"会泽县\",530328:\"沾益县\",530381:\"宣威市\",530382:\"其它区\",530400:\"玉溪市\",530402:\"红塔区\",530421:\"江川县\",530422:\"澄江县\",530423:\"通海县\",530424:\"华宁县\",530425:\"易门县\",530426:\"峨山彝族自治县\",530427:\"新平彝族傣族自治县\",530428:\"元江哈尼族彝族傣族自治县\",530429:\"其它区\",530500:\"保山市\",530502:\"隆阳区\",530521:\"施甸县\",530522:\"腾冲县\",530523:\"龙陵县\",530524:\"昌宁县\",530525:\"其它区\",530600:\"昭通市\",530602:\"昭阳区\",530621:\"鲁甸县\",530622:\"巧家县\",530623:\"盐津县\",530624:\"大关县\",530625:\"永善县\",530626:\"绥江县\",530627:\"镇雄县\",530628:\"彝良县\",530629:\"威信县\",530630:\"水富县\",530631:\"其它区\",530700:\"丽江市\",530702:\"古城区\",530721:\"玉龙纳西族自治县\",530722:\"永胜县\",530723:\"华坪县\",530724:\"宁蒗彝族自治县\",530725:\"其它区\",530800:\"普洱市\",530802:\"思茅区\",530821:\"宁洱哈尼族彝族自治县\",530822:\"墨江哈尼族自治县\",530823:\"景东彝族自治县\",530824:\"景谷傣族彝族自治县\",530825:\"镇沅彝族哈尼族拉祜族自治县\",530826:\"江城哈尼族彝族自治县\",530827:\"孟连傣族拉祜族佤族自治县\",530828:\"澜沧拉祜族自治县\",530829:\"西盟佤族自治县\",530830:\"其它区\",530900:\"临沧市\",530902:\"临翔区\",530921:\"凤庆县\",530922:\"云县\",530923:\"永德县\",530924:\"镇康县\",530925:\"双江拉祜族佤族布朗族傣族自治县\",530926:\"耿马傣族佤族自治县\",530927:\"沧源佤族自治县\",530928:\"其它区\",532300:\"楚雄彝族自治州\",532301:\"楚雄市\",532322:\"双柏县\",532323:\"牟定县\",532324:\"南华县\",532325:\"姚安县\",532326:\"大姚县\",532327:\"永仁县\",532328:\"元谋县\",532329:\"武定县\",532331:\"禄丰县\",532332:\"其它区\",532500:\"红河哈尼族彝族自治州\",532501:\"个旧市\",532502:\"开远市\",532522:\"蒙自市\",532523:\"屏边苗族自治县\",532524:\"建水县\",532525:\"石屏县\",532526:\"弥勒市\",532527:\"泸西县\",532528:\"元阳县\",532529:\"红河县\",532530:\"金平苗族瑶族傣族自治县\",532531:\"绿春县\",532532:\"河口瑶族自治县\",532533:\"其它区\",532600:\"文山壮族苗族自治州\",532621:\"文山市\",532622:\"砚山县\",532623:\"西畴县\",532624:\"麻栗坡县\",532625:\"马关县\",532626:\"丘北县\",532627:\"广南县\",532628:\"富宁县\",532629:\"其它区\",532800:\"西双版纳傣族自治州\",532801:\"景洪市\",532822:\"勐海县\",532823:\"勐腊县\",532824:\"其它区\",532900:\"大理白族自治州\",532901:\"大理市\",532922:\"漾濞彝族自治县\",532923:\"祥云县\",532924:\"宾川县\",532925:\"弥渡县\",532926:\"南涧彝族自治县\",532927:\"巍山彝族回族自治县\",532928:\"永平县\",532929:\"云龙县\",532930:\"洱源县\",532931:\"剑川县\",532932:\"鹤庆县\",532933:\"其它区\",533100:\"德宏傣族景颇族自治州\",533102:\"瑞丽市\",533103:\"芒市\",533122:\"梁河县\",533123:\"盈江县\",533124:\"陇川县\",533125:\"其它区\",533300:\"怒江傈僳族自治州\",533321:\"泸水县\",533323:\"福贡县\",533324:\"贡山独龙族怒族自治县\",533325:\"兰坪白族普米族自治县\",533326:\"其它区\",533400:\"迪庆藏族自治州\",533421:\"香格里拉县\",533422:\"德钦县\",533423:\"维西傈僳族自治县\",533424:\"其它区\",54e4:\"西藏自治区\",540100:\"拉萨市\",540102:\"城关区\",540121:\"林周县\",540122:\"当雄县\",540123:\"尼木县\",540124:\"曲水县\",540125:\"堆龙德庆县\",540126:\"达孜县\",540127:\"墨竹工卡县\",540128:\"其它区\",542100:\"昌都地区\",542121:\"昌都县\",542122:\"江达县\",542123:\"贡觉县\",542124:\"类乌齐县\",542125:\"丁青县\",542126:\"察雅县\",542127:\"八宿县\",542128:\"左贡县\",542129:\"芒康县\",542132:\"洛隆县\",542133:\"边坝县\",542134:\"其它区\",542200:\"山南地区\",542221:\"乃东县\",542222:\"扎囊县\",542223:\"贡嘎县\",542224:\"桑日县\",542225:\"琼结县\",542226:\"曲松县\",542227:\"措美县\",542228:\"洛扎县\",542229:\"加查县\",542231:\"隆子县\",542232:\"错那县\",542233:\"浪卡子县\",542234:\"其它区\",542300:\"日喀则地区\",542301:\"日喀则市\",542322:\"南木林县\",542323:\"江孜县\",542324:\"定日县\",542325:\"萨迦县\",542326:\"拉孜县\",542327:\"昂仁县\",542328:\"谢通门县\",542329:\"白朗县\",542330:\"仁布县\",542331:\"康马县\",542332:\"定结县\",542333:\"仲巴县\",542334:\"亚东县\",542335:\"吉隆县\",542336:\"聂拉木县\",542337:\"萨嘎县\",542338:\"岗巴县\",542339:\"其它区\",542400:\"那曲地区\",542421:\"那曲县\",542422:\"嘉黎县\",542423:\"比如县\",542424:\"聂荣县\",542425:\"安多县\",542426:\"申扎县\",542427:\"索县\",542428:\"班戈县\",542429:\"巴青县\",542430:\"尼玛县\",542431:\"其它区\",542432:\"双湖县\",542500:\"阿里地区\",542521:\"普兰县\",542522:\"札达县\",542523:\"噶尔县\",542524:\"日土县\",542525:\"革吉县\",542526:\"改则县\",542527:\"措勤县\",542528:\"其它区\",542600:\"林芝地区\",542621:\"林芝县\",542622:\"工布江达县\",542623:\"米林县\",542624:\"墨脱县\",542625:\"波密县\",542626:\"察隅县\",542627:\"朗县\",542628:\"其它区\",61e4:\"陕西省\",610100:\"西安市\",610102:\"新城区\",610103:\"碑林区\",610104:\"莲湖区\",610111:\"灞桥区\",610112:\"未央区\",610113:\"雁塔区\",610114:\"阎良区\",610115:\"临潼区\",610116:\"长安区\",610122:\"蓝田县\",610124:\"周至县\",610125:\"户县\",610126:\"高陵县\",610127:\"其它区\",610200:\"铜川市\",610202:\"王益区\",610203:\"印台区\",610204:\"耀州区\",610222:\"宜君县\",610223:\"其它区\",610300:\"宝鸡市\",610302:\"渭滨区\",610303:\"金台区\",610304:\"陈仓区\",610322:\"凤翔县\",610323:\"岐山县\",610324:\"扶风县\",610326:\"眉县\",610327:\"陇县\",610328:\"千阳县\",610329:\"麟游县\",610330:\"凤县\",610331:\"太白县\",610332:\"其它区\",610400:\"咸阳市\",610402:\"秦都区\",610403:\"杨陵区\",610404:\"渭城区\",610422:\"三原县\",610423:\"泾阳县\",610424:\"乾县\",610425:\"礼泉县\",610426:\"永寿县\",610427:\"彬县\",610428:\"长武县\",610429:\"旬邑县\",610430:\"淳化县\",610431:\"武功县\",610481:\"兴平市\",610482:\"其它区\",610500:\"渭南市\",610502:\"临渭区\",610521:\"华县\",610522:\"潼关县\",610523:\"大荔县\",610524:\"合阳县\",610525:\"澄城县\",610526:\"蒲城县\",610527:\"白水县\",610528:\"富平县\",610581:\"韩城市\",610582:\"华阴市\",610583:\"其它区\",610600:\"延安市\",610602:\"宝塔区\",610621:\"延长县\",610622:\"延川县\",610623:\"子长县\",610624:\"安塞县\",610625:\"志丹县\",610626:\"吴起县\",610627:\"甘泉县\",610628:\"富县\",610629:\"洛川县\",610630:\"宜川县\",610631:\"黄龙县\",610632:\"黄陵县\",610633:\"其它区\",610700:\"汉中市\",610702:\"汉台区\",610721:\"南郑县\",610722:\"城固县\",610723:\"洋县\",610724:\"西乡县\",610725:\"勉县\",610726:\"宁强县\",610727:\"略阳县\",610728:\"镇巴县\",610729:\"留坝县\",610730:\"佛坪县\",610731:\"其它区\",610800:\"榆林市\",610802:\"榆阳区\",610821:\"神木县\",610822:\"府谷县\",610823:\"横山县\",610824:\"靖边县\",610825:\"定边县\",610826:\"绥德县\",610827:\"米脂县\",610828:\"佳县\",610829:\"吴堡县\",610830:\"清涧县\",610831:\"子洲县\",610832:\"其它区\",610900:\"安康市\",610902:\"汉滨区\",610921:\"汉阴县\",610922:\"石泉县\",610923:\"宁陕县\",610924:\"紫阳县\",610925:\"岚皋县\",610926:\"平利县\",610927:\"镇坪县\",610928:\"旬阳县\",610929:\"白河县\",610930:\"其它区\",611e3:\"商洛市\",611002:\"商州区\",611021:\"洛南县\",611022:\"丹凤县\",611023:\"商南县\",611024:\"山阳县\",611025:\"镇安县\",611026:\"柞水县\",611027:\"其它区\",62e4:\"甘肃省\",620100:\"兰州市\",620102:\"城关区\",620103:\"七里河区\",620104:\"西固区\",620105:\"安宁区\",620111:\"红古区\",620121:\"永登县\",620122:\"皋兰县\",620123:\"榆中县\",620124:\"其它区\",620200:\"嘉峪关市\",620300:\"金昌市\",620302:\"金川区\",620321:\"永昌县\",620322:\"其它区\",620400:\"白银市\",620402:\"白银区\",620403:\"平川区\",620421:\"靖远县\",620422:\"会宁县\",620423:\"景泰县\",620424:\"其它区\",620500:\"天水市\",620502:\"秦州区\",620503:\"麦积区\",620521:\"清水县\",620522:\"秦安县\",620523:\"甘谷县\",620524:\"武山县\",620525:\"张家川回族自治县\",620526:\"其它区\",620600:\"武威市\",620602:\"凉州区\",620621:\"民勤县\",620622:\"古浪县\",620623:\"天祝藏族自治县\",620624:\"其它区\",620700:\"张掖市\",620702:\"甘州区\",620721:\"肃南裕固族自治县\",620722:\"民乐县\",620723:\"临泽县\",620724:\"高台县\",620725:\"山丹县\",620726:\"其它区\",620800:\"平凉市\",620802:\"崆峒区\",620821:\"泾川县\",620822:\"灵台县\",620823:\"崇信县\",620824:\"华亭县\",620825:\"庄浪县\",620826:\"静宁县\",620827:\"其它区\",620900:\"酒泉市\",620902:\"肃州区\",620921:\"金塔县\",620922:\"瓜州县\",620923:\"肃北蒙古族自治县\",620924:\"阿克塞哈萨克族自治县\",620981:\"玉门市\",620982:\"敦煌市\",620983:\"其它区\",621e3:\"庆阳市\",621002:\"西峰区\",621021:\"庆城县\",621022:\"环县\",621023:\"华池县\",621024:\"合水县\",621025:\"正宁县\",621026:\"宁县\",621027:\"镇原县\",621028:\"其它区\",621100:\"定西市\",621102:\"安定区\",621121:\"通渭县\",621122:\"陇西县\",621123:\"渭源县\",621124:\"临洮县\",621125:\"漳县\",621126:\"岷县\",621127:\"其它区\",621200:\"陇南市\",621202:\"武都区\",621221:\"成县\",621222:\"文县\",621223:\"宕昌县\",621224:\"康县\",621225:\"西和县\",621226:\"礼县\",621227:\"徽县\",621228:\"两当县\",621229:\"其它区\",622900:\"临夏回族自治州\",622901:\"临夏市\",622921:\"临夏县\",622922:\"康乐县\",622923:\"永靖县\",622924:\"广河县\",622925:\"和政县\",622926:\"东乡族自治县\",622927:\"积石山保安族东乡族撒拉族自治县\",622928:\"其它区\",623e3:\"甘南藏族自治州\",623001:\"合作市\",623021:\"临潭县\",623022:\"卓尼县\",623023:\"舟曲县\",623024:\"迭部县\",623025:\"玛曲县\",623026:\"碌曲县\",623027:\"夏河县\",623028:\"其它区\",63e4:\"青海省\",630100:\"西宁市\",630102:\"城东区\",630103:\"城中区\",630104:\"城西区\",630105:\"城北区\",630121:\"大通回族土族自治县\",630122:\"湟中县\",630123:\"湟源县\",630124:\"其它区\",632100:\"海东市\",632121:\"平安县\",632122:\"民和回族土族自治县\",632123:\"乐都区\",632126:\"互助土族自治县\",632127:\"化隆回族自治县\",632128:\"循化撒拉族自治县\",632129:\"其它区\",632200:\"海北藏族自治州\",632221:\"门源回族自治县\",632222:\"祁连县\",632223:\"海晏县\",632224:\"刚察县\",632225:\"其它区\",632300:\"黄南藏族自治州\",632321:\"同仁县\",632322:\"尖扎县\",632323:\"泽库县\",632324:\"河南蒙古族自治县\",632325:\"其它区\",632500:\"海南藏族自治州\",632521:\"共和县\",632522:\"同德县\",632523:\"贵德县\",632524:\"兴海县\",632525:\"贵南县\",632526:\"其它区\",632600:\"果洛藏族自治州\",632621:\"玛沁县\",632622:\"班玛县\",632623:\"甘德县\",632624:\"达日县\",632625:\"久治县\",632626:\"玛多县\",632627:\"其它区\",632700:\"玉树藏族自治州\",632721:\"玉树市\",632722:\"杂多县\",632723:\"称多县\",632724:\"治多县\",632725:\"囊谦县\",632726:\"曲麻莱县\",632727:\"其它区\",632800:\"海西蒙古族藏族自治州\",632801:\"格尔木市\",632802:\"德令哈市\",632821:\"乌兰县\",632822:\"都兰县\",632823:\"天峻县\",632824:\"其它区\",64e4:\"宁夏回族自治区\",640100:\"银川市\",640104:\"兴庆区\",640105:\"西夏区\",640106:\"金凤区\",640121:\"永宁县\",640122:\"贺兰县\",640181:\"灵武市\",640182:\"其它区\",640200:\"石嘴山市\",640202:\"大武口区\",640205:\"惠农区\",640221:\"平罗县\",640222:\"其它区\",640300:\"吴忠市\",640302:\"利通区\",640303:\"红寺堡区\",640323:\"盐池县\",640324:\"同心县\",640381:\"青铜峡市\",640382:\"其它区\",640400:\"固原市\",640402:\"原州区\",640422:\"西吉县\",640423:\"隆德县\",640424:\"泾源县\",640425:\"彭阳县\",640426:\"其它区\",640500:\"中卫市\",640502:\"沙坡头区\",640521:\"中宁县\",640522:\"海原县\",640523:\"其它区\",65e4:\"新疆维吾尔自治区\",650100:\"乌鲁木齐市\",650102:\"天山区\",650103:\"沙依巴克区\",650104:\"新市区\",650105:\"水磨沟区\",650106:\"头屯河区\",650107:\"达坂城区\",650109:\"米东区\",650121:\"乌鲁木齐县\",650122:\"其它区\",650200:\"克拉玛依市\",650202:\"独山子区\",650203:\"克拉玛依区\",650204:\"白碱滩区\",650205:\"乌尔禾区\",650206:\"其它区\",652100:\"吐鲁番地区\",652101:\"吐鲁番市\",652122:\"鄯善县\",652123:\"托克逊县\",652124:\"其它区\",652200:\"哈密地区\",652201:\"哈密市\",652222:\"巴里坤哈萨克自治县\",652223:\"伊吾县\",652224:\"其它区\",652300:\"昌吉回族自治州\",652301:\"昌吉市\",652302:\"阜康市\",652323:\"呼图壁县\",652324:\"玛纳斯县\",652325:\"奇台县\",652327:\"吉木萨尔县\",652328:\"木垒哈萨克自治县\",652329:\"其它区\",652700:\"博尔塔拉蒙古自治州\",652701:\"博乐市\",652702:\"阿拉山口市\",652722:\"精河县\",652723:\"温泉县\",652724:\"其它区\",652800:\"巴音郭楞蒙古自治州\",652801:\"库尔勒市\",652822:\"轮台县\",652823:\"尉犁县\",652824:\"若羌县\",652825:\"且末县\",652826:\"焉耆回族自治县\",652827:\"和静县\",652828:\"和硕县\",652829:\"博湖县\",652830:\"其它区\",652900:\"阿克苏地区\",652901:\"阿克苏市\",652922:\"温宿县\",652923:\"库车县\",652924:\"沙雅县\",652925:\"新和县\",652926:\"拜城县\",652927:\"乌什县\",652928:\"阿瓦提县\",652929:\"柯坪县\",652930:\"其它区\",653e3:\"克孜勒苏柯尔克孜自治州\",653001:\"阿图什市\",653022:\"阿克陶县\",653023:\"阿合奇县\",653024:\"乌恰县\",653025:\"其它区\",653100:\"喀什地区\",653101:\"喀什市\",653121:\"疏附县\",653122:\"疏勒县\",653123:\"英吉沙县\",653124:\"泽普县\",653125:\"莎车县\",653126:\"叶城县\",653127:\"麦盖提县\",653128:\"岳普湖县\",653129:\"伽师县\",653130:\"巴楚县\",653131:\"塔什库尔干塔吉克自治县\",653132:\"其它区\",653200:\"和田地区\",653201:\"和田市\",653221:\"和田县\",653222:\"墨玉县\",653223:\"皮山县\",653224:\"洛浦县\",653225:\"策勒县\",653226:\"于田县\",653227:\"民丰县\",653228:\"其它区\",654e3:\"伊犁哈萨克自治州\",654002:\"伊宁市\",654003:\"奎屯市\",654021:\"伊宁县\",654022:\"察布查尔锡伯自治县\",654023:\"霍城县\",654024:\"巩留县\",654025:\"新源县\",654026:\"昭苏县\",654027:\"特克斯县\",654028:\"尼勒克县\",654029:\"其它区\",654200:\"塔城地区\",654201:\"塔城市\",654202:\"乌苏市\",654221:\"额敏县\",654223:\"沙湾县\",654224:\"托里县\",654225:\"裕民县\",654226:\"和布克赛尔蒙古自治县\",654227:\"其它区\",654300:\"阿勒泰地区\",654301:\"阿勒泰市\",654321:\"布尔津县\",654322:\"富蕴县\",654323:\"福海县\",654324:\"哈巴河县\",654325:\"青河县\",654326:\"吉木乃县\",654327:\"其它区\",659001:\"石河子市\",659002:\"阿拉尔市\",659003:\"图木舒克市\",659004:\"五家渠市\",71e4:\"台湾\",710100:\"台北市\",710101:\"中正区\",710102:\"大同区\",710103:\"中山区\",710104:\"松山区\",710105:\"大安区\",710106:\"万华区\",710107:\"信义区\",710108:\"士林区\",710109:\"北投区\",710110:\"内湖区\",710111:\"南港区\",710112:\"文山区\",710113:\"其它区\",710200:\"高雄市\",710201:\"新兴区\",710202:\"前金区\",710203:\"芩雅区\",710204:\"盐埕区\",710205:\"鼓山区\",710206:\"旗津区\",710207:\"前镇区\",710208:\"三民区\",710209:\"左营区\",710210:\"楠梓区\",710211:\"小港区\",710212:\"其它区\",710241:\"苓雅区\",710242:\"仁武区\",710243:\"大社区\",710244:\"冈山区\",710245:\"路竹区\",710246:\"阿莲区\",710247:\"田寮区\",710248:\"燕巢区\",710249:\"桥头区\",710250:\"梓官区\",710251:\"弥陀区\",710252:\"永安区\",710253:\"湖内区\",710254:\"凤山区\",710255:\"大寮区\",710256:\"林园区\",710257:\"鸟松区\",710258:\"大树区\",710259:\"旗山区\",710260:\"美浓区\",710261:\"六龟区\",710262:\"内门区\",710263:\"杉林区\",710264:\"甲仙区\",710265:\"桃源区\",710266:\"那玛夏区\",710267:\"茂林区\",710268:\"茄萣区\",710300:\"台南市\",710301:\"中西区\",710302:\"东区\",710303:\"南区\",710304:\"北区\",710305:\"安平区\",710306:\"安南区\",710307:\"其它区\",710339:\"永康区\",710340:\"归仁区\",710341:\"新化区\",710342:\"左镇区\",710343:\"玉井区\",710344:\"楠西区\",710345:\"南化区\",710346:\"仁德区\",710347:\"关庙区\",710348:\"龙崎区\",710349:\"官田区\",710350:\"麻豆区\",710351:\"佳里区\",710352:\"西港区\",710353:\"七股区\",710354:\"将军区\",710355:\"学甲区\",710356:\"北门区\",710357:\"新营区\",710358:\"后壁区\",710359:\"白河区\",710360:\"东山区\",710361:\"六甲区\",710362:\"下营区\",710363:\"柳营区\",710364:\"盐水区\",710365:\"善化区\",710366:\"大内区\",710367:\"山上区\",710368:\"新市区\",710369:\"安定区\",710400:\"台中市\",710401:\"中区\",710402:\"东区\",710403:\"南区\",710404:\"西区\",710405:\"北区\",710406:\"北屯区\",710407:\"西屯区\",710408:\"南屯区\",710409:\"其它区\",710431:\"太平区\",710432:\"大里区\",710433:\"雾峰区\",710434:\"乌日区\",710435:\"丰原区\",710436:\"后里区\",710437:\"石冈区\",710438:\"东势区\",710439:\"和平区\",710440:\"新社区\",710441:\"潭子区\",710442:\"大雅区\",710443:\"神冈区\",710444:\"大肚区\",710445:\"沙鹿区\",710446:\"龙井区\",710447:\"梧栖区\",710448:\"清水区\",710449:\"大甲区\",710450:\"外埔区\",710451:\"大安区\",710500:\"金门县\",710507:\"金沙镇\",710508:\"金湖镇\",710509:\"金宁乡\",710510:\"金城镇\",710511:\"烈屿乡\",710512:\"乌坵乡\",710600:\"南投县\",710614:\"南投市\",710615:\"中寮乡\",710616:\"草屯镇\",710617:\"国姓乡\",710618:\"埔里镇\",710619:\"仁爱乡\",710620:\"名间乡\",710621:\"集集镇\",710622:\"水里乡\",710623:\"鱼池乡\",710624:\"信义乡\",710625:\"竹山镇\",710626:\"鹿谷乡\",710700:\"基隆市\",710701:\"仁爱区\",710702:\"信义区\",710703:\"中正区\",710704:\"中山区\",710705:\"安乐区\",710706:\"暖暖区\",710707:\"七堵区\",710708:\"其它区\",710800:\"新竹市\",710801:\"东区\",710802:\"北区\",710803:\"香山区\",710804:\"其它区\",710900:\"嘉义市\",710901:\"东区\",710902:\"西区\",710903:\"其它区\",711100:\"新北市\",711130:\"万里区\",711131:\"金山区\",711132:\"板桥区\",711133:\"汐止区\",711134:\"深坑区\",711135:\"石碇区\",711136:\"瑞芳区\",711137:\"平溪区\",711138:\"双溪区\",711139:\"贡寮区\",711140:\"新店区\",711141:\"坪林区\",711142:\"乌来区\",711143:\"永和区\",711144:\"中和区\",711145:\"土城区\",711146:\"三峡区\",711147:\"树林区\",711148:\"莺歌区\",711149:\"三重区\",711150:\"新庄区\",711151:\"泰山区\",711152:\"林口区\",711153:\"芦洲区\",711154:\"五股区\",711155:\"八里区\",711156:\"淡水区\",711157:\"三芝区\",711158:\"石门区\",711200:\"宜兰县\",711214:\"宜兰市\",711215:\"头城镇\",711216:\"礁溪乡\",711217:\"壮围乡\",711218:\"员山乡\",711219:\"罗东镇\",711220:\"三星乡\",711221:\"大同乡\",711222:\"五结乡\",711223:\"冬山乡\",711224:\"苏澳镇\",711225:\"南澳乡\",711226:\"钓鱼台\",711300:\"新竹县\",711314:\"竹北市\",711315:\"湖口乡\",711316:\"新丰乡\",711317:\"新埔镇\",711318:\"关西镇\",711319:\"芎林乡\",711320:\"宝山乡\",711321:\"竹东镇\",711322:\"五峰乡\",711323:\"横山乡\",711324:\"尖石乡\",711325:\"北埔乡\",711326:\"峨眉乡\",711400:\"桃园县\",711414:\"中坜市\",711415:\"平镇市\",711416:\"龙潭乡\",711417:\"杨梅市\",711418:\"新屋乡\",711419:\"观音乡\",711420:\"桃园市\",711421:\"龟山乡\",711422:\"八德市\",711423:\"大溪镇\",711424:\"复兴乡\",711425:\"大园乡\",711426:\"芦竹乡\",711500:\"苗栗县\",711519:\"竹南镇\",711520:\"头份镇\",711521:\"三湾乡\",711522:\"南庄乡\",711523:\"狮潭乡\",711524:\"后龙镇\",711525:\"通霄镇\",711526:\"苑里镇\",711527:\"苗栗市\",711528:\"造桥乡\",711529:\"头屋乡\",711530:\"公馆乡\",711531:\"大湖乡\",711532:\"泰安乡\",711533:\"铜锣乡\",711534:\"三义乡\",711535:\"西湖乡\",711536:\"卓兰镇\",711700:\"彰化县\",711727:\"彰化市\",711728:\"芬园乡\",711729:\"花坛乡\",711730:\"秀水乡\",711731:\"鹿港镇\",711732:\"福兴乡\",711733:\"线西乡\",711734:\"和美镇\",711735:\"伸港乡\",711736:\"员林镇\",711737:\"社头乡\",711738:\"永靖乡\",711739:\"埔心乡\",711740:\"溪湖镇\",711741:\"大村乡\",711742:\"埔盐乡\",711743:\"田中镇\",711744:\"北斗镇\",711745:\"田尾乡\",711746:\"埤头乡\",711747:\"溪州乡\",711748:\"竹塘乡\",711749:\"二林镇\",711750:\"大城乡\",711751:\"芳苑乡\",711752:\"二水乡\",711900:\"嘉义县\",711919:\"番路乡\",711920:\"梅山乡\",711921:\"竹崎乡\",711922:\"阿里山乡\",711923:\"中埔乡\",711924:\"大埔乡\",711925:\"水上乡\",711926:\"鹿草乡\",711927:\"太保市\",711928:\"朴子市\",711929:\"东石乡\",711930:\"六脚乡\",711931:\"新港乡\",711932:\"民雄乡\",711933:\"大林镇\",711934:\"溪口乡\",711935:\"义竹乡\",711936:\"布袋镇\",712100:\"云林县\",712121:\"斗南镇\",712122:\"大埤乡\",712123:\"虎尾镇\",712124:\"土库镇\",712125:\"褒忠乡\",712126:\"东势乡\",712127:\"台西乡\",712128:\"仑背乡\",712129:\"麦寮乡\",712130:\"斗六市\",712131:\"林内乡\",712132:\"古坑乡\",712133:\"莿桐乡\",712134:\"西螺镇\",712135:\"二仑乡\",712136:\"北港镇\",712137:\"水林乡\",712138:\"口湖乡\",712139:\"四湖乡\",712140:\"元长乡\",712400:\"屏东县\",712434:\"屏东市\",712435:\"三地门乡\",712436:\"雾台乡\",712437:\"玛家乡\",712438:\"九如乡\",712439:\"里港乡\",712440:\"高树乡\",712441:\"盐埔乡\",712442:\"长治乡\",712443:\"麟洛乡\",712444:\"竹田乡\",712445:\"内埔乡\",712446:\"万丹乡\",712447:\"潮州镇\",712448:\"泰武乡\",712449:\"来义乡\",712450:\"万峦乡\",712451:\"崁顶乡\",712452:\"新埤乡\",712453:\"南州乡\",712454:\"林边乡\",712455:\"东港镇\",712456:\"琉球乡\",712457:\"佳冬乡\",712458:\"新园乡\",712459:\"枋寮乡\",712460:\"枋山乡\",712461:\"春日乡\",712462:\"狮子乡\",712463:\"车城乡\",712464:\"牡丹乡\",712465:\"恒春镇\",712466:\"满州乡\",712500:\"台东县\",712517:\"台东市\",712518:\"绿岛乡\",712519:\"兰屿乡\",712520:\"延平乡\",712521:\"卑南乡\",712522:\"鹿野乡\",712523:\"关山镇\",712524:\"海端乡\",712525:\"池上乡\",712526:\"东河乡\",712527:\"成功镇\",712528:\"长滨乡\",712529:\"金峰乡\",712530:\"大武乡\",712531:\"达仁乡\",712532:\"太麻里乡\",712600:\"花莲县\",712615:\"花莲市\",712616:\"新城乡\",712617:\"太鲁阁\",712618:\"秀林乡\",712619:\"吉安乡\",712620:\"寿丰乡\",712621:\"凤林镇\",712622:\"光复乡\",712623:\"丰滨乡\",712624:\"瑞穗乡\",712625:\"万荣乡\",712626:\"玉里镇\",712627:\"卓溪乡\",712628:\"富里乡\",712700:\"澎湖县\",712707:\"马公市\",712708:\"西屿乡\",712709:\"望安乡\",712710:\"七美乡\",712711:\"白沙乡\",712712:\"湖西乡\",712800:\"连江县\",712805:\"南竿乡\",712806:\"北竿乡\",712807:\"莒光乡\",712808:\"东引乡\",81e4:\"香港特别行政区\",810100:\"香港岛\",810101:\"中西区\",810102:\"湾仔\",810103:\"东区\",810104:\"南区\",810200:\"九龙\",810201:\"九龙城区\",810202:\"油尖旺区\",810203:\"深水埗区\",810204:\"黄大仙区\",810205:\"观塘区\",810300:\"新界\",810301:\"北区\",810302:\"大埔区\",810303:\"沙田区\",810304:\"西贡区\",810305:\"元朗区\",810306:\"屯门区\",810307:\"荃湾区\",810308:\"葵青区\",810309:\"离岛区\",82e4:\"澳门特别行政区\",820100:\"澳门半岛\",820200:\"离岛\",99e4:\"海外\",990100:\"海外\"};function i(e){for(var t,n={},i=0;i<e.length;i++)t=e[i],t&&t.id&&(n[t.id]=t);for(var r=[],a=0;a<e.length;a++)if(t=e[a],t)if(void 0!=t.pid||void 0!=t.parentId){var o=n[t.pid]||n[t.parentId];o&&(o.children||(o.children=[]),o.children.push(t))}else r.push(t);return r}var r=function(){var e=[];for(var t in n){var r=\"0000\"===t.slice(2,6)?void 0:\"00\"==t.slice(4,6)?t.slice(0,2)+\"0000\":t.slice(0,4)+\"00\";e.push({id:t,pid:r,name:n[t]})}return i(e)}();e.exports=r},function(e,t,n){var i=n(18);e.exports={d4:function(){return this.natural(1,4)},d6:function(){return this.natural(1,6)},d8:function(){return this.natural(1,8)},d12:function(){return this.natural(1,12)},d20:function(){return this.natural(1,20)},d100:function(){return this.natural(1,100)},guid:function(){var e=\"abcdefABCDEF1234567890\",t=this.string(e,8)+\"-\"+this.string(e,4)+\"-\"+this.string(e,4)+\"-\"+this.string(e,4)+\"-\"+this.string(e,12);return t},uuid:function(){return this.guid()},id:function(){var e,t=0,n=[\"7\",\"9\",\"10\",\"5\",\"8\",\"4\",\"2\",\"1\",\"6\",\"3\",\"7\",\"9\",\"10\",\"5\",\"8\",\"4\",\"2\"],r=[\"1\",\"0\",\"X\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"];e=this.pick(i).id+this.date(\"yyyyMMdd\")+this.string(\"number\",3);for(var a=0;a<e.length;a++)t+=e[a]*n[a];return e+=r[t%11],e},increment:function(){var e=0;return function(t){return e+=+t||1}}(),inc:function(e){return this.increment(e)}}},function(e,t,n){var i=n(21),r=n(22);e.exports={Parser:i,Handler:r}},function(e,t){function n(e){this.type=e,this.offset=n.offset(),this.text=n.text()}function i(e,t){n.call(this,\"alternate\"),this.left=e,this.right=t}function r(e){n.call(this,\"match\"),this.body=e.filter(Boolean)}function a(e,t){n.call(this,e),this.body=t}function o(e){a.call(this,\"capture-group\"),this.index=v[this.offset]||(v[this.offset]=b++),this.body=e}function s(e,t){n.call(this,\"quantified\"),this.body=e,this.quantifier=t}function l(e,t){n.call(this,\"quantifier\"),this.min=e,this.max=t,this.greedy=!0}function c(e,t){n.call(this,\"charset\"),this.invert=e,this.body=t}function u(e,t){n.call(this,\"range\"),this.start=e,this.end=t}function d(e){n.call(this,\"literal\"),this.body=e,this.escaped=this.body!=this.text}function p(e){n.call(this,\"unicode\"),this.code=e.toUpperCase()}function h(e){n.call(this,\"hex\"),this.code=e.toUpperCase()}function f(e){n.call(this,\"octal\"),this.code=e.toUpperCase()}function _(e){n.call(this,\"back-reference\"),this.code=e.toUpperCase()}function m(e){n.call(this,\"control-character\"),this.code=e.toUpperCase()}var g=function(){function e(e,t){function n(){this.constructor=e}n.prototype=t.prototype,e.prototype=new n}function t(e,t,n,i,r){function a(e,t){function n(e){function t(e){return e.charCodeAt(0).toString(16).toUpperCase()}return e.replace(/\\\\/g,\"\\\\\\\\\").replace(/\"/g,'\\\\\"').replace(/\\x08/g,\"\\\\b\").replace(/\\t/g,\"\\\\t\").replace(/\\n/g,\"\\\\n\").replace(/\\f/g,\"\\\\f\").replace(/\\r/g,\"\\\\r\").replace(/[\\x00-\\x07\\x0B\\x0E\\x0F]/g,(function(e){return\"\\\\x0\"+t(e)})).replace(/[\\x10-\\x1F\\x80-\\xFF]/g,(function(e){return\"\\\\x\"+t(e)})).replace(/[\\u0180-\\u0FFF]/g,(function(e){return\"\\\\u0\"+t(e)})).replace(/[\\u1080-\\uFFFF]/g,(function(e){return\"\\\\u\"+t(e)}))}var i,r;switch(e.length){case 0:i=\"end of input\";break;case 1:i=e[0];break;default:i=e.slice(0,-1).join(\", \")+\" or \"+e[e.length-1]}return r=t?'\"'+n(t)+'\"':\"end of input\",\"Expected \"+i+\" but \"+r+\" found.\"}this.expected=e,this.found=t,this.offset=n,this.line=i,this.column=r,this.name=\"SyntaxError\",this.message=a(e,t)}function g(e){function g(){return e.substring(Jn,Zn)}function b(){return Jn}function v(t){function n(t,n,i){var r,a;for(r=n;i>r;r++)a=e.charAt(r),\"\\n\"===a?(t.seenCR||t.line++,t.column=1,t.seenCR=!1):\"\\r\"===a||\"\\u2028\"===a||\"\\u2029\"===a?(t.line++,t.column=1,t.seenCR=!0):(t.column++,t.seenCR=!1)}return ei!==t&&(ei>t&&(ei=0,ti={line:1,column:1,seenCR:!1}),n(ti,ei,t),ei=t),ti}function E(e){ni>Zn||(Zn>ni&&(ni=Zn,ii=[]),ii.push(e))}function y(e){var t=0;for(e.sort();t<e.length;)e[t-1]===e[t]?e.splice(t,1):t++}function S(){var t,n,i,r,a;return t=Zn,n=C(),null!==n?(i=Zn,124===e.charCodeAt(Zn)?(r=xe,Zn++):(r=null,0===ri&&E(we)),null!==r?(a=S(),null!==a?(r=[r,a],i=r):(Zn=i,i=Ce)):(Zn=i,i=Ce),null===i&&(i=Te),null!==i?(Jn=t,n=Oe(n,i),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)):(Zn=t,t=Ce),t}function C(){var e,t,n,i,r;if(e=Zn,t=x(),null===t&&(t=Te),null!==t)if(n=Zn,ri++,i=N(),ri--,null===i?n=Te:(Zn=n,n=Ce),null!==n){for(i=[],r=O(),null===r&&(r=T());null!==r;)i.push(r),r=O(),null===r&&(r=T());null!==i?(r=w(),null===r&&(r=Te),null!==r?(Jn=e,t=Ne(t,i,r),null===t?(Zn=e,e=t):e=t):(Zn=e,e=Ce)):(Zn=e,e=Ce)}else Zn=e,e=Ce;else Zn=e,e=Ce;return e}function T(){var e;return e=B(),null===e&&(e=q(),null===e&&(e=W())),e}function x(){var t,n;return t=Zn,94===e.charCodeAt(Zn)?(n=Re,Zn++):(n=null,0===ri&&E(ke)),null!==n&&(Jn=t,n=Ae()),null===n?(Zn=t,t=n):t=n,t}function w(){var t,n;return t=Zn,36===e.charCodeAt(Zn)?(n=De,Zn++):(n=null,0===ri&&E(Ie)),null!==n&&(Jn=t,n=Me()),null===n?(Zn=t,t=n):t=n,t}function O(){var e,t,n;return e=Zn,t=T(),null!==t?(n=N(),null!==n?(Jn=e,t=Le(t,n),null===t?(Zn=e,e=t):e=t):(Zn=e,e=Ce)):(Zn=e,e=Ce),e}function N(){var e,t,n;return ri++,e=Zn,t=R(),null!==t?(n=P(),null===n&&(n=Te),null!==n?(Jn=e,t=Fe(t,n),null===t?(Zn=e,e=t):e=t):(Zn=e,e=Ce)):(Zn=e,e=Ce),ri--,null===e&&(t=null,0===ri&&E(Pe)),e}function R(){var e;return e=k(),null===e&&(e=A(),null===e&&(e=D(),null===e&&(e=I(),null===e&&(e=M(),null===e&&(e=L()))))),e}function k(){var t,n,i,r,a,o;return t=Zn,123===e.charCodeAt(Zn)?(n=Be,Zn++):(n=null,0===ri&&E(Ue)),null!==n?(i=F(),null!==i?(44===e.charCodeAt(Zn)?(r=$e,Zn++):(r=null,0===ri&&E(je)),null!==r?(a=F(),null!==a?(125===e.charCodeAt(Zn)?(o=Ge,Zn++):(o=null,0===ri&&E(qe)),null!==o?(Jn=t,n=He(i,a),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)):(Zn=t,t=Ce)):(Zn=t,t=Ce)):(Zn=t,t=Ce)):(Zn=t,t=Ce),t}function A(){var t,n,i,r;return t=Zn,123===e.charCodeAt(Zn)?(n=Be,Zn++):(n=null,0===ri&&E(Ue)),null!==n?(i=F(),null!==i?(e.substr(Zn,2)===Ve?(r=Ve,Zn+=2):(r=null,0===ri&&E(ze)),null!==r?(Jn=t,n=Ye(i),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)):(Zn=t,t=Ce)):(Zn=t,t=Ce),t}function D(){var t,n,i,r;return t=Zn,123===e.charCodeAt(Zn)?(n=Be,Zn++):(n=null,0===ri&&E(Ue)),null!==n?(i=F(),null!==i?(125===e.charCodeAt(Zn)?(r=Ge,Zn++):(r=null,0===ri&&E(qe)),null!==r?(Jn=t,n=We(i),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)):(Zn=t,t=Ce)):(Zn=t,t=Ce),t}function I(){var t,n;return t=Zn,43===e.charCodeAt(Zn)?(n=Ke,Zn++):(n=null,0===ri&&E(Qe)),null!==n&&(Jn=t,n=Xe()),null===n?(Zn=t,t=n):t=n,t}function M(){var t,n;return t=Zn,42===e.charCodeAt(Zn)?(n=Ze,Zn++):(n=null,0===ri&&E(Je)),null!==n&&(Jn=t,n=et()),null===n?(Zn=t,t=n):t=n,t}function L(){var t,n;return t=Zn,63===e.charCodeAt(Zn)?(n=tt,Zn++):(n=null,0===ri&&E(nt)),null!==n&&(Jn=t,n=it()),null===n?(Zn=t,t=n):t=n,t}function P(){var t;return 63===e.charCodeAt(Zn)?(t=tt,Zn++):(t=null,0===ri&&E(nt)),t}function F(){var t,n,i;if(t=Zn,n=[],rt.test(e.charAt(Zn))?(i=e.charAt(Zn),Zn++):(i=null,0===ri&&E(at)),null!==i)for(;null!==i;)n.push(i),rt.test(e.charAt(Zn))?(i=e.charAt(Zn),Zn++):(i=null,0===ri&&E(at));else n=Ce;return null!==n&&(Jn=t,n=ot(n)),null===n?(Zn=t,t=n):t=n,t}function B(){var t,n,i,r;return t=Zn,40===e.charCodeAt(Zn)?(n=st,Zn++):(n=null,0===ri&&E(lt)),null!==n?(i=j(),null===i&&(i=G(),null===i&&(i=$(),null===i&&(i=U()))),null!==i?(41===e.charCodeAt(Zn)?(r=ct,Zn++):(r=null,0===ri&&E(ut)),null!==r?(Jn=t,n=dt(i),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)):(Zn=t,t=Ce)):(Zn=t,t=Ce),t}function U(){var e,t;return e=Zn,t=S(),null!==t&&(Jn=e,t=pt(t)),null===t?(Zn=e,e=t):e=t,e}function $(){var t,n,i;return t=Zn,e.substr(Zn,2)===ht?(n=ht,Zn+=2):(n=null,0===ri&&E(ft)),null!==n?(i=S(),null!==i?(Jn=t,n=_t(i),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)):(Zn=t,t=Ce),t}function j(){var t,n,i;return t=Zn,e.substr(Zn,2)===mt?(n=mt,Zn+=2):(n=null,0===ri&&E(gt)),null!==n?(i=S(),null!==i?(Jn=t,n=bt(i),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)):(Zn=t,t=Ce),t}function G(){var t,n,i;return t=Zn,e.substr(Zn,2)===vt?(n=vt,Zn+=2):(n=null,0===ri&&E(Et)),null!==n?(i=S(),null!==i?(Jn=t,n=yt(i),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)):(Zn=t,t=Ce),t}function q(){var t,n,i,r,a;if(ri++,t=Zn,91===e.charCodeAt(Zn)?(n=Ct,Zn++):(n=null,0===ri&&E(Tt)),null!==n)if(94===e.charCodeAt(Zn)?(i=Re,Zn++):(i=null,0===ri&&E(ke)),null===i&&(i=Te),null!==i){for(r=[],a=H(),null===a&&(a=V());null!==a;)r.push(a),a=H(),null===a&&(a=V());null!==r?(93===e.charCodeAt(Zn)?(a=xt,Zn++):(a=null,0===ri&&E(wt)),null!==a?(Jn=t,n=Ot(i,r),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)):(Zn=t,t=Ce)}else Zn=t,t=Ce;else Zn=t,t=Ce;return ri--,null===t&&(n=null,0===ri&&E(St)),t}function H(){var t,n,i,r;return ri++,t=Zn,n=V(),null!==n?(45===e.charCodeAt(Zn)?(i=Rt,Zn++):(i=null,0===ri&&E(kt)),null!==i?(r=V(),null!==r?(Jn=t,n=At(n,r),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)):(Zn=t,t=Ce)):(Zn=t,t=Ce),ri--,null===t&&(n=null,0===ri&&E(Nt)),t}function V(){var e;return ri++,e=Y(),null===e&&(e=z()),ri--,null===e&&(null,0===ri&&E(Dt)),e}function z(){var t,n;return t=Zn,It.test(e.charAt(Zn))?(n=e.charAt(Zn),Zn++):(n=null,0===ri&&E(Mt)),null!==n&&(Jn=t,n=Lt(n)),null===n?(Zn=t,t=n):t=n,t}function Y(){var e;return e=Z(),null===e&&(e=pe(),null===e&&(e=te(),null===e&&(e=ne(),null===e&&(e=ie(),null===e&&(e=re(),null===e&&(e=ae(),null===e&&(e=oe(),null===e&&(e=se(),null===e&&(e=le(),null===e&&(e=ce(),null===e&&(e=ue(),null===e&&(e=de(),null===e&&(e=fe(),null===e&&(e=_e(),null===e&&(e=me(),null===e&&(e=ge(),null===e&&(e=be()))))))))))))))))),e}function W(){var e;return e=K(),null===e&&(e=X(),null===e&&(e=Q())),e}function K(){var t,n;return t=Zn,46===e.charCodeAt(Zn)?(n=Pt,Zn++):(n=null,0===ri&&E(Ft)),null!==n&&(Jn=t,n=Bt()),null===n?(Zn=t,t=n):t=n,t}function Q(){var t,n;return ri++,t=Zn,$t.test(e.charAt(Zn))?(n=e.charAt(Zn),Zn++):(n=null,0===ri&&E(jt)),null!==n&&(Jn=t,n=Lt(n)),null===n?(Zn=t,t=n):t=n,ri--,null===t&&(n=null,0===ri&&E(Ut)),t}function X(){var e;return e=J(),null===e&&(e=ee(),null===e&&(e=pe(),null===e&&(e=te(),null===e&&(e=ne(),null===e&&(e=ie(),null===e&&(e=re(),null===e&&(e=ae(),null===e&&(e=oe(),null===e&&(e=se(),null===e&&(e=le(),null===e&&(e=ce(),null===e&&(e=ue(),null===e&&(e=de(),null===e&&(e=he(),null===e&&(e=fe(),null===e&&(e=_e(),null===e&&(e=me(),null===e&&(e=ge(),null===e&&(e=be()))))))))))))))))))),e}function Z(){var t,n;return t=Zn,e.substr(Zn,2)===Gt?(n=Gt,Zn+=2):(n=null,0===ri&&E(qt)),null!==n&&(Jn=t,n=Ht()),null===n?(Zn=t,t=n):t=n,t}function J(){var t,n;return t=Zn,e.substr(Zn,2)===Gt?(n=Gt,Zn+=2):(n=null,0===ri&&E(qt)),null!==n&&(Jn=t,n=Vt()),null===n?(Zn=t,t=n):t=n,t}function ee(){var t,n;return t=Zn,e.substr(Zn,2)===zt?(n=zt,Zn+=2):(n=null,0===ri&&E(Yt)),null!==n&&(Jn=t,n=Wt()),null===n?(Zn=t,t=n):t=n,t}function te(){var t,n;return t=Zn,e.substr(Zn,2)===Kt?(n=Kt,Zn+=2):(n=null,0===ri&&E(Qt)),null!==n&&(Jn=t,n=Xt()),null===n?(Zn=t,t=n):t=n,t}function ne(){var t,n;return t=Zn,e.substr(Zn,2)===Zt?(n=Zt,Zn+=2):(n=null,0===ri&&E(Jt)),null!==n&&(Jn=t,n=en()),null===n?(Zn=t,t=n):t=n,t}function ie(){var t,n;return t=Zn,e.substr(Zn,2)===tn?(n=tn,Zn+=2):(n=null,0===ri&&E(nn)),null!==n&&(Jn=t,n=rn()),null===n?(Zn=t,t=n):t=n,t}function re(){var t,n;return t=Zn,e.substr(Zn,2)===an?(n=an,Zn+=2):(n=null,0===ri&&E(on)),null!==n&&(Jn=t,n=sn()),null===n?(Zn=t,t=n):t=n,t}function ae(){var t,n;return t=Zn,e.substr(Zn,2)===ln?(n=ln,Zn+=2):(n=null,0===ri&&E(cn)),null!==n&&(Jn=t,n=un()),null===n?(Zn=t,t=n):t=n,t}function oe(){var t,n;return t=Zn,e.substr(Zn,2)===dn?(n=dn,Zn+=2):(n=null,0===ri&&E(pn)),null!==n&&(Jn=t,n=hn()),null===n?(Zn=t,t=n):t=n,t}function se(){var t,n;return t=Zn,e.substr(Zn,2)===fn?(n=fn,Zn+=2):(n=null,0===ri&&E(_n)),null!==n&&(Jn=t,n=mn()),null===n?(Zn=t,t=n):t=n,t}function le(){var t,n;return t=Zn,e.substr(Zn,2)===gn?(n=gn,Zn+=2):(n=null,0===ri&&E(bn)),null!==n&&(Jn=t,n=vn()),null===n?(Zn=t,t=n):t=n,t}function ce(){var t,n;return t=Zn,e.substr(Zn,2)===En?(n=En,Zn+=2):(n=null,0===ri&&E(yn)),null!==n&&(Jn=t,n=Sn()),null===n?(Zn=t,t=n):t=n,t}function ue(){var t,n;return t=Zn,e.substr(Zn,2)===Cn?(n=Cn,Zn+=2):(n=null,0===ri&&E(Tn)),null!==n&&(Jn=t,n=xn()),null===n?(Zn=t,t=n):t=n,t}function de(){var t,n;return t=Zn,e.substr(Zn,2)===wn?(n=wn,Zn+=2):(n=null,0===ri&&E(On)),null!==n&&(Jn=t,n=Nn()),null===n?(Zn=t,t=n):t=n,t}function pe(){var t,n,i;return t=Zn,e.substr(Zn,2)===Rn?(n=Rn,Zn+=2):(n=null,0===ri&&E(kn)),null!==n?(e.length>Zn?(i=e.charAt(Zn),Zn++):(i=null,0===ri&&E(An)),null!==i?(Jn=t,n=Dn(i),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)):(Zn=t,t=Ce),t}function he(){var t,n,i;return t=Zn,92===e.charCodeAt(Zn)?(n=In,Zn++):(n=null,0===ri&&E(Mn)),null!==n?(Ln.test(e.charAt(Zn))?(i=e.charAt(Zn),Zn++):(i=null,0===ri&&E(Pn)),null!==i?(Jn=t,n=Fn(i),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)):(Zn=t,t=Ce),t}function fe(){var t,n,i,r;if(t=Zn,e.substr(Zn,2)===Bn?(n=Bn,Zn+=2):(n=null,0===ri&&E(Un)),null!==n){if(i=[],$n.test(e.charAt(Zn))?(r=e.charAt(Zn),Zn++):(r=null,0===ri&&E(jn)),null!==r)for(;null!==r;)i.push(r),$n.test(e.charAt(Zn))?(r=e.charAt(Zn),Zn++):(r=null,0===ri&&E(jn));else i=Ce;null!==i?(Jn=t,n=Gn(i),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)}else Zn=t,t=Ce;return t}function _e(){var t,n,i,r;if(t=Zn,e.substr(Zn,2)===qn?(n=qn,Zn+=2):(n=null,0===ri&&E(Hn)),null!==n){if(i=[],Vn.test(e.charAt(Zn))?(r=e.charAt(Zn),Zn++):(r=null,0===ri&&E(zn)),null!==r)for(;null!==r;)i.push(r),Vn.test(e.charAt(Zn))?(r=e.charAt(Zn),Zn++):(r=null,0===ri&&E(zn));else i=Ce;null!==i?(Jn=t,n=Yn(i),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)}else Zn=t,t=Ce;return t}function me(){var t,n,i,r;if(t=Zn,e.substr(Zn,2)===Wn?(n=Wn,Zn+=2):(n=null,0===ri&&E(Kn)),null!==n){if(i=[],Vn.test(e.charAt(Zn))?(r=e.charAt(Zn),Zn++):(r=null,0===ri&&E(zn)),null!==r)for(;null!==r;)i.push(r),Vn.test(e.charAt(Zn))?(r=e.charAt(Zn),Zn++):(r=null,0===ri&&E(zn));else i=Ce;null!==i?(Jn=t,n=Qn(i),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)}else Zn=t,t=Ce;return t}function ge(){var t,n;return t=Zn,e.substr(Zn,2)===Bn?(n=Bn,Zn+=2):(n=null,0===ri&&E(Un)),null!==n&&(Jn=t,n=Xn()),null===n?(Zn=t,t=n):t=n,t}function be(){var t,n,i;return t=Zn,92===e.charCodeAt(Zn)?(n=In,Zn++):(n=null,0===ri&&E(Mn)),null!==n?(e.length>Zn?(i=e.charAt(Zn),Zn++):(i=null,0===ri&&E(An)),null!==i?(Jn=t,n=Lt(i),null===n?(Zn=t,t=n):t=n):(Zn=t,t=Ce)):(Zn=t,t=Ce),t}var ve,Ee=arguments.length>1?arguments[1]:{},ye={regexp:S},Se=S,Ce=null,Te=\"\",xe=\"|\",we='\"|\"',Oe=function(e,t){return t?new i(e,t[1]):e},Ne=function(e,t,n){return new r([e].concat(t).concat([n]))},Re=\"^\",ke='\"^\"',Ae=function(){return new n(\"start\")},De=\"$\",Ie='\"$\"',Me=function(){return new n(\"end\")},Le=function(e,t){return new s(e,t)},Pe=\"Quantifier\",Fe=function(e,t){return t&&(e.greedy=!1),e},Be=\"{\",Ue='\"{\"',$e=\",\",je='\",\"',Ge=\"}\",qe='\"}\"',He=function(e,t){return new l(e,t)},Ve=\",}\",ze='\",}\"',Ye=function(e){return new l(e,1/0)},We=function(e){return new l(e,e)},Ke=\"+\",Qe='\"+\"',Xe=function(){return new l(1,1/0)},Ze=\"*\",Je='\"*\"',et=function(){return new l(0,1/0)},tt=\"?\",nt='\"?\"',it=function(){return new l(0,1)},rt=/^[0-9]/,at=\"[0-9]\",ot=function(e){return+e.join(\"\")},st=\"(\",lt='\"(\"',ct=\")\",ut='\")\"',dt=function(e){return e},pt=function(e){return new o(e)},ht=\"?:\",ft='\"?:\"',_t=function(e){return new a(\"non-capture-group\",e)},mt=\"?=\",gt='\"?=\"',bt=function(e){return new a(\"positive-lookahead\",e)},vt=\"?!\",Et='\"?!\"',yt=function(e){return new a(\"negative-lookahead\",e)},St=\"CharacterSet\",Ct=\"[\",Tt='\"[\"',xt=\"]\",wt='\"]\"',Ot=function(e,t){return new c(!!e,t)},Nt=\"CharacterRange\",Rt=\"-\",kt='\"-\"',At=function(e,t){return new u(e,t)},Dt=\"Character\",It=/^[^\\\\\\]]/,Mt=\"[^\\\\\\\\\\\\]]\",Lt=function(e){return new d(e)},Pt=\".\",Ft='\".\"',Bt=function(){return new n(\"any-character\")},Ut=\"Literal\",$t=/^[^|\\\\\\/.[()?+*$\\^]/,jt=\"[^|\\\\\\\\\\\\/.[()?+*$\\\\^]\",Gt=\"\\\\b\",qt='\"\\\\\\\\b\"',Ht=function(){return new n(\"backspace\")},Vt=function(){return new n(\"word-boundary\")},zt=\"\\\\B\",Yt='\"\\\\\\\\B\"',Wt=function(){return new n(\"non-word-boundary\")},Kt=\"\\\\d\",Qt='\"\\\\\\\\d\"',Xt=function(){return new n(\"digit\")},Zt=\"\\\\D\",Jt='\"\\\\\\\\D\"',en=function(){return new n(\"non-digit\")},tn=\"\\\\f\",nn='\"\\\\\\\\f\"',rn=function(){return new n(\"form-feed\")},an=\"\\\\n\",on='\"\\\\\\\\n\"',sn=function(){return new n(\"line-feed\")},ln=\"\\\\r\",cn='\"\\\\\\\\r\"',un=function(){return new n(\"carriage-return\")},dn=\"\\\\s\",pn='\"\\\\\\\\s\"',hn=function(){return new n(\"white-space\")},fn=\"\\\\S\",_n='\"\\\\\\\\S\"',mn=function(){return new n(\"non-white-space\")},gn=\"\\\\t\",bn='\"\\\\\\\\t\"',vn=function(){return new n(\"tab\")},En=\"\\\\v\",yn='\"\\\\\\\\v\"',Sn=function(){return new n(\"vertical-tab\")},Cn=\"\\\\w\",Tn='\"\\\\\\\\w\"',xn=function(){return new n(\"word\")},wn=\"\\\\W\",On='\"\\\\\\\\W\"',Nn=function(){return new n(\"non-word\")},Rn=\"\\\\c\",kn='\"\\\\\\\\c\"',An=\"any character\",Dn=function(e){return new m(e)},In=\"\\\\\",Mn='\"\\\\\\\\\"',Ln=/^[1-9]/,Pn=\"[1-9]\",Fn=function(e){return new _(e)},Bn=\"\\\\0\",Un='\"\\\\\\\\0\"',$n=/^[0-7]/,jn=\"[0-7]\",Gn=function(e){return new f(e.join(\"\"))},qn=\"\\\\x\",Hn='\"\\\\\\\\x\"',Vn=/^[0-9a-fA-F]/,zn=\"[0-9a-fA-F]\",Yn=function(e){return new h(e.join(\"\"))},Wn=\"\\\\u\",Kn='\"\\\\\\\\u\"',Qn=function(e){return new p(e.join(\"\"))},Xn=function(){return new n(\"null-character\")},Zn=0,Jn=0,ei=0,ti={line:1,column:1,seenCR:!1},ni=0,ii=[],ri=0;if(\"startRule\"in Ee){if(!(Ee.startRule in ye))throw new Error(\"Can't start parsing from rule \\\"\"+Ee.startRule+'\".');Se=ye[Ee.startRule]}if(n.offset=b,n.text=g,ve=Se(),null!==ve&&Zn===e.length)return ve;throw y(ii),Jn=Math.max(Zn,ni),new t(ii,Jn<e.length?e.charAt(Jn):null,Jn,v(Jn).line,v(Jn).column)}return e(t,Error),{SyntaxError:t,parse:g}}(),b=1,v={};e.exports=g},function(e,t,n){var i=n(3),r=n(5),a={extend:i.extend},o=h(97,122),s=h(65,90),l=h(48,57),c=h(32,47)+h(58,64)+h(91,96)+h(123,126),u=h(32,126),d=\" \\f\\n\\r\\t\\v \\u2028\\u2029\",p={\"\\\\w\":o+s+l+\"_\",\"\\\\W\":c.replace(\"_\",\"\"),\"\\\\s\":d,\"\\\\S\":function(){for(var e=u,t=0;t<d.length;t++)e=e.replace(d[t],\"\");return e}(),\"\\\\d\":l,\"\\\\D\":o+s+c};function h(e,t){for(var n=\"\",i=e;i<=t;i++)n+=String.fromCharCode(i);return n}a.gen=function(e,t,n){return n=n||{guid:1},a[e.type]?a[e.type](e,t,n):a.token(e,t,n)},a.extend({token:function(e,t,n){switch(e.type){case\"start\":case\"end\":return\"\";case\"any-character\":return r.character();case\"backspace\":return\"\";case\"word-boundary\":return\"\";case\"non-word-boundary\":break;case\"digit\":return r.pick(l.split(\"\"));case\"non-digit\":return r.pick((o+s+c).split(\"\"));case\"form-feed\":break;case\"line-feed\":return e.body||e.text;case\"carriage-return\":break;case\"white-space\":return r.pick(d.split(\"\"));case\"non-white-space\":return r.pick((o+s+l).split(\"\"));case\"tab\":break;case\"vertical-tab\":break;case\"word\":return r.pick((o+s+l).split(\"\"));case\"non-word\":return r.pick(c.replace(\"_\",\"\").split(\"\"));case\"null-character\":break}return e.body||e.text},alternate:function(e,t,n){return this.gen(r.boolean()?e.left:e.right,t,n)},match:function(e,t,n){t=\"\";for(var i=0;i<e.body.length;i++)t+=this.gen(e.body[i],t,n);return t},\"capture-group\":function(e,t,n){return t=this.gen(e.body,t,n),n[n.guid++]=t,t},\"non-capture-group\":function(e,t,n){return this.gen(e.body,t,n)},\"positive-lookahead\":function(e,t,n){return this.gen(e.body,t,n)},\"negative-lookahead\":function(e,t,n){return\"\"},quantified:function(e,t,n){t=\"\";for(var i=this.quantifier(e.quantifier),r=0;r<i;r++)t+=this.gen(e.body,t,n);return t},quantifier:function(e,t,n){var i=Math.max(e.min,0),a=isFinite(e.max)?e.max:i+r.integer(3,7);return r.integer(i,a)},charset:function(e,t,n){if(e.invert)return this[\"invert-charset\"](e,t,n);var i=r.pick(e.body);return this.gen(i,t,n)},\"invert-charset\":function(e,t,n){for(var i,a=u,o=0;o<e.body.length;o++)switch(i=e.body[o],i.type){case\"literal\":a=a.replace(i.body,\"\");break;case\"range\":for(var s=this.gen(i.start,t,n).charCodeAt(),l=this.gen(i.end,t,n).charCodeAt(),c=s;c<=l;c++)a=a.replace(String.fromCharCode(c),\"\");default:var d=p[i.text];if(d)for(var h=0;h<=d.length;h++)a=a.replace(d[h],\"\")}return r.pick(a.split(\"\"))},range:function(e,t,n){var i=this.gen(e.start,t,n).charCodeAt(),a=this.gen(e.end,t,n).charCodeAt();return String.fromCharCode(r.integer(i,a))},literal:function(e,t,n){return e.escaped?e.body:e.text},unicode:function(e,t,n){return String.fromCharCode(parseInt(e.code,16))},hex:function(e,t,n){return String.fromCharCode(parseInt(e.code,16))},octal:function(e,t,n){return String.fromCharCode(parseInt(e.code,8))},\"back-reference\":function(e,t,n){return n[e.code]||\"\"},CONTROL_CHARACTER_MAP:function(){for(var e=\"@ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \\\\ ] ^ _\".split(\" \"),t=\"\\0 \u0001 \u0002 \u0003 \u0004 \u0005 \u0006 \u0007 \\b \\t \\n \\v \\f \\r \u000e \u000f \u0010 \u0011 \u0012 \u0013 \u0014 \u0015 \u0016 \u0017 \u0018 \u0019 \u001a \u001b \u001c \u001d \u001e \u001f\".split(\" \"),n={},i=0;i<e.length;i++)n[e[i]]=t[i];return n}(),\"control-character\":function(e,t,n){return this.CONTROL_CHARACTER_MAP[e.code]}}),e.exports=a},function(e,t,n){e.exports=n(24)},function(e,t,n){var i=n(2),r=n(3),a=n(4);function o(e,t,n){n=n||[];var s={name:\"string\"===typeof t?t.replace(i.RE_KEY,\"$1\"):t,template:e,type:r.type(e),rule:a.parse(t)};switch(s.path=n.slice(0),s.path.push(void 0===t?\"ROOT\":s.name),s.type){case\"array\":s.items=[],r.each(e,(function(e,t){s.items.push(o(e,t,s.path))}));break;case\"object\":s.properties=[],r.each(e,(function(e,t){s.properties.push(o(e,t,s.path))}));break}return s}e.exports=o},function(e,t,n){e.exports=n(26)},function(e,t,n){var i=n(2),r=n(3),a=n(23);function o(e,t){for(var n=a(e),i=s.diff(n,t),r=0;r<i.length;r++);return i}var s={diff:function(e,t,n){var i=[];return this.name(e,t,n,i)&&this.type(e,t,n,i)&&(this.value(e,t,n,i),this.properties(e,t,n,i),this.items(e,t,n,i)),i},name:function(e,t,n,i){var r=i.length;return l.equal(\"name\",e.path,n+\"\",e.name+\"\",i),i.length===r},type:function(e,t,n,a){var o=a.length;switch(e.type){case\"string\":if(e.template.match(i.RE_PLACEHOLDER))return!0;break;case\"array\":if(e.rule.parameters){if(void 0!==e.rule.min&&void 0===e.rule.max&&1===e.rule.count)return!0;if(e.rule.parameters[2])return!0}break;case\"function\":return!0}return l.equal(\"type\",e.path,r.type(t),e.type,a),a.length===o},value:function(e,t,n,r){var a,o=r.length,s=e.rule,c=e.type;if(\"object\"===c||\"array\"===c||\"function\"===c)return!0;if(!s.parameters){switch(c){case\"regexp\":return l.match(\"value\",e.path,t,e.template,r),r.length===o;case\"string\":if(e.template.match(i.RE_PLACEHOLDER))return r.length===o;break}return l.equal(\"value\",e.path,t,e.template,r),r.length===o}switch(c){case\"number\":var u=(t+\"\").split(\".\");u[0]=+u[0],void 0!==s.min&&void 0!==s.max&&(l.greaterThanOrEqualTo(\"value\",e.path,u[0],Math.min(s.min,s.max),r),l.lessThanOrEqualTo(\"value\",e.path,u[0],Math.max(s.min,s.max),r)),void 0!==s.min&&void 0===s.max&&l.equal(\"value\",e.path,u[0],s.min,r,\"[value] \"+n),s.decimal&&(void 0!==s.dmin&&void 0!==s.dmax&&(l.greaterThanOrEqualTo(\"value\",e.path,u[1].length,s.dmin,r),l.lessThanOrEqualTo(\"value\",e.path,u[1].length,s.dmax,r)),void 0!==s.dmin&&void 0===s.dmax&&l.equal(\"value\",e.path,u[1].length,s.dmin,r));break;case\"boolean\":break;case\"string\":a=t.match(new RegExp(e.template,\"g\")),a=a?a.length:0,void 0!==s.min&&void 0!==s.max&&(l.greaterThanOrEqualTo(\"repeat count\",e.path,a,s.min,r),l.lessThanOrEqualTo(\"repeat count\",e.path,a,s.max,r)),void 0!==s.min&&void 0===s.max&&l.equal(\"repeat count\",e.path,a,s.min,r);break;case\"regexp\":a=t.match(new RegExp(e.template.source.replace(/^\\^|\\$$/g,\"\"),\"g\")),a=a?a.length:0,void 0!==s.min&&void 0!==s.max&&(l.greaterThanOrEqualTo(\"repeat count\",e.path,a,s.min,r),l.lessThanOrEqualTo(\"repeat count\",e.path,a,s.max,r)),void 0!==s.min&&void 0===s.max&&l.equal(\"repeat count\",e.path,a,s.min,r);break}return r.length===o},properties:function(e,t,n,i){var a=i.length,o=e.rule,s=r.keys(t);if(e.properties){if(e.rule.parameters?(void 0!==o.min&&void 0!==o.max&&(l.greaterThanOrEqualTo(\"properties length\",e.path,s.length,Math.min(o.min,o.max),i),l.lessThanOrEqualTo(\"properties length\",e.path,s.length,Math.max(o.min,o.max),i)),void 0!==o.min&&void 0===o.max&&1!==o.count&&l.equal(\"properties length\",e.path,s.length,o.min,i)):l.equal(\"properties length\",e.path,s.length,e.properties.length,i),i.length!==a)return!1;for(var c=0;c<s.length;c++)i.push.apply(i,this.diff(function(){var t;return r.each(e.properties,(function(e){e.name===s[c]&&(t=e)})),t||e.properties[c]}(),t[s[c]],s[c]));return i.length===a}},items:function(e,t,n,i){var r=i.length;if(e.items){var a=e.rule;if(e.rule.parameters){if(void 0!==a.min&&void 0!==a.max&&(l.greaterThanOrEqualTo(\"items\",e.path,t.length,Math.min(a.min,a.max)*e.items.length,i,\"[{utype}] array is too short: {path} must have at least {expected} elements but instance has {actual} elements\"),l.lessThanOrEqualTo(\"items\",e.path,t.length,Math.max(a.min,a.max)*e.items.length,i,\"[{utype}] array is too long: {path} must have at most {expected} elements but instance has {actual} elements\")),void 0!==a.min&&void 0===a.max){if(1===a.count)return i.length===r;l.equal(\"items length\",e.path,t.length,a.min*e.items.length,i)}if(a.parameters[2])return i.length===r}else l.equal(\"items length\",e.path,t.length,e.items.length,i);if(i.length!==r)return!1;for(var o=0;o<t.length;o++)i.push.apply(i,this.diff(e.items[o%e.items.length],t[o],o%e.items.length));return i.length===r}}},l={message:function(e){return(e.message||\"[{utype}] Expect {path}'{ltype} {action} {expected}, but is {actual}\").replace(\"{utype}\",e.type.toUpperCase()).replace(\"{ltype}\",e.type.toLowerCase()).replace(\"{path}\",r.isArray(e.path)&&e.path.join(\".\")||e.path).replace(\"{action}\",e.action).replace(\"{expected}\",e.expected).replace(\"{actual}\",e.actual)},equal:function(e,t,n,i,r,a){if(n===i)return!0;switch(e){case\"type\":if(\"regexp\"===i&&\"string\"===n)return!0;break}var o={path:t,type:e,actual:n,expected:i,action:\"is equal to\",message:a};return o.message=l.message(o),r.push(o),!1},match:function(e,t,n,i,r,a){if(i.test(n))return!0;var o={path:t,type:e,actual:n,expected:i,action:\"matches\",message:a};return o.message=l.message(o),r.push(o),!1},notEqual:function(e,t,n,i,r,a){if(n!==i)return!0;var o={path:t,type:e,actual:n,expected:i,action:\"is not equal to\",message:a};return o.message=l.message(o),r.push(o),!1},greaterThan:function(e,t,n,i,r,a){if(n>i)return!0;var o={path:t,type:e,actual:n,expected:i,action:\"is greater than\",message:a};return o.message=l.message(o),r.push(o),!1},lessThan:function(e,t,n,i,r,a){if(n<i)return!0;var o={path:t,type:e,actual:n,expected:i,action:\"is less to\",message:a};return o.message=l.message(o),r.push(o),!1},greaterThanOrEqualTo:function(e,t,n,i,r,a){if(n>=i)return!0;var o={path:t,type:e,actual:n,expected:i,action:\"is greater than or equal to\",message:a};return o.message=l.message(o),r.push(o),!1},lessThanOrEqualTo:function(e,t,n,i,r,a){if(n<=i)return!0;var o={path:t,type:e,actual:n,expected:i,action:\"is less than or equal to\",message:a};return o.message=l.message(o),r.push(o),!1}};o.Diff=s,o.Assert=l,e.exports=o},function(e,t,n){e.exports=n(28)},function(e,t,n){var i=n(3);window._XMLHttpRequest=window.XMLHttpRequest,window._ActiveXObject=window.ActiveXObject;try{new window.Event(\"custom\")}catch(h){window.Event=function(e,t,n,i){var r=document.createEvent(\"CustomEvent\");return r.initCustomEvent(e,t,n,i),r}}var r={UNSENT:0,OPENED:1,HEADERS_RECEIVED:2,LOADING:3,DONE:4},a=\"readystatechange loadstart progress abort error load timeout loadend\".split(\" \"),o=\"timeout withCredentials\".split(\" \"),s=\"readyState responseURL status statusText responseType response responseText responseXML\".split(\" \"),l={100:\"Continue\",101:\"Switching Protocols\",200:\"OK\",201:\"Created\",202:\"Accepted\",203:\"Non-Authoritative Information\",204:\"No Content\",205:\"Reset Content\",206:\"Partial Content\",300:\"Multiple Choice\",301:\"Moved Permanently\",302:\"Found\",303:\"See Other\",304:\"Not Modified\",305:\"Use Proxy\",307:\"Temporary Redirect\",400:\"Bad Request\",401:\"Unauthorized\",402:\"Payment Required\",403:\"Forbidden\",404:\"Not Found\",405:\"Method Not Allowed\",406:\"Not Acceptable\",407:\"Proxy Authentication Required\",408:\"Request Timeout\",409:\"Conflict\",410:\"Gone\",411:\"Length Required\",412:\"Precondition Failed\",413:\"Request Entity Too Large\",414:\"Request-URI Too Long\",415:\"Unsupported Media Type\",416:\"Requested Range Not Satisfiable\",417:\"Expectation Failed\",422:\"Unprocessable Entity\",500:\"Internal Server Error\",501:\"Not Implemented\",502:\"Bad Gateway\",503:\"Service Unavailable\",504:\"Gateway Timeout\",505:\"HTTP Version Not Supported\"};function c(){this.custom={events:{},requestHeaders:{},responseHeaders:{}}}function u(){var e=function(){var e=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,t=/^([\\w.+-]+:)(?:\\/\\/([^\\/?#:]*)(?::(\\d+)|)|)/,n=location.href,i=t.exec(n.toLowerCase())||[];return e.test(i[1])}();return window.ActiveXObject?!e&&t()||n():t();function t(){try{return new window._XMLHttpRequest}catch(e){}}function n(){try{return new window._ActiveXObject(\"Microsoft.XMLHTTP\")}catch(e){}}}function d(e){for(var t in c.Mock._mocked){var n=c.Mock._mocked[t];if((!n.rurl||r(n.rurl,e.url))&&(!n.rtype||r(n.rtype,e.type.toLowerCase())))return n}function r(e,t){return\"string\"===i.type(e)?e===t:\"regexp\"===i.type(e)?e.test(t):void 0}}function p(e,t){return i.isFunction(e.template)?e.template(t):c.Mock.mock(e.template)}c._settings={timeout:\"10-100\"},c.setup=function(e){return i.extend(c._settings,e),c._settings},i.extend(c,r),i.extend(c.prototype,r),c.prototype.mock=!0,c.prototype.match=!1,i.extend(c.prototype,{open:function(e,t,n,r,l){var p=this;i.extend(this.custom,{method:e,url:t,async:\"boolean\"!==typeof n||n,username:r,password:l,options:{url:t,type:e}}),this.custom.timeout=function(e){if(\"number\"===typeof e)return e;if(\"string\"===typeof e&&!~e.indexOf(\"-\"))return parseInt(e,10);if(\"string\"===typeof e&&~e.indexOf(\"-\")){var t=e.split(\"-\"),n=parseInt(t[0],10),i=parseInt(t[1],10);return Math.round(Math.random()*(i-n))+n}}(c._settings.timeout);var h=d(this.custom.options);function f(e){for(var t=0;t<s.length;t++)try{p[s[t]]=_[s[t]]}catch(n){}p.dispatchEvent(new Event(e.type))}if(h)this.match=!0,this.custom.template=h,this.readyState=c.OPENED,this.dispatchEvent(new Event(\"readystatechange\"));else{var _=u();this.custom.xhr=_;for(var m=0;m<a.length;m++)_.addEventListener(a[m],f);r?_.open(e,t,n,r,l):_.open(e,t,n);for(var g=0;g<o.length;g++)try{_[o[g]]=p[o[g]]}catch(b){}}},setRequestHeader:function(e,t){if(this.match){var n=this.custom.requestHeaders;n[e]?n[e]+=\",\"+t:n[e]=t}else this.custom.xhr.setRequestHeader(e,t)},timeout:0,withCredentials:!1,upload:{},send:function(e){var t=this;function n(){t.readyState=c.HEADERS_RECEIVED,t.dispatchEvent(new Event(\"readystatechange\")),t.readyState=c.LOADING,t.dispatchEvent(new Event(\"readystatechange\")),t.status=200,t.statusText=l[200],t.response=t.responseText=JSON.stringify(p(t.custom.template,t.custom.options),null,4),t.readyState=c.DONE,t.dispatchEvent(new Event(\"readystatechange\")),t.dispatchEvent(new Event(\"load\")),t.dispatchEvent(new Event(\"loadend\"))}this.custom.options.body=e,this.match?(this.setRequestHeader(\"X-Requested-With\",\"MockXMLHttpRequest\"),this.dispatchEvent(new Event(\"loadstart\")),this.custom.async?setTimeout(n,this.custom.timeout):n()):this.custom.xhr.send(e)},abort:function(){this.match?(this.readyState=c.UNSENT,this.dispatchEvent(new Event(\"abort\",!1,!1,this)),this.dispatchEvent(new Event(\"error\",!1,!1,this))):this.custom.xhr.abort()}}),i.extend(c.prototype,{responseURL:\"\",status:c.UNSENT,statusText:\"\",getResponseHeader:function(e){return this.match?this.custom.responseHeaders[e.toLowerCase()]:this.custom.xhr.getResponseHeader(e)},getAllResponseHeaders:function(){if(!this.match)return this.custom.xhr.getAllResponseHeaders();var e=this.custom.responseHeaders,t=\"\";for(var n in e)e.hasOwnProperty(n)&&(t+=n+\": \"+e[n]+\"\\r\\n\");return t},overrideMimeType:function(){},responseType:\"\",response:null,responseText:\"\",responseXML:null}),i.extend(c.prototype,{addEventListener:function(e,t){var n=this.custom.events;n[e]||(n[e]=[]),n[e].push(t)},removeEventListener:function(e,t){for(var n=this.custom.events[e]||[],i=0;i<n.length;i++)n[i]===t&&n.splice(i--,1)},dispatchEvent:function(e){for(var t=this.custom.events[e.type]||[],n=0;n<t.length;n++)t[n].call(this,e);var i=\"on\"+e.type;this[i]&&this[i](e)}}),e.exports=c}])}))},9814:function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(e){const t=\"false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance\",n=\"get set args call\";return{name:\"AspectJ\",keywords:t,illegal:/<\\/|#/,contains:[e.COMMENT(/\\/\\*\\*/,/\\*\\//,{relevance:0,contains:[{begin:/\\w+@/,relevance:0},{className:\"doctag\",begin:/@[A-Za-z]+/}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:\"class\",beginKeywords:\"aspect\",end:/[{;=]/,excludeEnd:!0,illegal:/[:;\"\\[\\]]/,contains:[{beginKeywords:\"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton\"},e.UNDERSCORE_TITLE_MODE,{begin:/\\([^\\)]*/,end:/[)]+/,keywords:t+\" \"+n,excludeEnd:!1}]},{className:\"class\",beginKeywords:\"class interface\",end:/[{;=]/,excludeEnd:!0,relevance:0,keywords:\"class interface\",illegal:/[:\"\\[\\]]/,contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:\"pointcut after before around throwing returning\",end:/[)]/,excludeEnd:!1,illegal:/[\"\\[\\]]/,contains:[{begin:i(e.UNDERSCORE_IDENT_RE,/\\s*\\(/),returnBegin:!0,contains:[e.UNDERSCORE_TITLE_MODE]}]},{begin:/[:]/,returnBegin:!0,end:/[{;]/,relevance:0,excludeEnd:!1,keywords:t,illegal:/[\"\\[\\]]/,contains:[{begin:i(e.UNDERSCORE_IDENT_RE,/\\s*\\(/),keywords:t+\" \"+n,relevance:0},e.QUOTE_STRING_MODE]},{beginKeywords:\"new throw\",relevance:0},{className:\"function\",begin:/\\w+ +\\w+(\\.\\w+)?\\s*\\([^\\)]*\\)\\s*((throws)[\\w\\s,]+)?[\\{;]/,returnBegin:!0,end:/[{;=]/,keywords:t,excludeEnd:!0,contains:[{begin:i(e.UNDERSCORE_IDENT_RE,/\\s*\\(/),returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:\"params\",begin:/\\(/,end:/\\)/,relevance:0,keywords:t,contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},e.C_NUMBER_MODE,{className:\"meta\",begin:/@[A-Za-z]+/}]}}e.exports=r},\"98af\":function(e,t){function n(e){var t=[\"bool\",\"byte\",\"char\",\"decimal\",\"delegate\",\"double\",\"dynamic\",\"enum\",\"float\",\"int\",\"long\",\"nint\",\"nuint\",\"object\",\"sbyte\",\"short\",\"string\",\"ulong\",\"unit\",\"ushort\"],n=[\"public\",\"private\",\"protected\",\"static\",\"internal\",\"protected\",\"abstract\",\"async\",\"extern\",\"override\",\"unsafe\",\"virtual\",\"new\",\"sealed\",\"partial\"],i=[\"default\",\"false\",\"null\",\"true\"],r=[\"abstract\",\"as\",\"base\",\"break\",\"case\",\"class\",\"const\",\"continue\",\"do\",\"else\",\"event\",\"explicit\",\"extern\",\"finally\",\"fixed\",\"for\",\"foreach\",\"goto\",\"if\",\"implicit\",\"in\",\"interface\",\"internal\",\"is\",\"lock\",\"namespace\",\"new\",\"operator\",\"out\",\"override\",\"params\",\"private\",\"protected\",\"public\",\"readonly\",\"record\",\"ref\",\"return\",\"sealed\",\"sizeof\",\"stackalloc\",\"static\",\"struct\",\"switch\",\"this\",\"throw\",\"try\",\"typeof\",\"unchecked\",\"unsafe\",\"using\",\"virtual\",\"void\",\"volatile\",\"while\"],a=[\"add\",\"alias\",\"and\",\"ascending\",\"async\",\"await\",\"by\",\"descending\",\"equals\",\"from\",\"get\",\"global\",\"group\",\"init\",\"into\",\"join\",\"let\",\"nameof\",\"not\",\"notnull\",\"on\",\"or\",\"orderby\",\"partial\",\"remove\",\"select\",\"set\",\"unmanaged\",\"value|0\",\"var\",\"when\",\"where\",\"with\",\"yield\"],o={keyword:r.concat(a),built_in:t,literal:i},s=e.inherit(e.TITLE_MODE,{begin:\"[a-zA-Z](\\\\.?\\\\w)*\"}),l={className:\"number\",variants:[{begin:\"\\\\b(0b[01']+)\"},{begin:\"(-?)\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)(u|U|l|L|ul|UL|f|F|b|B)\"},{begin:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],relevance:0},c={className:\"string\",begin:'@\"',end:'\"',contains:[{begin:'\"\"'}]},u=e.inherit(c,{illegal:/\\n/}),d={className:\"subst\",begin:/\\{/,end:/\\}/,keywords:o},p=e.inherit(d,{illegal:/\\n/}),h={className:\"string\",begin:/\\$\"/,end:'\"',illegal:/\\n/,contains:[{begin:/\\{\\{/},{begin:/\\}\\}/},e.BACKSLASH_ESCAPE,p]},f={className:\"string\",begin:/\\$@\"/,end:'\"',contains:[{begin:/\\{\\{/},{begin:/\\}\\}/},{begin:'\"\"'},d]},_=e.inherit(f,{illegal:/\\n/,contains:[{begin:/\\{\\{/},{begin:/\\}\\}/},{begin:'\"\"'},p]});d.contains=[f,h,c,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,l,e.C_BLOCK_COMMENT_MODE],p.contains=[_,h,u,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,l,e.inherit(e.C_BLOCK_COMMENT_MODE,{illegal:/\\n/})];var m={variants:[f,h,c,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},g={begin:\"<\",end:\">\",contains:[{beginKeywords:\"in out\"},s]},b=e.IDENT_RE+\"(<\"+e.IDENT_RE+\"(\\\\s*,\\\\s*\"+e.IDENT_RE+\")*>)?(\\\\[\\\\])?\",v={begin:\"@\"+e.IDENT_RE,relevance:0};return{name:\"C#\",aliases:[\"cs\",\"c#\"],keywords:o,illegal:/::/,contains:[e.COMMENT(\"///\",\"$\",{returnBegin:!0,contains:[{className:\"doctag\",variants:[{begin:\"///\",relevance:0},{begin:\"\\x3c!--|--\\x3e\"},{begin:\"</?\",end:\">\"}]}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"meta\",begin:\"#\",end:\"$\",keywords:{\"meta-keyword\":\"if else elif endif define undef warning error line region endregion pragma checksum\"}},m,l,{beginKeywords:\"class interface\",relevance:0,end:/[{;=]/,illegal:/[^\\s:,]/,contains:[{beginKeywords:\"where class\"},s,g,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:\"namespace\",relevance:0,end:/[{;=]/,illegal:/[^\\s:]/,contains:[s,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:\"record\",relevance:0,end:/[{;=]/,illegal:/[^\\s:]/,contains:[s,g,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:\"meta\",begin:\"^\\\\s*\\\\[\",excludeBegin:!0,end:\"\\\\]\",excludeEnd:!0,contains:[{className:\"meta-string\",begin:/\"/,end:/\"/}]},{beginKeywords:\"new return throw await else\",relevance:0},{className:\"function\",begin:\"(\"+b+\"\\\\s+)+\"+e.IDENT_RE+\"\\\\s*(<.+>\\\\s*)?\\\\(\",returnBegin:!0,end:/\\s*[{;=]/,excludeEnd:!0,keywords:o,contains:[{beginKeywords:n.join(\" \"),relevance:0},{begin:e.IDENT_RE+\"\\\\s*(<.+>\\\\s*)?\\\\(\",returnBegin:!0,contains:[e.TITLE_MODE,g],relevance:0},{className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:o,relevance:0,contains:[m,l,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},v]}}e.exports=n},\"998d\":function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(...e){const t=\"(\"+e.map(e=>n(e)).join(\"|\")+\")\";return t}function a(e){const t=[\"GET\",\"POST\",\"HEAD\",\"PUT\",\"DELETE\",\"CONNECT\",\"OPTIONS\",\"PATCH\",\"TRACE\"];return{name:\"Apache Access Log\",contains:[{className:\"number\",begin:/^\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b/,relevance:5},{className:\"number\",begin:/\\b\\d+\\b/,relevance:0},{className:\"string\",begin:i(/\"/,r(...t)),end:/\"/,keywords:t,illegal:/\\n/,relevance:5,contains:[{begin:/HTTP\\/[12]\\.\\d'/,relevance:5}]},{className:\"string\",begin:/\\[\\d[^\\]\\n]{8,}\\]/,illegal:/\\n/,relevance:1},{className:\"string\",begin:/\\[/,end:/\\]/,illegal:/\\n/,relevance:0},{className:\"string\",begin:/\"Mozilla\\/\\d\\.\\d \\(/,end:/\"/,illegal:/\\n/,relevance:3},{className:\"string\",begin:/\"/,end:/\"/,illegal:/\\n/,relevance:0}]}}e.exports=a},\"9aa9\":function(e,t){t.f=Object.getOwnPropertySymbols},\"9b32\":function(e,t){function n(e){var t=\"[a-zA-Z_\\\\-+\\\\*\\\\/<=>&#][a-zA-Z0-9_\\\\-+*\\\\/<=>&#!]*\",n=\"\\\\|[^]*?\\\\|\",i=\"(-|\\\\+)?\\\\d+(\\\\.\\\\d+|\\\\/\\\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\\\+|-)?\\\\d+)?\",r={className:\"literal\",begin:\"\\\\b(t{1}|nil)\\\\b\"},a={className:\"number\",variants:[{begin:i,relevance:0},{begin:\"#(b|B)[0-1]+(/[0-1]+)?\"},{begin:\"#(o|O)[0-7]+(/[0-7]+)?\"},{begin:\"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?\"},{begin:\"#(c|C)\\\\(\"+i+\" +\"+i,end:\"\\\\)\"}]},o=e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),s=e.COMMENT(\";\",\"$\",{relevance:0}),l={begin:\"\\\\*\",end:\"\\\\*\"},c={className:\"symbol\",begin:\"[:&]\"+t},u={begin:t,relevance:0},d={begin:n},p={begin:\"\\\\(\",end:\"\\\\)\",contains:[\"self\",r,o,a,u]},h={contains:[a,o,l,c,p,u],variants:[{begin:\"['`]\\\\(\",end:\"\\\\)\"},{begin:\"\\\\(quote \",end:\"\\\\)\",keywords:{name:\"quote\"}},{begin:\"'\"+n}]},f={variants:[{begin:\"'\"+t},{begin:\"#'\"+t+\"(::\"+t+\")*\"}]},_={begin:\"\\\\(\\\\s*\",end:\"\\\\)\"},m={endsWithParent:!0,relevance:0};return _.contains=[{className:\"name\",variants:[{begin:t,relevance:0},{begin:n}]},m],m.contains=[h,f,_,r,a,o,s,l,c,d,u],{name:\"Lisp\",illegal:/\\S/,contains:[a,e.SHEBANG(),r,o,s,h,f,_,u]}}e.exports=n},\"9b43\":function(e,t,n){var i=n(\"d8e8\");e.exports=function(e,t,n){if(i(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,i){return e.call(t,n,i)};case 3:return function(n,i,r){return e.call(t,n,i,r)}}return function(){return e.apply(t,arguments)}}},\"9bf2\":function(e,t){function n(e){const t={className:\"built_in\",begin:\"\\\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\\\w+\"},n=/[a-zA-Z@][a-zA-Z0-9_]*/,i={$pattern:n,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\"},r={$pattern:n,keyword:\"@interface @class @protocol @implementation\"};return{name:\"Objective-C\",aliases:[\"mm\",\"objc\",\"obj-c\",\"obj-c++\",\"objective-c++\"],keywords:i,illegal:\"</\",contains:[t,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{className:\"string\",variants:[{begin:'@\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]}]},{className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{\"meta-keyword\":\"if else elif endif define undef warning error line pragma ifdef ifndef include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(e.QUOTE_STRING_MODE,{className:\"meta-string\"}),{className:\"meta-string\",begin:/<.*?>/,end:/$/,illegal:\"\\\\n\"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:\"class\",begin:\"(\"+r.keyword.split(\" \").join(\"|\")+\")\\\\b\",end:/(\\{|$)/,excludeEnd:!0,keywords:r,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:\"\\\\.\"+e.UNDERSCORE_IDENT_RE,relevance:0}]}}e.exports=n},\"9c6c\":function(e,t,n){var i=n(\"2b4c\")(\"unscopables\"),r=Array.prototype;void 0==r[i]&&n(\"32e9\")(r,i,{}),e.exports=function(e){r[i][e]=!0}},\"9c80\":function(e,t){e.exports=function(e){try{return{e:!1,v:e()}}catch(t){return{e:!0,v:t}}}},\"9d7e\":function(e,t,n){\"use strict\";t.__esModule=!0;var i=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e};t.default=function(e){function t(e){for(var t=arguments.length,n=Array(t>1?t-1:0),o=1;o<t;o++)n[o-1]=arguments[o];return 1===n.length&&\"object\"===i(n[0])&&(n=n[0]),n&&n.hasOwnProperty||(n={}),e.replace(a,(function(t,i,a,o){var s=void 0;return\"{\"===e[o-1]&&\"}\"===e[o+t.length]?a:(s=(0,r.hasOwn)(n,a)?n[a]:null,null===s||void 0===s?\"\":s)}))}return t};var r=n(\"8122\"),a=/(%|)\\{([0-9a-zA-Z_]+)\\}/g},\"9def\":function(e,t,n){var i=n(\"4588\"),r=Math.min;e.exports=function(e){return e>0?r(i(e),9007199254740991):0}},\"9e1e\":function(e,t,n){e.exports=!n(\"79e5\")((function(){return 7!=Object.defineProperty({},\"a\",{get:function(){return 7}}).a}))},\"9e6a\":function(e,t,n){\"use strict\";var i=n(\"d233\"),r=Object.prototype.hasOwnProperty,a={allowDots:!1,allowPrototypes:!1,arrayLimit:20,charset:\"utf-8\",charsetSentinel:!1,comma:!1,decoder:i.decode,delimiter:\"&\",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},o=function(e){return e.replace(/&#(\\d+);/g,(function(e,t){return String.fromCharCode(parseInt(t,10))}))},s=\"utf8=%26%2310003%3B\",l=\"utf8=%E2%9C%93\",c=function(e,t){var n,c={},u=t.ignoreQueryPrefix?e.replace(/^\\?/,\"\"):e,d=t.parameterLimit===1/0?void 0:t.parameterLimit,p=u.split(t.delimiter,d),h=-1,f=t.charset;if(t.charsetSentinel)for(n=0;n<p.length;++n)0===p[n].indexOf(\"utf8=\")&&(p[n]===l?f=\"utf-8\":p[n]===s&&(f=\"iso-8859-1\"),h=n,n=p.length);for(n=0;n<p.length;++n)if(n!==h){var _,m,g=p[n],b=g.indexOf(\"]=\"),v=-1===b?g.indexOf(\"=\"):b+1;-1===v?(_=t.decoder(g,a.decoder,f),m=t.strictNullHandling?null:\"\"):(_=t.decoder(g.slice(0,v),a.decoder,f),m=t.decoder(g.slice(v+1),a.decoder,f)),m&&t.interpretNumericEntities&&\"iso-8859-1\"===f&&(m=o(m)),m&&t.comma&&m.indexOf(\",\")>-1&&(m=m.split(\",\")),r.call(c,_)?c[_]=i.combine(c[_],m):c[_]=m}return c},u=function(e,t,n){for(var i=t,r=e.length-1;r>=0;--r){var a,o=e[r];if(\"[]\"===o&&n.parseArrays)a=[].concat(i);else{a=n.plainObjects?Object.create(null):{};var s=\"[\"===o.charAt(0)&&\"]\"===o.charAt(o.length-1)?o.slice(1,-1):o,l=parseInt(s,10);n.parseArrays||\"\"!==s?!isNaN(l)&&o!==s&&String(l)===s&&l>=0&&n.parseArrays&&l<=n.arrayLimit?(a=[],a[l]=i):a[s]=i:a={0:i}}i=a}return i},d=function(e,t,n){if(e){var i=n.allowDots?e.replace(/\\.([^.[]+)/g,\"[$1]\"):e,a=/(\\[[^[\\]]*])/,o=/(\\[[^[\\]]*])/g,s=a.exec(i),l=s?i.slice(0,s.index):i,c=[];if(l){if(!n.plainObjects&&r.call(Object.prototype,l)&&!n.allowPrototypes)return;c.push(l)}var d=0;while(null!==(s=o.exec(i))&&d<n.depth){if(d+=1,!n.plainObjects&&r.call(Object.prototype,s[1].slice(1,-1))&&!n.allowPrototypes)return;c.push(s[1])}return s&&c.push(\"[\"+i.slice(s.index)+\"]\"),u(c,t,n)}},p=function(e){if(!e)return a;if(null!==e.decoder&&void 0!==e.decoder&&\"function\"!==typeof e.decoder)throw new TypeError(\"Decoder has to be a function.\");if(\"undefined\"!==typeof e.charset&&\"utf-8\"!==e.charset&&\"iso-8859-1\"!==e.charset)throw new Error(\"The charset option must be either utf-8, iso-8859-1, or undefined\");var t=\"undefined\"===typeof e.charset?a.charset:e.charset;return{allowDots:\"undefined\"===typeof e.allowDots?a.allowDots:!!e.allowDots,allowPrototypes:\"boolean\"===typeof e.allowPrototypes?e.allowPrototypes:a.allowPrototypes,arrayLimit:\"number\"===typeof e.arrayLimit?e.arrayLimit:a.arrayLimit,charset:t,charsetSentinel:\"boolean\"===typeof e.charsetSentinel?e.charsetSentinel:a.charsetSentinel,comma:\"boolean\"===typeof e.comma?e.comma:a.comma,decoder:\"function\"===typeof e.decoder?e.decoder:a.decoder,delimiter:\"string\"===typeof e.delimiter||i.isRegExp(e.delimiter)?e.delimiter:a.delimiter,depth:\"number\"===typeof e.depth?e.depth:a.depth,ignoreQueryPrefix:!0===e.ignoreQueryPrefix,interpretNumericEntities:\"boolean\"===typeof e.interpretNumericEntities?e.interpretNumericEntities:a.interpretNumericEntities,parameterLimit:\"number\"===typeof e.parameterLimit?e.parameterLimit:a.parameterLimit,parseArrays:!1!==e.parseArrays,plainObjects:\"boolean\"===typeof e.plainObjects?e.plainObjects:a.plainObjects,strictNullHandling:\"boolean\"===typeof e.strictNullHandling?e.strictNullHandling:a.strictNullHandling}};e.exports=function(e,t){var n=p(t);if(\"\"===e||null===e||\"undefined\"===typeof e)return n.plainObjects?Object.create(null):{};for(var r=\"string\"===typeof e?c(e,n):e,a=n.plainObjects?Object.create(null):{},o=Object.keys(r),s=0;s<o.length;++s){var l=o[s],u=d(l,r[l],n);a=i.merge(a,u,n)}return i.compact(a)}},\"9f0c\":function(e,t){function n(e){const t={className:\"string\",contains:[e.BACKSLASH_ESCAPE],variants:[e.inherit(e.APOS_STRING_MODE,{illegal:null}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null})]},n=e.UNDERSCORE_TITLE_MODE,i={variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]},r=\"namespace class interface use extends function return abstract final public protected private static deprecated throw try catch Exception echo empty isset instanceof unset let var new const self require if else elseif switch case default do while loop for continue break likely unlikely __LINE__ __FILE__ __DIR__ __FUNCTION__ __CLASS__ __TRAIT__ __METHOD__ __NAMESPACE__ array boolean float double integer object resource string char long unsigned bool int uint ulong uchar true false null undefined\";return{name:\"Zephir\",aliases:[\"zep\"],keywords:r,contains:[e.C_LINE_COMMENT_MODE,e.COMMENT(/\\/\\*/,/\\*\\//,{contains:[{className:\"doctag\",begin:/@[A-Za-z]+/}]}),{className:\"string\",begin:/<<<['\"]?\\w+['\"]?$/,end:/^\\w+;/,contains:[e.BACKSLASH_ESCAPE]},{begin:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{className:\"function\",beginKeywords:\"function fn\",end:/[;{]/,excludeEnd:!0,illegal:/\\$|\\[|%/,contains:[n,{className:\"params\",begin:/\\(/,end:/\\)/,keywords:r,contains:[\"self\",e.C_BLOCK_COMMENT_MODE,t,i]}]},{className:\"class\",beginKeywords:\"class interface\",end:/\\{/,excludeEnd:!0,illegal:/[:($\"]/,contains:[{beginKeywords:\"extends implements\"},n]},{beginKeywords:\"namespace\",end:/;/,illegal:/[.']/,contains:[n]},{beginKeywords:\"use\",end:/;/,contains:[n]},{begin:/=>/},t,i]}}e.exports=n},\"9f7f\":function(e,t){function n(e){const t={className:\"meta\",begin:\"@[A-Za-z]+\"},n={className:\"subst\",variants:[{begin:\"\\\\$[A-Za-z0-9_]+\"},{begin:/\\$\\{/,end:/\\}/}]},i={className:\"string\",variants:[{begin:'\"\"\"',end:'\"\"\"'},{begin:'\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},{begin:'[a-z]+\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE,n]},{className:\"string\",begin:'[a-z]+\"\"\"',end:'\"\"\"',contains:[n],relevance:10}]},r={className:\"symbol\",begin:\"'\\\\w[\\\\w\\\\d_]*(?!')\"},a={className:\"type\",begin:\"\\\\b[A-Z][A-Za-z0-9_]*\",relevance:0},o={className:\"title\",begin:/[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]/,relevance:0},s={className:\"class\",beginKeywords:\"class object trait type\",end:/[:={\\[\\n;]/,excludeEnd:!0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{beginKeywords:\"extends with\",relevance:10},{begin:/\\[/,end:/\\]/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[a]},{className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[a]},o]},l={className:\"function\",beginKeywords:\"def\",end:/[:={\\[(\\n;]/,excludeEnd:!0,contains:[o]};return{name:\"Scala\",keywords:{literal:\"true false null\",keyword:\"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,i,r,a,l,s,e.C_NUMBER_MODE,t]}}e.exports=n},a0a7:function(e,t){function n(e){return{name:\"RenderMan RSL\",keywords:{keyword:\"float color point normal vector matrix while for if do return else break extern continue\",built_in:\"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp\"},illegal:\"</\",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_NUMBER_MODE,{className:\"meta\",begin:\"#\",end:\"$\"},{className:\"class\",beginKeywords:\"surface displacement light volume imager\",end:\"\\\\(\"},{beginKeywords:\"illuminate illuminance gather\",end:\"\\\\(\"}]}}e.exports=n},a14e:function(e,t){function n(e){const t={className:\"string\",begin:/'(.|\\\\[xXuU][a-zA-Z0-9]+)'/},n={className:\"string\",variants:[{begin:'\"',end:'\"'}]},i={className:\"title\",relevance:0,begin:/[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]/},r={className:\"function\",beginKeywords:\"def\",end:/[:={\\[(\\n;]/,excludeEnd:!0,contains:[i]};return{name:\"Flix\",keywords:{literal:\"true false\",keyword:\"case class def else enum if impl import in lat rel index let match namespace switch type yield with\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t,n,r,e.C_NUMBER_MODE]}}e.exports=n},a154:function(e,t){function n(e){return{name:\"Intel x86 Assembly\",case_insensitive:!0,keywords:{$pattern:\"[.%]?\"+e.IDENT_RE,keyword:\"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63\",built_in:\"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0  xmm1  xmm2  xmm3  xmm4  xmm5  xmm6  xmm7  xmm8  xmm9 xmm10  xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0  ymm1  ymm2  ymm3  ymm4  ymm5  ymm6  ymm7  ymm8  ymm9 ymm10  ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0  zmm1  zmm2  zmm3  zmm4  zmm5  zmm6  zmm7  zmm8  zmm9 zmm10  zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr\",meta:\"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %if %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist __FILE__ __LINE__ __SECT__  __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__  __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__\"},contains:[e.COMMENT(\";\",\"$\",{relevance:0}),{className:\"number\",variants:[{begin:\"\\\\b(?:([0-9][0-9_]*)?\\\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*(\\\\.[0-9_]*)?(?:[pP](?:[+-]?[0-9_]+)?)?)\\\\b\",relevance:0},{begin:\"\\\\$[0-9][0-9A-Fa-f]*\",relevance:0},{begin:\"\\\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\\\b\"},{begin:\"\\\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\\\b\"}]},e.QUOTE_STRING_MODE,{className:\"string\",variants:[{begin:\"'\",end:\"[^\\\\\\\\]'\"},{begin:\"`\",end:\"[^\\\\\\\\]`\"}],relevance:0},{className:\"symbol\",variants:[{begin:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\"},{begin:\"^\\\\s*%%[A-Za-z0-9_$#@~.?]*:\"}],relevance:0},{className:\"subst\",begin:\"%[0-9]+\",relevance:0},{className:\"subst\",begin:\"%!S+\",relevance:0},{className:\"meta\",begin:/^\\s*\\.[\\w_-]+/}]}}e.exports=n},a159:function(e,t,n){var i=n(\"e4ae\"),r=n(\"7e90\"),a=n(\"1691\"),o=n(\"5559\")(\"IE_PROTO\"),s=function(){},l=\"prototype\",c=function(){var e,t=n(\"1ec9\")(\"iframe\"),i=a.length,r=\"<\",o=\">\";t.style.display=\"none\",n(\"32fc\").appendChild(t),t.src=\"javascript:\",e=t.contentWindow.document,e.open(),e.write(r+\"script\"+o+\"document.F=Object\"+r+\"/script\"+o),e.close(),c=e.F;while(i--)delete c[l][a[i]];return c()};e.exports=Object.create||function(e,t){var n;return null!==e?(s[l]=i(e),n=new s,s[l]=null,n[o]=e):n=c(),void 0===t?n:r(n,t)}},a15a:function(e,t){function n(e){return{name:\"BASIC\",case_insensitive:!0,illegal:\"^.\",keywords:{$pattern:\"[a-zA-Z][a-zA-Z0-9_$%!#]*\",keyword:\"ABS ASC AND ATN AUTO|0 BEEP BLOAD|10 BSAVE|10 CALL CALLS CDBL CHAIN CHDIR CHR$|10 CINT CIRCLE CLEAR CLOSE CLS COLOR COM COMMON CONT COS CSNG CSRLIN CVD CVI CVS DATA DATE$ DEFDBL DEFINT DEFSNG DEFSTR DEF|0 SEG USR DELETE DIM DRAW EDIT END ENVIRON ENVIRON$ EOF EQV ERASE ERDEV ERDEV$ ERL ERR ERROR EXP FIELD FILES FIX FOR|0 FRE GET GOSUB|10 GOTO HEX$ IF THEN ELSE|0 INKEY$ INP INPUT INPUT# INPUT$ INSTR IMP INT IOCTL IOCTL$ KEY ON OFF LIST KILL LEFT$ LEN LET LINE LLIST LOAD LOC LOCATE LOF LOG LPRINT USING LSET MERGE MID$ MKDIR MKD$ MKI$ MKS$ MOD NAME NEW NEXT NOISE NOT OCT$ ON OR PEN PLAY STRIG OPEN OPTION BASE OUT PAINT PALETTE PCOPY PEEK PMAP POINT POKE POS PRINT PRINT] PSET PRESET PUT RANDOMIZE READ REM RENUM RESET|0 RESTORE RESUME RETURN|0 RIGHT$ RMDIR RND RSET RUN SAVE SCREEN SGN SHELL SIN SOUND SPACE$ SPC SQR STEP STICK STOP STR$ STRING$ SWAP SYSTEM TAB TAN TIME$ TIMER TROFF TRON TO USR VAL VARPTR VARPTR$ VIEW WAIT WHILE WEND WIDTH WINDOW WRITE XOR\"},contains:[e.QUOTE_STRING_MODE,e.COMMENT(\"REM\",\"$\",{relevance:10}),e.COMMENT(\"'\",\"$\",{relevance:0}),{className:\"symbol\",begin:\"^[0-9]+ \",relevance:10},{className:\"number\",begin:\"\\\\b\\\\d+(\\\\.\\\\d+)?([edED]\\\\d+)?[#!]?\",relevance:0},{className:\"number\",begin:\"(&[hH][0-9a-fA-F]{1,4})\"},{className:\"number\",begin:\"(&[oO][0-7]{1,6})\"}]}}e.exports=n},a15e:function(e,t,n){\"use strict\";n.r(t);var i=n(\"41b2\"),r=n.n(i),a=n(\"1098\"),o=n.n(a),s=/%[sdj%]/g,l=function(){};function c(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];var i=1,r=t[0],a=t.length;if(\"function\"===typeof r)return r.apply(null,t.slice(1));if(\"string\"===typeof r){for(var o=String(r).replace(s,(function(e){if(\"%%\"===e)return\"%\";if(i>=a)return e;switch(e){case\"%s\":return String(t[i++]);case\"%d\":return Number(t[i++]);case\"%j\":try{return JSON.stringify(t[i++])}catch(n){return\"[Circular]\"}break;default:return e}})),l=t[i];i<a;l=t[++i])o+=\" \"+l;return o}return r}function u(e){return\"string\"===e||\"url\"===e||\"hex\"===e||\"email\"===e||\"pattern\"===e}function d(e,t){return void 0===e||null===e||(!(\"array\"!==t||!Array.isArray(e)||e.length)||!(!u(t)||\"string\"!==typeof e||e))}function p(e,t,n){var i=[],r=0,a=e.length;function o(e){i.push.apply(i,e),r++,r===a&&n(i)}e.forEach((function(e){t(e,o)}))}function h(e,t,n){var i=0,r=e.length;function a(o){if(o&&o.length)n(o);else{var s=i;i+=1,s<r?t(e[s],a):n([])}}a([])}function f(e){var t=[];return Object.keys(e).forEach((function(n){t.push.apply(t,e[n])})),t}function _(e,t,n,i){if(t.first){var r=f(e);return h(r,n,i)}var a=t.firstFields||[];!0===a&&(a=Object.keys(e));var o=Object.keys(e),s=o.length,l=0,c=[],u=function(e){c.push.apply(c,e),l++,l===s&&i(c)};o.forEach((function(t){var i=e[t];-1!==a.indexOf(t)?h(i,n,u):p(i,n,u)}))}function m(e){return function(t){return t&&t.message?(t.field=t.field||e.fullField,t):{message:t,field:t.field||e.fullField}}}function g(e,t){if(t)for(var n in t)if(t.hasOwnProperty(n)){var i=t[n];\"object\"===(\"undefined\"===typeof i?\"undefined\":o()(i))&&\"object\"===o()(e[n])?e[n]=r()({},e[n],i):e[n]=i}return e}function b(e,t,n,i,r,a){!e.required||n.hasOwnProperty(e.field)&&!d(t,a||e.type)||i.push(c(r.messages.required,e.fullField))}var v=b;function E(e,t,n,i,r){(/^\\s+$/.test(t)||\"\"===t)&&i.push(c(r.messages.whitespace,e.fullField))}var y=E,S={email:/^(([^<>()\\[\\]\\\\.,;:\\s@\"]+(\\.[^<>()\\[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/,url:new RegExp(\"^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\\\S+(?::\\\\S*)?@)?(?:(?:(?:[1-9]\\\\d?|1\\\\d\\\\d|2[01]\\\\d|22[0-3])(?:\\\\.(?:1?\\\\d{1,2}|2[0-4]\\\\d|25[0-5])){2}(?:\\\\.(?:[0-9]\\\\d?|1\\\\d\\\\d|2[0-4]\\\\d|25[0-4]))|(?:(?:[a-z\\\\u00a1-\\\\uffff0-9]+-?)*[a-z\\\\u00a1-\\\\uffff0-9]+)(?:\\\\.(?:[a-z\\\\u00a1-\\\\uffff0-9]+-?)*[a-z\\\\u00a1-\\\\uffff0-9]+)*(?:\\\\.(?:[a-z\\\\u00a1-\\\\uffff]{2,})))|localhost)(?::\\\\d{2,5})?(?:(/|\\\\?|#)[^\\\\s]*)?$\",\"i\"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},C={integer:function(e){return C.number(e)&&parseInt(e,10)===e},float:function(e){return C.number(e)&&!C.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(t){return!1}},date:function(e){return\"function\"===typeof e.getTime&&\"function\"===typeof e.getMonth&&\"function\"===typeof e.getYear},number:function(e){return!isNaN(e)&&\"number\"===typeof e},object:function(e){return\"object\"===(\"undefined\"===typeof e?\"undefined\":o()(e))&&!C.array(e)},method:function(e){return\"function\"===typeof e},email:function(e){return\"string\"===typeof e&&!!e.match(S.email)&&e.length<255},url:function(e){return\"string\"===typeof e&&!!e.match(S.url)},hex:function(e){return\"string\"===typeof e&&!!e.match(S.hex)}};function T(e,t,n,i,r){if(e.required&&void 0===t)v(e,t,n,i,r);else{var a=[\"integer\",\"float\",\"array\",\"regexp\",\"object\",\"method\",\"email\",\"number\",\"date\",\"url\",\"hex\"],s=e.type;a.indexOf(s)>-1?C[s](t)||i.push(c(r.messages.types[s],e.fullField,e.type)):s&&(\"undefined\"===typeof t?\"undefined\":o()(t))!==e.type&&i.push(c(r.messages.types[s],e.fullField,e.type))}}var x=T;function w(e,t,n,i,r){var a=\"number\"===typeof e.len,o=\"number\"===typeof e.min,s=\"number\"===typeof e.max,l=/[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]/g,u=t,d=null,p=\"number\"===typeof t,h=\"string\"===typeof t,f=Array.isArray(t);if(p?d=\"number\":h?d=\"string\":f&&(d=\"array\"),!d)return!1;f&&(u=t.length),h&&(u=t.replace(l,\"_\").length),a?u!==e.len&&i.push(c(r.messages[d].len,e.fullField,e.len)):o&&!s&&u<e.min?i.push(c(r.messages[d].min,e.fullField,e.min)):s&&!o&&u>e.max?i.push(c(r.messages[d].max,e.fullField,e.max)):o&&s&&(u<e.min||u>e.max)&&i.push(c(r.messages[d].range,e.fullField,e.min,e.max))}var O=w,N=\"enum\";function R(e,t,n,i,r){e[N]=Array.isArray(e[N])?e[N]:[],-1===e[N].indexOf(t)&&i.push(c(r.messages[N],e.fullField,e[N].join(\", \")))}var k=R;function A(e,t,n,i,r){if(e.pattern)if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||i.push(c(r.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(\"string\"===typeof e.pattern){var a=new RegExp(e.pattern);a.test(t)||i.push(c(r.messages.pattern.mismatch,e.fullField,t,e.pattern))}}var D=A,I={required:v,whitespace:y,type:x,range:O,enum:k,pattern:D};function M(e,t,n,i,r){var a=[],o=e.required||!e.required&&i.hasOwnProperty(e.field);if(o){if(d(t,\"string\")&&!e.required)return n();I.required(e,t,i,a,r,\"string\"),d(t,\"string\")||(I.type(e,t,i,a,r),I.range(e,t,i,a,r),I.pattern(e,t,i,a,r),!0===e.whitespace&&I.whitespace(e,t,i,a,r))}n(a)}var L=M;function P(e,t,n,i,r){var a=[],o=e.required||!e.required&&i.hasOwnProperty(e.field);if(o){if(d(t)&&!e.required)return n();I.required(e,t,i,a,r),void 0!==t&&I.type(e,t,i,a,r)}n(a)}var F=P;function B(e,t,n,i,r){var a=[],o=e.required||!e.required&&i.hasOwnProperty(e.field);if(o){if(d(t)&&!e.required)return n();I.required(e,t,i,a,r),void 0!==t&&(I.type(e,t,i,a,r),I.range(e,t,i,a,r))}n(a)}var U=B;function $(e,t,n,i,r){var a=[],o=e.required||!e.required&&i.hasOwnProperty(e.field);if(o){if(d(t)&&!e.required)return n();I.required(e,t,i,a,r),void 0!==t&&I.type(e,t,i,a,r)}n(a)}var j=$;function G(e,t,n,i,r){var a=[],o=e.required||!e.required&&i.hasOwnProperty(e.field);if(o){if(d(t)&&!e.required)return n();I.required(e,t,i,a,r),d(t)||I.type(e,t,i,a,r)}n(a)}var q=G;function H(e,t,n,i,r){var a=[],o=e.required||!e.required&&i.hasOwnProperty(e.field);if(o){if(d(t)&&!e.required)return n();I.required(e,t,i,a,r),void 0!==t&&(I.type(e,t,i,a,r),I.range(e,t,i,a,r))}n(a)}var V=H;function z(e,t,n,i,r){var a=[],o=e.required||!e.required&&i.hasOwnProperty(e.field);if(o){if(d(t)&&!e.required)return n();I.required(e,t,i,a,r),void 0!==t&&(I.type(e,t,i,a,r),I.range(e,t,i,a,r))}n(a)}var Y=z;function W(e,t,n,i,r){var a=[],o=e.required||!e.required&&i.hasOwnProperty(e.field);if(o){if(d(t,\"array\")&&!e.required)return n();I.required(e,t,i,a,r,\"array\"),d(t,\"array\")||(I.type(e,t,i,a,r),I.range(e,t,i,a,r))}n(a)}var K=W;function Q(e,t,n,i,r){var a=[],o=e.required||!e.required&&i.hasOwnProperty(e.field);if(o){if(d(t)&&!e.required)return n();I.required(e,t,i,a,r),void 0!==t&&I.type(e,t,i,a,r)}n(a)}var X=Q,Z=\"enum\";function J(e,t,n,i,r){var a=[],o=e.required||!e.required&&i.hasOwnProperty(e.field);if(o){if(d(t)&&!e.required)return n();I.required(e,t,i,a,r),t&&I[Z](e,t,i,a,r)}n(a)}var ee=J;function te(e,t,n,i,r){var a=[],o=e.required||!e.required&&i.hasOwnProperty(e.field);if(o){if(d(t,\"string\")&&!e.required)return n();I.required(e,t,i,a,r),d(t,\"string\")||I.pattern(e,t,i,a,r)}n(a)}var ne=te;function ie(e,t,n,i,r){var a=[],o=e.required||!e.required&&i.hasOwnProperty(e.field);if(o){if(d(t)&&!e.required)return n();if(I.required(e,t,i,a,r),!d(t)){var s=void 0;s=\"number\"===typeof t?new Date(t):t,I.type(e,s,i,a,r),s&&I.range(e,s.getTime(),i,a,r)}}n(a)}var re=ie;function ae(e,t,n,i,r){var a=[],s=Array.isArray(t)?\"array\":\"undefined\"===typeof t?\"undefined\":o()(t);I.required(e,t,i,a,r,s),n(a)}var oe=ae;function se(e,t,n,i,r){var a=e.type,o=[],s=e.required||!e.required&&i.hasOwnProperty(e.field);if(s){if(d(t,a)&&!e.required)return n();I.required(e,t,i,o,r,a),d(t,a)||I.type(e,t,i,o,r)}n(o)}var le=se,ce={string:L,method:F,number:U,boolean:j,regexp:q,integer:V,float:Y,array:K,object:X,enum:ee,pattern:ne,date:re,url:le,hex:le,email:le,required:oe};function ue(){return{default:\"Validation error on field %s\",required:\"%s is required\",enum:\"%s must be one of %s\",whitespace:\"%s cannot be empty\",date:{format:\"%s date %s is invalid for format %s\",parse:\"%s date could not be parsed, %s is invalid \",invalid:\"%s date %s is invalid\"},types:{string:\"%s is not a %s\",method:\"%s is not a %s (function)\",array:\"%s is not an %s\",object:\"%s is not an %s\",number:\"%s is not a %s\",date:\"%s is not a %s\",boolean:\"%s is not a %s\",integer:\"%s is not an %s\",float:\"%s is not a %s\",regexp:\"%s is not a valid %s\",email:\"%s is not a valid %s\",url:\"%s is not a valid %s\",hex:\"%s is not a valid %s\"},string:{len:\"%s must be exactly %s characters\",min:\"%s must be at least %s characters\",max:\"%s cannot be longer than %s characters\",range:\"%s must be between %s and %s characters\"},number:{len:\"%s must equal %s\",min:\"%s cannot be less than %s\",max:\"%s cannot be greater than %s\",range:\"%s must be between %s and %s\"},array:{len:\"%s must be exactly %s in length\",min:\"%s cannot be less than %s in length\",max:\"%s cannot be greater than %s in length\",range:\"%s must be between %s and %s in length\"},pattern:{mismatch:\"%s value %s does not match pattern %s\"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var de=ue();function pe(e){this.rules=null,this._messages=de,this.define(e)}pe.prototype={messages:function(e){return e&&(this._messages=g(ue(),e)),this._messages},define:function(e){if(!e)throw new Error(\"Cannot configure a schema with no rules\");if(\"object\"!==(\"undefined\"===typeof e?\"undefined\":o()(e))||Array.isArray(e))throw new Error(\"Rules must be an object\");this.rules={};var t=void 0,n=void 0;for(t in e)e.hasOwnProperty(t)&&(n=e[t],this.rules[t]=Array.isArray(n)?n:[n])},validate:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=arguments[2],a=e,s=n,u=i;if(\"function\"===typeof s&&(u=s,s={}),this.rules&&0!==Object.keys(this.rules).length){if(s.messages){var d=this.messages();d===de&&(d=ue()),g(d,s.messages),s.messages=d}else s.messages=this.messages();var p=void 0,h=void 0,f={},b=s.keys||Object.keys(this.rules);b.forEach((function(n){p=t.rules[n],h=a[n],p.forEach((function(i){var o=i;\"function\"===typeof o.transform&&(a===e&&(a=r()({},a)),h=a[n]=o.transform(h)),o=\"function\"===typeof o?{validator:o}:r()({},o),o.validator=t.getValidationMethod(o),o.field=n,o.fullField=o.fullField||n,o.type=t.getType(o),o.validator&&(f[n]=f[n]||[],f[n].push({rule:o,value:h,source:a,field:n}))}))}));var v={};_(f,s,(function(e,t){var n=e.rule,i=(\"object\"===n.type||\"array\"===n.type)&&(\"object\"===o()(n.fields)||\"object\"===o()(n.defaultField));function a(e,t){return r()({},t,{fullField:n.fullField+\".\"+e})}function u(){var o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],u=o;if(Array.isArray(u)||(u=[u]),u.length&&l(\"async-validator:\",u),u.length&&n.message&&(u=[].concat(n.message)),u=u.map(m(n)),s.first&&u.length)return v[n.field]=1,t(u);if(i){if(n.required&&!e.value)return u=n.message?[].concat(n.message).map(m(n)):s.error?[s.error(n,c(s.messages.required,n.field))]:[],t(u);var d={};if(n.defaultField)for(var p in e.value)e.value.hasOwnProperty(p)&&(d[p]=n.defaultField);for(var h in d=r()({},d,e.rule.fields),d)if(d.hasOwnProperty(h)){var f=Array.isArray(d[h])?d[h]:[d[h]];d[h]=f.map(a.bind(null,h))}var _=new pe(d);_.messages(s.messages),e.rule.options&&(e.rule.options.messages=s.messages,e.rule.options.error=s.error),_.validate(e.value,e.rule.options||s,(function(e){t(e&&e.length?u.concat(e):e)}))}else t(u)}i=i&&(n.required||!n.required&&e.value),n.field=e.field;var d=n.validator(n,e.value,u,e.source,s);d&&d.then&&d.then((function(){return u()}),(function(e){return u(e)}))}),(function(e){E(e)}))}else u&&u();function E(e){var t=void 0,n=void 0,i=[],r={};function a(e){Array.isArray(e)?i=i.concat.apply(i,e):i.push(e)}for(t=0;t<e.length;t++)a(e[t]);if(i.length)for(t=0;t<i.length;t++)n=i[t].field,r[n]=r[n]||[],r[n].push(i[t]);else i=null,r=null;u(i,r)}},getType:function(e){if(void 0===e.type&&e.pattern instanceof RegExp&&(e.type=\"pattern\"),\"function\"!==typeof e.validator&&e.type&&!ce.hasOwnProperty(e.type))throw new Error(c(\"Unknown rule type %s\",e.type));return e.type||\"string\"},getValidationMethod:function(e){if(\"function\"===typeof e.validator)return e.validator;var t=Object.keys(e),n=t.indexOf(\"message\");return-1!==n&&t.splice(n,1),1===t.length&&\"required\"===t[0]?ce.required:ce[this.getType(e)]||!1}},pe.register=function(e,t){if(\"function\"!==typeof t)throw new Error(\"Cannot register a validator by type, validator is not a function\");ce[e]=t},pe.messages=de;t[\"default\"]=pe},a25f:function(e,t,n){var i=n(\"7726\"),r=i.navigator;e.exports=r&&r.userAgent||\"\"},a27d:function(e,t){function n(e){return{name:\"Tcl\",aliases:[\"tk\"],keywords:\"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while\",contains:[e.COMMENT(\";[ \\\\t]*#\",\"$\"),e.COMMENT(\"^[ \\\\t]*#\",\"$\"),{beginKeywords:\"proc\",end:\"[\\\\{]\",excludeEnd:!0,contains:[{className:\"title\",begin:\"[ \\\\t\\\\n\\\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",end:\"[ \\\\t\\\\n\\\\r]\",endsWithParent:!0,excludeEnd:!0}]},{excludeEnd:!0,variants:[{begin:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\\\(([a-zA-Z0-9_])*\\\\)\",end:\"[^a-zA-Z0-9_\\\\}\\\\$]\"},{begin:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",end:\"(\\\\))?[^a-zA-Z0-9_\\\\}\\\\$]\"}]},{className:\"string\",contains:[e.BACKSLASH_ESCAPE],variants:[e.inherit(e.QUOTE_STRING_MODE,{illegal:null})]},{className:\"number\",variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]}]}}e.exports=n},a33c:function(e,t){function n(e){const t={variants:[e.COMMENT(\"^[ \\\\t]*(?=#)\",\"$\",{relevance:0,excludeBegin:!0}),e.COMMENT(\"[;@]\",\"$\",{relevance:0}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]};return{name:\"ARM Assembly\",case_insensitive:!0,aliases:[\"arm\"],keywords:{$pattern:\"\\\\.?\"+e.IDENT_RE,meta:\".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND \",built_in:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 {PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @\"},contains:[{className:\"keyword\",begin:\"\\\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?(?=\\\\s)\"},t,e.QUOTE_STRING_MODE,{className:\"string\",begin:\"'\",end:\"[^\\\\\\\\]'\",relevance:0},{className:\"title\",begin:\"\\\\|\",end:\"\\\\|\",illegal:\"\\\\n\",relevance:0},{className:\"number\",variants:[{begin:\"[#$=]?0x[0-9a-f]+\"},{begin:\"[#$=]?0b[01]+\"},{begin:\"[#$=]\\\\d+\"},{begin:\"\\\\b\\\\d+\"}],relevance:0},{className:\"symbol\",variants:[{begin:\"^[ \\\\t]*[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+:\"},{begin:\"^[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+\"},{begin:\"[=#]\\\\w+\"}],relevance:0}]}}e.exports=n},a342:function(e,t){function n(e){return{name:\"MIPS Assembly\",case_insensitive:!0,aliases:[\"mips\"],keywords:{$pattern:\"\\\\.?\"+e.IDENT_RE,meta:\".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .ltorg \",built_in:\"$0 $1 $2 $3 $4 $5 $6 $7 $8 $9 $10 $11 $12 $13 $14 $15 $16 $17 $18 $19 $20 $21 $22 $23 $24 $25 $26 $27 $28 $29 $30 $31 zero at v0 v1 a0 a1 a2 a3 a4 a5 a6 a7 t0 t1 t2 t3 t4 t5 t6 t7 t8 t9 s0 s1 s2 s3 s4 s5 s6 s7 s8 k0 k1 gp sp fp ra $f0 $f1 $f2 $f2 $f4 $f5 $f6 $f7 $f8 $f9 $f10 $f11 $f12 $f13 $f14 $f15 $f16 $f17 $f18 $f19 $f20 $f21 $f22 $f23 $f24 $f25 $f26 $f27 $f28 $f29 $f30 $f31 Context Random EntryLo0 EntryLo1 Context PageMask Wired EntryHi HWREna BadVAddr Count Compare SR IntCtl SRSCtl SRSMap Cause EPC PRId EBase Config Config1 Config2 Config3 LLAddr Debug DEPC DESAVE CacheErr ECC ErrorEPC TagLo DataLo TagHi DataHi WatchLo WatchHi PerfCtl PerfCnt \"},contains:[{className:\"keyword\",begin:\"\\\\b(addi?u?|andi?|b(al)?|beql?|bgez(al)?l?|bgtzl?|blezl?|bltz(al)?l?|bnel?|cl[oz]|divu?|ext|ins|j(al)?|jalr(\\\\.hb)?|jr(\\\\.hb)?|lbu?|lhu?|ll|lui|lw[lr]?|maddu?|mfhi|mflo|movn|movz|move|msubu?|mthi|mtlo|mul|multu?|nop|nor|ori?|rotrv?|sb|sc|se[bh]|sh|sllv?|slti?u?|srav?|srlv?|subu?|sw[lr]?|xori?|wsbh|abs\\\\.[sd]|add\\\\.[sd]|alnv.ps|bc1[ft]l?|c\\\\.(s?f|un|u?eq|[ou]lt|[ou]le|ngle?|seq|l[et]|ng[et])\\\\.[sd]|(ceil|floor|round|trunc)\\\\.[lw]\\\\.[sd]|cfc1|cvt\\\\.d\\\\.[lsw]|cvt\\\\.l\\\\.[dsw]|cvt\\\\.ps\\\\.s|cvt\\\\.s\\\\.[dlw]|cvt\\\\.s\\\\.p[lu]|cvt\\\\.w\\\\.[dls]|div\\\\.[ds]|ldx?c1|luxc1|lwx?c1|madd\\\\.[sd]|mfc1|mov[fntz]?\\\\.[ds]|msub\\\\.[sd]|mth?c1|mul\\\\.[ds]|neg\\\\.[ds]|nmadd\\\\.[ds]|nmsub\\\\.[ds]|p[lu][lu]\\\\.ps|recip\\\\.fmt|r?sqrt\\\\.[ds]|sdx?c1|sub\\\\.[ds]|suxc1|swx?c1|break|cache|d?eret|[de]i|ehb|mfc0|mtc0|pause|prefx?|rdhwr|rdpgpr|sdbbp|ssnop|synci?|syscall|teqi?|tgei?u?|tlb(p|r|w[ir])|tlti?u?|tnei?|wait|wrpgpr)\",end:\"\\\\s\"},e.COMMENT(\"[;#](?!\\\\s*$)\",\"$\"),e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,{className:\"string\",begin:\"'\",end:\"[^\\\\\\\\]'\",relevance:0},{className:\"title\",begin:\"\\\\|\",end:\"\\\\|\",illegal:\"\\\\n\",relevance:0},{className:\"number\",variants:[{begin:\"0x[0-9a-f]+\"},{begin:\"\\\\b-?\\\\d+\"}],relevance:0},{className:\"symbol\",variants:[{begin:\"^\\\\s*[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+:\"},{begin:\"^\\\\s*[0-9]+:\"},{begin:\"[0-9]+[bf]\"}],relevance:0}],illegal:/\\//}}e.exports=n},a3c3:function(e,t,n){var i=n(\"63b6\");i(i.S+i.F,\"Object\",{assign:n(\"9306\")})},a3de:function(e,t,n){\"use strict\";var i=!(\"undefined\"===typeof window||!window.document||!window.document.createElement),r={canUseDOM:i,canUseWorkers:\"undefined\"!==typeof Worker,canUseEventListeners:i&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:i&&!!window.screen,isInWorker:!i};e.exports=r},a5b8:function(e,t,n){\"use strict\";var i=n(\"d8e8\");function r(e){var t,n;this.promise=new e((function(e,i){if(void 0!==t||void 0!==n)throw TypeError(\"Bad Promise constructor\");t=e,n=i})),this.resolve=i(t),this.reject=i(n)}e.exports.f=function(e){return new r(e)}},a613:function(e,t){function n(e){const t={className:\"number\",begin:\"[1-9][0-9]*\",relevance:0},n={className:\"symbol\",begin:\":[^\\\\]]+\"},i={className:\"built_in\",begin:\"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER|TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\\\[\",end:\"\\\\]\",contains:[\"self\",t,n]},r={className:\"built_in\",begin:\"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\\\[\",end:\"\\\\]\",contains:[\"self\",t,e.QUOTE_STRING_MODE,n]};return{name:\"TP\",keywords:{keyword:\"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET PROG ATTR MN POS\",literal:\"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET\"},contains:[i,r,{className:\"keyword\",begin:\"/(PROG|ATTR|MN|POS|END)\\\\b\"},{className:\"keyword\",begin:\"(CALL|RUN|POINT_LOGIC|LBL)\\\\b\"},{className:\"keyword\",begin:\"\\\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)\"},{className:\"number\",begin:\"\\\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\\\b\",relevance:0},e.COMMENT(\"//\",\"[;$]\"),e.COMMENT(\"!\",\"[;$]\"),e.COMMENT(\"--eg:\",\"$\"),e.QUOTE_STRING_MODE,{className:\"string\",begin:\"'\",end:\"'\"},e.C_NUMBER_MODE,{className:\"variable\",begin:\"\\\\$[A-Za-z0-9_]+\"}]}}e.exports=n},a6fb:function(e,t){function n(e){return{name:\"AVR Assembly\",case_insensitive:!0,keywords:{$pattern:\"\\\\.?\"+e.IDENT_RE,keyword:\"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr\",built_in:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf\",meta:\".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set\"},contains:[e.C_BLOCK_COMMENT_MODE,e.COMMENT(\";\",\"$\",{relevance:0}),e.C_NUMBER_MODE,e.BINARY_NUMBER_MODE,{className:\"number\",begin:\"\\\\b(\\\\$[a-zA-Z0-9]+|0o[0-7]+)\"},e.QUOTE_STRING_MODE,{className:\"string\",begin:\"'\",end:\"[^\\\\\\\\]'\",illegal:\"[^\\\\\\\\][^']\"},{className:\"symbol\",begin:\"^[A-Za-z0-9_.$]+:\"},{className:\"meta\",begin:\"#\",end:\"$\"},{className:\"subst\",begin:\"@[0-9]+\"}]}}e.exports=n},a710:function(e,t){function n(e){const t={className:\"number\",relevance:0,variants:[{begin:\"[$][a-fA-F0-9]+\"},e.NUMBER_MODE]};return{name:\"Monkey\",case_insensitive:!0,keywords:{keyword:\"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw import\",built_in:\"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI\",literal:\"true false null and or shl shr mod\"},illegal:/\\/\\*/,contains:[e.COMMENT(\"#rem\",\"#end\"),e.COMMENT(\"'\",\"$\",{relevance:0}),{className:\"function\",beginKeywords:\"function method\",end:\"[(=:]|$\",illegal:/\\n/,contains:[e.UNDERSCORE_TITLE_MODE]},{className:\"class\",beginKeywords:\"class interface\",end:\"$\",contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]},{className:\"built_in\",begin:\"\\\\b(self|super)\\\\b\"},{className:\"meta\",begin:\"\\\\s*#\",end:\"$\",keywords:{\"meta-keyword\":\"if else elseif endif end then\"}},{className:\"meta\",begin:\"^\\\\s*strict\\\\b\"},{beginKeywords:\"alias\",end:\"=\",contains:[e.UNDERSCORE_TITLE_MODE]},e.QUOTE_STRING_MODE,t]}}e.exports=n},a742:function(e,t,n){\"use strict\";function i(e){return\"[object String]\"===Object.prototype.toString.call(e)}function r(e){return\"[object Object]\"===Object.prototype.toString.call(e)}function a(e){return e&&e.nodeType===Node.ELEMENT_NODE}t.__esModule=!0,t.isString=i,t.isObject=r,t.isHtmlElement=a;t.isFunction=function(e){var t={};return e&&\"[object Function]\"===t.toString.call(e)},t.isUndefined=function(e){return void 0===e},t.isDefined=function(e){return void 0!==e&&null!==e}},a885:function(e,t){function n(e){const t=[\"anytype\",\"boolean\",\"byte\",\"char\",\"container\",\"date\",\"double\",\"enum\",\"guid\",\"int\",\"int64\",\"long\",\"real\",\"short\",\"str\",\"utcdatetime\",\"var\"],n=[\"default\",\"false\",\"null\",\"true\"],i=[\"abstract\",\"as\",\"asc\",\"avg\",\"break\",\"breakpoint\",\"by\",\"byref\",\"case\",\"catch\",\"changecompany\",\"class\",\"client\",\"client\",\"common\",\"const\",\"continue\",\"count\",\"crosscompany\",\"delegate\",\"delete_from\",\"desc\",\"display\",\"div\",\"do\",\"edit\",\"else\",\"eventhandler\",\"exists\",\"extends\",\"final\",\"finally\",\"firstfast\",\"firstonly\",\"firstonly1\",\"firstonly10\",\"firstonly100\",\"firstonly1000\",\"flush\",\"for\",\"forceliterals\",\"forcenestedloop\",\"forceplaceholders\",\"forceselectorder\",\"forupdate\",\"from\",\"generateonly\",\"group\",\"hint\",\"if\",\"implements\",\"in\",\"index\",\"insert_recordset\",\"interface\",\"internal\",\"is\",\"join\",\"like\",\"maxof\",\"minof\",\"mod\",\"namespace\",\"new\",\"next\",\"nofetch\",\"notexists\",\"optimisticlock\",\"order\",\"outer\",\"pessimisticlock\",\"print\",\"private\",\"protected\",\"public\",\"readonly\",\"repeatableread\",\"retry\",\"return\",\"reverse\",\"select\",\"server\",\"setting\",\"static\",\"sum\",\"super\",\"switch\",\"this\",\"throw\",\"try\",\"ttsabort\",\"ttsbegin\",\"ttscommit\",\"unchecked\",\"update_recordset\",\"using\",\"validtimestate\",\"void\",\"where\",\"while\"],r={keyword:i,built_in:t,literal:n};return{name:\"X++\",aliases:[\"x++\"],keywords:r,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,{className:\"meta\",begin:\"#\",end:\"$\"},{className:\"class\",beginKeywords:\"class interface\",end:/\\{/,excludeEnd:!0,illegal:\":\",contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]}]}}e.exports=n},a941:function(e,t){var n=\"[0-9](_*[0-9])*\",i=`\\\\.(${n})`,r=\"[0-9a-fA-F](_*[0-9a-fA-F])*\",a={className:\"number\",variants:[{begin:`(\\\\b(${n})((${i})|\\\\.)?|(${i}))[eE][+-]?(${n})[fFdD]?\\\\b`},{begin:`\\\\b(${n})((${i})[fFdD]?\\\\b|\\\\.([fFdD]\\\\b)?)`},{begin:`(${i})[fFdD]?\\\\b`},{begin:`\\\\b(${n})[fFdD]\\\\b`},{begin:`\\\\b0[xX]((${r})\\\\.?|(${r})?\\\\.(${r}))[pP][+-]?(${n})[fFdD]?\\\\b`},{begin:\"\\\\b(0|[1-9](_*[0-9])*)[lL]?\\\\b\"},{begin:`\\\\b0[xX](${r})[lL]?\\\\b`},{begin:\"\\\\b0(_*[0-7])*[lL]?\\\\b\"},{begin:\"\\\\b0[bB][01](_*[01])*[lL]?\\\\b\"}],relevance:0};function o(e){const t={keyword:\"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual\",built_in:\"Byte Short Char Int Long Boolean Float Double Void Unit Nothing\",literal:\"true false null\"},n={className:\"keyword\",begin:/\\b(break|continue|return|this)\\b/,starts:{contains:[{className:\"symbol\",begin:/@\\w+/}]}},i={className:\"symbol\",begin:e.UNDERSCORE_IDENT_RE+\"@\"},r={className:\"subst\",begin:/\\$\\{/,end:/\\}/,contains:[e.C_NUMBER_MODE]},o={className:\"variable\",begin:\"\\\\$\"+e.UNDERSCORE_IDENT_RE},s={className:\"string\",variants:[{begin:'\"\"\"',end:'\"\"\"(?=[^\"])',contains:[o,r]},{begin:\"'\",end:\"'\",illegal:/\\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'\"',end:'\"',illegal:/\\n/,contains:[e.BACKSLASH_ESCAPE,o,r]}]};r.contains.push(s);const l={className:\"meta\",begin:\"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\\\s*:(?:\\\\s*\"+e.UNDERSCORE_IDENT_RE+\")?\"},c={className:\"meta\",begin:\"@\"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\\(/,end:/\\)/,contains:[e.inherit(s,{className:\"meta-string\"})]}]},u=a,d=e.COMMENT(\"/\\\\*\",\"\\\\*/\",{contains:[e.C_BLOCK_COMMENT_MODE]}),p={variants:[{className:\"type\",begin:e.UNDERSCORE_IDENT_RE},{begin:/\\(/,end:/\\)/,contains:[]}]},h=p;return h.variants[1].contains=[p],p.variants[1].contains=[h],{name:\"Kotlin\",aliases:[\"kt\"],keywords:t,contains:[e.COMMENT(\"/\\\\*\\\\*\",\"\\\\*/\",{relevance:0,contains:[{className:\"doctag\",begin:\"@[A-Za-z]+\"}]}),e.C_LINE_COMMENT_MODE,d,n,i,l,c,{className:\"function\",beginKeywords:\"fun\",end:\"[(]|$\",returnBegin:!0,excludeEnd:!0,keywords:t,relevance:5,contains:[{begin:e.UNDERSCORE_IDENT_RE+\"\\\\s*\\\\(\",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:\"type\",begin:/</,end:/>/,keywords:\"reified\",relevance:0},{className:\"params\",begin:/\\(/,end:/\\)/,endsParent:!0,keywords:t,relevance:0,contains:[{begin:/:/,end:/[=,\\/]/,endsWithParent:!0,contains:[p,e.C_LINE_COMMENT_MODE,d],relevance:0},e.C_LINE_COMMENT_MODE,d,l,c,s,e.C_NUMBER_MODE]},d]},{className:\"class\",beginKeywords:\"class interface trait\",end:/[:\\{(]|$/,excludeEnd:!0,illegal:\"extends implements\",contains:[{beginKeywords:\"public protected internal private constructor\"},e.UNDERSCORE_TITLE_MODE,{className:\"type\",begin:/</,end:/>/,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:\"type\",begin:/[,:]\\s*/,end:/[<\\(,]|$/,excludeBegin:!0,returnEnd:!0},l,c]},s,{className:\"meta\",begin:\"^#!/usr/bin/env\",end:\"$\",illegal:\"\\n\"},u]}}e.exports=o},a995:function(e,t){const n=[\"as\",\"in\",\"of\",\"if\",\"for\",\"while\",\"finally\",\"var\",\"new\",\"function\",\"do\",\"return\",\"void\",\"else\",\"break\",\"catch\",\"instanceof\",\"with\",\"throw\",\"case\",\"default\",\"try\",\"switch\",\"continue\",\"typeof\",\"delete\",\"let\",\"yield\",\"const\",\"class\",\"debugger\",\"async\",\"await\",\"static\",\"import\",\"from\",\"export\",\"extends\"],i=[\"true\",\"false\",\"null\",\"undefined\",\"NaN\",\"Infinity\"],r=[\"Intl\",\"DataView\",\"Number\",\"Math\",\"Date\",\"String\",\"RegExp\",\"Object\",\"Function\",\"Boolean\",\"Error\",\"Symbol\",\"Set\",\"Map\",\"WeakSet\",\"WeakMap\",\"Proxy\",\"Reflect\",\"JSON\",\"Promise\",\"Float64Array\",\"Int16Array\",\"Int32Array\",\"Int8Array\",\"Uint16Array\",\"Uint32Array\",\"Float32Array\",\"Array\",\"Uint8Array\",\"Uint8ClampedArray\",\"ArrayBuffer\"],a=[\"EvalError\",\"InternalError\",\"RangeError\",\"ReferenceError\",\"SyntaxError\",\"TypeError\",\"URIError\"],o=[\"setInterval\",\"setTimeout\",\"clearInterval\",\"clearTimeout\",\"require\",\"exports\",\"eval\",\"isFinite\",\"isNaN\",\"parseFloat\",\"parseInt\",\"decodeURI\",\"decodeURIComponent\",\"encodeURI\",\"encodeURIComponent\",\"escape\",\"unescape\"],s=[\"arguments\",\"this\",\"super\",\"console\",\"window\",\"document\",\"localStorage\",\"module\",\"global\"],l=[].concat(o,s,r,a);function c(e){const t=[\"npm\",\"print\"],r=[\"yes\",\"no\",\"on\",\"off\"],a=[\"then\",\"unless\",\"until\",\"loop\",\"by\",\"when\",\"and\",\"or\",\"is\",\"isnt\",\"not\"],o=[\"var\",\"const\",\"let\",\"function\",\"static\"],s=e=>t=>!e.includes(t),c={keyword:n.concat(a).filter(s(o)),literal:i.concat(r),built_in:l.concat(t)},u=\"[A-Za-z$_][0-9A-Za-z$_]*\",d={className:\"subst\",begin:/#\\{/,end:/\\}/,keywords:c},p=[e.BINARY_NUMBER_MODE,e.inherit(e.C_NUMBER_MODE,{starts:{end:\"(\\\\s*/)?\",relevance:0}}),{className:\"string\",variants:[{begin:/'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE]},{begin:/'/,end:/'/,contains:[e.BACKSLASH_ESCAPE]},{begin:/\"\"\"/,end:/\"\"\"/,contains:[e.BACKSLASH_ESCAPE,d]},{begin:/\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,d]}]},{className:\"regexp\",variants:[{begin:\"///\",end:\"///\",contains:[d,e.HASH_COMMENT_MODE]},{begin:\"//[gim]{0,3}(?=\\\\W)\",relevance:0},{begin:/\\/(?![ *]).*?(?![\\\\]).\\/[gim]{0,3}(?=\\W)/}]},{begin:\"@\"+u},{subLanguage:\"javascript\",excludeBegin:!0,excludeEnd:!0,variants:[{begin:\"```\",end:\"```\"},{begin:\"`\",end:\"`\"}]}];d.contains=p;const h=e.inherit(e.TITLE_MODE,{begin:u}),f=\"(\\\\(.*\\\\)\\\\s*)?\\\\B[-=]>\",_={className:\"params\",begin:\"\\\\([^\\\\(]\",returnBegin:!0,contains:[{begin:/\\(/,end:/\\)/,keywords:c,contains:[\"self\"].concat(p)}]};return{name:\"CoffeeScript\",aliases:[\"coffee\",\"cson\",\"iced\"],keywords:c,illegal:/\\/\\*/,contains:p.concat([e.COMMENT(\"###\",\"###\"),e.HASH_COMMENT_MODE,{className:\"function\",begin:\"^\\\\s*\"+u+\"\\\\s*=\\\\s*\"+f,end:\"[-=]>\",returnBegin:!0,contains:[h,_]},{begin:/[:\\(,=]\\s*/,relevance:0,contains:[{className:\"function\",begin:f,end:\"[-=]>\",returnBegin:!0,contains:[_]}]},{className:\"class\",beginKeywords:\"class\",end:\"$\",illegal:/[:=\"\\[\\]]/,contains:[{beginKeywords:\"extends\",endsWithParent:!0,illegal:/[:=\"\\[\\]]/,contains:[h]},h]},{begin:u+\":\",end:\":\",returnBegin:!0,returnEnd:!0,relevance:0}])}}e.exports=c},ac6a:function(e,t,n){for(var i=n(\"cadf\"),r=n(\"0d58\"),a=n(\"2aba\"),o=n(\"7726\"),s=n(\"32e9\"),l=n(\"84f2\"),c=n(\"2b4c\"),u=c(\"iterator\"),d=c(\"toStringTag\"),p=l.Array,h={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},f=r(h),_=0;_<f.length;_++){var m,g=f[_],b=h[g],v=o[g],E=v&&v.prototype;if(E&&(E[u]||s(E,u,p),E[d]||s(E,d,g),l[g]=p,b))for(m in i)E[m]||a(E,m,i[m],!0)}},adf9:function(e,t){function n(e){const t=\"bool byte i16 i32 i64 double string binary\";return{name:\"Thrift\",keywords:{keyword:\"namespace const typedef struct enum service exception void oneway set list map required optional\",built_in:t,literal:\"true false\"},contains:[e.QUOTE_STRING_MODE,e.NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"class\",beginKeywords:\"struct enum service exception\",end:/\\{/,illegal:/\\n/,contains:[e.inherit(e.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]},{begin:\"\\\\b(set|list|map)\\\\s*<\",end:\">\",keywords:t,contains:[\"self\"]}]}}e.exports=n},ae7a:function(e,t){function n(e){const t={keyword:\"bool break call callexe checkinterrupt clear clearg closeall cls comlog compile continue create debug declare delete disable dlibrary dllcall do dos ed edit else elseif enable end endfor endif endp endo errorlog errorlogat expr external fn for format goto gosub graph if keyword let lib library line load loadarray loadexe loadf loadk loadm loadp loads loadx local locate loopnextindex lprint lpwidth lshow matrix msym ndpclex new open output outwidth plot plotsym pop prcsn print printdos proc push retp return rndcon rndmod rndmult rndseed run save saveall screen scroll setarray show sparse stop string struct system trace trap threadfor threadendfor threadbegin threadjoin threadstat threadend until use while winprint ne ge le gt lt and xor or not eq eqv\",built_in:\"abs acf aconcat aeye amax amean AmericanBinomCall AmericanBinomCall_Greeks AmericanBinomCall_ImpVol AmericanBinomPut AmericanBinomPut_Greeks AmericanBinomPut_ImpVol AmericanBSCall AmericanBSCall_Greeks AmericanBSCall_ImpVol AmericanBSPut AmericanBSPut_Greeks AmericanBSPut_ImpVol amin amult annotationGetDefaults annotationSetBkd annotationSetFont annotationSetLineColor annotationSetLineStyle annotationSetLineThickness annualTradingDays arccos arcsin areshape arrayalloc arrayindex arrayinit arraytomat asciiload asclabel astd astds asum atan atan2 atranspose axmargin balance band bandchol bandcholsol bandltsol bandrv bandsolpd bar base10 begwind besselj bessely beta box boxcox cdfBeta cdfBetaInv cdfBinomial cdfBinomialInv cdfBvn cdfBvn2 cdfBvn2e cdfCauchy cdfCauchyInv cdfChic cdfChii cdfChinc cdfChincInv cdfExp cdfExpInv cdfFc cdfFnc cdfFncInv cdfGam cdfGenPareto cdfHyperGeo cdfLaplace cdfLaplaceInv cdfLogistic cdfLogisticInv cdfmControlCreate cdfMvn cdfMvn2e cdfMvnce cdfMvne cdfMvt2e cdfMvtce cdfMvte cdfN cdfN2 cdfNc cdfNegBinomial cdfNegBinomialInv cdfNi cdfPoisson cdfPoissonInv cdfRayleigh cdfRayleighInv cdfTc cdfTci cdfTnc cdfTvn cdfWeibull cdfWeibullInv cdir ceil ChangeDir chdir chiBarSquare chol choldn cholsol cholup chrs close code cols colsf combinate combinated complex con cond conj cons ConScore contour conv convertsatostr convertstrtosa corrm corrms corrvc corrx corrxs cos cosh counts countwts crossprd crout croutp csrcol csrlin csvReadM csvReadSA cumprodc cumsumc curve cvtos datacreate datacreatecomplex datalist dataload dataloop dataopen datasave date datestr datestring datestrymd dayinyr dayofweek dbAddDatabase dbClose dbCommit dbCreateQuery dbExecQuery dbGetConnectOptions dbGetDatabaseName dbGetDriverName dbGetDrivers dbGetHostName dbGetLastErrorNum dbGetLastErrorText dbGetNumericalPrecPolicy dbGetPassword dbGetPort dbGetTableHeaders dbGetTables dbGetUserName dbHasFeature dbIsDriverAvailable dbIsOpen dbIsOpenError dbOpen dbQueryBindValue dbQueryClear dbQueryCols dbQueryExecPrepared dbQueryFetchAllM dbQueryFetchAllSA dbQueryFetchOneM dbQueryFetchOneSA dbQueryFinish dbQueryGetBoundValue dbQueryGetBoundValues dbQueryGetField dbQueryGetLastErrorNum dbQueryGetLastErrorText dbQueryGetLastInsertID dbQueryGetLastQuery dbQueryGetPosition dbQueryIsActive dbQueryIsForwardOnly dbQueryIsNull dbQueryIsSelect dbQueryIsValid dbQueryPrepare dbQueryRows dbQuerySeek dbQuerySeekFirst dbQuerySeekLast dbQuerySeekNext dbQuerySeekPrevious dbQuerySetForwardOnly dbRemoveDatabase dbRollback dbSetConnectOptions dbSetDatabaseName dbSetHostName dbSetNumericalPrecPolicy dbSetPort dbSetUserName dbTransaction DeleteFile delif delrows denseToSp denseToSpRE denToZero design det detl dfft dffti diag diagrv digamma doswin DOSWinCloseall DOSWinOpen dotfeq dotfeqmt dotfge dotfgemt dotfgt dotfgtmt dotfle dotflemt dotflt dotfltmt dotfne dotfnemt draw drop dsCreate dstat dstatmt dstatmtControlCreate dtdate dtday dttime dttodtv dttostr dttoutc dtvnormal dtvtodt dtvtoutc dummy dummybr dummydn eig eigh eighv eigv elapsedTradingDays endwind envget eof eqSolve eqSolvemt eqSolvemtControlCreate eqSolvemtOutCreate eqSolveset erf erfc erfccplx erfcplx error etdays ethsec etstr EuropeanBinomCall EuropeanBinomCall_Greeks EuropeanBinomCall_ImpVol EuropeanBinomPut EuropeanBinomPut_Greeks EuropeanBinomPut_ImpVol EuropeanBSCall EuropeanBSCall_Greeks EuropeanBSCall_ImpVol EuropeanBSPut EuropeanBSPut_Greeks EuropeanBSPut_ImpVol exctsmpl exec execbg exp extern eye fcheckerr fclearerr feq feqmt fflush fft ffti fftm fftmi fftn fge fgemt fgets fgetsa fgetsat fgetst fgt fgtmt fileinfo filesa fle flemt floor flt fltmt fmod fne fnemt fonts fopen formatcv formatnv fputs fputst fseek fstrerror ftell ftocv ftos ftostrC gamma gammacplx gammaii gausset gdaAppend gdaCreate gdaDStat gdaDStatMat gdaGetIndex gdaGetName gdaGetNames gdaGetOrders gdaGetType gdaGetTypes gdaGetVarInfo gdaIsCplx gdaLoad gdaPack gdaRead gdaReadByIndex gdaReadSome gdaReadSparse gdaReadStruct gdaReportVarInfo gdaSave gdaUpdate gdaUpdateAndPack gdaVars gdaWrite gdaWrite32 gdaWriteSome getarray getdims getf getGAUSShome getmatrix getmatrix4D getname getnamef getNextTradingDay getNextWeekDay getnr getorders getpath getPreviousTradingDay getPreviousWeekDay getRow getscalar3D getscalar4D getTrRow getwind glm gradcplx gradMT gradMTm gradMTT gradMTTm gradp graphprt graphset hasimag header headermt hess hessMT hessMTg hessMTgw hessMTm hessMTmw hessMTT hessMTTg hessMTTgw hessMTTm hessMTw hessp hist histf histp hsec imag indcv indexcat indices indices2 indicesf indicesfn indnv indsav integrate1d integrateControlCreate intgrat2 intgrat3 inthp1 inthp2 inthp3 inthp4 inthpControlCreate intquad1 intquad2 intquad3 intrleav intrleavsa intrsect intsimp inv invpd invswp iscplx iscplxf isden isinfnanmiss ismiss key keyav keyw lag lag1 lagn lapEighb lapEighi lapEighvb lapEighvi lapgEig lapgEigh lapgEighv lapgEigv lapgSchur lapgSvdcst lapgSvds lapgSvdst lapSvdcusv lapSvds lapSvdusv ldlp ldlsol linSolve listwise ln lncdfbvn lncdfbvn2 lncdfmvn lncdfn lncdfn2 lncdfnc lnfact lngammacplx lnpdfmvn lnpdfmvt lnpdfn lnpdft loadd loadstruct loadwind loess loessmt loessmtControlCreate log loglog logx logy lower lowmat lowmat1 ltrisol lu lusol machEpsilon make makevars makewind margin matalloc matinit mattoarray maxbytes maxc maxindc maxv maxvec mbesselei mbesselei0 mbesselei1 mbesseli mbesseli0 mbesseli1 meanc median mergeby mergevar minc minindc minv miss missex missrv moment momentd movingave movingaveExpwgt movingaveWgt nextindex nextn nextnevn nextwind ntos null null1 numCombinations ols olsmt olsmtControlCreate olsqr olsqr2 olsqrmt ones optn optnevn orth outtyp pacf packedToSp packr parse pause pdfCauchy pdfChi pdfExp pdfGenPareto pdfHyperGeo pdfLaplace pdfLogistic pdfn pdfPoisson pdfRayleigh pdfWeibull pi pinv pinvmt plotAddArrow plotAddBar plotAddBox plotAddHist plotAddHistF plotAddHistP plotAddPolar plotAddScatter plotAddShape plotAddTextbox plotAddTS plotAddXY plotArea plotBar plotBox plotClearLayout plotContour plotCustomLayout plotGetDefaults plotHist plotHistF plotHistP plotLayout plotLogLog plotLogX plotLogY plotOpenWindow plotPolar plotSave plotScatter plotSetAxesPen plotSetBar plotSetBarFill plotSetBarStacked plotSetBkdColor plotSetFill plotSetGrid plotSetLegend plotSetLineColor plotSetLineStyle plotSetLineSymbol plotSetLineThickness plotSetNewWindow plotSetTitle plotSetWhichYAxis plotSetXAxisShow plotSetXLabel plotSetXRange plotSetXTicInterval plotSetXTicLabel plotSetYAxisShow plotSetYLabel plotSetYRange plotSetZAxisShow plotSetZLabel plotSurface plotTS plotXY polar polychar polyeval polygamma polyint polymake polymat polymroot polymult polyroot pqgwin previousindex princomp printfm printfmt prodc psi putarray putf putvals pvCreate pvGetIndex pvGetParNames pvGetParVector pvLength pvList pvPack pvPacki pvPackm pvPackmi pvPacks pvPacksi pvPacksm pvPacksmi pvPutParVector pvTest pvUnpack QNewton QNewtonmt QNewtonmtControlCreate QNewtonmtOutCreate QNewtonSet QProg QProgmt QProgmtInCreate qqr qqre qqrep qr qre qrep qrsol qrtsol qtyr qtyre qtyrep quantile quantiled qyr qyre qyrep qz rank rankindx readr real reclassify reclassifyCuts recode recserar recsercp recserrc rerun rescale reshape rets rev rfft rffti rfftip rfftn rfftnp rfftp rndBernoulli rndBeta rndBinomial rndCauchy rndChiSquare rndCon rndCreateState rndExp rndGamma rndGeo rndGumbel rndHyperGeo rndi rndKMbeta rndKMgam rndKMi rndKMn rndKMnb rndKMp rndKMu rndKMvm rndLaplace rndLCbeta rndLCgam rndLCi rndLCn rndLCnb rndLCp rndLCu rndLCvm rndLogNorm rndMTu rndMVn rndMVt rndn rndnb rndNegBinomial rndp rndPoisson rndRayleigh rndStateSkip rndu rndvm rndWeibull rndWishart rotater round rows rowsf rref sampleData satostrC saved saveStruct savewind scale scale3d scalerr scalinfnanmiss scalmiss schtoc schur searchsourcepath seekr select selif seqa seqm setdif setdifsa setvars setvwrmode setwind shell shiftr sin singleindex sinh sleep solpd sortc sortcc sortd sorthc sorthcc sortind sortindc sortmc sortr sortrc spBiconjGradSol spChol spConjGradSol spCreate spDenseSubmat spDiagRvMat spEigv spEye spLDL spline spLU spNumNZE spOnes spreadSheetReadM spreadSheetReadSA spreadSheetWrite spScale spSubmat spToDense spTrTDense spTScalar spZeros sqpSolve sqpSolveMT sqpSolveMTControlCreate sqpSolveMTlagrangeCreate sqpSolveMToutCreate sqpSolveSet sqrt statements stdc stdsc stocv stof strcombine strindx strlen strput strrindx strsect strsplit strsplitPad strtodt strtof strtofcplx strtriml strtrimr strtrunc strtruncl strtruncpad strtruncr submat subscat substute subvec sumc sumr surface svd svd1 svd2 svdcusv svds svdusv sysstate tab tan tanh tempname time timedt timestr timeutc title tkf2eps tkf2ps tocart todaydt toeplitz token topolar trapchk trigamma trimr trunc type typecv typef union unionsa uniqindx uniqindxsa unique uniquesa upmat upmat1 upper utctodt utctodtv utrisol vals varCovMS varCovXS varget vargetl varmall varmares varput varputl vartypef vcm vcms vcx vcxs vec vech vecr vector vget view viewxyz vlist vnamecv volume vput vread vtypecv wait waitc walkindex where window writer xlabel xlsGetSheetCount xlsGetSheetSize xlsGetSheetTypes xlsMakeRange xlsReadM xlsReadSA xlsWrite xlsWriteM xlsWriteSA xpnd xtics xy xyz ylabel ytics zeros zeta zlabel ztics cdfEmpirical dot h5create h5open h5read h5readAttribute h5write h5writeAttribute ldl plotAddErrorBar plotAddSurface plotCDFEmpirical plotSetColormap plotSetContourLabels plotSetLegendFont plotSetTextInterpreter plotSetXTicCount plotSetYTicCount plotSetZLevels powerm strjoin sylvester strtrim\",literal:\"DB_AFTER_LAST_ROW DB_ALL_TABLES DB_BATCH_OPERATIONS DB_BEFORE_FIRST_ROW DB_BLOB DB_EVENT_NOTIFICATIONS DB_FINISH_QUERY DB_HIGH_PRECISION DB_LAST_INSERT_ID DB_LOW_PRECISION_DOUBLE DB_LOW_PRECISION_INT32 DB_LOW_PRECISION_INT64 DB_LOW_PRECISION_NUMBERS DB_MULTIPLE_RESULT_SETS DB_NAMED_PLACEHOLDERS DB_POSITIONAL_PLACEHOLDERS DB_PREPARED_QUERIES DB_QUERY_SIZE DB_SIMPLE_LOCKING DB_SYSTEM_TABLES DB_TABLES DB_TRANSACTIONS DB_UNICODE DB_VIEWS __STDIN __STDOUT __STDERR __FILE_DIR\"},n=e.COMMENT(\"@\",\"@\"),i={className:\"meta\",begin:\"#\",end:\"$\",keywords:{\"meta-keyword\":\"define definecs|10 undef ifdef ifndef iflight ifdllcall ifmac ifos2win ifunix else endif lineson linesoff srcfile srcline\"},contains:[{begin:/\\\\\\n/,relevance:0},{beginKeywords:\"include\",end:\"$\",keywords:{\"meta-keyword\":\"include\"},contains:[{className:\"meta-string\",begin:'\"',end:'\"',illegal:\"\\\\n\"}]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,n]},r={begin:/\\bstruct\\s+/,end:/\\s/,keywords:\"struct\",contains:[{className:\"type\",begin:e.UNDERSCORE_IDENT_RE,relevance:0}]},a=[{className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,endsWithParent:!0,relevance:0,contains:[{className:\"literal\",begin:/\\.\\.\\./},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,n,r]}],o={className:\"title\",begin:e.UNDERSCORE_IDENT_RE,relevance:0},s=function(t,i,r){const s=e.inherit({className:\"function\",beginKeywords:t,end:i,excludeEnd:!0,contains:[].concat(a)},r||{});return s.contains.push(o),s.contains.push(e.C_NUMBER_MODE),s.contains.push(e.C_BLOCK_COMMENT_MODE),s.contains.push(n),s},l={className:\"built_in\",begin:\"\\\\b(\"+t.built_in.split(\" \").join(\"|\")+\")\\\\b\"},c={className:\"string\",begin:'\"',end:'\"',contains:[e.BACKSLASH_ESCAPE],relevance:0},u={begin:e.UNDERSCORE_IDENT_RE+\"\\\\s*\\\\(\",returnBegin:!0,keywords:t,relevance:0,contains:[{beginKeywords:t.keyword},l,{className:\"built_in\",begin:e.UNDERSCORE_IDENT_RE,relevance:0}]},d={begin:/\\(/,end:/\\)/,relevance:0,keywords:{built_in:t.built_in,literal:t.literal},contains:[e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,n,l,u,c,\"self\"]};return u.contains.push(d),{name:\"GAUSS\",aliases:[\"gss\"],case_insensitive:!0,keywords:t,illegal:/(\\{[%#]|[%#]\\}| <- )/,contains:[e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,n,c,i,{className:\"keyword\",begin:/\\bexternal (matrix|string|array|sparse matrix|struct|proc|keyword|fn)/},s(\"proc keyword\",\";\"),s(\"fn\",\"=\"),{beginKeywords:\"for threadfor\",end:/;/,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE,n,d]},{variants:[{begin:e.UNDERSCORE_IDENT_RE+\"\\\\.\"+e.UNDERSCORE_IDENT_RE},{begin:e.UNDERSCORE_IDENT_RE+\"\\\\s*=\"}],relevance:0},u,r]}}e.exports=n},aebd:function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},af44:function(e,t){const n=\"[A-Za-z$_][0-9A-Za-z$_]*\",i=[\"as\",\"in\",\"of\",\"if\",\"for\",\"while\",\"finally\",\"var\",\"new\",\"function\",\"do\",\"return\",\"void\",\"else\",\"break\",\"catch\",\"instanceof\",\"with\",\"throw\",\"case\",\"default\",\"try\",\"switch\",\"continue\",\"typeof\",\"delete\",\"let\",\"yield\",\"const\",\"class\",\"debugger\",\"async\",\"await\",\"static\",\"import\",\"from\",\"export\",\"extends\"],r=[\"true\",\"false\",\"null\",\"undefined\",\"NaN\",\"Infinity\"],a=[\"Intl\",\"DataView\",\"Number\",\"Math\",\"Date\",\"String\",\"RegExp\",\"Object\",\"Function\",\"Boolean\",\"Error\",\"Symbol\",\"Set\",\"Map\",\"WeakSet\",\"WeakMap\",\"Proxy\",\"Reflect\",\"JSON\",\"Promise\",\"Float64Array\",\"Int16Array\",\"Int32Array\",\"Int8Array\",\"Uint16Array\",\"Uint32Array\",\"Float32Array\",\"Array\",\"Uint8Array\",\"Uint8ClampedArray\",\"ArrayBuffer\"],o=[\"EvalError\",\"InternalError\",\"RangeError\",\"ReferenceError\",\"SyntaxError\",\"TypeError\",\"URIError\"],s=[\"setInterval\",\"setTimeout\",\"clearInterval\",\"clearTimeout\",\"require\",\"exports\",\"eval\",\"isFinite\",\"isNaN\",\"parseFloat\",\"parseInt\",\"decodeURI\",\"decodeURIComponent\",\"encodeURI\",\"encodeURIComponent\",\"escape\",\"unescape\"],l=[\"arguments\",\"this\",\"super\",\"console\",\"window\",\"document\",\"localStorage\",\"module\",\"global\"],c=[].concat(s,l,a,o);function u(e){return e?\"string\"===typeof e?e:e.source:null}function d(e){return p(\"(?=\",e,\")\")}function p(...e){const t=e.map(e=>u(e)).join(\"\");return t}function h(e){const t=(e,{after:t})=>{const n=\"</\"+e[0].slice(1),i=e.input.indexOf(n,t);return-1!==i},a=n,o={begin:\"<>\",end:\"</>\"},s={begin:/<[A-Za-z0-9\\\\._:-]+/,end:/\\/[A-Za-z0-9\\\\._:-]+>|\\/>/,isTrulyOpeningTag:(e,n)=>{const i=e[0].length+e.index,r=e.input[i];\"<\"!==r?\">\"===r&&(t(e,{after:i})||n.ignoreMatch()):n.ignoreMatch()}},l={$pattern:n,keyword:i,literal:r,built_in:c},u=\"[0-9](_?[0-9])*\",h=`\\\\.(${u})`,f=\"0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*\",_={className:\"number\",variants:[{begin:`(\\\\b(${f})((${h})|\\\\.)?|(${h}))[eE][+-]?(${u})\\\\b`},{begin:`\\\\b(${f})\\\\b((${h})\\\\b|\\\\.)?|(${h})\\\\b`},{begin:\"\\\\b(0|[1-9](_?[0-9])*)n\\\\b\"},{begin:\"\\\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\\\b\"},{begin:\"\\\\b0[bB][0-1](_?[0-1])*n?\\\\b\"},{begin:\"\\\\b0[oO][0-7](_?[0-7])*n?\\\\b\"},{begin:\"\\\\b0[0-7]+n?\\\\b\"}],relevance:0},m={className:\"subst\",begin:\"\\\\$\\\\{\",end:\"\\\\}\",keywords:l,contains:[]},g={begin:\"html`\",end:\"\",starts:{end:\"`\",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,m],subLanguage:\"xml\"}},b={begin:\"css`\",end:\"\",starts:{end:\"`\",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,m],subLanguage:\"css\"}},v={className:\"string\",begin:\"`\",end:\"`\",contains:[e.BACKSLASH_ESCAPE,m]},E=e.COMMENT(/\\/\\*\\*(?!\\/)/,\"\\\\*/\",{relevance:0,contains:[{className:\"doctag\",begin:\"@[A-Za-z]+\",contains:[{className:\"type\",begin:\"\\\\{\",end:\"\\\\}\",relevance:0},{className:\"variable\",begin:a+\"(?=\\\\s*(-)|$)\",endsParent:!0,relevance:0},{begin:/(?=[^\\n])\\s/,relevance:0}]}]}),y={className:\"comment\",variants:[E,e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},S=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,g,b,v,_,e.REGEXP_MODE];m.contains=S.concat({begin:/\\{/,end:/\\}/,keywords:l,contains:[\"self\"].concat(S)});const C=[].concat(y,m.contains),T=C.concat([{begin:/\\(/,end:/\\)/,keywords:l,contains:[\"self\"].concat(C)}]),x={className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:T};return{name:\"Javascript\",aliases:[\"js\",\"jsx\",\"mjs\",\"cjs\"],keywords:l,exports:{PARAMS_CONTAINS:T},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:\"shebang\",binary:\"node\",relevance:5}),{label:\"use_strict\",className:\"meta\",relevance:10,begin:/^\\s*['\"]use (strict|asm)['\"]/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,g,b,v,y,_,{begin:p(/[{,\\n]\\s*/,d(p(/(((\\/\\/.*$)|(\\/\\*(\\*[^/]|[^*])*\\*\\/))\\s*)*/,a+\"\\\\s*:\"))),relevance:0,contains:[{className:\"attr\",begin:a+d(\"\\\\s*:\"),relevance:0}]},{begin:\"(\"+e.RE_STARTERS_RE+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",keywords:\"return throw case\",contains:[y,e.REGEXP_MODE,{className:\"function\",begin:\"(\\\\([^()]*(\\\\([^()]*(\\\\([^()]*\\\\)[^()]*)*\\\\)[^()]*)*\\\\)|\"+e.UNDERSCORE_IDENT_RE+\")\\\\s*=>\",returnBegin:!0,end:\"\\\\s*=>\",contains:[{className:\"params\",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\\(\\s*\\)/,skip:!0},{begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:T}]}]},{begin:/,/,relevance:0},{className:\"\",begin:/\\s/,end:/\\s*/,skip:!0},{variants:[{begin:o.begin,end:o.end},{begin:s.begin,\"on:begin\":s.isTrulyOpeningTag,end:s.end}],subLanguage:\"xml\",contains:[{begin:s.begin,end:s.end,skip:!0,contains:[\"self\"]}]}],relevance:0},{className:\"function\",beginKeywords:\"function\",end:/[{;]/,excludeEnd:!0,keywords:l,contains:[\"self\",e.inherit(e.TITLE_MODE,{begin:a}),x],illegal:/%/},{beginKeywords:\"while if switch catch for\"},{className:\"function\",begin:e.UNDERSCORE_IDENT_RE+\"\\\\([^()]*(\\\\([^()]*(\\\\([^()]*\\\\)[^()]*)*\\\\)[^()]*)*\\\\)\\\\s*\\\\{\",returnBegin:!0,contains:[x,e.inherit(e.TITLE_MODE,{begin:a})]},{variants:[{begin:\"\\\\.\"+a},{begin:\"\\\\$\"+a}],relevance:0},{className:\"class\",beginKeywords:\"class\",end:/[{;=]/,excludeEnd:!0,illegal:/[:\"[\\]]/,contains:[{beginKeywords:\"extends\"},e.UNDERSCORE_TITLE_MODE]},{begin:/\\b(?=constructor)/,end:/[{;]/,excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:a}),\"self\",x]},{begin:\"(get|set)\\\\s+(?=\"+a+\"\\\\()\",end:/\\{/,keywords:\"get set\",contains:[e.inherit(e.TITLE_MODE,{begin:a}),{begin:/\\(\\)/},x]},{begin:/\\$[(.]/}]}}function f(e){const t=n,a={beginKeywords:\"namespace\",end:/\\{/,excludeEnd:!0},o={beginKeywords:\"interface\",end:/\\{/,excludeEnd:!0,keywords:\"interface extends\"},s={className:\"meta\",relevance:10,begin:/^\\s*['\"]use strict['\"]/},l=[\"any\",\"void\",\"number\",\"boolean\",\"string\",\"object\",\"never\",\"enum\"],u=[\"type\",\"namespace\",\"typedef\",\"interface\",\"public\",\"private\",\"protected\",\"implements\",\"declare\",\"abstract\",\"readonly\"],d={$pattern:n,keyword:i.concat(u),literal:r,built_in:c.concat(l)},p={className:\"meta\",begin:\"@\"+t},f=(e,t,n)=>{const i=e.contains.findIndex(e=>e.label===t);if(-1===i)throw new Error(\"can not find mode to replace\");e.contains.splice(i,1,n)},_=h(e);Object.assign(_.keywords,d),_.exports.PARAMS_CONTAINS.push(p),_.contains=_.contains.concat([p,a,o]),f(_,\"shebang\",e.SHEBANG()),f(_,\"use_strict\",s);const m=_.contains.find(e=>\"function\"===e.className);return m.relevance=0,Object.assign(_,{name:\"TypeScript\",aliases:[\"ts\"]}),_}e.exports=f},af9a:function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(e){return r(\"(\",e,\")?\")}function r(...e){const t=e.map(e=>n(e)).join(\"\");return t}function a(e){const t=e.COMMENT(\"//\",\"$\",{contains:[{begin:/\\\\\\n/}]}),n=\"decltype\\\\(auto\\\\)\",r=\"[a-zA-Z_]\\\\w*::\",a=\"<[^<>]+>\",o=\"(\"+n+\"|\"+i(r)+\"[a-zA-Z_]\\\\w*\"+i(a)+\")\",s={className:\"keyword\",begin:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},l=\"\\\\\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\\\S)\",c={className:\"string\",variants:[{begin:'(u8?|U|L)?\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},{begin:\"(u8?|U|L)?'(\"+l+\"|.)\",end:\"'\",illegal:\".\"},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R\"([^()\\\\ ]{0,16})\\(/,end:/\\)([^()\\\\ ]{0,16})\"/})]},u={className:\"number\",variants:[{begin:\"\\\\b(0b[01']+)\"},{begin:\"(-?)\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)\"},{begin:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],relevance:0},d={className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{\"meta-keyword\":\"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(c,{className:\"meta-string\"}),{className:\"meta-string\",begin:/<.*?>/,end:/$/,illegal:\"\\\\n\"},t,e.C_BLOCK_COMMENT_MODE]},p={className:\"title\",begin:i(r)+e.IDENT_RE,relevance:0},h=i(r)+e.IDENT_RE+\"\\\\s*\\\\(\",f={keyword:\"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const 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 asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override 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 and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq\",built_in:\"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future 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 _Bool complex _Complex imaginary _Imaginary\",literal:\"true false nullptr NULL\"},_=[d,s,t,e.C_BLOCK_COMMENT_MODE,u,c],m={variants:[{begin:/=/,end:/;/},{begin:/\\(/,end:/\\)/},{beginKeywords:\"new throw return else\",end:/;/}],keywords:f,contains:_.concat([{begin:/\\(/,end:/\\)/,keywords:f,contains:_.concat([\"self\"]),relevance:0}]),relevance:0},g={className:\"function\",begin:\"(\"+o+\"[\\\\*&\\\\s]+)+\"+h,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:f,illegal:/[^\\w\\s\\*&:<>.]/,contains:[{begin:n,keywords:f,relevance:0},{begin:h,returnBegin:!0,contains:[p],relevance:0},{className:\"params\",begin:/\\(/,end:/\\)/,keywords:f,relevance:0,contains:[t,e.C_BLOCK_COMMENT_MODE,c,u,s,{begin:/\\(/,end:/\\)/,keywords:f,relevance:0,contains:[\"self\",t,e.C_BLOCK_COMMENT_MODE,c,u,s]}]},s,t,e.C_BLOCK_COMMENT_MODE,d]};return{name:\"C++\",aliases:[\"cc\",\"c++\",\"h++\",\"hpp\",\"hh\",\"hxx\",\"cxx\"],keywords:f,illegal:\"</\",contains:[].concat(m,g,_,[d,{begin:\"\\\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",end:\">\",keywords:f,contains:[\"self\",s]},{begin:e.IDENT_RE+\"::\",keywords:f},{className:\"class\",beginKeywords:\"enum class struct union\",end:/[{;:<>=]/,contains:[{beginKeywords:\"final class struct\"},e.TITLE_MODE]}]),exports:{preprocessor:d,strings:c,keywords:f}}}function o(e){const t=a(e),n=[\"c\",\"h\"],i=[\"cc\",\"c++\",\"h++\",\"hpp\",\"hh\",\"hxx\",\"cxx\"];return t.disableAutodetect=!0,t.aliases=[],e.getLanguage(\"c\")||t.aliases.push(...n),e.getLanguage(\"cpp\")||t.aliases.push(...i),t}e.exports=o},afba:function(e,t){function n(e){return{name:\"Processing\",keywords:{keyword:\"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",literal:\"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI\",title:\"setup draw\",built_in:\"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE]}}e.exports=n},b0cf:function(e,t){function n(e){const t={className:\"string\",variants:[e.inherit(e.QUOTE_STRING_MODE,{begin:'((u8?|U)|L)?\"'}),{begin:'(u8?|U)?R\"',end:'\"',contains:[e.BACKSLASH_ESCAPE]},{begin:\"'\\\\\\\\?.\",end:\"'\",illegal:\".\"}]},n={className:\"number\",variants:[{begin:\"\\\\b(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)(u|U|l|L|ul|UL|f|F)\"},{begin:e.C_NUMBER_RE}],relevance:0},i={className:\"meta\",begin:\"#\",end:\"$\",keywords:{\"meta-keyword\":\"if else elif endif define undef ifdef ifndef\"},contains:[{begin:/\\\\\\n/,relevance:0},{beginKeywords:\"include\",end:\"$\",keywords:{\"meta-keyword\":\"include\"},contains:[e.inherit(t,{className:\"meta-string\"}),{className:\"meta-string\",begin:\"<\",end:\">\",illegal:\"\\\\n\"}]},t,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},r={className:\"variable\",begin:/&[a-z\\d_]*\\b/},a={className:\"meta-keyword\",begin:\"/[a-z][a-z\\\\d-]*/\"},o={className:\"symbol\",begin:\"^\\\\s*[a-zA-Z_][a-zA-Z\\\\d_]*:\"},s={className:\"params\",begin:\"<\",end:\">\",contains:[n,r]},l={className:\"class\",begin:/[a-zA-Z_][a-zA-Z\\d_@]*\\s\\{/,end:/[{;=]/,returnBegin:!0,excludeEnd:!0},c={className:\"class\",begin:\"/\\\\s*\\\\{\",end:/\\};/,relevance:10,contains:[r,a,o,l,s,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,n,t]};return{name:\"Device Tree\",keywords:\"\",contains:[c,r,a,o,l,s,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,n,t,i,{begin:e.IDENT_RE+\"::\",keywords:\"\"}]}}e.exports=n},b1b9:function(e,t){function n(e){const t={keyword:\"if then not for in while do return else elseif break continue switch and or unless when class extends super local import export from using\",literal:\"true false nil\",built_in:\"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table\"},n=\"[A-Za-z$_][0-9A-Za-z$_]*\",i={className:\"subst\",begin:/#\\{/,end:/\\}/,keywords:t},r=[e.inherit(e.C_NUMBER_MODE,{starts:{end:\"(\\\\s*/)?\",relevance:0}}),{className:\"string\",variants:[{begin:/'/,end:/'/,contains:[e.BACKSLASH_ESCAPE]},{begin:/\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,i]}]},{className:\"built_in\",begin:\"@__\"+e.IDENT_RE},{begin:\"@\"+e.IDENT_RE},{begin:e.IDENT_RE+\"\\\\\\\\\"+e.IDENT_RE}];i.contains=r;const a=e.inherit(e.TITLE_MODE,{begin:n}),o=\"(\\\\(.*\\\\)\\\\s*)?\\\\B[-=]>\",s={className:\"params\",begin:\"\\\\([^\\\\(]\",returnBegin:!0,contains:[{begin:/\\(/,end:/\\)/,keywords:t,contains:[\"self\"].concat(r)}]};return{name:\"MoonScript\",aliases:[\"moon\"],keywords:t,illegal:/\\/\\*/,contains:r.concat([e.COMMENT(\"--\",\"$\"),{className:\"function\",begin:\"^\\\\s*\"+n+\"\\\\s*=\\\\s*\"+o,end:\"[-=]>\",returnBegin:!0,contains:[a,s]},{begin:/[\\(,:=]\\s*/,relevance:0,contains:[{className:\"function\",begin:o,end:\"[-=]>\",returnBegin:!0,contains:[s]}]},{className:\"class\",beginKeywords:\"class\",end:\"$\",illegal:/[:=\"\\[\\]]/,contains:[{beginKeywords:\"extends\",endsWithParent:!0,illegal:/[:=\"\\[\\]]/,contains:[a]},a]},{className:\"name\",begin:n+\":\",end:\":\",returnBegin:!0,returnEnd:!0,relevance:0}])}}e.exports=n},b2d8:function(module,exports,__webpack_require__){!function(e,t){module.exports=t()}(0,(function(){return function(e){function t(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var n={};return t.m=e,t.c=n,t.i=function(e){return e},t.d=function(e,n,i){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:i})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,\"a\",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p=\"\",t(t.s=69)}([function(e,t,n){\"use strict\";function i(e){return Object.prototype.toString.call(e)}function r(e){return\"[object String]\"===i(e)}function a(e,t){return y.call(e,t)}function o(e){return Array.prototype.slice.call(arguments,1).forEach((function(t){if(t){if(\"object\"!=typeof t)throw new TypeError(t+\"must be object\");Object.keys(t).forEach((function(n){e[n]=t[n]}))}})),e}function s(e,t,n){return[].concat(e.slice(0,t),n,e.slice(t+1))}function l(e){return!(e>=55296&&e<=57343)&&!(e>=64976&&e<=65007)&&65535!=(65535&e)&&65534!=(65535&e)&&!(e>=0&&e<=8)&&11!==e&&!(e>=14&&e<=31)&&!(e>=127&&e<=159)&&!(e>1114111)}function c(e){if(e>65535){e-=65536;var t=55296+(e>>10),n=56320+(1023&e);return String.fromCharCode(t,n)}return String.fromCharCode(e)}function u(e,t){var n=0;return a(w,t)?w[t]:35===t.charCodeAt(0)&&x.test(t)&&(n=\"x\"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10),l(n))?c(n):e}function d(e){return e.indexOf(\"\\\\\")<0?e:e.replace(S,\"$1\")}function p(e){return e.indexOf(\"\\\\\")<0&&e.indexOf(\"&\")<0?e:e.replace(T,(function(e,t,n){return t||u(e,n)}))}function h(e){return R[e]}function f(e){return O.test(e)?e.replace(N,h):e}function _(e){return e.replace(k,\"\\\\$&\")}function m(e){switch(e){case 9:case 32:return!0}return!1}function g(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1}function b(e){return A.test(e)}function v(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}}function E(e){return e=e.trim().replace(/\\s+/g,\" \"),\"Ṿ\"===\"ẞ\".toLowerCase()&&(e=e.replace(/ẞ/g,\"ß\")),e.toLowerCase().toUpperCase()}var y=Object.prototype.hasOwnProperty,S=/\\\\([!\"#$%&'()*+,\\-.\\/:;<=>?@[\\\\\\]^_`{|}~])/g,C=/&([a-z#][a-z0-9]{1,31});/gi,T=new RegExp(S.source+\"|\"+C.source,\"gi\"),x=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,w=n(53),O=/[&<>\"]/,N=/[&<>\"]/g,R={\"&\":\"&amp;\",\"<\":\"&lt;\",\">\":\"&gt;\",'\"':\"&quot;\"},k=/[.?*+^$[\\]\\\\(){}|-]/g,A=n(34);t.lib={},t.lib.mdurl=n(57),t.lib.ucmicro=n(196),t.assign=o,t.isString=r,t.has=a,t.unescapeMd=d,t.unescapeAll=p,t.isValidEntityCode=l,t.fromCodePoint=c,t.escapeHtml=f,t.arrayReplaceAt=s,t.isSpace=m,t.isWhiteSpace=g,t.isMdAsciiPunct=v,t.isPunctChar=b,t.escapeRE=_,t.normalizeReference=E},function(e,t){var n=e.exports=\"undefined\"!=typeof window&&window.Math==Math?window:\"undefined\"!=typeof self&&self.Math==Math?self:Function(\"return this\")();\"number\"==typeof __g&&(__g=n)},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t,n){e.exports=!n(11)((function(){return 7!=Object.defineProperty({},\"a\",{get:function(){return 7}}).a}))},function(e,t,n){var i=n(5),r=n(13);e.exports=n(3)?function(e,t,n){return i.f(e,t,r(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t,n){var i=n(9),r=n(43),a=n(28),o=Object.defineProperty;t.f=n(3)?Object.defineProperty:function(e,t,n){if(i(e),t=a(t,!0),i(n),r)try{return o(e,t,n)}catch(e){}if(\"get\"in n||\"set\"in n)throw TypeError(\"Accessors not supported!\");return\"value\"in n&&(e[t]=n.value),e}},function(e,t,n){var i=n(88),r=n(19);e.exports=function(e){return i(r(e))}},function(e,t,n){var i=n(26)(\"wks\"),r=n(14),a=n(1).Symbol,o=\"function\"==typeof a;(e.exports=function(e){return i[e]||(i[e]=o&&a[e]||(o?a:r)(\"Symbol.\"+e))}).store=i},function(e,t){e.exports=function(e){return\"object\"==typeof e?null!==e:\"function\"==typeof e}},function(e,t,n){var i=n(8);e.exports=function(e){if(!i(e))throw TypeError(e+\" is not an object!\");return e}},function(e,t){var n=e.exports={version:\"2.6.11\"};\"number\"==typeof __e&&(__e=n)},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t){e.exports=!0},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t){var n=0,i=Math.random();e.exports=function(e){return\"Symbol(\".concat(void 0===e?\"\":e,\")_\",(++n+i).toString(36))}},function(e,t){function n(e,t){var n=e[1]||\"\",r=e[3];if(!r)return n;if(t&&\"function\"==typeof btoa){var a=i(r);return[n].concat(r.sources.map((function(e){return\"/*# sourceURL=\"+r.sourceRoot+e+\" */\"}))).concat([a]).join(\"\\n\")}return[n].join(\"\\n\")}function i(e){return\"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(e))))+\" */\"}e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var i=n(t,e);return t[2]?\"@media \"+t[2]+\"{\"+i+\"}\":i})).join(\"\")},t.i=function(e,n){\"string\"==typeof e&&(e=[[null,e,\"\"]]);for(var i={},r=0;r<this.length;r++){var a=this[r][0];\"number\"==typeof a&&(i[a]=!0)}for(r=0;r<e.length;r++){var o=e[r];\"number\"==typeof o[0]&&i[o[0]]||(n&&!o[2]?o[2]=n:n&&(o[2]=\"(\"+o[2]+\") and (\"+n+\")\"),t.push(o))}},t}},function(e,t){e.exports=function(e,t,n,i,r){var a,o=e=e||{},s=typeof e.default;\"object\"!==s&&\"function\"!==s||(a=e,o=e.default);var l,c=\"function\"==typeof o?o.options:o;if(t&&(c.render=t.render,c.staticRenderFns=t.staticRenderFns),i&&(c._scopeId=i),r?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},c._ssrRegister=l):n&&(l=n),l){var u=c.functional,d=u?c.render:c.beforeCreate;u?c.render=function(e,t){return l.call(t),d(e,t)}:c.beforeCreate=d?[].concat(d,l):[l]}return{esModule:a,exports:o,options:c}}},function(e,t,n){function i(e){for(var t=0;t<e.length;t++){var n=e[t],i=u[n.id];if(i){i.refs++;for(var r=0;r<i.parts.length;r++)i.parts[r](n.parts[r]);for(;r<n.parts.length;r++)i.parts.push(a(n.parts[r]));i.parts.length>n.parts.length&&(i.parts.length=n.parts.length)}else{var o=[];for(r=0;r<n.parts.length;r++)o.push(a(n.parts[r]));u[n.id]={id:n.id,refs:1,parts:o}}}}function r(){var e=document.createElement(\"style\");return e.type=\"text/css\",d.appendChild(e),e}function a(e){var t,n,i=document.querySelector(\"style[\"+g+'~=\"'+e.id+'\"]');if(i){if(f)return _;i.parentNode.removeChild(i)}if(b){var a=h++;i=p||(p=r()),t=o.bind(null,i,a,!1),n=o.bind(null,i,a,!0)}else i=r(),t=s.bind(null,i),n=function(){i.parentNode.removeChild(i)};return t(e),function(i){if(i){if(i.css===e.css&&i.media===e.media&&i.sourceMap===e.sourceMap)return;t(e=i)}else n()}}function o(e,t,n,i){var r=n?\"\":i.css;if(e.styleSheet)e.styleSheet.cssText=v(t,r);else{var a=document.createTextNode(r),o=e.childNodes;o[t]&&e.removeChild(o[t]),o.length?e.insertBefore(a,o[t]):e.appendChild(a)}}function s(e,t){var n=t.css,i=t.media,r=t.sourceMap;if(i&&e.setAttribute(\"media\",i),m.ssrId&&e.setAttribute(g,t.id),r&&(n+=\"\\n/*# sourceURL=\"+r.sources[0]+\" */\",n+=\"\\n/*# sourceMappingURL=data:application/json;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(r))))+\" */\"),e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}var l=\"undefined\"!=typeof document;if(\"undefined\"!=typeof DEBUG&&DEBUG&&!l)throw new Error(\"vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\");var c=n(206),u={},d=l&&(document.head||document.getElementsByTagName(\"head\")[0]),p=null,h=0,f=!1,_=function(){},m=null,g=\"data-vue-ssr-id\",b=\"undefined\"!=typeof navigator&&/msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());e.exports=function(e,t,n,r){f=n,m=r||{};var a=c(e,t);return i(a),function(t){for(var n=[],r=0;r<a.length;r++){var o=a[r],s=u[o.id];s.refs--,n.push(s)}t?(a=c(e,t),i(a)):a=[];for(r=0;r<n.length;r++){s=n[r];if(0===s.refs){for(var l=0;l<s.parts.length;l++)s.parts[l]();delete u[s.id]}}}};var v=function(){var e=[];return function(t,n){return e[t]=n,e.filter(Boolean).join(\"\\n\")}}()},function(e,t,n){\"use strict\";function i(e,t,n,i,r){return\"*\"!==e||\"*\"!==t||\"*\"!==n.substring(i-2,i-1)||\"*\"!==n.substring(r+1,r+2)}function r(e,t){\"function\"!=typeof t&&(t=function(){});var n=document.querySelectorAll(\"script[src='\"+e+\"']\");if(n.length>0)return n[0].addEventListener(\"load\",(function(){t()})),void t();var i=document.createElement(\"script\"),r=document.getElementsByTagName(\"head\")[0];i.type=\"text/javascript\",i.charset=\"UTF-8\",i.src=e,i.addEventListener?i.addEventListener(\"load\",(function(){t()}),!1):i.attachEvent&&i.attachEvent(\"onreadystatechange\",(function(){\"loaded\"===window.event.srcElement.readyState&&t()})),r.appendChild(i)}function a(e,t){if(\"function\"!=typeof t&&(t=function(){}),document.querySelectorAll(\"link[href='\"+e+\"']\").length>0)t();else{var n=document.createElement(\"link\"),i=document.getElementsByTagName(\"head\")[0];n.rel=\"stylesheet\",n.href=e,n.addEventListener?n.addEventListener(\"load\",(function(){t()}),!1):n.attachEvent&&n.attachEvent(\"onreadystatechange\",(function(){\"loaded\"===window.event.srcElement.readyState&&t()})),i.appendChild(n)}}n.d(t,\"g\",(function(){return o})),n.d(t,\"i\",(function(){return s})),n.d(t,\"j\",(function(){return l})),n.d(t,\"k\",(function(){return c})),n.d(t,\"h\",(function(){return u})),n.d(t,\"l\",(function(){return d})),n.d(t,\"m\",(function(){return p})),n.d(t,\"e\",(function(){return h})),n.d(t,\"f\",(function(){return f})),n.d(t,\"b\",(function(){return _})),t.d=r,t.c=a,n.d(t,\"a\",(function(){return m}));var o=function(e,t,n){var r=t.prefix,a=t.subfix,o=t.str;if(t.type,e.focus(),\"number\"==typeof e.selectionStart&&\"number\"==typeof e.selectionEnd){var s=e.selectionStart,l=e.selectionEnd,c=e.value;s===l?(e.value=c.substring(0,s)+r+o+a+c.substring(l,c.length),e.selectionStart=s+r.length,e.selectionEnd=s+(o.length+r.length)):c.substring(s-r.length,s)===r&&c.substring(l,l+a.length)===a&&i(r,a,c,s,l)?(e.value=c.substring(0,s-r.length)+c.substring(s,l)+c.substring(l+a.length,c.length),e.selectionStart=s-r.length,e.selectionEnd=l-r.length):(e.value=c.substring(0,s)+r+c.substring(s,l)+a+c.substring(l,c.length),e.selectionStart=s+r.length,e.selectionEnd=s+(l-s+r.length))}else alert(\"Error: Browser version is too low\");n.d_value=e.value,e.focus()},s=function(e){var t=e.getTextareaDom();if(\"number\"==typeof t.selectionStart&&\"number\"==typeof t.selectionEnd){var n=t.selectionStart,i=t.selectionEnd,r=t.value;if(n===i)t.value=r.substring(0,n)+\"1. \"+r.substring(i,r.length),t.selectionEnd=t.selectionStart=n+3;else{for(var a=n;a>0&&\"\\n\"!==r.substring(a-1,a);)a--;for(var o=r.substring(a,i),s=o.split(\"\\n\"),l=0;l<s.length;l++)s[l]=l+1+\". \"+s[l];var c=s.join(\"\\n\");t.value=r.substring(0,a)+c+r.substring(i,r.length),t.selectionStart=a,t.selectionEnd=i+c.length-o.length}}else alert(\"Error: Browser version is too low\");e.d_value=t.value,t.focus()},l=function(e){var t=e.getTextareaDom();if(\"number\"==typeof t.selectionStart&&\"number\"==typeof t.selectionEnd){for(var n=t.selectionStart,i=t.selectionEnd,r=t.value,a=n;a>0&&\"\\n\"!==r.substring(a-1,a);)a--;for(var o=i;o<r.length&&\"\\n\"!==r.substring(o,o+1);)o++;o<r.length&&o++,t.value=r.substring(0,a)+r.substring(o,r.length),t.selectionEnd=t.selectionStart=0===a?0:a-1}else alert(\"Error: Browser version is too low\");e.d_value=t.value,t.focus()},c=function(e){var t=e.getTextareaDom();if(\"number\"==typeof t.selectionStart&&\"number\"==typeof t.selectionEnd){var n=t.selectionStart,i=t.selectionEnd,r=t.value;if(n===i)t.value=r.substring(0,n)+\"- \"+r.substring(i,r.length),t.selectionEnd=t.selectionStart=n+2;else{for(var a=n;a>0&&\"\\n\"!==r.substring(a-1,a);)a--;var o=r.substring(a,i),s=o.replace(/\\n/g,\"\\n- \");s=\"- \"+s,t.value=r.substring(0,a)+s+r.substring(i,r.length),t.selectionStart=a,t.selectionEnd=i+s.length-o.length}}else alert(\"Error: Browser version is too low\");e.d_value=t.value,t.focus()},u=function(e,t){t=t?new Array(t).fill(\" \").join(\"\"):\"\\t\";var n=e.getTextareaDom();if(\"number\"==typeof n.selectionStart&&\"number\"==typeof n.selectionEnd){var i=n.selectionStart,r=n.selectionEnd,a=n.value,o=a.substring(0,i).split(\"\\n\").pop();if(o.match(/^\\s*[0-9]+\\.\\s+\\S*/)){var s=o.replace(/(\\d+)/,1);n.value=a.substring(0,i-s.length)+t+s+a.substring(r,a.length)}else o.match(/^\\s*-\\s+\\S*/)?n.value=a.substring(0,i-o.length)+t+o+a.substring(r,a.length):n.value=a.substring(0,i)+t+a.substring(r,a.length);n.selectionStart=n.selectionEnd=i+t.length}else alert(\"Error: Browser version is too low\");e.d_value=n.value,n.focus()},d=function(e,t){var n=new RegExp(t?\"\\\\s{\"+t+\"}\":\"\\t\"),i=e.getTextareaDom();if(\"number\"==typeof i.selectionStart&&\"number\"==typeof i.selectionEnd){var r=i.selectionStart,a=i.selectionEnd,o=i.value,s=o.substring(0,r).split(\"\\n\").pop();s.search(n)>=0&&(i.value=o.substring(0,r-s.length)+s.replace(n,\"\")+o.substring(a,o.length),i.selectionStart=i.selectionEnd=r-(t||1))}else alert(\"Error: Browser version is too low\");e.d_value=i.value,i.focus()},p=function(e,t){var n=e.getTextareaDom();if(\"number\"==typeof n.selectionStart&&\"number\"==typeof n.selectionEnd){var i=n.selectionStart,r=n.selectionEnd,a=n.value,o=a.substring(0,i).split(\"\\n\").pop(),s=o.match(/^\\s*(?:[0-9]+\\.|-)\\s+\\S+/);if(s){t.preventDefault();var l=s.shift().match(/^\\s*(?:[0-9]+\\.|-)\\s/).shift();if(l.search(/-/)>=0)n.value=a.substring(0,i)+\"\\n\"+l+a.substring(r,a.length),n.selectionStart=n.selectionEnd=i+l.length+1;else{var c=l.replace(/(\\d+)/,parseInt(l)+1);n.value=a.substring(0,i)+\"\\n\"+c+a.substring(r,a.length),n.selectionStart=n.selectionEnd=i+c.length+1}}else{var u=o.match(/^\\s*(?:[0-9]+\\.|-)\\s+$/);if(u){t.preventDefault();var d=u.shift().length;n.value=a.substring(0,i-d)+\"\\n\"+a.substring(r,a.length),n.selectionStart=n.selectionEnd=i-d}}}else alert(\"Error: Browser version is too low\");e.d_value=n.value,n.focus()},h=function(e,t){var n=void 0;n=e.$refs.navigationContent,n.innerHTML=e.d_render;var i=n.children;if(i.length)for(var r=0;r<i.length;r++)!function(t,n,i){/^H[1-6]{1}$/.exec(t.tagName)?t.onclick=function(){var t=e.$refs.vShowContent,i=e.$refs.vNoteEdit;e.s_subfield?e.s_preview_switch&&(i.scrollTop=t.children[n].offsetTop*(i.scrollHeight-i.offsetHeight)/(t.scrollHeight-t.offsetHeight)):e.s_preview_switch&&(t.scrollTop=t.children[n].offsetTop)}:t.style.display=\"none\"}(i[r],r)},f=function(e,t){var n=e.srcElement?e.srcElement:e.target,i=n.scrollTop/(n.scrollHeight-n.offsetHeight);t.edit_scroll_height>=0&&n.scrollHeight!==t.edit_scroll_height&&n.scrollHeight-n.offsetHeight-n.scrollTop<=30&&(t.$refs.vNoteEdit.scrollTop=n.scrollHeight-n.offsetHeight,i=1),t.edit_scroll_height=n.scrollHeight,t.$refs.vShowContent.scrollHeight>t.$refs.vShowContent.offsetHeight&&(t.$refs.vShowContent.scrollTop=(t.$refs.vShowContent.scrollHeight-t.$refs.vShowContent.offsetHeight)*i)},_=function(e){e.$el.addEventListener(\"fullscreenchange\",(function(t){e.$toolbar_right_read_change_status()}),!1),e.$el.addEventListener(\"mozfullscreenchange\",(function(t){e.$toolbar_right_read_change_status()}),!1),e.$el.addEventListener(\"webkitfullscreenchange\",(function(t){e.$toolbar_right_read_change_status()}),!1),e.$el.addEventListener(\"msfullscreenchange\",(function(t){e.$toolbar_right_read_change_status()}),!1)},m=function(e){e.$refs.vShowContent.addEventListener(\"click\",(function(t){t=t||window.event;var n=t.srcElement?t.srcElement:t.target;\"IMG\"===n.tagName&&(null!=e.imageClick?e.imageClick(n):e.d_preview_imgsrc=n.src)}))}},function(e,t){e.exports=function(e){if(void 0==e)throw TypeError(\"Can't call method on  \"+e);return e}},function(e,t){e.exports=\"constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf\".split(\",\")},function(e,t){e.exports={}},function(e,t,n){var i=n(48),r=n(20);e.exports=Object.keys||function(e){return i(e,r)}},function(e,t){t.f={}.propertyIsEnumerable},function(e,t,n){var i=n(5).f,r=n(2),a=n(7)(\"toStringTag\");e.exports=function(e,t,n){e&&!r(e=n?e:e.prototype,a)&&i(e,a,{configurable:!0,value:t})}},function(e,t,n){var i=n(26)(\"keys\"),r=n(14);e.exports=function(e){return i[e]||(i[e]=r(e))}},function(e,t,n){var i=n(10),r=n(1),a=r[\"__core-js_shared__\"]||(r[\"__core-js_shared__\"]={});(e.exports=function(e,t){return a[e]||(a[e]=void 0!==t?t:{})})(\"versions\",[]).push({version:i.version,mode:n(12)?\"pure\":\"global\",copyright:\"© 2019 Denis Pushkarev (zloirock.ru)\"})},function(e,t){var n=Math.ceil,i=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?i:n)(e)}},function(e,t,n){var i=n(8);e.exports=function(e,t){if(!i(e))return e;var n,r;if(t&&\"function\"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;if(\"function\"==typeof(n=e.valueOf)&&!i(r=n.call(e)))return r;if(!t&&\"function\"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;throw TypeError(\"Can't convert object to primitive value\")}},function(e,t,n){var i=n(1),r=n(10),a=n(12),o=n(30),s=n(5).f;e.exports=function(e){var t=r.Symbol||(r.Symbol=a?{}:i.Symbol||{});\"_\"==e.charAt(0)||e in t||s(t,e,{value:o.f(e)})}},function(e,t,n){t.f=n(7)},function(e,t,n){function i(e,t){return new a(t).process(e)}var r=n(51),a=n(111);for(var o in t=e.exports=i,t.FilterCSS=a,r)t[o]=r[o];\"undefined\"!=typeof window&&(window.filterCSS=e.exports)},function(e,t,n){\"use strict\";function i(){this.__rules__=[],this.__cache__=null}i.prototype.__find__=function(e){for(var t=0;t<this.__rules__.length;t++)if(this.__rules__[t].name===e)return t;return-1},i.prototype.__compile__=function(){var e=this,t=[\"\"];e.__rules__.forEach((function(e){e.enabled&&e.alt.forEach((function(e){t.indexOf(e)<0&&t.push(e)}))})),e.__cache__={},t.forEach((function(t){e.__cache__[t]=[],e.__rules__.forEach((function(n){n.enabled&&(t&&n.alt.indexOf(t)<0||e.__cache__[t].push(n.fn))}))}))},i.prototype.at=function(e,t,n){var i=this.__find__(e),r=n||{};if(-1===i)throw new Error(\"Parser rule not found: \"+e);this.__rules__[i].fn=t,this.__rules__[i].alt=r.alt||[],this.__cache__=null},i.prototype.before=function(e,t,n,i){var r=this.__find__(e),a=i||{};if(-1===r)throw new Error(\"Parser rule not found: \"+e);this.__rules__.splice(r,0,{name:t,enabled:!0,fn:n,alt:a.alt||[]}),this.__cache__=null},i.prototype.after=function(e,t,n,i){var r=this.__find__(e),a=i||{};if(-1===r)throw new Error(\"Parser rule not found: \"+e);this.__rules__.splice(r+1,0,{name:t,enabled:!0,fn:n,alt:a.alt||[]}),this.__cache__=null},i.prototype.push=function(e,t,n){var i=n||{};this.__rules__.push({name:e,enabled:!0,fn:t,alt:i.alt||[]}),this.__cache__=null},i.prototype.enable=function(e,t){Array.isArray(e)||(e=[e]);var n=[];return e.forEach((function(e){var i=this.__find__(e);if(i<0){if(t)return;throw new Error(\"Rules manager: invalid rule name \"+e)}this.__rules__[i].enabled=!0,n.push(e)}),this),this.__cache__=null,n},i.prototype.enableOnly=function(e,t){Array.isArray(e)||(e=[e]),this.__rules__.forEach((function(e){e.enabled=!1})),this.enable(e,t)},i.prototype.disable=function(e,t){Array.isArray(e)||(e=[e]);var n=[];return e.forEach((function(e){var i=this.__find__(e);if(i<0){if(t)return;throw new Error(\"Rules manager: invalid rule name \"+e)}this.__rules__[i].enabled=!1,n.push(e)}),this),this.__cache__=null,n},i.prototype.getRules=function(e){return null===this.__cache__&&this.__compile__(),this.__cache__[e]||[]},e.exports=i},function(e,t,n){\"use strict\";function i(e,t,n){this.type=e,this.tag=t,this.attrs=null,this.map=null,this.nesting=n,this.level=0,this.children=null,this.content=\"\",this.markup=\"\",this.info=\"\",this.meta=null,this.block=!1,this.hidden=!1}i.prototype.attrIndex=function(e){var t,n,i;if(!this.attrs)return-1;for(t=this.attrs,n=0,i=t.length;n<i;n++)if(t[n][0]===e)return n;return-1},i.prototype.attrPush=function(e){this.attrs?this.attrs.push(e):this.attrs=[e]},i.prototype.attrSet=function(e,t){var n=this.attrIndex(e),i=[e,t];n<0?this.attrPush(i):this.attrs[n]=i},i.prototype.attrGet=function(e){var t=this.attrIndex(e),n=null;return t>=0&&(n=this.attrs[t][1]),n},i.prototype.attrJoin=function(e,t){var n=this.attrIndex(e);n<0?this.attrPush([e,t]):this.attrs[n][1]=this.attrs[n][1]+\" \"+t},e.exports=i},function(e,t){e.exports=/[!-#%-\\*,-\\/:;\\?@\\[-\\]_\\{\\}\\xA1\\xA7\\xAB\\xB6\\xB7\\xBB\\xBF\\u037E\\u0387\\u055A-\\u055F\\u0589\\u058A\\u05BE\\u05C0\\u05C3\\u05C6\\u05F3\\u05F4\\u0609\\u060A\\u060C\\u060D\\u061B\\u061E\\u061F\\u066A-\\u066D\\u06D4\\u0700-\\u070D\\u07F7-\\u07F9\\u0830-\\u083E\\u085E\\u0964\\u0965\\u0970\\u09FD\\u0A76\\u0AF0\\u0C84\\u0DF4\\u0E4F\\u0E5A\\u0E5B\\u0F04-\\u0F12\\u0F14\\u0F3A-\\u0F3D\\u0F85\\u0FD0-\\u0FD4\\u0FD9\\u0FDA\\u104A-\\u104F\\u10FB\\u1360-\\u1368\\u1400\\u166D\\u166E\\u169B\\u169C\\u16EB-\\u16ED\\u1735\\u1736\\u17D4-\\u17D6\\u17D8-\\u17DA\\u1800-\\u180A\\u1944\\u1945\\u1A1E\\u1A1F\\u1AA0-\\u1AA6\\u1AA8-\\u1AAD\\u1B5A-\\u1B60\\u1BFC-\\u1BFF\\u1C3B-\\u1C3F\\u1C7E\\u1C7F\\u1CC0-\\u1CC7\\u1CD3\\u2010-\\u2027\\u2030-\\u2043\\u2045-\\u2051\\u2053-\\u205E\\u207D\\u207E\\u208D\\u208E\\u2308-\\u230B\\u2329\\u232A\\u2768-\\u2775\\u27C5\\u27C6\\u27E6-\\u27EF\\u2983-\\u2998\\u29D8-\\u29DB\\u29FC\\u29FD\\u2CF9-\\u2CFC\\u2CFE\\u2CFF\\u2D70\\u2E00-\\u2E2E\\u2E30-\\u2E4E\\u3001-\\u3003\\u3008-\\u3011\\u3014-\\u301F\\u3030\\u303D\\u30A0\\u30FB\\uA4FE\\uA4FF\\uA60D-\\uA60F\\uA673\\uA67E\\uA6F2-\\uA6F7\\uA874-\\uA877\\uA8CE\\uA8CF\\uA8F8-\\uA8FA\\uA8FC\\uA92E\\uA92F\\uA95F\\uA9C1-\\uA9CD\\uA9DE\\uA9DF\\uAA5C-\\uAA5F\\uAADE\\uAADF\\uAAF0\\uAAF1\\uABEB\\uFD3E\\uFD3F\\uFE10-\\uFE19\\uFE30-\\uFE52\\uFE54-\\uFE61\\uFE63\\uFE68\\uFE6A\\uFE6B\\uFF01-\\uFF03\\uFF05-\\uFF0A\\uFF0C-\\uFF0F\\uFF1A\\uFF1B\\uFF1F\\uFF20\\uFF3B-\\uFF3D\\uFF3F\\uFF5B\\uFF5D\\uFF5F-\\uFF65]|\\uD800[\\uDD00-\\uDD02\\uDF9F\\uDFD0]|\\uD801\\uDD6F|\\uD802[\\uDC57\\uDD1F\\uDD3F\\uDE50-\\uDE58\\uDE7F\\uDEF0-\\uDEF6\\uDF39-\\uDF3F\\uDF99-\\uDF9C]|\\uD803[\\uDF55-\\uDF59]|\\uD804[\\uDC47-\\uDC4D\\uDCBB\\uDCBC\\uDCBE-\\uDCC1\\uDD40-\\uDD43\\uDD74\\uDD75\\uDDC5-\\uDDC8\\uDDCD\\uDDDB\\uDDDD-\\uDDDF\\uDE38-\\uDE3D\\uDEA9]|\\uD805[\\uDC4B-\\uDC4F\\uDC5B\\uDC5D\\uDCC6\\uDDC1-\\uDDD7\\uDE41-\\uDE43\\uDE60-\\uDE6C\\uDF3C-\\uDF3E]|\\uD806[\\uDC3B\\uDE3F-\\uDE46\\uDE9A-\\uDE9C\\uDE9E-\\uDEA2]|\\uD807[\\uDC41-\\uDC45\\uDC70\\uDC71\\uDEF7\\uDEF8]|\\uD809[\\uDC70-\\uDC74]|\\uD81A[\\uDE6E\\uDE6F\\uDEF5\\uDF37-\\uDF3B\\uDF44]|\\uD81B[\\uDE97-\\uDE9A]|\\uD82F\\uDC9F|\\uD836[\\uDE87-\\uDE8B]|\\uD83A[\\uDD5E\\uDD5F]/},function(e,t){e.exports={indexOf:function(e,t){var n,i;if(Array.prototype.indexOf)return e.indexOf(t);for(n=0,i=e.length;n<i;n++)if(e[n]===t)return n;return-1},forEach:function(e,t,n){var i,r;if(Array.prototype.forEach)return e.forEach(t,n);for(i=0,r=e.length;i<r;i++)t.call(n,e[i],i,e)},trim:function(e){return String.prototype.trim?e.trim():e.replace(/(^\\s*)|(\\s*$)/g,\"\")},spaceIndex:function(e){var t=/\\s|\\n|\\t/,n=t.exec(e);return n?n.index:-1}}},function(e,t,n){function i(e){r||n(203)}var r=!1,a=n(16)(n(66),n(200),i,\"data-v-548e2160\",null);a.options.__file=\"/Users/zhuhongyu/Documents/mavonEditor/src/components/md-toolbar-left.vue\",a.esModule&&Object.keys(a.esModule).some((function(e){return\"default\"!==e&&\"__\"!==e.substr(0,2)})),a.options.functional,e.exports=a.exports},function(e,t,n){var i=n(16)(n(67),n(198),null,null,null);i.options.__file=\"/Users/zhuhongyu/Documents/mavonEditor/src/components/md-toolbar-right.vue\",i.esModule&&Object.keys(i.esModule).some((function(e){return\"default\"!==e&&\"__\"!==e.substr(0,2)})),i.options.functional,e.exports=i.exports},function(e,t,n){\"use strict\";t.a={\"1c\":\"1c\",abnf:\"abnf\",accesslog:\"accesslog\",actionscript:\"actionscript\",as:\"actionscript\",ada:\"ada\",apache:\"apache\",apacheconf:\"apache\",applescript:\"applescript\",osascript:\"applescript\",arduino:\"arduino\",armasm:\"armasm\",arm:\"armasm\",asciidoc:\"asciidoc\",adoc:\"asciidoc\",aspectj:\"aspectj\",autohotkey:\"autohotkey\",ahk:\"autohotkey\",autoit:\"autoit\",avrasm:\"avrasm\",awk:\"awk\",axapta:\"axapta\",bash:\"bash\",sh:\"bash\",zsh:\"bash\",basic:\"basic\",bnf:\"bnf\",brainfuck:\"brainfuck\",bf:\"brainfuck\",cal:\"cal\",capnproto:\"capnproto\",capnp:\"capnproto\",ceylon:\"ceylon\",clean:\"clean\",icl:\"clean\",dcl:\"clean\",\"clojure-repl\":\"clojure-repl\",clojure:\"clojure\",clj:\"clojure\",cmake:\"cmake\",\"cmake.in\":\"cmake\",coffeescript:\"coffeescript\",coffee:\"coffeescript\",cson:\"coffeescript\",iced:\"coffeescript\",coq:\"coq\",cos:\"cos\",cls:\"cos\",cpp:\"cpp\",c:\"cpp\",cc:\"cpp\",h:\"cpp\",\"c++\":\"cpp\",\"h++\":\"cpp\",hpp:\"cpp\",crmsh:\"crmsh\",crm:\"crmsh\",pcmk:\"crmsh\",crystal:\"crystal\",cr:\"crystal\",cs:\"cs\",csharp:\"cs\",csp:\"csp\",css:\"css\",d:\"d\",dart:\"dart\",delphi:\"delphi\",dpr:\"delphi\",dfm:\"delphi\",pas:\"delphi\",pascal:\"delphi\",freepascal:\"delphi\",lazarus:\"delphi\",lpr:\"delphi\",lfm:\"delphi\",diff:\"diff\",patch:\"diff\",django:\"django\",jinja:\"django\",dns:\"dns\",bind:\"dns\",zone:\"dns\",dockerfile:\"dockerfile\",docker:\"dockerfile\",dos:\"dos\",bat:\"dos\",cmd:\"dos\",dsconfig:\"dsconfig\",dts:\"dts\",dust:\"dust\",dst:\"dust\",ebnf:\"ebnf\",elixir:\"elixir\",elm:\"elm\",erb:\"erb\",\"erlang-repl\":\"erlang-repl\",erlang:\"erlang\",erl:\"erlang\",excel:\"excel\",xlsx:\"excel\",xls:\"excel\",fix:\"fix\",flix:\"flix\",fortran:\"fortran\",f90:\"fortran\",f95:\"fortran\",fsharp:\"fsharp\",fs:\"fsharp\",gams:\"gams\",gms:\"gams\",gauss:\"gauss\",gss:\"gauss\",gcode:\"gcode\",nc:\"gcode\",gherkin:\"gherkin\",feature:\"gherkin\",glsl:\"glsl\",go:\"go\",golang:\"go\",golo:\"golo\",gradle:\"gradle\",groovy:\"groovy\",haml:\"haml\",handlebars:\"handlebars\",hbs:\"handlebars\",\"html.hbs\":\"handlebars\",\"html.handlebars\":\"handlebars\",haskell:\"haskell\",hs:\"haskell\",haxe:\"haxe\",hx:\"haxe\",hsp:\"hsp\",htmlbars:\"htmlbars\",http:\"http\",https:\"http\",hy:\"hy\",hylang:\"hy\",inform7:\"inform7\",i7:\"inform7\",ini:\"ini\",toml:\"ini\",irpf90:\"irpf90\",java:\"java\",jsp:\"java\",javascript:\"javascript\",js:\"javascript\",jsx:\"javascript\",\"jboss-cli\":\"jboss-cli\",\"wildfly-cli\":\"jboss-cli\",json:\"json\",\"julia-repl\":\"julia-repl\",julia:\"julia\",kotlin:\"kotlin\",lasso:\"lasso\",ls:\"livescript\",lassoscript:\"lasso\",ldif:\"ldif\",leaf:\"leaf\",less:\"less\",lisp:\"lisp\",livecodeserver:\"livecodeserver\",livescript:\"livescript\",llvm:\"llvm\",lsl:\"lsl\",lua:\"lua\",makefile:\"makefile\",mk:\"makefile\",mak:\"makefile\",markdown:\"markdown\",md:\"markdown\",mkdown:\"markdown\",mkd:\"markdown\",mathematica:\"mathematica\",mma:\"mathematica\",matlab:\"matlab\",maxima:\"maxima\",mel:\"mel\",mercury:\"mercury\",m:\"mercury\",moo:\"mercury\",mipsasm:\"mipsasm\",mips:\"mipsasm\",mizar:\"mizar\",mojolicious:\"mojolicious\",monkey:\"monkey\",moonscript:\"moonscript\",moon:\"moonscript\",n1ql:\"n1ql\",nginx:\"nginx\",nginxconf:\"nginx\",nimrod:\"nimrod\",nim:\"nimrod\",nix:\"nix\",nixos:\"nix\",nsis:\"nsis\",objectivec:\"objectivec\",mm:\"objectivec\",objc:\"objectivec\",\"obj-c\":\"objectivec\",ocaml:\"ocaml\",ml:\"sml\",openscad:\"openscad\",scad:\"openscad\",oxygene:\"oxygene\",parser3:\"parser3\",perl:\"perl\",pl:\"perl\",pm:\"perl\",pf:\"pf\",\"pf.conf\":\"pf\",php:\"php\",php3:\"php\",php4:\"php\",php5:\"php\",php6:\"php\",pony:\"pony\",powershell:\"powershell\",ps:\"powershell\",processing:\"processing\",profile:\"profile\",prolog:\"prolog\",protobuf:\"protobuf\",puppet:\"puppet\",pp:\"puppet\",purebasic:\"purebasic\",pb:\"purebasic\",pbi:\"purebasic\",python:\"python\",py:\"python\",gyp:\"python\",q:\"q\",k:\"q\",kdb:\"q\",qml:\"qml\",qt:\"qml\",r:\"r\",rib:\"rib\",roboconf:\"roboconf\",graph:\"roboconf\",instances:\"roboconf\",routeros:\"routeros\",mikrotik:\"routeros\",rsl:\"rsl\",ruby:\"ruby\",rb:\"ruby\",gemspec:\"ruby\",podspec:\"ruby\",thor:\"ruby\",irb:\"ruby\",ruleslanguage:\"ruleslanguage\",rust:\"rust\",rs:\"rust\",scala:\"scala\",scheme:\"scheme\",scilab:\"scilab\",sci:\"scilab\",scss:\"scss\",shell:\"shell\",console:\"shell\",smali:\"smali\",smalltalk:\"smalltalk\",st:\"smalltalk\",sml:\"sml\",sqf:\"sqf\",sql:\"sql\",stan:\"stan\",stata:\"stata\",do:\"stata\",ado:\"stata\",step21:\"step21\",p21:\"step21\",step:\"step21\",stp:\"step21\",stylus:\"stylus\",styl:\"stylus\",subunit:\"subunit\",swift:\"swift\",taggerscript:\"taggerscript\",tap:\"tap\",tcl:\"tcl\",tk:\"tcl\",tex:\"tex\",thrift:\"thrift\",tp:\"tp\",twig:\"twig\",craftcms:\"twig\",typescript:\"typescript\",ts:\"typescript\",vala:\"vala\",vbnet:\"vbnet\",vb:\"vbnet\",\"vbscript-html\":\"vbscript-html\",vbscript:\"vbscript\",vbs:\"vbscript\",verilog:\"verilog\",v:\"verilog\",sv:\"verilog\",svh:\"verilog\",vhdl:\"vhdl\",vim:\"vim\",x86asm:\"x86asm\",xl:\"xl\",tao:\"xl\",xml:\"xml\",html:\"xml\",xhtml:\"xml\",rss:\"xml\",atom:\"xml\",xjb:\"xml\",xsd:\"xml\",xsl:\"xml\",plist:\"xml\",xquery:\"xquery\",xpath:\"xquery\",xq:\"xquery\",yaml:\"yaml\",yml:\"yaml\",YAML:\"yaml\",zephir:\"zephir\",zep:\"zephir\"}},function(e,t,n){\"use strict\";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var r=n(79),a=i(r),o=n(78),s=i(o),l=\"function\"==typeof s.default&&\"symbol\"==typeof a.default?function(e){return typeof e}:function(e){return e&&\"function\"==typeof s.default&&e.constructor===s.default&&e!==s.default.prototype?\"symbol\":typeof e};t.default=\"function\"==typeof s.default&&\"symbol\"===l(a.default)?function(e){return void 0===e?\"undefined\":l(e)}:function(e){return e&&\"function\"==typeof s.default&&e.constructor===s.default&&e!==s.default.prototype?\"symbol\":void 0===e?\"undefined\":l(e)}},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){var i=n(8),r=n(1).document,a=i(r)&&i(r.createElement);e.exports=function(e){return a?r.createElement(e):{}}},function(e,t,n){var i=n(1),r=n(10),a=n(85),o=n(4),s=n(2),l=function(e,t,n){var c,u,d,p=e&l.F,h=e&l.G,f=e&l.S,_=e&l.P,m=e&l.B,g=e&l.W,b=h?r:r[t]||(r[t]={}),v=b.prototype,E=h?i:f?i[t]:(i[t]||{}).prototype;for(c in h&&(n=t),n)(u=!p&&E&&void 0!==E[c])&&s(b,c)||(d=u?E[c]:n[c],b[c]=h&&\"function\"!=typeof E[c]?n[c]:m&&u?a(d,i):g&&E[c]==d?function(e){var t=function(t,n,i){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,n)}return new e(t,n,i)}return e.apply(this,arguments)};return t.prototype=e.prototype,t}(d):_&&\"function\"==typeof d?a(Function.call,d):d,_&&((b.virtual||(b.virtual={}))[c]=d,e&l.R&&v&&!v[c]&&o(v,c,d)))};l.F=1,l.G=2,l.S=4,l.P=8,l.B=16,l.W=32,l.U=64,l.R=128,e.exports=l},function(e,t,n){e.exports=!n(3)&&!n(11)((function(){return 7!=Object.defineProperty(n(41)(\"div\"),\"a\",{get:function(){return 7}}).a}))},function(e,t,n){\"use strict\";var i=n(12),r=n(42),a=n(49),o=n(4),s=n(21),l=n(90),c=n(24),u=n(96),d=n(7)(\"iterator\"),p=!([].keys&&\"next\"in[].keys()),h=function(){return this};e.exports=function(e,t,n,f,_,m,g){l(n,t,f);var b,v,E,y=function(e){if(!p&&e in x)return x[e];switch(e){case\"keys\":case\"values\":return function(){return new n(this,e)}}return function(){return new n(this,e)}},S=t+\" Iterator\",C=\"values\"==_,T=!1,x=e.prototype,w=x[d]||x[\"@@iterator\"]||_&&x[_],O=w||y(_),N=_?C?y(\"entries\"):O:void 0,R=\"Array\"==t&&x.entries||w;if(R&&(E=u(R.call(new e)))!==Object.prototype&&E.next&&(c(E,S,!0),i||\"function\"==typeof E[d]||o(E,d,h)),C&&w&&\"values\"!==w.name&&(T=!0,O=function(){return w.call(this)}),i&&!g||!p&&!T&&x[d]||o(x,d,O),s[t]=O,s[S]=h,_)if(b={values:C?O:y(\"values\"),keys:m?O:y(\"keys\"),entries:N},g)for(v in b)v in x||a(x,v,b[v]);else r(r.P+r.F*(p||T),t,b);return b}},function(e,t,n){var i=n(9),r=n(93),a=n(20),o=n(25)(\"IE_PROTO\"),s=function(){},l=function(){var e,t=n(41)(\"iframe\"),i=a.length;for(t.style.display=\"none\",n(87).appendChild(t),t.src=\"javascript:\",e=t.contentWindow.document,e.open(),e.write(\"<script>document.F=Object<\\/script>\"),e.close(),l=e.F;i--;)delete l.prototype[a[i]];return l()};e.exports=Object.create||function(e,t){var n;return null!==e?(s.prototype=i(e),n=new s,s.prototype=null,n[o]=e):n=l(),void 0===t?n:r(n,t)}},function(e,t,n){var i=n(48),r=n(20).concat(\"length\",\"prototype\");t.f=Object.getOwnPropertyNames||function(e){return i(e,r)}},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,n){var i=n(2),r=n(6),a=n(84)(!1),o=n(25)(\"IE_PROTO\");e.exports=function(e,t){var n,s=r(e),l=0,c=[];for(n in s)n!=o&&i(s,n)&&c.push(n);for(;t.length>l;)i(s,n=t[l++])&&(~a(c,n)||c.push(n));return c}},function(e,t,n){e.exports=n(4)},function(e,t,n){var i=n(19);e.exports=function(e){return Object(i(e))}},function(e,t){function n(){var e={\"align-content\":!1,\"align-items\":!1,\"align-self\":!1,\"alignment-adjust\":!1,\"alignment-baseline\":!1,all:!1,\"anchor-point\":!1,animation:!1,\"animation-delay\":!1,\"animation-direction\":!1,\"animation-duration\":!1,\"animation-fill-mode\":!1,\"animation-iteration-count\":!1,\"animation-name\":!1,\"animation-play-state\":!1,\"animation-timing-function\":!1,azimuth:!1,\"backface-visibility\":!1,background:!0,\"background-attachment\":!0,\"background-clip\":!0,\"background-color\":!0,\"background-image\":!0,\"background-origin\":!0,\"background-position\":!0,\"background-repeat\":!0,\"background-size\":!0,\"baseline-shift\":!1,binding:!1,bleed:!1,\"bookmark-label\":!1,\"bookmark-level\":!1,\"bookmark-state\":!1,border:!0,\"border-bottom\":!0,\"border-bottom-color\":!0,\"border-bottom-left-radius\":!0,\"border-bottom-right-radius\":!0,\"border-bottom-style\":!0,\"border-bottom-width\":!0,\"border-collapse\":!0,\"border-color\":!0,\"border-image\":!0,\"border-image-outset\":!0,\"border-image-repeat\":!0,\"border-image-slice\":!0,\"border-image-source\":!0,\"border-image-width\":!0,\"border-left\":!0,\"border-left-color\":!0,\"border-left-style\":!0,\"border-left-width\":!0,\"border-radius\":!0,\"border-right\":!0,\"border-right-color\":!0,\"border-right-style\":!0,\"border-right-width\":!0,\"border-spacing\":!0,\"border-style\":!0,\"border-top\":!0,\"border-top-color\":!0,\"border-top-left-radius\":!0,\"border-top-right-radius\":!0,\"border-top-style\":!0,\"border-top-width\":!0,\"border-width\":!0,bottom:!1,\"box-decoration-break\":!0,\"box-shadow\":!0,\"box-sizing\":!0,\"box-snap\":!0,\"box-suppress\":!0,\"break-after\":!0,\"break-before\":!0,\"break-inside\":!0,\"caption-side\":!1,chains:!1,clear:!0,clip:!1,\"clip-path\":!1,\"clip-rule\":!1,color:!0,\"color-interpolation-filters\":!0,\"column-count\":!1,\"column-fill\":!1,\"column-gap\":!1,\"column-rule\":!1,\"column-rule-color\":!1,\"column-rule-style\":!1,\"column-rule-width\":!1,\"column-span\":!1,\"column-width\":!1,columns:!1,contain:!1,content:!1,\"counter-increment\":!1,\"counter-reset\":!1,\"counter-set\":!1,crop:!1,cue:!1,\"cue-after\":!1,\"cue-before\":!1,cursor:!1,direction:!1,display:!0,\"display-inside\":!0,\"display-list\":!0,\"display-outside\":!0,\"dominant-baseline\":!1,elevation:!1,\"empty-cells\":!1,filter:!1,flex:!1,\"flex-basis\":!1,\"flex-direction\":!1,\"flex-flow\":!1,\"flex-grow\":!1,\"flex-shrink\":!1,\"flex-wrap\":!1,float:!1,\"float-offset\":!1,\"flood-color\":!1,\"flood-opacity\":!1,\"flow-from\":!1,\"flow-into\":!1,font:!0,\"font-family\":!0,\"font-feature-settings\":!0,\"font-kerning\":!0,\"font-language-override\":!0,\"font-size\":!0,\"font-size-adjust\":!0,\"font-stretch\":!0,\"font-style\":!0,\"font-synthesis\":!0,\"font-variant\":!0,\"font-variant-alternates\":!0,\"font-variant-caps\":!0,\"font-variant-east-asian\":!0,\"font-variant-ligatures\":!0,\"font-variant-numeric\":!0,\"font-variant-position\":!0,\"font-weight\":!0,grid:!1,\"grid-area\":!1,\"grid-auto-columns\":!1,\"grid-auto-flow\":!1,\"grid-auto-rows\":!1,\"grid-column\":!1,\"grid-column-end\":!1,\"grid-column-start\":!1,\"grid-row\":!1,\"grid-row-end\":!1,\"grid-row-start\":!1,\"grid-template\":!1,\"grid-template-areas\":!1,\"grid-template-columns\":!1,\"grid-template-rows\":!1,\"hanging-punctuation\":!1,height:!0,hyphens:!1,icon:!1,\"image-orientation\":!1,\"image-resolution\":!1,\"ime-mode\":!1,\"initial-letters\":!1,\"inline-box-align\":!1,\"justify-content\":!1,\"justify-items\":!1,\"justify-self\":!1,left:!1,\"letter-spacing\":!0,\"lighting-color\":!0,\"line-box-contain\":!1,\"line-break\":!1,\"line-grid\":!1,\"line-height\":!1,\"line-snap\":!1,\"line-stacking\":!1,\"line-stacking-ruby\":!1,\"line-stacking-shift\":!1,\"line-stacking-strategy\":!1,\"list-style\":!0,\"list-style-image\":!0,\"list-style-position\":!0,\"list-style-type\":!0,margin:!0,\"margin-bottom\":!0,\"margin-left\":!0,\"margin-right\":!0,\"margin-top\":!0,\"marker-offset\":!1,\"marker-side\":!1,marks:!1,mask:!1,\"mask-box\":!1,\"mask-box-outset\":!1,\"mask-box-repeat\":!1,\"mask-box-slice\":!1,\"mask-box-source\":!1,\"mask-box-width\":!1,\"mask-clip\":!1,\"mask-image\":!1,\"mask-origin\":!1,\"mask-position\":!1,\"mask-repeat\":!1,\"mask-size\":!1,\"mask-source-type\":!1,\"mask-type\":!1,\"max-height\":!0,\"max-lines\":!1,\"max-width\":!0,\"min-height\":!0,\"min-width\":!0,\"move-to\":!1,\"nav-down\":!1,\"nav-index\":!1,\"nav-left\":!1,\"nav-right\":!1,\"nav-up\":!1,\"object-fit\":!1,\"object-position\":!1,opacity:!1,order:!1,orphans:!1,outline:!1,\"outline-color\":!1,\"outline-offset\":!1,\"outline-style\":!1,\"outline-width\":!1,overflow:!1,\"overflow-wrap\":!1,\"overflow-x\":!1,\"overflow-y\":!1,padding:!0,\"padding-bottom\":!0,\"padding-left\":!0,\"padding-right\":!0,\"padding-top\":!0,page:!1,\"page-break-after\":!1,\"page-break-before\":!1,\"page-break-inside\":!1,\"page-policy\":!1,pause:!1,\"pause-after\":!1,\"pause-before\":!1,perspective:!1,\"perspective-origin\":!1,pitch:!1,\"pitch-range\":!1,\"play-during\":!1,position:!1,\"presentation-level\":!1,quotes:!1,\"region-fragment\":!1,resize:!1,rest:!1,\"rest-after\":!1,\"rest-before\":!1,richness:!1,right:!1,rotation:!1,\"rotation-point\":!1,\"ruby-align\":!1,\"ruby-merge\":!1,\"ruby-position\":!1,\"shape-image-threshold\":!1,\"shape-outside\":!1,\"shape-margin\":!1,size:!1,speak:!1,\"speak-as\":!1,\"speak-header\":!1,\"speak-numeral\":!1,\"speak-punctuation\":!1,\"speech-rate\":!1,stress:!1,\"string-set\":!1,\"tab-size\":!1,\"table-layout\":!1,\"text-align\":!0,\"text-align-last\":!0,\"text-combine-upright\":!0,\"text-decoration\":!0,\"text-decoration-color\":!0,\"text-decoration-line\":!0,\"text-decoration-skip\":!0,\"text-decoration-style\":!0,\"text-emphasis\":!0,\"text-emphasis-color\":!0,\"text-emphasis-position\":!0,\"text-emphasis-style\":!0,\"text-height\":!0,\"text-indent\":!0,\"text-justify\":!0,\"text-orientation\":!0,\"text-overflow\":!0,\"text-shadow\":!0,\"text-space-collapse\":!0,\"text-transform\":!0,\"text-underline-position\":!0,\"text-wrap\":!0,top:!1,transform:!1,\"transform-origin\":!1,\"transform-style\":!1,transition:!1,\"transition-delay\":!1,\"transition-duration\":!1,\"transition-property\":!1,\"transition-timing-function\":!1,\"unicode-bidi\":!1,\"vertical-align\":!1,visibility:!1,\"voice-balance\":!1,\"voice-duration\":!1,\"voice-family\":!1,\"voice-pitch\":!1,\"voice-range\":!1,\"voice-rate\":!1,\"voice-stress\":!1,\"voice-volume\":!1,volume:!1,\"white-space\":!1,widows:!1,width:!0,\"will-change\":!1,\"word-break\":!0,\"word-spacing\":!0,\"word-wrap\":!0,\"wrap-flow\":!1,\"wrap-through\":!1,\"writing-mode\":!1,\"z-index\":!1};return e}function i(e,t,n){}function r(e,t,n){}function a(e,t){return o.test(t)?\"\":t}var o=/javascript\\s*\\:/gim;t.whiteList=n(),t.getDefaultWhiteList=n,t.onAttr=i,t.onIgnoreAttr=r,t.safeAttrValue=a},function(e,t){e.exports={indexOf:function(e,t){var n,i;if(Array.prototype.indexOf)return e.indexOf(t);for(n=0,i=e.length;n<i;n++)if(e[n]===t)return n;return-1},forEach:function(e,t,n){var i,r;if(Array.prototype.forEach)return e.forEach(t,n);for(i=0,r=e.length;i<r;i++)t.call(n,e[i],i,e)},trim:function(e){return String.prototype.trim?e.trim():e.replace(/(^\\s*)|(\\s*$)/g,\"\")},trimRight:function(e){return String.prototype.trimRight?e.trimRight():e.replace(/(\\s*$)/g,\"\")}}},function(e,t,n){\"use strict\";e.exports=n(113)},function(e,t,n){\"use strict\";var i=\"<[A-Za-z][A-Za-z0-9\\\\-]*(?:\\\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\\\s*=\\\\s*(?:[^\\\"'=<>`\\\\x00-\\\\x20]+|'[^']*'|\\\"[^\\\"]*\\\"))?)*\\\\s*\\\\/?>\",r=\"<\\\\/[A-Za-z][A-Za-z0-9\\\\-]*\\\\s*>\",a=new RegExp(\"^(?:\"+i+\"|\"+r+\"|\\x3c!----\\x3e|\\x3c!--(?:-?[^>-])(?:-?[^-])*--\\x3e|<[?].*?[?]>|<![A-Z]+\\\\s+[^>]*>|<!\\\\[CDATA\\\\[[\\\\s\\\\S]*?\\\\]\\\\]>)\"),o=new RegExp(\"^(?:\"+i+\"|\"+r+\")\");e.exports.HTML_TAG_RE=a,e.exports.HTML_OPEN_CLOSE_TAG_RE=o},function(e,t,n){\"use strict\";function i(e,t){var n,i,r,a,o,s,l=t.length;for(n=l-1;n>=0;n--)i=t[n],95!==i.marker&&42!==i.marker||-1!==i.end&&(r=t[i.end],s=n>0&&t[n-1].end===i.end+1&&t[n-1].token===i.token-1&&t[i.end+1].token===r.token+1&&t[n-1].marker===i.marker,o=String.fromCharCode(i.marker),a=e.tokens[i.token],a.type=s?\"strong_open\":\"em_open\",a.tag=s?\"strong\":\"em\",a.nesting=1,a.markup=s?o+o:o,a.content=\"\",a=e.tokens[r.token],a.type=s?\"strong_close\":\"em_close\",a.tag=s?\"strong\":\"em\",a.nesting=-1,a.markup=s?o+o:o,a.content=\"\",s&&(e.tokens[t[n-1].token].content=\"\",e.tokens[t[i.end+1].token].content=\"\",n--))}e.exports.tokenize=function(e,t){var n,i,r,a=e.pos,o=e.src.charCodeAt(a);if(t)return!1;if(95!==o&&42!==o)return!1;for(i=e.scanDelims(e.pos,42===o),n=0;n<i.length;n++)r=e.push(\"text\",\"\",0),r.content=String.fromCharCode(o),e.delimiters.push({marker:o,length:i.length,jump:n,token:e.tokens.length-1,end:-1,open:i.can_open,close:i.can_close});return e.pos+=i.length,!0},e.exports.postProcess=function(e){var t,n=e.tokens_meta,r=e.tokens_meta.length;for(i(e,e.delimiters),t=0;t<r;t++)n[t]&&n[t].delimiters&&i(e,n[t].delimiters)}},function(e,t,n){\"use strict\";function i(e,t){var n,i,r,a,o,s=[],l=t.length;for(n=0;n<l;n++)r=t[n],126===r.marker&&-1!==r.end&&(a=t[r.end],o=e.tokens[r.token],o.type=\"s_open\",o.tag=\"s\",o.nesting=1,o.markup=\"~~\",o.content=\"\",o=e.tokens[a.token],o.type=\"s_close\",o.tag=\"s\",o.nesting=-1,o.markup=\"~~\",o.content=\"\",\"text\"===e.tokens[a.token-1].type&&\"~\"===e.tokens[a.token-1].content&&s.push(a.token-1));for(;s.length;){for(n=s.pop(),i=n+1;i<e.tokens.length&&\"s_close\"===e.tokens[i].type;)i++;i--,n!==i&&(o=e.tokens[i],e.tokens[i]=e.tokens[n],e.tokens[n]=o)}}e.exports.tokenize=function(e,t){var n,i,r,a,o,s=e.pos,l=e.src.charCodeAt(s);if(t)return!1;if(126!==l)return!1;if(i=e.scanDelims(e.pos,!0),a=i.length,o=String.fromCharCode(l),a<2)return!1;for(a%2&&(r=e.push(\"text\",\"\",0),r.content=o,a--),n=0;n<a;n+=2)r=e.push(\"text\",\"\",0),r.content=o+o,e.delimiters.push({marker:l,length:0,jump:n,token:e.tokens.length-1,end:-1,open:i.can_open,close:i.can_close});return e.pos+=i.length,!0},e.exports.postProcess=function(e){var t,n=e.tokens_meta,r=e.tokens_meta.length;for(i(e,e.delimiters),t=0;t<r;t++)n[t]&&n[t].delimiters&&i(e,n[t].delimiters)}},function(e,t,n){\"use strict\";e.exports.encode=n(183),e.exports.decode=n(182),e.exports.format=n(184),e.exports.parse=n(185)},function(e,t){e.exports=/[\\0-\\x1F\\x7F-\\x9F]/},function(e,t){e.exports=/[ \\xA0\\u1680\\u2000-\\u200A\\u2028\\u2029\\u202F\\u205F\\u3000]/},function(e,t){e.exports=/[\\0-\\uD7FF\\uE000-\\uFFFF]|[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/},function(e,t,n){function i(){return{a:[\"target\",\"href\",\"title\"],abbr:[\"title\"],address:[],area:[\"shape\",\"coords\",\"href\",\"alt\"],article:[],aside:[],audio:[\"autoplay\",\"controls\",\"loop\",\"preload\",\"src\"],b:[],bdi:[\"dir\"],bdo:[\"dir\"],big:[],blockquote:[\"cite\"],br:[],caption:[],center:[],cite:[],code:[],col:[\"align\",\"valign\",\"span\",\"width\"],colgroup:[\"align\",\"valign\",\"span\",\"width\"],dd:[],del:[\"datetime\"],details:[\"open\"],div:[],dl:[],dt:[],em:[],font:[\"color\",\"size\",\"face\"],footer:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],header:[],hr:[],i:[],img:[\"src\",\"alt\",\"title\",\"width\",\"height\"],ins:[\"datetime\"],li:[],mark:[],nav:[],ol:[],p:[],pre:[],s:[],section:[],small:[],span:[],sub:[],sup:[],strong:[],table:[\"width\",\"border\",\"align\",\"valign\"],tbody:[\"align\",\"valign\"],td:[\"width\",\"rowspan\",\"colspan\",\"align\",\"valign\"],tfoot:[\"align\",\"valign\"],th:[\"width\",\"rowspan\",\"colspan\",\"align\",\"valign\"],thead:[\"align\",\"valign\"],tr:[\"rowspan\",\"align\",\"valign\"],tt:[],u:[],ul:[],video:[\"autoplay\",\"controls\",\"loop\",\"preload\",\"src\",\"height\",\"width\"]}}function r(e,t,n){}function a(e,t,n){}function o(e,t,n){}function s(e,t,n){}function l(e){return e.replace(x,\"&lt;\").replace(w,\"&gt;\")}function c(e,t,n,i){if(n=_(n),\"href\"===t||\"src\"===t){if(\"#\"===(n=C.trim(n)))return\"#\";if(\"http://\"!==n.substr(0,7)&&\"https://\"!==n.substr(0,8)&&\"mailto:\"!==n.substr(0,7)&&\"tel:\"!==n.substr(0,4)&&\"#\"!==n[0]&&\"/\"!==n[0])return\"\"}else if(\"background\"===t){if(D.lastIndex=0,D.test(n))return\"\"}else if(\"style\"===t){if(I.lastIndex=0,I.test(n))return\"\";if(M.lastIndex=0,M.test(n)&&(D.lastIndex=0,D.test(n)))return\"\";!1!==i&&(i=i||T,n=i.process(n))}return m(n)}function u(e){return e.replace(O,\"&quot;\")}function d(e){return e.replace(N,'\"')}function p(e){return e.replace(R,(function(e,t){return\"x\"===t[0]||\"X\"===t[0]?String.fromCharCode(parseInt(t.substr(1),16)):String.fromCharCode(parseInt(t,10))}))}function h(e){return e.replace(k,\":\").replace(A,\" \")}function f(e){for(var t=\"\",n=0,i=e.length;n<i;n++)t+=e.charCodeAt(n)<32?\" \":e.charAt(n);return C.trim(t)}function _(e){return e=d(e),e=p(e),e=h(e),f(e)}function m(e){return e=u(e),l(e)}function g(){return\"\"}function b(e,t){function n(t){return!!i||-1!==C.indexOf(e,t)}\"function\"!=typeof t&&(t=function(){});var i=!Array.isArray(e),r=[],a=!1;return{onIgnoreTag:function(e,i,o){if(n(e)){if(o.isClosing){var s=\"[/removed]\",l=o.position+s.length;return r.push([!1!==a?a:o.position,l]),a=!1,s}return a||(a=o.position),\"[removed]\"}return t(e,i,o)},remove:function(e){var t=\"\",n=0;return C.forEach(r,(function(i){t+=e.slice(n,i[0]),n=i[1]})),t+=e.slice(n)}}}function v(e){return e.replace(L,\"\")}function E(e){var t=e.split(\"\");return t=t.filter((function(e){var t=e.charCodeAt(0);return 127!==t&&(!(t<=31)||10===t||13===t)})),t.join(\"\")}var y=n(31).FilterCSS,S=n(31).getDefaultWhiteList,C=n(35),T=new y,x=/</g,w=/>/g,O=/\"/g,N=/&quot;/g,R=/&#([a-zA-Z0-9]*);?/gim,k=/&colon;?/gim,A=/&newline;?/gim,D=/((j\\s*a\\s*v\\s*a|v\\s*b|l\\s*i\\s*v\\s*e)\\s*s\\s*c\\s*r\\s*i\\s*p\\s*t\\s*|m\\s*o\\s*c\\s*h\\s*a)\\:/gi,I=/e\\s*x\\s*p\\s*r\\s*e\\s*s\\s*s\\s*i\\s*o\\s*n\\s*\\(.*/gi,M=/u\\s*r\\s*l\\s*\\(.*/gi,L=/<!--[\\s\\S]*?-->/g;t.whiteList=i(),t.getDefaultWhiteList=i,t.onTag=r,t.onIgnoreTag=a,t.onTagAttr=o,t.onIgnoreTagAttr=s,t.safeAttrValue=c,t.escapeHtml=l,t.escapeQuote=u,t.unescapeQuote=d,t.escapeHtmlEntities=p,t.escapeDangerHtml5Entities=h,t.clearNonPrintableCharacter=f,t.friendlyAttrValue=_,t.escapeAttrValue=m,t.onIgnoreTagStripAll=g,t.StripTagBody=b,t.stripCommentTag=v,t.stripBlankChar=E,t.cssFilter=T,t.getDefaultCSSWhiteList=S},function(e,t,n){function i(e){var t=d.spaceIndex(e);if(-1===t)var n=e.slice(1,-1);else n=e.slice(1,t+1);return n=d.trim(n).toLowerCase(),\"/\"===n.slice(0,1)&&(n=n.slice(1)),\"/\"===n.slice(-1)&&(n=n.slice(0,-1)),n}function r(e){return\"</\"===e.slice(0,2)}function a(e,t,n){var a=\"\",o=0,s=!1,l=!1,c=0,u=e.length,d=\"\",p=\"\";for(c=0;c<u;c++){var h=e.charAt(c);if(!1===s){if(\"<\"===h){s=c;continue}}else if(!1===l){if(\"<\"===h){a+=n(e.slice(o,c)),s=c,o=c;continue}if(\">\"===h){a+=n(e.slice(o,s)),p=e.slice(s,c+1),d=i(p),a+=t(s,a.length,d,p,r(p)),o=c+1,s=!1;continue}if(('\"'===h||\"'\"===h)&&\"=\"===e.charAt(c-1)){l=h;continue}}else if(h===l){l=!1;continue}}return o<e.length&&(a+=n(e.substr(o))),a}function o(e,t){function n(e,n){if(e=d.trim(e),e=e.replace(p,\"\").toLowerCase(),!(e.length<1)){var i=t(e,n||\"\");i&&r.push(i)}}for(var i=0,r=[],a=!1,o=e.length,c=0;c<o;c++){var h,f,_=e.charAt(c);if(!1!==a||\"=\"!==_)if(!1===a||c!==i||'\"'!==_&&\"'\"!==_||\"=\"!==e.charAt(c-1)){if(/\\s|\\n|\\t/.test(_)){if(e=e.replace(/\\s|\\n|\\t/g,\" \"),!1===a){if(-1===(f=s(e,c))){h=d.trim(e.slice(i,c)),n(h),a=!1,i=c+1;continue}c=f-1;continue}if(-1===(f=l(e,c-1))){h=d.trim(e.slice(i,c)),h=u(h),n(a,h),a=!1,i=c+1;continue}}}else{if(-1===(f=e.indexOf(_,c+1)))break;h=d.trim(e.slice(i+1,f)),n(a,h),a=!1,c=f,i=c+1}else a=e.slice(i,c),i=c+1}return i<e.length&&(!1===a?n(e.slice(i)):n(a,u(d.trim(e.slice(i))))),d.trim(r.join(\" \"))}function s(e,t){for(;t<e.length;t++){var n=e[t];if(\" \"!==n)return\"=\"===n?t:-1}}function l(e,t){for(;t>0;t--){var n=e[t];if(\" \"!==n)return\"=\"===n?t:-1}}function c(e){return'\"'===e[0]&&'\"'===e[e.length-1]||\"'\"===e[0]&&\"'\"===e[e.length-1]}function u(e){return c(e)?e.substr(1,e.length-2):e}var d=n(35),p=/[^a-zA-Z0-9_:\\.\\-]/gim;t.parseTag=a,t.parseAttr=o},function(e,t,n){function i(e){r||(n(204),n(205))}var r=!1,a=n(16)(n(68),n(201),i,\"data-v-7a63e4b3\",null);a.options.__file=\"/Users/zhuhongyu/Documents/mavonEditor/src/mavon-editor.vue\",a.esModule&&Object.keys(a.esModule).some((function(e){return\"default\"!==e&&\"__\"!==e.substr(0,2)})),a.options.functional,e.exports=a.exports},function(e,t,n){\"use strict\";var i=n(197),r={autoTextarea:i,install:function(e){e.component(\"auto-textarea\",i)}};e.exports=r},function(e,t,n){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default={data:function(){var e=this;return{temp_value:function(){return e.value}(),s_autofocus:function(){if(e.autofocus)return\"autofocus\"}()}},created:function(){},props:{fullHeight:{type:Boolean,default:!1},autofocus:{type:Boolean,default:!1},value:{type:String,default:\"\"},placeholder:{type:String,default:\"\"},border:{type:Boolean,default:!1},resize:{type:Boolean,default:!1},onchange:{type:Function,default:null},fontSize:{type:String,default:\"14px\"},lineHeight:{type:String,default:\"18px\"}},methods:{change:function(e){this.onchange&&this.onchange(this.temp_value,e)}},watch:{value:function(e,t){this.temp_value=e},temp_value:function(e,t){this.$emit(\"input\",e)}}}},function(e,t,n){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default={name:\"s-md-toolbar-left\",props:{editable:{type:Boolean,default:!0},transition:{type:Boolean,default:!0},toolbars:{type:Object,required:!0},d_words:{type:Object,required:!0},image_filter:{type:Function,default:null}},data:function(){return{img_file:[[0,null]],img_timer:null,header_timer:null,s_img_dropdown_open:!1,s_header_dropdown_open:!1,s_img_link_open:!1,trigger:null,num:0,link_text:\"\",link_addr:\"\",link_type:\"link\"}},methods:{$imgLinkAdd:function(){this.$emit(\"toolbar_left_addlink\",this.link_type,this.link_text,this.link_addr),this.s_img_link_open=!1},$toggle_imgLinkAdd:function(e){var t=this;this.link_type=e,this.link_text=this.link_addr=\"\",this.s_img_link_open=!0,this.$nextTick((function(){t.$refs.linkTextInput.focus()})),this.s_img_dropdown_open=!1},$imgFileListClick:function(e){this.$emit(\"imgTouch\",this.img_file[e])},$changeUrl:function(e,t){this.img_file[e][0]=t},$imgFileAdd:function(e){this.img_file.push([++this.num,e]),this.$emit(\"imgAdd\",this.num,e),this.s_img_dropdown_open=!1},$imgFilesAdd:function(e){for(var t=\"function\"==typeof this.image_filter,n=0;n<e.length;n++)(t&&!0===this.image_filter(e[n])||!t&&e[n].type.match(/^image\\//i))&&this.$imgFileAdd(e[n])},$imgAdd:function(e){this.$imgFilesAdd(e.target.files),e.target.value=\"\"},$imgDel:function(e){this.$emit(\"imgDel\",this.img_file[e]),this.img_file.splice(e,1),this.num--,this.s_img_dropdown_open=!1},isEqualName:function(e,t){return!(!this.img_file[t][1]||this.img_file[t][1].name!=e&&this.img_file[t][1]._name!=e)},$imgDelByFilename:function(e){for(var t=0;this.img_file.length>t;){if(this.img_file[t][1]==e||this.isEqualName(e,t))return this.$imgDel(t),!0;t+=1}return!1},$imgAddByFilename:function(e,t){for(var n=0;n<this.img_file.length;n++)if(this.img_file[n][0]==e)return!1;return this.img_file[0][0]=e,this.img_file[0][1]=t,this.img_file[0][2]=e,this.img_file.unshift([\"./\"+this.num,null]),this.$emit(\"imgAdd\",this.img_file[1][0],t,!1),!0},$imgAddByUrl:function(e,t){for(var n=0;n<this.img_file.length;n++)if(this.img_file[n][0]==e)return!1;return this.img_file[0][0]=e,this.img_file[0][1]=t,this.img_file.unshift([\"./\"+this.num,null]),!0},$imgUpdateByFilename:function(e,t){for(var n=0;n<this.img_file.length;n++)if(this.img_file[n][0]==e||this.isEqualName(e,n))return this.img_file[n][1]=t,this.$emit(\"imgAdd\",e,t,!1),!0;return!1},$mouseenter_img_dropdown:function(){this.editable&&(clearTimeout(this.img_timer),this.s_img_dropdown_open=!0)},$mouseleave_img_dropdown:function(){var e=this;this.img_timer=setTimeout((function(){e.s_img_dropdown_open=!1}),200)},$mouseenter_header_dropdown:function(){this.editable&&(clearTimeout(this.header_timer),this.s_header_dropdown_open=!0)},$mouseleave_header_dropdown:function(){var e=this;this.header_timer=setTimeout((function(){e.s_header_dropdown_open=!1}),200)},$clicks:function(e){this.editable&&this.$emit(\"toolbar_left_click\",e)},$click_header:function(e){this.$emit(\"toolbar_left_click\",e),this.s_header_dropdown_open=!1},handleClose:function(e){this.s_img_dropdown_open=!1}}}},function(e,t,n){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default={name:\"s-md-toolbar-right\",props:{s_subfield:{type:Boolean,required:!0},toolbars:{type:Object,required:!0},s_preview_switch:{type:Boolean,required:!0},s_fullScreen:{type:Boolean,required:!0},s_html_code:{type:Boolean,required:!0},s_navigation:{type:Boolean,required:!0},d_words:{type:Object,required:!0}},methods:{$clicks:function(e){this.$emit(\"toolbar_right_click\",e)}}}},function(module,__webpack_exports__,__webpack_require__){\"use strict\";Object.defineProperty(__webpack_exports__,\"__esModule\",{value:!0});var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_typeof__=__webpack_require__(39),__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_typeof___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_typeof__),__WEBPACK_IMPORTED_MODULE_1_auto_textarea__=__webpack_require__(64),__WEBPACK_IMPORTED_MODULE_1_auto_textarea___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_auto_textarea__),__WEBPACK_IMPORTED_MODULE_2__lib_core_keydown_listen_js__=__webpack_require__(73),__WEBPACK_IMPORTED_MODULE_3__lib_core_hljs_lang_hljs_css_js__=__webpack_require__(72),__WEBPACK_IMPORTED_MODULE_4__lib_core_hljs_lang_hljs_js__=__webpack_require__(38),__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__=__webpack_require__(18),__WEBPACK_IMPORTED_MODULE_6__lib_util_js__=__webpack_require__(77),__WEBPACK_IMPORTED_MODULE_7__lib_toolbar_left_click_js__=__webpack_require__(75),__WEBPACK_IMPORTED_MODULE_8__lib_toolbar_right_click_js__=__webpack_require__(76),__WEBPACK_IMPORTED_MODULE_9__lib_config_js__=__webpack_require__(70),__WEBPACK_IMPORTED_MODULE_10__lib_core_highlight_js__=__webpack_require__(71),__WEBPACK_IMPORTED_MODULE_11__lib_mixins_markdown_js__=__webpack_require__(74),__WEBPACK_IMPORTED_MODULE_12__components_md_toolbar_left_vue__=__webpack_require__(36),__WEBPACK_IMPORTED_MODULE_12__components_md_toolbar_left_vue___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_12__components_md_toolbar_left_vue__),__WEBPACK_IMPORTED_MODULE_13__components_md_toolbar_right_vue__=__webpack_require__(37),__WEBPACK_IMPORTED_MODULE_13__components_md_toolbar_right_vue___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_13__components_md_toolbar_right_vue__),__WEBPACK_IMPORTED_MODULE_14__lib_font_css_fontello_css__=__webpack_require__(115),__WEBPACK_IMPORTED_MODULE_14__lib_font_css_fontello_css___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_14__lib_font_css_fontello_css__),__WEBPACK_IMPORTED_MODULE_15__lib_css_md_css__=__webpack_require__(114),__WEBPACK_IMPORTED_MODULE_15__lib_css_md_css___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_15__lib_css_md_css__),xss=__webpack_require__(209);__webpack_exports__.default={mixins:[__WEBPACK_IMPORTED_MODULE_11__lib_mixins_markdown_js__.a],props:{scrollStyle:{type:Boolean,default:!0},boxShadow:{type:Boolean,default:!0},transition:{type:Boolean,default:!0},autofocus:{type:Boolean,default:!0},fontSize:{type:String,default:\"14px\"},toolbarsBackground:{type:String,default:\"#ffffff\"},editorBackground:{type:String,default:\"#ffffff\"},previewBackground:{type:String,default:\"#fbfbfb\"},boxShadowStyle:{type:String,default:\"0 2px 12px 0 rgba(0, 0, 0, 0.1)\"},help:{type:String,default:null},value:{type:String,default:\"\"},language:{type:String,default:\"zh-CN\"},subfield:{type:Boolean,default:!0},navigation:{type:Boolean,default:!1},defaultOpen:{type:String,default:null},editable:{type:Boolean,default:!0},toolbarsFlag:{type:Boolean,default:!0},toolbars:{type:Object,default:function(){return __WEBPACK_IMPORTED_MODULE_9__lib_config_js__.a.toolbars}},xssOptions:{type:Object,default:function(){return null}},codeStyle:{type:String,default:function(){return\"github\"}},placeholder:{type:String,default:null},ishljs:{type:Boolean,default:!0},externalLink:{type:[Object,Boolean],default:!0},imageFilter:{type:Function,default:null},imageClick:{type:Function,default:null},tabSize:{type:Number,default:0},shortCut:{type:Boolean,default:!0}},data:function(){var e=this;return{s_right_click_menu_show:!1,right_click_menu_top:0,right_click_menu_left:0,s_subfield:function(){return e.subfield}(),s_autofocus:!0,s_navigation:function(){return e.navigation}(),s_scrollStyle:function(){return e.scrollStyle}(),d_value:\"\",d_render:\"\",s_preview_switch:function(){var t=e.defaultOpen;return t||(t=e.subfield?\"preview\":\"edit\"),\"preview\"===t}(),s_fullScreen:!1,s_help:!1,s_html_code:!1,d_help:null,d_words:null,edit_scroll_height:-1,s_readmodel:!1,s_table_enter:!1,d_history:function(){var t=[];return t.push(e.value),t}(),d_history_index:0,currentTimeout:\"\",d_image_file:[],d_preview_imgsrc:null,s_external_link:{markdown_css:function(){return\"https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.9.0/github-markdown.min.css\"},hljs_js:function(){return\"https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js\"},hljs_lang:function(e){return\"https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/\"+e+\".min.js\"},hljs_css:function(e){return __WEBPACK_IMPORTED_MODULE_3__lib_core_hljs_lang_hljs_css_js__.a[e]?\"https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/\"+e+\".min.css\":\"\"},katex_js:function(){return\"https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.8.3/katex.min.js\"},katex_css:function(){return\"https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.8.3/katex.min.css\"}},p_external_link:{},textarea_selectionEnd:0,textarea_selectionEnds:[0]}},created:function(){var e=this;this.initLanguage(),this.initExternalFuc(),this.$nextTick((function(){e.editableTextarea()}))},mounted:function(){var e=this;this.$el.addEventListener(\"paste\",(function(t){e.$paste(t)})),this.$el.addEventListener(\"drop\",(function(t){e.$drag(t)})),__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_2__lib_core_keydown_listen_js__.a)(this),__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.a)(this),this.autofocus&&this.getTextareaDom().focus(),__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.b)(this),this.d_value=this.value,document.body.appendChild(this.$refs.help),this.loadExternalLink(\"markdown_css\",\"css\"),this.loadExternalLink(\"katex_css\",\"css\"),this.loadExternalLink(\"katex_js\",\"js\",(function(){e.iRender(!0)})),this.loadExternalLink(\"hljs_js\",\"js\",(function(){e.iRender(!0)})),\"object\"===__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_typeof___default()(e.externalLink)&&\"function\"==typeof e.externalLink.markdown_css||e.codeStyleChange(e.codeStyle,!0)},beforeDestroy:function(){document.body.removeChild(this.$refs.help)},getMarkdownIt:function(){return this.mixins[0].data().markdownIt},methods:{loadExternalLink:function(e,t,n){if(\"function\"==typeof this.p_external_link[e]){var i={css:__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.c,js:__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.d};i.hasOwnProperty(t)&&i[t](this.p_external_link[e](),n)}else this.p_external_link[e]},initExternalFuc:function(){for(var e=this,t=[\"markdown_css\",\"hljs_js\",\"hljs_css\",\"hljs_lang\",\"katex_js\",\"katex_css\"],n=__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_typeof___default()(e.externalLink),i=\"object\"===n,r=\"boolean\"===n,a=0;a<t.length;a++)r&&!e.externalLink||i&&!1===e.externalLink[t[a]]?e.p_external_link[t[a]]=!1:i&&\"function\"==typeof e.externalLink[t[a]]?e.p_external_link[t[a]]=e.externalLink[t[a]]:e.p_external_link[t[a]]=e.s_external_link[t[a]]},textAreaFocus:function(){this.$refs.vNoteTextarea.$refs.vTextarea.focus()},$drag:function(e){var t=e.dataTransfer;if(t){var n=t.files;n.length>0&&(e.preventDefault(),this.$refs.toolbar_left.$imgFilesAdd(n))}},$paste:function(e){var t=e.clipboardData;if(t){var n=t.items;if(!n)return;for(var i=t.types||[],r=null,a=0;a<i.length;a++)if(\"Files\"===i[a]){r=n[a];break}if(r&&\"file\"===r.kind){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_6__lib_util_js__.a)(e);var o=r.getAsFile();this.$refs.toolbar_left.$imgFilesAdd([o])}}},$imgTouch:function(e){},$imgDel:function(e){this.markdownIt.image_del(e[1]);var t=e[0],n=new RegExp(\"\\\\!\\\\[\"+e[1]._name+\"\\\\]\\\\(\"+t+\"\\\\)\",\"g\");this.d_value=this.d_value.replace(n,\"\"),this.iRender(),this.$emit(\"imgDel\",e)},$imgAdd:function(e,t,n){void 0===n&&(n=!0);var i=this;if(null==this.__rFilter&&(this.__rFilter=/^image\\//i),this.__oFReader=new FileReader,this.__oFReader.onload=function(r){i.markdownIt.image_add(e,r.target.result),t.miniurl=r.target.result,!0===n&&(t._name=t.name.replace(/[\\[\\]\\(\\)\\+\\{\\}&\\|\\\\\\*^%$#@\\-]/g,\"\"),i.insertText(i.getTextareaDom(),{prefix:\"![\"+t._name+\"](\"+e+\")\",subfix:\"\",str:\"\"}),i.$nextTick((function(){i.$emit(\"imgAdd\",e,t)})))},t){var r=t;this.__rFilter.test(r.type)&&this.__oFReader.readAsDataURL(r)}},$imgUpdateByUrl:function(e,t){var n=this;this.markdownIt.image_add(e,t),this.$nextTick((function(){n.d_render=this.markdownIt.render(this.d_value)}))},$imgAddByUrl:function(e,t){return!!this.$refs.toolbar_left.$imgAddByUrl(e,t)&&(this.$imgUpdateByUrl(e,t),!0)},$img2Url:function $img2Url(fileIndex,url){var reg_str=\"/(!\\\\[[^\\\\[]*?\\\\](?=\\\\())\\\\(\\\\s*(\"+fileIndex+\")\\\\s*\\\\)/g\",reg=eval(reg_str);this.d_value=this.d_value.replace(reg,\"$1(\"+url+\")\"),this.$refs.toolbar_left.$changeUrl(fileIndex,url),this.iRender()},$imglst2Url:function(e){if(e instanceof Array)for(var t=0;t<e.length;t++)this.$img2Url(e[t][0],e[t][1])},toolbar_left_click:function(e){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_7__lib_toolbar_left_click_js__.a)(e,this)},toolbar_left_addlink:function(e,t,n){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_7__lib_toolbar_left_click_js__.b)(e,t,n,this)},toolbar_right_click:function(e){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_8__lib_toolbar_right_click_js__.a)(e,this)},getNavigation:function(e,t){return __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.e)(e,t)},change:function(e,t){this.$emit(\"change\",e,t)},fullscreen:function(e,t){this.$emit(\"fullScreen\",e,t)},readmodel:function(e,t){this.$emit(\"readModel\",e,t)},previewtoggle:function(e,t){this.$emit(\"previewToggle\",e,t)},subfieldtoggle:function(e,t){this.$emit(\"subfieldToggle\",e,t)},htmlcode:function(e,t){this.$emit(\"htmlCode\",e,t)},helptoggle:function(e,t){this.$emit(\"helpToggle\",e,t)},save:function(e,t){this.$emit(\"save\",e,t)},navigationtoggle:function(e,t){this.$emit(\"navigationToggle\",e,t)},$toolbar_right_read_change_status:function(){this.s_readmodel=!this.s_readmodel,this.readmodel&&this.readmodel(this.s_readmodel,this.d_value),this.s_readmodel&&this.toolbars.navigation&&this.getNavigation(this,!0)},$v_edit_scroll:function(e){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.f)(e,this)},getTextareaDom:function(){return this.$refs.vNoteTextarea.$refs.vTextarea},insertText:function(e,t){var n=t.prefix,i=t.subfix,r=t.str,a=t.type;__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.g)(e,{prefix:n,subfix:i,str:r,type:a},this)},insertTab:function(){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.h)(this,this.tabSize)},insertOl:function(){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.i)(this)},removeLine:function(){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.j)(this)},insertUl:function(){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.k)(this)},unInsertTab:function(){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.l)(this,this.tabSize)},insertEnter:function(e){__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.m)(this,e)},saveHistory:function(){this.d_history.splice(this.d_history_index+1,this.d_history.length),this.d_history.push(this.d_value),this.textarea_selectionEnds.splice(this.d_history_index+1,this.textarea_selectionEnds.length),this.textarea_selectionEnds.push(this.textarea_selectionEnd),this.d_history_index=this.d_history.length-1},saveSelectionEndsHistory:function(){var e=this.$refs.vNoteTextarea&&this.$refs.vNoteTextarea.$el.querySelector(\"textarea\");this.textarea_selectionEnd=e?e.selectionEnd:this.textarea_selectionEnd},initLanguage:function(){var e=__WEBPACK_IMPORTED_MODULE_9__lib_config_js__.a.langList.indexOf(this.language)>=0?this.language:\"zh-CN\",t=this;t.$render(__WEBPACK_IMPORTED_MODULE_9__lib_config_js__.a[\"help_\"+e],(function(e){t.d_help=e})),this.d_words=__WEBPACK_IMPORTED_MODULE_9__lib_config_js__.a[\"words_\"+e]},editableTextarea:function(){var e=this.$refs.vNoteTextarea.$refs.vTextarea;this.editable?e.removeAttribute(\"disabled\"):e.setAttribute(\"disabled\",\"disabled\")},codeStyleChange:function(e,t){if(t=t||!1,\"function\"==typeof this.p_external_link.hljs_css){var n=this.p_external_link.hljs_css(e);0===n.length&&t&&(n=this.p_external_link.hljs_css(\"github\")),n.length>0&&__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.c)(n)}else this.p_external_link.hljs_css},iRender:function(e){var t=this;this.$render(t.d_value,(function(n){t.d_render=n,e||t.change&&t.change(t.d_value,t.d_render),t.s_navigation&&__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_5__lib_core_extra_function_js__.e)(t,!1),t.$emit(\"input\",t.d_value),t.d_value!==t.d_history[t.d_history_index]&&(window.clearTimeout(t.currentTimeout),t.currentTimeout=setTimeout((function(){t.saveHistory()}),500))}))},$emptyHistory:function(){this.d_history=[this.d_value],this.d_history_index=0}},watch:{d_value:function(e,t){this.saveSelectionEndsHistory(),this.iRender()},value:function(e,t){this.xssOptions&&(e=xss(e,this.xssOptions)),e!==this.d_value&&(this.d_value=e)},subfield:function(e,t){this.s_subfield=e},d_history_index:function(){this.d_history_index>20&&(this.d_history.shift(),this.d_history_index=this.d_history_index-1),this.d_value=this.d_history[this.d_history_index]},language:function(e){this.initLanguage()},editable:function(){this.editableTextarea()},defaultOpen:function(e){var t=e;return t||(t=this.subfield?\"preview\":\"edit\"),this.s_preview_switch=\"preview\"===t},codeStyle:function(e){this.codeStyleChange(e)}},components:{\"v-autoTextarea\":__WEBPACK_IMPORTED_MODULE_1_auto_textarea__.autoTextarea,\"v-md-toolbar-left\":__WEBPACK_IMPORTED_MODULE_12__components_md_toolbar_left_vue___default.a,\"v-md-toolbar-right\":__WEBPACK_IMPORTED_MODULE_13__components_md_toolbar_right_vue___default.a}}},function(e,t,n){\"use strict\";var i=n(63),r={markdownIt:i.mixins[0].data().markdownIt,mavonEditor:i,LeftToolbar:n(36),RightToolbar:n(37),install:function(e){e.component(\"mavon-editor\",i)}};e.exports=r},function(e,t,n){\"use strict\";n.d(t,\"a\",(function(){return L}));var i=n(193),r=n.n(i),a=n(194),o=n.n(a),s=n(188),l=n.n(s),c=n(189),u=n.n(c),d=n(191),p=n.n(d),h=n(192),f=n.n(h),_=n(187),m=n.n(_),g=n(190),b=n.n(g),v=n(217),E=n.n(v),y=n(218),S=n.n(y),C=n(212),T=n.n(C),x=n(213),w=n.n(x),O=n(215),N=n.n(O),R=n(216),k=n.n(R),A=n(211),D=n.n(A),I=n(214),M=n.n(I),L={\"help_zh-CN\":r.a,\"help_zh-TW\":o.a,\"help_pt-BR\":p.a,help_en:l.a,help_fr:u.a,help_ru:f.a,help_de:m.a,help_ja:b.a,\"words_zh-CN\":E.a,\"words_zh-TW\":S.a,\"words_pt-BR\":N.a,words_en:T.a,words_fr:w.a,words_ru:k.a,words_de:D.a,words_ja:M.a,langList:[\"en\",\"zh-CN\",\"zh-TW\",\"fr\",\"pt-BR\",\"ru\",\"de\",\"ja\"],toolbars:{bold:!0,italic:!0,header:!0,underline:!0,strikethrough:!0,mark:!0,superscript:!0,subscript:!0,quote:!0,ol:!0,ul:!0,link:!0,imagelink:!0,code:!0,table:!0,undo:!0,redo:!0,trash:!0,save:!0,alignleft:!0,aligncenter:!0,alignright:!0,navigation:!0,subfield:!0,fullscreen:!0,readmodel:!0,htmlcode:!0,help:!0,preview:!0}}},function(e,t,n){\"use strict\";n(18)},function(e,t,n){\"use strict\";t.a={agate:1,androidstudio:1,\"arduino-light\":1,arta:1,ascetic:1,\"atelier-cave-dark\":1,\"atelier-cave-light\":1,\"atelier-dune-dark\":1,\"atelier-dune-light\":1,\"atelier-estuary-dark\":1,\"atelier-estuary-light\":1,\"atelier-forest-dark\":1,\"atelier-forest-light\":1,\"atelier-heath-dark\":1,\"atelier-heath-light\":1,\"atelier-lakeside-dark\":1,\"atelier-lakeside-light\":1,\"atelier-plateau-dark\":1,\"atelier-plateau-light\":1,\"atelier-savanna-dark\":1,\"atelier-savanna-light\":1,\"atelier-seaside-dark\":1,\"atelier-seaside-light\":1,\"atelier-sulphurpool-dark\":1,\"atelier-sulphurpool-light\":1,\"atom-one-dark\":1,\"atom-one-light\":1,\"brown-paper\":1,\"codepen-embed\":1,\"color-brewer\":1,darcula:1,dark:1,darkula:1,default:1,docco:1,dracula:1,far:1,foundation:1,\"github-gist\":1,github:1,googlecode:1,grayscale:1,\"gruvbox-dark\":1,\"gruvbox-light\":1,hopscotch:1,hybrid:1,idea:1,\"ir-black\":1,\"kimbie.dark\":1,\"kimbie.light\":1,magula:1,\"mono-blue\":1,\"monokai-sublime\":1,monokai:1,obsidian:1,ocean:1,\"paraiso-dark\":1,\"paraiso-light\":1,pojoaque:1,purebasic:1,qtcreator_dark:1,qtcreator_light:1,railscasts:1,rainbow:1,routeros:1,\"school-book\":1,\"solarized-dark\":1,\"solarized-light\":1,sunburst:1,\"tomorrow-night-blue\":1,\"tomorrow-night-bright\":1,\"tomorrow-night-eighties\":1,\"tomorrow-night\":1,tomorrow:1,vs:1,vs2015:1,xcode:1,xt256:1,zenburn:1}},function(e,t,n){\"use strict\";n.d(t,\"a\",(function(){return r}));var i={F8:119,F9:120,F10:121,F11:122,F12:123,B:66,I:73,H:72,U:85,D:68,M:77,Q:81,O:79,L:76,S:83,Z:90,Y:89,C:67,T:84,R:82,DELETE:8,TAB:9,ENTER:13,ONE:97,TWO:98,THREE:99,FOUR:100,FIVE:101,SIX:102,_ONE:49,_TWO:50,_THREE:51,_FOUR:52,_FIVE:53,_SIX:54},r=function(e){e.shortCut&&e.$el.addEventListener(\"keydown\",(function(t){if(t.ctrlKey||t.metaKey||t.altKey||t.shiftKey)if(!t.ctrlKey&&!t.metaKey||t.altKey||t.shiftKey){if((t.ctrlKey||t.metaKey)&&t.altKey&&!t.shiftKey)switch(t.keyCode){case i.S:t.preventDefault(),e.toolbar_left_click(\"superscript\");break;case i.U:t.preventDefault(),e.toolbar_left_click(\"ul\");break;case i.L:t.preventDefault(),e.toolbar_left_click(\"imagelink\");break;case i.C:t.preventDefault(),e.toolbar_left_click(\"code\");break;case i.T:t.preventDefault(),e.toolbar_left_click(\"table\")}else if((t.ctrlKey||t.metaKey)&&t.shiftKey&&!t.altKey)switch(t.keyCode){case i.S:t.preventDefault(),e.toolbar_left_click(\"subscript\");break;case i.D:t.preventDefault(),e.toolbar_left_click(\"strikethrough\");break;case i.L:t.preventDefault(),e.toolbar_left_click(\"alignleft\");break;case i.R:t.preventDefault(),e.toolbar_left_click(\"alignright\");break;case i.C:t.preventDefault(),e.toolbar_left_click(\"aligncenter\")}else if(!t.ctrlKey&&!t.metaKey&&t.shiftKey&&!t.altKey)switch(t.keyCode){case i.TAB:e.$refs.toolbar_left.s_img_link_open||(t.preventDefault(),e.unInsertTab())}}else switch(t.keyCode){case i.B:t.preventDefault(),e.toolbar_left_click(\"bold\");break;case i.I:t.preventDefault(),e.toolbar_left_click(\"italic\");break;case i.H:t.preventDefault(),e.toolbar_left_click(\"header\");break;case i.U:t.preventDefault(),e.toolbar_left_click(\"underline\");break;case i.D:t.preventDefault(),e.toolbar_left_click(\"removeLine\");break;case i.M:t.preventDefault(),e.toolbar_left_click(\"mark\");break;case i.Q:t.preventDefault(),e.toolbar_left_click(\"quote\");break;case i.O:t.preventDefault(),e.toolbar_left_click(\"ol\");break;case i.L:t.preventDefault(),e.toolbar_left_click(\"link\");break;case i.S:t.preventDefault(),e.toolbar_left_click(\"save\");break;case i.Z:t.preventDefault(),e.toolbar_left_click(\"undo\");break;case i.Y:t.preventDefault(),e.toolbar_left_click(\"redo\");break;case i.DELETE:t.preventDefault(),e.toolbar_left_click(\"trash\");break;case i.ONE:t.preventDefault(),e.toolbar_left_click(\"header1\");break;case i.TWO:t.preventDefault(),e.toolbar_left_click(\"header2\");break;case i.THREE:t.preventDefault(),e.toolbar_left_click(\"header3\");break;case i.FOUR:t.preventDefault(),e.toolbar_left_click(\"header4\");break;case i.FIVE:t.preventDefault(),e.toolbar_left_click(\"header5\");break;case i.SIX:t.preventDefault(),e.toolbar_left_click(\"header6\");break;case i._ONE:t.preventDefault(),e.toolbar_left_click(\"header1\");break;case i._TWO:t.preventDefault(),e.toolbar_left_click(\"header2\");break;case i._THREE:t.preventDefault(),e.toolbar_left_click(\"header3\");break;case i._FOUR:t.preventDefault(),e.toolbar_left_click(\"header4\");break;case i._FIVE:t.preventDefault(),e.toolbar_left_click(\"header5\");break;case i._SIX:t.preventDefault(),e.toolbar_left_click(\"header6\")}else switch(t.keyCode){case i.F8:e.toolbars.navigation&&(t.preventDefault(),e.toolbar_right_click(\"navigation\"));break;case i.F9:e.toolbars.preview&&(t.preventDefault(),e.toolbar_right_click(\"preview\"));break;case i.F10:e.toolbars.fullscreen&&(t.preventDefault(),e.toolbar_right_click(\"fullscreen\"));break;case i.F11:e.toolbars.readmodel&&(t.preventDefault(),e.toolbar_right_click(\"read\"));break;case i.F12:e.toolbars.subfield&&(t.preventDefault(),e.toolbar_right_click(\"subfield\"));break;case i.TAB:e.$refs.toolbar_left.s_img_link_open||(t.preventDefault(),e.insertTab());break;case i.ENTER:e.$refs.toolbar_left.s_img_link_open?(t.preventDefault(),e.$refs.toolbar_left.$imgLinkAdd()):e.insertEnter(t)}}))}},function(e,t,n){\"use strict\";var i=n(38),r=n(18),a={html:!0,xhtmlOut:!0,breaks:!0,langPrefix:\"lang-\",linkify:!1,typographer:!0,quotes:\"“”‘’\"},o=n(137)(a),s=n(121),l=n(133),c=n(134),u=n(120),d=n(118),p=n(127),h=n(130),f=n(132),_=n(135),m=n(119),g=n(136),b=o.renderer.rules.link_open||function(e,t,n,i,r){return r.renderToken(e,t,n)};o.renderer.rules.link_open=function(e,t,n,i,r){var a=e[t].attrIndex(\"href\");if(e[t].attrs[a][1].startsWith(\"#\"))return b(e,t,n,i,r);var o=e[t].attrIndex(\"target\");return o<0?e[t].attrPush([\"target\",\"_blank\"]):e[t].attrs[o][1]=\"_blank\",b(e,t,n,i,r)};var v=n(128),E=n(131),y=n(129),S={},C=[],T={hljs:\"auto\",highlighted:!0,langCheck:function(e){e&&i.a[e]&&!S[e]&&(S[e]=1,C.push(i.a[e]))}};o.use(v,T).use(s).use(c).use(l).use(m).use(m,\"hljs-left\").use(m,\"hljs-center\").use(m,\"hljs-right\").use(u).use(d).use(p).use(h).use(f).use(m).use(y).use(E).use(_).use(g),t.a={data:function(){return{markdownIt:o}},mounted:function(){T.highlighted=this.ishljs},methods:{$render:function(e,t){var n=this;S={},C=[];var i=o.render(e);this.ishljs&&C.length>0&&n.$_render(e,t,i),t(i)},$_render:function(e,t,i){for(var a=this,s=0,l=0;l<C.length;l++){var c=a.p_external_link.hljs_lang(C[l]);n.i(r.d)(c,(function(){(s+=1)===C.length&&(i=o.render(e),t(i))}))}}},watch:{ishljs:function(e){T.highlighted=e}}}},function(e,t,n){\"use strict\";function i(e){e.d_history_index>0&&e.d_history_index--,e.$nextTick((function(){var t=e.textarea_selectionEnds[e.d_history_index];e.getTextareaDom().selectionStart=t,e.getTextareaDom().selectionEnd=t})),e.getTextareaDom().focus()}function r(e){e.d_history_index<e.d_history.length-1&&e.d_history_index++,e.$nextTick((function(){var t=e.textarea_selectionEnds[e.d_history_index];e.getTextareaDom().selectionStart=t,e.getTextareaDom().selectionEnd=t})),e.getTextareaDom().focus()}function a(e){e.d_value=\"\",e.getTextareaDom().focus()}function o(e){e.save(e.d_value,e.d_render)}function s(e){e.insertOl()}function l(e){e.insertUl()}function c(e){e.removeLine()}n.d(t,\"b\",(function(){return u})),n.d(t,\"a\",(function(){return d}));var u=function(e,t,n,i){var r={prefix:\"link\"===e?\"[\"+t+\"](\":\"![\"+t+\"](\",subfix:\")\",str:n};i.insertText(i.getTextareaDom(),r)},d=function(e,t){var n={bold:{prefix:\"**\",subfix:\"**\",str:t.d_words.tl_bold},italic:{prefix:\"*\",subfix:\"*\",str:t.d_words.tl_italic},header:{prefix:\"# \",subfix:\"\",str:t.d_words.tl_header},header1:{prefix:\"# \",subfix:\"\",str:t.d_words.tl_header_one},header2:{prefix:\"## \",subfix:\"\",str:t.d_words.tl_header_two},header3:{prefix:\"### \",subfix:\"\",str:t.d_words.tl_header_three},header4:{prefix:\"#### \",subfix:\"\",str:t.d_words.tl_header_four},header5:{prefix:\"##### \",subfix:\"\",str:t.d_words.tl_header_five},header6:{prefix:\"###### \",subfix:\"\",str:t.d_words.tl_header_six},underline:{prefix:\"++\",subfix:\"++\",str:t.d_words.tl_underline},strikethrough:{prefix:\"~~\",subfix:\"~~\",str:t.d_words.tl_strikethrough},mark:{prefix:\"==\",subfix:\"==\",str:t.d_words.tl_mark},superscript:{prefix:\"^\",subfix:\"^\",str:t.d_words.tl_superscript},subscript:{prefix:\"~\",subfix:\"~\",str:t.d_words.tl_subscript},quote:{prefix:\"> \",subfix:\"\",str:t.d_words.tl_quote},link:{prefix:\"[](\",subfix:\")\",str:t.d_words.tl_link},imagelink:{prefix:\"![](\",subfix:\")\",str:t.d_words.tl_image},code:{prefix:\"```\",subfix:\"\\n\\n```\\n\",str:\"language\"},table:{prefix:\"\",subfix:\"\",str:\"|column1|column2|column3|\\n|-|-|-|\\n|content1|content2|content3|\\n\"},aligncenter:{prefix:\"::: hljs-center\\n\\n\",subfix:\"\\n\\n:::\\n\",str:t.d_words.tl_aligncenter},alignright:{prefix:\"::: hljs-right\\n\\n\",subfix:\"\\n\\n:::\\n\",str:t.d_words.tl_alignright},alignleft:{prefix:\"::: hljs-left\\n\\n\",subfix:\"\\n\\n:::\\n\",str:t.d_words.tl_alignleft}};n.hasOwnProperty(e)&&t.insertText(t.getTextareaDom(),n[e]);var u={undo:i,redo:r,trash:a,save:o,ol:s,ul:l,removeLine:c};u.hasOwnProperty(e)&&u[e](t)}},function(e,t,n){\"use strict\";function i(e){e.s_html_code=!e.s_html_code,e.htmlcode&&e.htmlcode(e.s_html_code,e.d_value)}function r(e){e.s_help=!e.s_help,e.helptoggle&&e.helptoggle(e.s_help,e.d_value)}function a(e){var t=e.$refs.vReadModel;t.requestFullscreen?t.requestFullscreen():t.mozRequestFullScreen?t.mozRequestFullScreen():t.webkitRequestFullscreen?t.webkitRequestFullscreen():t.msRequestFullscreen&&t.msRequestFullscreen()}function o(e){e.s_preview_switch=!e.s_preview_switch,e.previewtoggle&&e.previewtoggle(e.s_preview_switch,e.d_value)}function s(e){e.s_fullScreen=!e.s_fullScreen,e.fullscreen&&e.fullscreen(e.s_fullScreen,e.d_value)}function l(e){e.s_subfield=!e.s_subfield,e.s_preview_switch=e.s_subfield,e.previewtoggle&&e.previewtoggle(e.s_preview_switch,e.d_value),e.subfieldtoggle&&e.subfieldtoggle(e.s_subfield,e.d_value)}function c(e){e.s_navigation=!e.s_navigation,e.s_navigation&&(e.s_preview_switch=!0),e.navigationtoggle&&e.navigationtoggle(e.s_navigation,e.d_value),e.s_navigation&&e.getNavigation(e,!1)}n.d(t,\"a\",(function(){return u}));var u=function(e,t){var n={help:r,html:i,read:a,preview:o,fullscreen:s,navigation:c,subfield:l};n.hasOwnProperty(e)&&n[e](t)}},function(e,t,n){\"use strict\";function i(e){e&&(e.preventDefault&&e.preventDefault(),e.stopPropagation&&e.stopPropagation())}t.a=i;var r=n(39);n.n(r)},function(e,t,n){e.exports={default:n(80),__esModule:!0}},function(e,t,n){e.exports={default:n(81),__esModule:!0}},function(e,t,n){n(103),n(101),n(104),n(105),e.exports=n(10).Symbol},function(e,t,n){n(102),n(106),e.exports=n(30).f(\"iterator\")},function(e,t){e.exports=function(e){if(\"function\"!=typeof e)throw TypeError(e+\" is not a function!\");return e}},function(e,t){e.exports=function(){}},function(e,t,n){var i=n(6),r=n(99),a=n(98);e.exports=function(e){return function(t,n,o){var s,l=i(t),c=r(l.length),u=a(o,c);if(e&&n!=n){for(;c>u;)if((s=l[u++])!=s)return!0}else for(;c>u;u++)if((e||u in l)&&l[u]===n)return e||u||0;return!e&&-1}}},function(e,t,n){var i=n(82);e.exports=function(e,t,n){if(i(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,i){return e.call(t,n,i)};case 3:return function(n,i,r){return e.call(t,n,i,r)}}return function(){return e.apply(t,arguments)}}},function(e,t,n){var i=n(22),r=n(47),a=n(23);e.exports=function(e){var t=i(e),n=r.f;if(n)for(var o,s=n(e),l=a.f,c=0;s.length>c;)l.call(e,o=s[c++])&&t.push(o);return t}},function(e,t,n){var i=n(1).document;e.exports=i&&i.documentElement},function(e,t,n){var i=n(40);e.exports=Object(\"z\").propertyIsEnumerable(0)?Object:function(e){return\"String\"==i(e)?e.split(\"\"):Object(e)}},function(e,t,n){var i=n(40);e.exports=Array.isArray||function(e){return\"Array\"==i(e)}},function(e,t,n){\"use strict\";var i=n(45),r=n(13),a=n(24),o={};n(4)(o,n(7)(\"iterator\"),(function(){return this})),e.exports=function(e,t,n){e.prototype=i(o,{next:r(1,n)}),a(e,t+\" Iterator\")}},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,n){var i=n(14)(\"meta\"),r=n(8),a=n(2),o=n(5).f,s=0,l=Object.isExtensible||function(){return!0},c=!n(11)((function(){return l(Object.preventExtensions({}))})),u=function(e){o(e,i,{value:{i:\"O\"+ ++s,w:{}}})},d=function(e,t){if(!r(e))return\"symbol\"==typeof e?e:(\"string\"==typeof e?\"S\":\"P\")+e;if(!a(e,i)){if(!l(e))return\"F\";if(!t)return\"E\";u(e)}return e[i].i},p=function(e,t){if(!a(e,i)){if(!l(e))return!0;if(!t)return!1;u(e)}return e[i].w},h=function(e){return c&&f.NEED&&l(e)&&!a(e,i)&&u(e),e},f=e.exports={KEY:i,NEED:!1,fastKey:d,getWeak:p,onFreeze:h}},function(e,t,n){var i=n(5),r=n(9),a=n(22);e.exports=n(3)?Object.defineProperties:function(e,t){r(e);for(var n,o=a(t),s=o.length,l=0;s>l;)i.f(e,n=o[l++],t[n]);return e}},function(e,t,n){var i=n(23),r=n(13),a=n(6),o=n(28),s=n(2),l=n(43),c=Object.getOwnPropertyDescriptor;t.f=n(3)?c:function(e,t){if(e=a(e),t=o(t,!0),l)try{return c(e,t)}catch(e){}if(s(e,t))return r(!i.f.call(e,t),e[t])}},function(e,t,n){var i=n(6),r=n(46).f,a={}.toString,o=\"object\"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(e){try{return r(e)}catch(e){return o.slice()}};e.exports.f=function(e){return o&&\"[object Window]\"==a.call(e)?s(e):r(i(e))}},function(e,t,n){var i=n(2),r=n(50),a=n(25)(\"IE_PROTO\"),o=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=r(e),i(e,a)?e[a]:\"function\"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?o:null}},function(e,t,n){var i=n(27),r=n(19);e.exports=function(e){return function(t,n){var a,o,s=String(r(t)),l=i(n),c=s.length;return l<0||l>=c?e?\"\":void 0:(a=s.charCodeAt(l),a<55296||a>56319||l+1===c||(o=s.charCodeAt(l+1))<56320||o>57343?e?s.charAt(l):a:e?s.slice(l,l+2):o-56320+(a-55296<<10)+65536)}}},function(e,t,n){var i=n(27),r=Math.max,a=Math.min;e.exports=function(e,t){return e=i(e),e<0?r(e+t,0):a(e,t)}},function(e,t,n){var i=n(27),r=Math.min;e.exports=function(e){return e>0?r(i(e),9007199254740991):0}},function(e,t,n){\"use strict\";var i=n(83),r=n(91),a=n(21),o=n(6);e.exports=n(44)(Array,\"Array\",(function(e,t){this._t=o(e),this._i=0,this._k=t}),(function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,r(1)):r(0,\"keys\"==t?n:\"values\"==t?e[n]:[n,e[n]])}),\"values\"),a.Arguments=a.Array,i(\"keys\"),i(\"values\"),i(\"entries\")},function(e,t){},function(e,t,n){\"use strict\";var i=n(97)(!0);n(44)(String,\"String\",(function(e){this._t=String(e),this._i=0}),(function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=i(t,n),this._i+=e.length,{value:e,done:!1})}))},function(e,t,n){\"use strict\";var i=n(1),r=n(2),a=n(3),o=n(42),s=n(49),l=n(92).KEY,c=n(11),u=n(26),d=n(24),p=n(14),h=n(7),f=n(30),_=n(29),m=n(86),g=n(89),b=n(9),v=n(8),E=n(50),y=n(6),S=n(28),C=n(13),T=n(45),x=n(95),w=n(94),O=n(47),N=n(5),R=n(22),k=w.f,A=N.f,D=x.f,I=i.Symbol,M=i.JSON,L=M&&M.stringify,P=h(\"_hidden\"),F=h(\"toPrimitive\"),B={}.propertyIsEnumerable,U=u(\"symbol-registry\"),$=u(\"symbols\"),j=u(\"op-symbols\"),G=Object.prototype,q=\"function\"==typeof I&&!!O.f,H=i.QObject,V=!H||!H.prototype||!H.prototype.findChild,z=a&&c((function(){return 7!=T(A({},\"a\",{get:function(){return A(this,\"a\",{value:7}).a}})).a}))?function(e,t,n){var i=k(G,t);i&&delete G[t],A(e,t,n),i&&e!==G&&A(G,t,i)}:A,Y=function(e){var t=$[e]=T(I.prototype);return t._k=e,t},W=q&&\"symbol\"==typeof I.iterator?function(e){return\"symbol\"==typeof e}:function(e){return e instanceof I},K=function(e,t,n){return e===G&&K(j,t,n),b(e),t=S(t,!0),b(n),r($,t)?(n.enumerable?(r(e,P)&&e[P][t]&&(e[P][t]=!1),n=T(n,{enumerable:C(0,!1)})):(r(e,P)||A(e,P,C(1,{})),e[P][t]=!0),z(e,t,n)):A(e,t,n)},Q=function(e,t){b(e);for(var n,i=m(t=y(t)),r=0,a=i.length;a>r;)K(e,n=i[r++],t[n]);return e},X=function(e,t){return void 0===t?T(e):Q(T(e),t)},Z=function(e){var t=B.call(this,e=S(e,!0));return!(this===G&&r($,e)&&!r(j,e))&&(!(t||!r(this,e)||!r($,e)||r(this,P)&&this[P][e])||t)},J=function(e,t){if(e=y(e),t=S(t,!0),e!==G||!r($,t)||r(j,t)){var n=k(e,t);return!n||!r($,t)||r(e,P)&&e[P][t]||(n.enumerable=!0),n}},ee=function(e){for(var t,n=D(y(e)),i=[],a=0;n.length>a;)r($,t=n[a++])||t==P||t==l||i.push(t);return i},te=function(e){for(var t,n=e===G,i=D(n?j:y(e)),a=[],o=0;i.length>o;)!r($,t=i[o++])||n&&!r(G,t)||a.push($[t]);return a};q||(I=function(){if(this instanceof I)throw TypeError(\"Symbol is not a constructor!\");var e=p(arguments.length>0?arguments[0]:void 0),t=function(n){this===G&&t.call(j,n),r(this,P)&&r(this[P],e)&&(this[P][e]=!1),z(this,e,C(1,n))};return a&&V&&z(G,e,{configurable:!0,set:t}),Y(e)},s(I.prototype,\"toString\",(function(){return this._k})),w.f=J,N.f=K,n(46).f=x.f=ee,n(23).f=Z,O.f=te,a&&!n(12)&&s(G,\"propertyIsEnumerable\",Z,!0),f.f=function(e){return Y(h(e))}),o(o.G+o.W+o.F*!q,{Symbol:I});for(var ne=\"hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables\".split(\",\"),ie=0;ne.length>ie;)h(ne[ie++]);for(var re=R(h.store),ae=0;re.length>ae;)_(re[ae++]);o(o.S+o.F*!q,\"Symbol\",{for:function(e){return r(U,e+=\"\")?U[e]:U[e]=I(e)},keyFor:function(e){if(!W(e))throw TypeError(e+\" is not a symbol!\");for(var t in U)if(U[t]===e)return t},useSetter:function(){V=!0},useSimple:function(){V=!1}}),o(o.S+o.F*!q,\"Object\",{create:X,defineProperty:K,defineProperties:Q,getOwnPropertyDescriptor:J,getOwnPropertyNames:ee,getOwnPropertySymbols:te});var oe=c((function(){O.f(1)}));o(o.S+o.F*oe,\"Object\",{getOwnPropertySymbols:function(e){return O.f(E(e))}}),M&&o(o.S+o.F*(!q||c((function(){var e=I();return\"[null]\"!=L([e])||\"{}\"!=L({a:e})||\"{}\"!=L(Object(e))}))),\"JSON\",{stringify:function(e){for(var t,n,i=[e],r=1;arguments.length>r;)i.push(arguments[r++]);if(n=t=i[1],(v(t)||void 0!==e)&&!W(e))return g(t)||(t=function(e,t){if(\"function\"==typeof n&&(t=n.call(this,e,t)),!W(t))return t}),i[1]=t,L.apply(M,i)}}),I.prototype[F]||n(4)(I.prototype,F,I.prototype.valueOf),d(I,\"Symbol\"),d(Math,\"Math\",!0),d(i.JSON,\"JSON\",!0)},function(e,t,n){n(29)(\"asyncIterator\")},function(e,t,n){n(29)(\"observable\")},function(e,t,n){n(100);for(var i=n(1),r=n(4),a=n(21),o=n(7)(\"toStringTag\"),s=\"CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList\".split(\",\"),l=0;l<s.length;l++){var c=s[l],u=i[c],d=u&&u.prototype;d&&!d[o]&&r(d,o,c),a[c]=a.Array}},function(e,t,n){t=e.exports=n(15)(!1),t.push([e.i,'\\n.auto-textarea-wrapper {\\n  position: relative;\\n  width: 100%;\\n  margin: 0;\\n  padding: 0;\\n  line-height: normal;\\n}\\n.auto-textarea-wrapper .auto-textarea-block {\\n  display: block;\\n  white-space: pre-wrap;\\n  word-wrap: break-word !important;\\n  visibility: hidden;\\n  overflow: hidden;\\n  margin: 0;\\n  padding: 0;\\n  box-sizing: border-box;\\n  font-size: 100%;\\n}\\n.auto-textarea-wrapper .auto-textarea-input {\\n  font-family: Menlo, \"Ubuntu Mono\", Consolas, \"Courier New\", \"Microsoft Yahei\", \"Hiragino Sans GB\", \"WenQuanYi Micro Hei\", sans-serif;\\n  position: absolute;\\n  width: 100%;\\n  height: 100%;\\n  top: 0;\\n  left: 0;\\n  margin: 0;\\n  padding: 0;\\n  overflow-y: hidden;\\n  color: #2c3e50;\\n}\\n.auto-textarea-wrapper .auto-textarea-input.no-border {\\n  outline: 0 none;\\n  border: none !important;\\n}\\n.auto-textarea-wrapper .auto-textarea-input.no-resize {\\n  resize: none;\\n}\\n',\"\"])},function(e,t,n){t=e.exports=n(15)(!1),t.push([e.i,\"\\n.op-icon.dropdown-wrapper.dropdown[data-v-548e2160] {\\n  position: relative;\\n}\\n.op-icon.dropdown-wrapper.dropdown[type=button][data-v-548e2160] {\\n  -webkit-appearance: unset;\\n}\\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown[data-v-548e2160] {\\n  position: absolute;\\n  display: block;\\n  background: #fff;\\n  top: 32px;\\n  left: -45px;\\n  min-width: 130px;\\n  z-index: 1600;\\n  border: 1px solid #ebeef5;\\n  border-radius: 4px;\\n  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.1);\\n}\\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown .dropdown-item[data-v-548e2160]:first-child {\\n  border-top-left-radius: 3px;\\n  border-top-right-radius: 3px;\\n}\\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown .dropdown-item[data-v-548e2160]:last-child {\\n  border-bottom-left-radius: 3px;\\n  border-bottom-right-radius: 3px;\\n}\\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown.op-header[data-v-548e2160] {\\n  left: -30px;\\n  min-width: 90px;\\n}\\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown.fade-enter-active[data-v-548e2160],\\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown.fade-leave-active[data-v-548e2160] {\\n  opacity: 1;\\n}\\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown.fade-enter[data-v-548e2160],\\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown.fade-leave-active[data-v-548e2160] {\\n  opacity: 0;\\n}\\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown.transition[data-v-548e2160],\\n.op-icon.dropdown-wrapper.dropdown .popup-dropdown.transition .dropdown-item[data-v-548e2160] {\\n  -webkit-transition: all 0.2s linear 0s;\\n  transition: all 0.2s linear 0s;\\n}\\n.op-icon.dropdown-wrapper.dropdown .dropdown-item[data-v-548e2160] {\\n  height: 40px;\\n  line-height: 40px;\\n  font-size: 14px;\\n  color: #606266;\\n  position: relative;\\n}\\n.op-icon.dropdown-wrapper.dropdown .dropdown-item[data-v-548e2160]:hover {\\n  color: #303133;\\n  background-color: #e9e9eb;\\n}\\n.op-icon.dropdown-wrapper.dropdown .dropdown-item input[data-v-548e2160] {\\n  position: absolute;\\n  font-size: 100px;\\n  right: 0;\\n  top: 0;\\n  opacity: 0;\\n  cursor: pointer;\\n}\\n.op-icon.dropdown-wrapper.dropdown .dropdown-images[data-v-548e2160] {\\n  box-sizing: border-box;\\n}\\n.op-icon.dropdown-wrapper.dropdown .dropdown-images button[data-v-548e2160] {\\n  position: absolute;\\n  top: -1px;\\n  right: 5px;\\n  font-size: 14px;\\n}\\n.op-icon.dropdown-wrapper.dropdown .dropdown-images button[data-v-548e2160]:hover {\\n  color: #f56c6c;\\n  background-color: transparent;\\n}\\n.op-icon.dropdown-wrapper.dropdown .dropdown-images span[data-v-548e2160] {\\n  display: inline-block;\\n  width: 80px;\\n  white-space: nowrap;\\n  overflow: hidden;\\n  text-overflow: ellipsis;\\n}\\n.op-icon.dropdown-wrapper.dropdown .dropdown-images:hover .image-show[data-v-548e2160] {\\n  display: block !important;\\n}\\n.op-icon.dropdown-wrapper.dropdown .dropdown-images .image-show[data-v-548e2160] {\\n  display: none;\\n  position: absolute;\\n  left: -128px;\\n  top: 0;\\n  width: 120px;\\n  height: 90px;\\n  object-fit: contain;\\n  border: 1px solid #f2f6fc;\\n}\\n.op-icon.dropdown-wrapper.dropdown .dropdown-images .image-show.transition[data-v-548e2160] {\\n  -webkit-transition: all 0.2s linear 0s;\\n  transition: all 0.2s linear 0s;\\n}\\n.op-icon.dropdown-wrapper.dropdown .dropdown-images.transition[data-v-548e2160] {\\n  -webkit-transition: all 0.2s linear 0s;\\n  transition: all 0.2s linear 0s;\\n}\\n.add-image-link-wrapper[data-v-548e2160] {\\n  position: fixed;\\n  left: 0;\\n  right: 0;\\n  top: 0;\\n  bottom: 0;\\n  background: rgba(0,0,0,0.7);\\n  z-index: 1600;\\n  -webkit-transition: all 0.1s linear 0s;\\n  transition: all 0.1s linear 0s;\\n}\\n.add-image-link-wrapper.fade-enter-active[data-v-548e2160],\\n.add-image-link-wrapper.fade-leave-active[data-v-548e2160] {\\n  opacity: 1;\\n}\\n.add-image-link-wrapper.fade-enter[data-v-548e2160],\\n.add-image-link-wrapper.fade-leave-active[data-v-548e2160] {\\n  opacity: 0;\\n}\\n.add-image-link-wrapper .add-image-link[data-v-548e2160] {\\n  position: fixed;\\n  box-sizing: border-box;\\n  text-align: center;\\n  width: 24%;\\n  left: 38%;\\n  height: auto;\\n  padding: 40px;\\n  top: 25%;\\n  -webkit-transition: all 0.1s linear 0s;\\n  transition: all 0.1s linear 0s;\\n  z-index: 3;\\n  background: #fff;\\n  border-radius: 2px;\\n}\\n@media only screen and (max-width: 1500px) {\\n.add-image-link-wrapper .add-image-link[data-v-548e2160] {\\n    width: 34%;\\n    left: 33%;\\n}\\n}\\n@media only screen and (max-width: 1000px) {\\n.add-image-link-wrapper .add-image-link[data-v-548e2160] {\\n    width: 50%;\\n    left: 25%;\\n}\\n}\\n@media only screen and (max-width: 600px) {\\n.add-image-link-wrapper .add-image-link[data-v-548e2160] {\\n    width: 80%;\\n    left: 10%;\\n}\\n}\\n.add-image-link-wrapper .add-image-link i[data-v-548e2160] {\\n  font-size: 24px;\\n  position: absolute;\\n  right: 8px;\\n  top: 6px;\\n  color: rgba(0,0,0,0.7);\\n  cursor: pointer;\\n}\\n.add-image-link-wrapper .add-image-link .title[data-v-548e2160] {\\n  font-size: 20px;\\n  margin-bottom: 30px;\\n  margin-top: 10px;\\n  font-weight: 500 !important;\\n}\\n.add-image-link-wrapper .add-image-link .input-wrapper[data-v-548e2160] {\\n  margin-top: 10px;\\n  width: 80%;\\n  border: 1px solid #eeece8;\\n  text-align: left;\\n  margin-left: 10%;\\n  height: 35px;\\n}\\n.add-image-link-wrapper .add-image-link .input-wrapper input[data-v-548e2160] {\\n  height: 32px;\\n  line-height: 32px;\\n  font-size: 15px;\\n  width: 90%;\\n  margin-left: 8px;\\n  border: none;\\n  outline: none;\\n}\\n.add-image-link-wrapper .add-image-link .op-btn[data-v-548e2160] {\\n  width: 100px;\\n  height: 35px;\\n  display: inline-block;\\n  margin-top: 30px;\\n  cursor: pointer;\\n  text-align: center;\\n  line-height: 35px;\\n  opacity: 0.9;\\n  border-radius: 2px;\\n  letter-spacing: 1px;\\n  font-size: 15px;\\n}\\n.add-image-link-wrapper .add-image-link .op-btn.sure[data-v-548e2160] {\\n  background: #2185d0;\\n  color: #fff;\\n  margin-left: 5%;\\n}\\n.add-image-link-wrapper .add-image-link .op-btn.sure[data-v-548e2160]:hover {\\n  opacity: 1;\\n}\\n.add-image-link-wrapper .add-image-link .op-btn.cancel[data-v-548e2160] {\\n  border: 1px solid #bcbcbc;\\n  color: #bcbcbc;\\n}\\n.add-image-link-wrapper .add-image-link .op-btn.cancel[data-v-548e2160]:hover {\\n  color: #000;\\n}\\n\",\"\"])},function(e,t,n){t=e.exports=n(15)(!1),t.push([e.i,\"\\ntextarea:disabled {\\n  background-color: #fff;\\n}\\n.v-note-wrapper {\\n  position: relative;\\n  min-width: 300px;\\n  min-height: 300px;\\n  display: -webkit-box;\\n  display: -webkit-flex;\\n  display: -ms-flexbox;\\n  display: flex;\\n  -webkit-box-orient: vertical;\\n  -webkit-box-direction: normal;\\n  -webkit-flex-direction: column;\\n      -ms-flex-direction: column;\\n          flex-direction: column;\\n  background-color: #fff;\\n  z-index: 1500;\\n  text-align: left;\\n  border: 1px solid #f2f6fc;\\n  border-radius: 4px;\\n}\\n.v-note-wrapper.fullscreen {\\n  position: fixed;\\n  left: 0;\\n  right: 0;\\n  bottom: 0;\\n  top: 0;\\n  margin: 0;\\n  height: auto;\\n  z-index: 1501;\\n}\\n.v-note-wrapper .v-note-op {\\n  padding: 1px;\\n  width: 100%;\\n  display: -webkit-box;\\n  display: -webkit-flex;\\n  display: -ms-flexbox;\\n  display: flex;\\n  white-space: pre-line;\\n  -webkit-box-flex: 0;\\n  -webkit-flex: none;\\n      -ms-flex: none;\\n          flex: none;\\n  min-height: 40px;\\n  -webkit-user-select: none;\\n      -ms-user-select: none;\\n          user-select: none;\\n  border-bottom: 1px solid #f2f6fc;\\n  border-radius: 4px 4px 0 0;\\n  background-color: #fff;\\n  z-index: 1;\\n}\\n.v-note-wrapper .v-note-op .v-left-item,\\n.v-note-wrapper .v-note-op .v-right-item {\\n  -webkit-box-flex: 1;\\n  -webkit-flex: 1;\\n      -ms-flex: 1;\\n          flex: 1;\\n  min-height: 40px;\\n  box-sizing: border-box;\\n}\\n.v-note-wrapper .v-note-op .v-left-item .op-icon-divider,\\n.v-note-wrapper .v-note-op .v-right-item .op-icon-divider {\\n  height: 40px;\\n  border-left: 1px solid #e5e5e5;\\n  margin: 0 6px 0 4px;\\n}\\n.v-note-wrapper .v-note-op .v-left-item .op-icon,\\n.v-note-wrapper .v-note-op .v-right-item .op-icon {\\n  box-sizing: border-box;\\n  display: inline-block;\\n  cursor: pointer;\\n  height: 28px;\\n  width: 28px;\\n  margin: 6px 0 5px 0px;\\n  font-size: 14px;\\n  padding: 4.5px 6px 5px 3.5px;\\n  color: #757575;\\n  border-radius: 5px;\\n  text-align: center;\\n  background: none;\\n  border: none;\\n  outline: none;\\n  line-height: 1;\\n}\\n.v-note-wrapper .v-note-op .v-left-item .op-icon.dropdown-wrapper,\\n.v-note-wrapper .v-note-op .v-right-item .op-icon.dropdown-wrapper {\\n  line-height: 18px;\\n}\\n.v-note-wrapper .v-note-op .v-left-item .op-icon.selected,\\n.v-note-wrapper .v-note-op .v-right-item .op-icon.selected {\\n  color: rgba(0,0,0,0.8);\\n  background: #eaeaea;\\n}\\n.v-note-wrapper .v-note-op .v-left-item .op-icon:hover,\\n.v-note-wrapper .v-note-op .v-right-item .op-icon:hover {\\n  color: rgba(0,0,0,0.8);\\n  background: #e9e9eb;\\n}\\n.v-note-wrapper .v-note-op .v-left-item.transition .op-icon,\\n.v-note-wrapper .v-note-op .v-right-item.transition .op-icon {\\n  -webkit-transition: all 0.2s linear 0s;\\n  transition: all 0.2s linear 0s;\\n}\\n.v-note-wrapper .v-note-op .v-right-item {\\n  text-align: right;\\n  padding-right: 6px;\\n  max-width: 30%;\\n}\\n.v-note-wrapper .v-note-op .v-left-item {\\n  text-align: left;\\n  padding-left: 6px;\\n}\\n.v-note-wrapper .v-note-panel {\\n  position: relative;\\n  border-top: none;\\n  display: -webkit-box;\\n  display: -webkit-flex;\\n  display: -ms-flexbox;\\n  display: flex;\\n  -webkit-box-flex: 1;\\n  -webkit-flex: 1;\\n      -ms-flex: 1;\\n          flex: 1;\\n  width: 100%;\\n  box-sizing: border-box;\\n  overflow: hidden;\\n}\\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper {\\n  -webkit-box-flex: 0;\\n  -webkit-flex: 0 0 50%;\\n      -ms-flex: 0 0 50%;\\n          flex: 0 0 50%;\\n  width: 50%;\\n  padding: 0;\\n  overflow-y: scroll;\\n  overflow-x: hidden;\\n  box-sizing: border-box;\\n  cursor: text;\\n  border-bottom-left-radius: 4px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar {\\n  width: 6px;\\n  background-color: #e5e5e5;\\n}\\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar-thumb {\\n  background-color: #b7b7b7;\\n  border-radius: 4px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar-thumb:hover {\\n  background-color: #a1a1a1;\\n}\\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar-thumb:active {\\n  background-color: #a1a1a1;\\n}\\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style::-webkit-scrollbar-track {\\n  -webkit-box-shadow: 0 0 0px #808080 inset;\\n}\\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.scroll-style-border-radius::-webkit-scrollbar {\\n  border-bottom-right-radius: 4px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.transition {\\n  -webkit-transition: all 0.2s linear 0s;\\n  transition: all 0.2s linear 0s;\\n}\\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.single-edit {\\n  width: 100%;\\n  -webkit-box-flex: 0;\\n  -webkit-flex: 0 0 100%;\\n      -ms-flex: 0 0 100%;\\n          flex: 0 0 100%;\\n  overflow-y: auto;\\n}\\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper.single-show {\\n  width: 0;\\n  -webkit-box-flex: 0;\\n  -webkit-flex: 0 0 0;\\n      -ms-flex: 0 0 0px;\\n          flex: 0 0 0;\\n  display: none;\\n}\\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper .content-div {\\n  width: 100%;\\n  padding: 20px 25px;\\n  box-sizing: border-box;\\n  outline: 0 none;\\n  border: none !important;\\n  color: #2c3e50;\\n  font-size: 16px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-edit.divarea-wrapper .content-input-wrapper {\\n  width: 100%;\\n  padding: 8px 25px 15px 25px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-show {\\n  -webkit-box-flex: 0;\\n  -webkit-flex: 0 0 50%;\\n      -ms-flex: 0 0 50%;\\n          flex: 0 0 50%;\\n  width: 50%;\\n  overflow-y: auto;\\n  padding: 0 0;\\n  -webkit-transition: all 0.2s linear 0s;\\n  transition: all 0.2s linear 0s;\\n}\\n.v-note-wrapper .v-note-panel .v-note-show.single-show {\\n  -webkit-box-flex: 0;\\n  -webkit-flex: 0 0 100%;\\n      -ms-flex: 0 0 100%;\\n          flex: 0 0 100%;\\n  width: 100%;\\n}\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content,\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html {\\n  width: 100%;\\n  height: 100%;\\n  padding: 8px 25px 15px 25px;\\n  overflow-y: auto;\\n  box-sizing: border-box;\\n  overflow-x: hidden;\\n}\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar,\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar {\\n  width: 6px;\\n  background-color: #e5e5e5;\\n}\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar-thumb,\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar-thumb {\\n  background-color: #b7b7b7;\\n  border-radius: 4px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar-thumb:hover,\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar-thumb:hover {\\n  background-color: #a1a1a1;\\n}\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar-thumb:active,\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar-thumb:active {\\n  background-color: #a1a1a1;\\n}\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style::-webkit-scrollbar-track,\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style::-webkit-scrollbar-track {\\n  -webkit-box-shadow: 0 0 0px #808080 inset;\\n}\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content.scroll-style-border-radius::-webkit-scrollbar,\\n.v-note-wrapper .v-note-panel .v-note-show .v-show-content-html.scroll-style-border-radius::-webkit-scrollbar {\\n  border-bottom-right-radius: 4px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper {\\n  display: -webkit-box;\\n  display: -webkit-flex;\\n  display: -ms-flexbox;\\n  display: flex;\\n  position: absolute;\\n  width: 250px;\\n  right: 0;\\n  top: 0;\\n  bottom: 0;\\n  height: 100%;\\n  -webkit-box-orient: vertical;\\n  -webkit-box-direction: normal;\\n  -webkit-flex-direction: column;\\n      -ms-flex-direction: column;\\n          flex-direction: column;\\n  background-color: rgba(255,255,255,0.98);\\n  border-left: 1px solid #f2f6fc;\\n  border-right: 1px solid #f2f6fc;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.transition {\\n  -webkit-transition: all 0.1s linear 0s;\\n  transition: all 0.1s linear 0s;\\n}\\n@media only screen and (max-width: 768px) {\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper {\\n    width: 50%;\\n}\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.slideTop-enter-active,\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.slideTop-leave-active {\\n  height: 100%;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.slideTop-enter,\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper.slideTop-leave-active {\\n  height: 0;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-title {\\n  height: 50px;\\n  width: 100%;\\n  border-bottom: 1px solid #f2f6fc;\\n  -webkit-box-flex: 0;\\n  -webkit-flex: none;\\n      -ms-flex: none;\\n          flex: none;\\n  line-height: 50px;\\n  font-size: 16px;\\n  box-sizing: border-box;\\n  padding: 0 12px 0 18px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-title .v-note-navigation-close {\\n  float: right;\\n  color: #606266;\\n  font-size: 18px;\\n  cursor: pointer;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-title .v-note-navigation-close:hover {\\n  color: #303133;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content {\\n  overflow-y: auto;\\n  -webkit-box-flex: 1;\\n  -webkit-flex: 1;\\n      -ms-flex: 1;\\n          flex: 1;\\n  padding: 8px 0;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar {\\n  width: 6px;\\n  background-color: #e5e5e5;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar-thumb {\\n  background-color: #b7b7b7;\\n  border-radius: 4px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar-thumb:hover {\\n  background-color: #a1a1a1;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar-thumb:active {\\n  background-color: #a1a1a1;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style::-webkit-scrollbar-track {\\n  -webkit-box-shadow: 0 0 0px #808080 inset;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content.scroll-style-border-radius::-webkit-scrollbar {\\n  border-bottom-right-radius: 4px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h1,\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h2,\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h3,\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h4,\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h5,\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h6 {\\n  margin: 2px 0;\\n  font-weight: 500;\\n  font-size: 17px;\\n  color: #2185d0;\\n  cursor: pointer;\\n  line-height: normal;\\n  overflow: hidden;\\n  text-overflow: ellipsis;\\n  white-space: nowrap;\\n  padding: 0 12px;\\n  border-bottom: none;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h1:hover,\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h2:hover,\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h3:hover,\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h4:hover,\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h5:hover,\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h6:hover {\\n  color: #483d8b;\\n  -webkit-text-decoration-line: underline;\\n          text-decoration-line: underline;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h2 {\\n  padding-left: 27px;\\n  font-size: 17px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h3 {\\n  padding-left: 42px;\\n  font-size: 17px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h4 {\\n  padding-left: 58px;\\n  font-size: 15px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h5 {\\n  padding-left: 72px;\\n  font-size: 15px;\\n}\\n.v-note-wrapper .v-note-panel .v-note-navigation-wrapper .v-note-navigation-content h6 {\\n  padding-left: 87px;\\n  font-size: 15px;\\n}\\n.v-note-wrapper .v-note-read-model {\\n  position: relative;\\n  display: none;\\n  width: 100%;\\n  height: 100%;\\n  background: #fbfbfb;\\n  padding: 30px 8% 50px 8%;\\n  overflow-y: auto;\\n  box-sizing: border-box;\\n}\\n.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar {\\n  width: 6px;\\n  background-color: #e5e5e5;\\n}\\n.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar-thumb {\\n  background-color: #b7b7b7;\\n  border-radius: 4px;\\n}\\n.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar-thumb:hover {\\n  background-color: #a1a1a1;\\n}\\n.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar-thumb:active {\\n  background-color: #a1a1a1;\\n}\\n.v-note-wrapper .v-note-read-model.scroll-style::-webkit-scrollbar-track {\\n  -webkit-box-shadow: 0 0 0px #808080 inset;\\n}\\n.v-note-wrapper .v-note-read-model.scroll-style-border-radius::-webkit-scrollbar {\\n  border-bottom-right-radius: 4px;\\n}\\n.v-note-wrapper .v-note-read-model.show {\\n  display: block;\\n}\\n.v-note-wrapper.shadow {\\n  border: none;\\n}\\n.v-note-help-wrapper {\\n  position: fixed;\\n  left: 0;\\n  right: 0;\\n  top: 0;\\n  bottom: 0;\\n  background: rgba(0,0,0,0.7);\\n  z-index: 1600;\\n  -webkit-transition: all 0.1s linear 0s;\\n  transition: all 0.1s linear 0s;\\n}\\n.v-note-help-wrapper.fade-enter-active,\\n.v-note-help-wrapper.fade-leave-active {\\n  opacity: 1;\\n}\\n.v-note-help-wrapper.fade-enter,\\n.v-note-help-wrapper.fade-leave-active {\\n  opacity: 0;\\n}\\n.v-note-help-wrapper .v-note-help-content {\\n  position: relative;\\n  width: 60%;\\n  max-width: 800px;\\n  margin: 30px auto;\\n  height: 90%;\\n  min-width: 320px;\\n  -webkit-transition: all 0.1s linear 0s;\\n  transition: all 0.1s linear 0s;\\n  z-index: 3;\\n  border: 1px solid #f2f6fc;\\n}\\n.v-note-help-wrapper .v-note-help-content.shadow {\\n  border: none;\\n  box-shadow: 0 0px 5px rgba(0,0,0,0.157), 0 0px 5px rgba(0,0,0,0.227);\\n}\\n.v-note-help-wrapper .v-note-help-content i {\\n  font-size: 28px;\\n  position: absolute;\\n  right: 15px;\\n  top: 8px;\\n  color: rgba(0,0,0,0.7);\\n  cursor: pointer;\\n}\\n.v-note-help-wrapper .v-note-help-content i:hover {\\n  color: #000;\\n}\\n.v-note-help-wrapper .v-note-help-content .v-note-help-show {\\n  width: 100%;\\n  height: 100%;\\n  font-size: 18px;\\n  background: #fbfbfb;\\n  overflow-y: auto;\\n  padding: 2% 6%;\\n}\\n.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar {\\n  width: 6px;\\n  background-color: #e5e5e5;\\n}\\n.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar-thumb {\\n  background-color: #b7b7b7;\\n  border-radius: 4px;\\n}\\n.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar-thumb:hover {\\n  background-color: #a1a1a1;\\n}\\n.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar-thumb:active {\\n  background-color: #a1a1a1;\\n}\\n.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style::-webkit-scrollbar-track {\\n  -webkit-box-shadow: 0 0 0px #808080 inset;\\n}\\n.v-note-help-wrapper .v-note-help-content .v-note-help-show.scroll-style-border-radius::-webkit-scrollbar {\\n  border-bottom-right-radius: 4px;\\n}\\n.v-note-img-wrapper {\\n  position: fixed;\\n  display: -webkit-box;\\n  display: -webkit-flex;\\n  display: -ms-flexbox;\\n  display: flex;\\n  -webkit-box-pack: center;\\n  -webkit-justify-content: center;\\n      -ms-flex-pack: center;\\n          justify-content: center;\\n  -webkit-box-align: center;\\n  -webkit-align-items: center;\\n      -ms-flex-align: center;\\n          align-items: center;\\n  left: 0;\\n  right: 0;\\n  top: 0;\\n  bottom: 0;\\n  background: rgba(0,0,0,0.7);\\n  z-index: 1600;\\n  -webkit-transition: all 0.1s linear 0s;\\n  transition: all 0.1s linear 0s;\\n}\\n.v-note-img-wrapper.fade-enter-active,\\n.v-note-img-wrapper.fade-leave-active {\\n  opacity: 1;\\n}\\n.v-note-img-wrapper.fade-enter,\\n.v-note-img-wrapper.fade-leave-active {\\n  opacity: 0;\\n}\\n.v-note-img-wrapper img {\\n  -webkit-box-flex: 0;\\n  -webkit-flex: 0 0 auto;\\n      -ms-flex: 0 0 auto;\\n          flex: 0 0 auto;\\n  z-index: 3;\\n}\\n.v-note-img-wrapper i {\\n  font-size: 28px;\\n  position: absolute;\\n  right: 15px;\\n  top: 8px;\\n  color: rgba(255,255,255,0.7);\\n  cursor: pointer;\\n}\\n.v-note-img-wrapper i:hover {\\n  color: #fff;\\n}\\n\",\"\"])},function(e,t,n){t=e.exports=n(15)(!1),t.push([e.i,\"\\n.auto-textarea-wrapper[data-v-7a63e4b3] {\\n    height: 100%;\\n}\\n\",\"\"])},function(e,t,n){function i(e){return void 0===e||null===e}function r(e){var t={};for(var n in e)t[n]=e[n];return t}function a(e){e=r(e||{}),e.whiteList=e.whiteList||o.whiteList,e.onAttr=e.onAttr||o.onAttr,e.onIgnoreAttr=e.onIgnoreAttr||o.onIgnoreAttr,e.safeAttrValue=e.safeAttrValue||o.safeAttrValue,this.options=e}var o=n(51),s=n(112);n(52),a.prototype.process=function(e){if(e=e||\"\",!(e=e.toString()))return\"\";var t=this,n=t.options,r=n.whiteList,a=n.onAttr,o=n.onIgnoreAttr,l=n.safeAttrValue;return s(e,(function(e,t,n,s,c){var u=r[n],d=!1;if(!0===u?d=u:\"function\"==typeof u?d=u(s):u instanceof RegExp&&(d=u.test(s)),!0!==d&&(d=!1),s=l(n,s)){var p={position:t,sourcePosition:e,source:c,isWhite:d};if(d){var h=a(n,s,p);return i(h)?n+\":\"+s:h}h=o(n,s,p);return i(h)?void 0:h}}))},e.exports=a},function(e,t,n){function i(e,t){function n(){if(!a){var n=r.trim(e.slice(o,s)),i=n.indexOf(\":\");if(-1!==i){var c=r.trim(n.slice(0,i)),u=r.trim(n.slice(i+1));if(c){var d=t(o,l.length,c,u,n);d&&(l+=d+\"; \")}}}o=s+1}e=r.trimRight(e),\";\"!==e[e.length-1]&&(e+=\";\");for(var i=e.length,a=!1,o=0,s=0,l=\"\";s<i;s++){var c=e[s];if(\"/\"===c&&\"*\"===e[s+1]){var u=e.indexOf(\"*/\",s+2);if(-1===u)break;s=u+1,o=s+1,a=!1}else\"(\"===c?a=!0:\")\"===c?a=!1:\";\"===c?a||n():\"\\n\"===c&&n()}return r.trim(l)}var r=n(52);e.exports=i},function(e,t){e.exports={Aacute:\"Á\",aacute:\"á\",Abreve:\"Ă\",abreve:\"ă\",ac:\"∾\",acd:\"∿\",acE:\"∾̳\",Acirc:\"Â\",acirc:\"â\",acute:\"´\",Acy:\"А\",acy:\"а\",AElig:\"Æ\",aelig:\"æ\",af:\"⁡\",Afr:\"𝔄\",afr:\"𝔞\",Agrave:\"À\",agrave:\"à\",alefsym:\"ℵ\",aleph:\"ℵ\",Alpha:\"Α\",alpha:\"α\",Amacr:\"Ā\",amacr:\"ā\",amalg:\"⨿\",amp:\"&\",AMP:\"&\",andand:\"⩕\",And:\"⩓\",and:\"∧\",andd:\"⩜\",andslope:\"⩘\",andv:\"⩚\",ang:\"∠\",ange:\"⦤\",angle:\"∠\",angmsdaa:\"⦨\",angmsdab:\"⦩\",angmsdac:\"⦪\",angmsdad:\"⦫\",angmsdae:\"⦬\",angmsdaf:\"⦭\",angmsdag:\"⦮\",angmsdah:\"⦯\",angmsd:\"∡\",angrt:\"∟\",angrtvb:\"⊾\",angrtvbd:\"⦝\",angsph:\"∢\",angst:\"Å\",angzarr:\"⍼\",Aogon:\"Ą\",aogon:\"ą\",Aopf:\"𝔸\",aopf:\"𝕒\",apacir:\"⩯\",ap:\"≈\",apE:\"⩰\",ape:\"≊\",apid:\"≋\",apos:\"'\",ApplyFunction:\"⁡\",approx:\"≈\",approxeq:\"≊\",Aring:\"Å\",aring:\"å\",Ascr:\"𝒜\",ascr:\"𝒶\",Assign:\"≔\",ast:\"*\",asymp:\"≈\",asympeq:\"≍\",Atilde:\"Ã\",atilde:\"ã\",Auml:\"Ä\",auml:\"ä\",awconint:\"∳\",awint:\"⨑\",backcong:\"≌\",backepsilon:\"϶\",backprime:\"‵\",backsim:\"∽\",backsimeq:\"⋍\",Backslash:\"∖\",Barv:\"⫧\",barvee:\"⊽\",barwed:\"⌅\",Barwed:\"⌆\",barwedge:\"⌅\",bbrk:\"⎵\",bbrktbrk:\"⎶\",bcong:\"≌\",Bcy:\"Б\",bcy:\"б\",bdquo:\"„\",becaus:\"∵\",because:\"∵\",Because:\"∵\",bemptyv:\"⦰\",bepsi:\"϶\",bernou:\"ℬ\",Bernoullis:\"ℬ\",Beta:\"Β\",beta:\"β\",beth:\"ℶ\",between:\"≬\",Bfr:\"𝔅\",bfr:\"𝔟\",bigcap:\"⋂\",bigcirc:\"◯\",bigcup:\"⋃\",bigodot:\"⨀\",bigoplus:\"⨁\",bigotimes:\"⨂\",bigsqcup:\"⨆\",bigstar:\"★\",bigtriangledown:\"▽\",bigtriangleup:\"△\",biguplus:\"⨄\",bigvee:\"⋁\",bigwedge:\"⋀\",bkarow:\"⤍\",blacklozenge:\"⧫\",blacksquare:\"▪\",blacktriangle:\"▴\",blacktriangledown:\"▾\",blacktriangleleft:\"◂\",blacktriangleright:\"▸\",blank:\"␣\",blk12:\"▒\",blk14:\"░\",blk34:\"▓\",block:\"█\",bne:\"=⃥\",bnequiv:\"≡⃥\",bNot:\"⫭\",bnot:\"⌐\",Bopf:\"𝔹\",bopf:\"𝕓\",bot:\"⊥\",bottom:\"⊥\",bowtie:\"⋈\",boxbox:\"⧉\",boxdl:\"┐\",boxdL:\"╕\",boxDl:\"╖\",boxDL:\"╗\",boxdr:\"┌\",boxdR:\"╒\",boxDr:\"╓\",boxDR:\"╔\",boxh:\"─\",boxH:\"═\",boxhd:\"┬\",boxHd:\"╤\",boxhD:\"╥\",boxHD:\"╦\",boxhu:\"┴\",boxHu:\"╧\",boxhU:\"╨\",boxHU:\"╩\",boxminus:\"⊟\",boxplus:\"⊞\",boxtimes:\"⊠\",boxul:\"┘\",boxuL:\"╛\",boxUl:\"╜\",boxUL:\"╝\",boxur:\"└\",boxuR:\"╘\",boxUr:\"╙\",boxUR:\"╚\",boxv:\"│\",boxV:\"║\",boxvh:\"┼\",boxvH:\"╪\",boxVh:\"╫\",boxVH:\"╬\",boxvl:\"┤\",boxvL:\"╡\",boxVl:\"╢\",boxVL:\"╣\",boxvr:\"├\",boxvR:\"╞\",boxVr:\"╟\",boxVR:\"╠\",bprime:\"‵\",breve:\"˘\",Breve:\"˘\",brvbar:\"¦\",bscr:\"𝒷\",Bscr:\"ℬ\",bsemi:\"⁏\",bsim:\"∽\",bsime:\"⋍\",bsolb:\"⧅\",bsol:\"\\\\\",bsolhsub:\"⟈\",bull:\"•\",bullet:\"•\",bump:\"≎\",bumpE:\"⪮\",bumpe:\"≏\",Bumpeq:\"≎\",bumpeq:\"≏\",Cacute:\"Ć\",cacute:\"ć\",capand:\"⩄\",capbrcup:\"⩉\",capcap:\"⩋\",cap:\"∩\",Cap:\"⋒\",capcup:\"⩇\",capdot:\"⩀\",CapitalDifferentialD:\"ⅅ\",caps:\"∩︀\",caret:\"⁁\",caron:\"ˇ\",Cayleys:\"ℭ\",ccaps:\"⩍\",Ccaron:\"Č\",ccaron:\"č\",Ccedil:\"Ç\",ccedil:\"ç\",Ccirc:\"Ĉ\",ccirc:\"ĉ\",Cconint:\"∰\",ccups:\"⩌\",ccupssm:\"⩐\",Cdot:\"Ċ\",cdot:\"ċ\",cedil:\"¸\",Cedilla:\"¸\",cemptyv:\"⦲\",cent:\"¢\",centerdot:\"·\",CenterDot:\"·\",cfr:\"𝔠\",Cfr:\"ℭ\",CHcy:\"Ч\",chcy:\"ч\",check:\"✓\",checkmark:\"✓\",Chi:\"Χ\",chi:\"χ\",circ:\"ˆ\",circeq:\"≗\",circlearrowleft:\"↺\",circlearrowright:\"↻\",circledast:\"⊛\",circledcirc:\"⊚\",circleddash:\"⊝\",CircleDot:\"⊙\",circledR:\"®\",circledS:\"Ⓢ\",CircleMinus:\"⊖\",CirclePlus:\"⊕\",CircleTimes:\"⊗\",cir:\"○\",cirE:\"⧃\",cire:\"≗\",cirfnint:\"⨐\",cirmid:\"⫯\",cirscir:\"⧂\",ClockwiseContourIntegral:\"∲\",CloseCurlyDoubleQuote:\"”\",CloseCurlyQuote:\"’\",clubs:\"♣\",clubsuit:\"♣\",colon:\":\",Colon:\"∷\",Colone:\"⩴\",colone:\"≔\",coloneq:\"≔\",comma:\",\",commat:\"@\",comp:\"∁\",compfn:\"∘\",complement:\"∁\",complexes:\"ℂ\",cong:\"≅\",congdot:\"⩭\",Congruent:\"≡\",conint:\"∮\",Conint:\"∯\",ContourIntegral:\"∮\",copf:\"𝕔\",Copf:\"ℂ\",coprod:\"∐\",Coproduct:\"∐\",copy:\"©\",COPY:\"©\",copysr:\"℗\",CounterClockwiseContourIntegral:\"∳\",crarr:\"↵\",cross:\"✗\",Cross:\"⨯\",Cscr:\"𝒞\",cscr:\"𝒸\",csub:\"⫏\",csube:\"⫑\",csup:\"⫐\",csupe:\"⫒\",ctdot:\"⋯\",cudarrl:\"⤸\",cudarrr:\"⤵\",cuepr:\"⋞\",cuesc:\"⋟\",cularr:\"↶\",cularrp:\"⤽\",cupbrcap:\"⩈\",cupcap:\"⩆\",CupCap:\"≍\",cup:\"∪\",Cup:\"⋓\",cupcup:\"⩊\",cupdot:\"⊍\",cupor:\"⩅\",cups:\"∪︀\",curarr:\"↷\",curarrm:\"⤼\",curlyeqprec:\"⋞\",curlyeqsucc:\"⋟\",curlyvee:\"⋎\",curlywedge:\"⋏\",curren:\"¤\",curvearrowleft:\"↶\",curvearrowright:\"↷\",cuvee:\"⋎\",cuwed:\"⋏\",cwconint:\"∲\",cwint:\"∱\",cylcty:\"⌭\",dagger:\"†\",Dagger:\"‡\",daleth:\"ℸ\",darr:\"↓\",Darr:\"↡\",dArr:\"⇓\",dash:\"‐\",Dashv:\"⫤\",dashv:\"⊣\",dbkarow:\"⤏\",dblac:\"˝\",Dcaron:\"Ď\",dcaron:\"ď\",Dcy:\"Д\",dcy:\"д\",ddagger:\"‡\",ddarr:\"⇊\",DD:\"ⅅ\",dd:\"ⅆ\",DDotrahd:\"⤑\",ddotseq:\"⩷\",deg:\"°\",Del:\"∇\",Delta:\"Δ\",delta:\"δ\",demptyv:\"⦱\",dfisht:\"⥿\",Dfr:\"𝔇\",dfr:\"𝔡\",dHar:\"⥥\",dharl:\"⇃\",dharr:\"⇂\",DiacriticalAcute:\"´\",DiacriticalDot:\"˙\",DiacriticalDoubleAcute:\"˝\",DiacriticalGrave:\"`\",DiacriticalTilde:\"˜\",diam:\"⋄\",diamond:\"⋄\",Diamond:\"⋄\",diamondsuit:\"♦\",diams:\"♦\",die:\"¨\",DifferentialD:\"ⅆ\",digamma:\"ϝ\",disin:\"⋲\",div:\"÷\",divide:\"÷\",divideontimes:\"⋇\",divonx:\"⋇\",DJcy:\"Ђ\",djcy:\"ђ\",dlcorn:\"⌞\",dlcrop:\"⌍\",dollar:\"$\",Dopf:\"𝔻\",dopf:\"𝕕\",Dot:\"¨\",dot:\"˙\",DotDot:\"⃜\",doteq:\"≐\",doteqdot:\"≑\",DotEqual:\"≐\",dotminus:\"∸\",dotplus:\"∔\",dotsquare:\"⊡\",doublebarwedge:\"⌆\",DoubleContourIntegral:\"∯\",DoubleDot:\"¨\",DoubleDownArrow:\"⇓\",DoubleLeftArrow:\"⇐\",DoubleLeftRightArrow:\"⇔\",DoubleLeftTee:\"⫤\",DoubleLongLeftArrow:\"⟸\",DoubleLongLeftRightArrow:\"⟺\",DoubleLongRightArrow:\"⟹\",DoubleRightArrow:\"⇒\",DoubleRightTee:\"⊨\",DoubleUpArrow:\"⇑\",DoubleUpDownArrow:\"⇕\",DoubleVerticalBar:\"∥\",DownArrowBar:\"⤓\",downarrow:\"↓\",DownArrow:\"↓\",Downarrow:\"⇓\",DownArrowUpArrow:\"⇵\",DownBreve:\"̑\",downdownarrows:\"⇊\",downharpoonleft:\"⇃\",downharpoonright:\"⇂\",DownLeftRightVector:\"⥐\",DownLeftTeeVector:\"⥞\",DownLeftVectorBar:\"⥖\",DownLeftVector:\"↽\",DownRightTeeVector:\"⥟\",DownRightVectorBar:\"⥗\",DownRightVector:\"⇁\",DownTeeArrow:\"↧\",DownTee:\"⊤\",drbkarow:\"⤐\",drcorn:\"⌟\",drcrop:\"⌌\",Dscr:\"𝒟\",dscr:\"𝒹\",DScy:\"Ѕ\",dscy:\"ѕ\",dsol:\"⧶\",Dstrok:\"Đ\",dstrok:\"đ\",dtdot:\"⋱\",dtri:\"▿\",dtrif:\"▾\",duarr:\"⇵\",duhar:\"⥯\",dwangle:\"⦦\",DZcy:\"Џ\",dzcy:\"џ\",dzigrarr:\"⟿\",Eacute:\"É\",eacute:\"é\",easter:\"⩮\",Ecaron:\"Ě\",ecaron:\"ě\",Ecirc:\"Ê\",ecirc:\"ê\",ecir:\"≖\",ecolon:\"≕\",Ecy:\"Э\",ecy:\"э\",eDDot:\"⩷\",Edot:\"Ė\",edot:\"ė\",eDot:\"≑\",ee:\"ⅇ\",efDot:\"≒\",Efr:\"𝔈\",efr:\"𝔢\",eg:\"⪚\",Egrave:\"È\",egrave:\"è\",egs:\"⪖\",egsdot:\"⪘\",el:\"⪙\",Element:\"∈\",elinters:\"⏧\",ell:\"ℓ\",els:\"⪕\",elsdot:\"⪗\",Emacr:\"Ē\",emacr:\"ē\",empty:\"∅\",emptyset:\"∅\",EmptySmallSquare:\"◻\",emptyv:\"∅\",EmptyVerySmallSquare:\"▫\",emsp13:\" \",emsp14:\" \",emsp:\" \",ENG:\"Ŋ\",eng:\"ŋ\",ensp:\" \",Eogon:\"Ę\",eogon:\"ę\",Eopf:\"𝔼\",eopf:\"𝕖\",epar:\"⋕\",eparsl:\"⧣\",eplus:\"⩱\",epsi:\"ε\",Epsilon:\"Ε\",epsilon:\"ε\",epsiv:\"ϵ\",eqcirc:\"≖\",eqcolon:\"≕\",eqsim:\"≂\",eqslantgtr:\"⪖\",eqslantless:\"⪕\",Equal:\"⩵\",equals:\"=\",EqualTilde:\"≂\",equest:\"≟\",Equilibrium:\"⇌\",equiv:\"≡\",equivDD:\"⩸\",eqvparsl:\"⧥\",erarr:\"⥱\",erDot:\"≓\",escr:\"ℯ\",Escr:\"ℰ\",esdot:\"≐\",Esim:\"⩳\",esim:\"≂\",Eta:\"Η\",eta:\"η\",ETH:\"Ð\",eth:\"ð\",Euml:\"Ë\",euml:\"ë\",euro:\"€\",excl:\"!\",exist:\"∃\",Exists:\"∃\",expectation:\"ℰ\",exponentiale:\"ⅇ\",ExponentialE:\"ⅇ\",fallingdotseq:\"≒\",Fcy:\"Ф\",fcy:\"ф\",female:\"♀\",ffilig:\"ﬃ\",fflig:\"ﬀ\",ffllig:\"ﬄ\",Ffr:\"𝔉\",ffr:\"𝔣\",filig:\"ﬁ\",FilledSmallSquare:\"◼\",FilledVerySmallSquare:\"▪\",fjlig:\"fj\",flat:\"♭\",fllig:\"ﬂ\",fltns:\"▱\",fnof:\"ƒ\",Fopf:\"𝔽\",fopf:\"𝕗\",forall:\"∀\",ForAll:\"∀\",fork:\"⋔\",forkv:\"⫙\",Fouriertrf:\"ℱ\",fpartint:\"⨍\",frac12:\"½\",frac13:\"⅓\",frac14:\"¼\",frac15:\"⅕\",frac16:\"⅙\",frac18:\"⅛\",frac23:\"⅔\",frac25:\"⅖\",frac34:\"¾\",frac35:\"⅗\",frac38:\"⅜\",frac45:\"⅘\",frac56:\"⅚\",frac58:\"⅝\",frac78:\"⅞\",frasl:\"⁄\",frown:\"⌢\",fscr:\"𝒻\",Fscr:\"ℱ\",gacute:\"ǵ\",Gamma:\"Γ\",gamma:\"γ\",Gammad:\"Ϝ\",gammad:\"ϝ\",gap:\"⪆\",Gbreve:\"Ğ\",gbreve:\"ğ\",Gcedil:\"Ģ\",Gcirc:\"Ĝ\",gcirc:\"ĝ\",Gcy:\"Г\",gcy:\"г\",Gdot:\"Ġ\",gdot:\"ġ\",ge:\"≥\",gE:\"≧\",gEl:\"⪌\",gel:\"⋛\",geq:\"≥\",geqq:\"≧\",geqslant:\"⩾\",gescc:\"⪩\",ges:\"⩾\",gesdot:\"⪀\",gesdoto:\"⪂\",gesdotol:\"⪄\",gesl:\"⋛︀\",gesles:\"⪔\",Gfr:\"𝔊\",gfr:\"𝔤\",gg:\"≫\",Gg:\"⋙\",ggg:\"⋙\",gimel:\"ℷ\",GJcy:\"Ѓ\",gjcy:\"ѓ\",gla:\"⪥\",gl:\"≷\",glE:\"⪒\",glj:\"⪤\",gnap:\"⪊\",gnapprox:\"⪊\",gne:\"⪈\",gnE:\"≩\",gneq:\"⪈\",gneqq:\"≩\",gnsim:\"⋧\",Gopf:\"𝔾\",gopf:\"𝕘\",grave:\"`\",GreaterEqual:\"≥\",GreaterEqualLess:\"⋛\",GreaterFullEqual:\"≧\",GreaterGreater:\"⪢\",GreaterLess:\"≷\",GreaterSlantEqual:\"⩾\",GreaterTilde:\"≳\",Gscr:\"𝒢\",gscr:\"ℊ\",gsim:\"≳\",gsime:\"⪎\",gsiml:\"⪐\",gtcc:\"⪧\",gtcir:\"⩺\",gt:\">\",GT:\">\",Gt:\"≫\",gtdot:\"⋗\",gtlPar:\"⦕\",gtquest:\"⩼\",gtrapprox:\"⪆\",gtrarr:\"⥸\",gtrdot:\"⋗\",gtreqless:\"⋛\",gtreqqless:\"⪌\",gtrless:\"≷\",gtrsim:\"≳\",gvertneqq:\"≩︀\",gvnE:\"≩︀\",Hacek:\"ˇ\",hairsp:\" \",half:\"½\",hamilt:\"ℋ\",HARDcy:\"Ъ\",hardcy:\"ъ\",harrcir:\"⥈\",harr:\"↔\",hArr:\"⇔\",harrw:\"↭\",Hat:\"^\",hbar:\"ℏ\",Hcirc:\"Ĥ\",hcirc:\"ĥ\",hearts:\"♥\",heartsuit:\"♥\",hellip:\"…\",hercon:\"⊹\",hfr:\"𝔥\",Hfr:\"ℌ\",HilbertSpace:\"ℋ\",hksearow:\"⤥\",hkswarow:\"⤦\",hoarr:\"⇿\",homtht:\"∻\",hookleftarrow:\"↩\",hookrightarrow:\"↪\",hopf:\"𝕙\",Hopf:\"ℍ\",horbar:\"―\",HorizontalLine:\"─\",hscr:\"𝒽\",Hscr:\"ℋ\",hslash:\"ℏ\",Hstrok:\"Ħ\",hstrok:\"ħ\",HumpDownHump:\"≎\",HumpEqual:\"≏\",hybull:\"⁃\",hyphen:\"‐\",Iacute:\"Í\",iacute:\"í\",ic:\"⁣\",Icirc:\"Î\",icirc:\"î\",Icy:\"И\",icy:\"и\",Idot:\"İ\",IEcy:\"Е\",iecy:\"е\",iexcl:\"¡\",iff:\"⇔\",ifr:\"𝔦\",Ifr:\"ℑ\",Igrave:\"Ì\",igrave:\"ì\",ii:\"ⅈ\",iiiint:\"⨌\",iiint:\"∭\",iinfin:\"⧜\",iiota:\"℩\",IJlig:\"Ĳ\",ijlig:\"ĳ\",Imacr:\"Ī\",imacr:\"ī\",image:\"ℑ\",ImaginaryI:\"ⅈ\",imagline:\"ℐ\",imagpart:\"ℑ\",imath:\"ı\",Im:\"ℑ\",imof:\"⊷\",imped:\"Ƶ\",Implies:\"⇒\",incare:\"℅\",in:\"∈\",infin:\"∞\",infintie:\"⧝\",inodot:\"ı\",intcal:\"⊺\",int:\"∫\",Int:\"∬\",integers:\"ℤ\",Integral:\"∫\",intercal:\"⊺\",Intersection:\"⋂\",intlarhk:\"⨗\",intprod:\"⨼\",InvisibleComma:\"⁣\",InvisibleTimes:\"⁢\",IOcy:\"Ё\",iocy:\"ё\",Iogon:\"Į\",iogon:\"į\",Iopf:\"𝕀\",iopf:\"𝕚\",Iota:\"Ι\",iota:\"ι\",iprod:\"⨼\",iquest:\"¿\",iscr:\"𝒾\",Iscr:\"ℐ\",isin:\"∈\",isindot:\"⋵\",isinE:\"⋹\",isins:\"⋴\",isinsv:\"⋳\",isinv:\"∈\",it:\"⁢\",Itilde:\"Ĩ\",itilde:\"ĩ\",Iukcy:\"І\",iukcy:\"і\",Iuml:\"Ï\",iuml:\"ï\",Jcirc:\"Ĵ\",jcirc:\"ĵ\",Jcy:\"Й\",jcy:\"й\",Jfr:\"𝔍\",jfr:\"𝔧\",jmath:\"ȷ\",Jopf:\"𝕁\",jopf:\"𝕛\",Jscr:\"𝒥\",jscr:\"𝒿\",Jsercy:\"Ј\",jsercy:\"ј\",Jukcy:\"Є\",jukcy:\"є\",Kappa:\"Κ\",kappa:\"κ\",kappav:\"ϰ\",Kcedil:\"Ķ\",kcedil:\"ķ\",Kcy:\"К\",kcy:\"к\",Kfr:\"𝔎\",kfr:\"𝔨\",kgreen:\"ĸ\",KHcy:\"Х\",khcy:\"х\",KJcy:\"Ќ\",kjcy:\"ќ\",Kopf:\"𝕂\",kopf:\"𝕜\",Kscr:\"𝒦\",kscr:\"𝓀\",lAarr:\"⇚\",Lacute:\"Ĺ\",lacute:\"ĺ\",laemptyv:\"⦴\",lagran:\"ℒ\",Lambda:\"Λ\",lambda:\"λ\",lang:\"⟨\",Lang:\"⟪\",langd:\"⦑\",langle:\"⟨\",lap:\"⪅\",Laplacetrf:\"ℒ\",laquo:\"«\",larrb:\"⇤\",larrbfs:\"⤟\",larr:\"←\",Larr:\"↞\",lArr:\"⇐\",larrfs:\"⤝\",larrhk:\"↩\",larrlp:\"↫\",larrpl:\"⤹\",larrsim:\"⥳\",larrtl:\"↢\",latail:\"⤙\",lAtail:\"⤛\",lat:\"⪫\",late:\"⪭\",lates:\"⪭︀\",lbarr:\"⤌\",lBarr:\"⤎\",lbbrk:\"❲\",lbrace:\"{\",lbrack:\"[\",lbrke:\"⦋\",lbrksld:\"⦏\",lbrkslu:\"⦍\",Lcaron:\"Ľ\",lcaron:\"ľ\",Lcedil:\"Ļ\",lcedil:\"ļ\",lceil:\"⌈\",lcub:\"{\",Lcy:\"Л\",lcy:\"л\",ldca:\"⤶\",ldquo:\"“\",ldquor:\"„\",ldrdhar:\"⥧\",ldrushar:\"⥋\",ldsh:\"↲\",le:\"≤\",lE:\"≦\",LeftAngleBracket:\"⟨\",LeftArrowBar:\"⇤\",leftarrow:\"←\",LeftArrow:\"←\",Leftarrow:\"⇐\",LeftArrowRightArrow:\"⇆\",leftarrowtail:\"↢\",LeftCeiling:\"⌈\",LeftDoubleBracket:\"⟦\",LeftDownTeeVector:\"⥡\",LeftDownVectorBar:\"⥙\",LeftDownVector:\"⇃\",LeftFloor:\"⌊\",leftharpoondown:\"↽\",leftharpoonup:\"↼\",leftleftarrows:\"⇇\",leftrightarrow:\"↔\",LeftRightArrow:\"↔\",Leftrightarrow:\"⇔\",leftrightarrows:\"⇆\",leftrightharpoons:\"⇋\",leftrightsquigarrow:\"↭\",LeftRightVector:\"⥎\",LeftTeeArrow:\"↤\",LeftTee:\"⊣\",LeftTeeVector:\"⥚\",leftthreetimes:\"⋋\",LeftTriangleBar:\"⧏\",LeftTriangle:\"⊲\",LeftTriangleEqual:\"⊴\",LeftUpDownVector:\"⥑\",LeftUpTeeVector:\"⥠\",LeftUpVectorBar:\"⥘\",LeftUpVector:\"↿\",LeftVectorBar:\"⥒\",LeftVector:\"↼\",lEg:\"⪋\",leg:\"⋚\",leq:\"≤\",leqq:\"≦\",leqslant:\"⩽\",lescc:\"⪨\",les:\"⩽\",lesdot:\"⩿\",lesdoto:\"⪁\",lesdotor:\"⪃\",lesg:\"⋚︀\",lesges:\"⪓\",lessapprox:\"⪅\",lessdot:\"⋖\",lesseqgtr:\"⋚\",lesseqqgtr:\"⪋\",LessEqualGreater:\"⋚\",LessFullEqual:\"≦\",LessGreater:\"≶\",lessgtr:\"≶\",LessLess:\"⪡\",lesssim:\"≲\",LessSlantEqual:\"⩽\",LessTilde:\"≲\",lfisht:\"⥼\",lfloor:\"⌊\",Lfr:\"𝔏\",lfr:\"𝔩\",lg:\"≶\",lgE:\"⪑\",lHar:\"⥢\",lhard:\"↽\",lharu:\"↼\",lharul:\"⥪\",lhblk:\"▄\",LJcy:\"Љ\",ljcy:\"љ\",llarr:\"⇇\",ll:\"≪\",Ll:\"⋘\",llcorner:\"⌞\",Lleftarrow:\"⇚\",llhard:\"⥫\",lltri:\"◺\",Lmidot:\"Ŀ\",lmidot:\"ŀ\",lmoustache:\"⎰\",lmoust:\"⎰\",lnap:\"⪉\",lnapprox:\"⪉\",lne:\"⪇\",lnE:\"≨\",lneq:\"⪇\",lneqq:\"≨\",lnsim:\"⋦\",loang:\"⟬\",loarr:\"⇽\",lobrk:\"⟦\",longleftarrow:\"⟵\",LongLeftArrow:\"⟵\",Longleftarrow:\"⟸\",longleftrightarrow:\"⟷\",LongLeftRightArrow:\"⟷\",Longleftrightarrow:\"⟺\",longmapsto:\"⟼\",longrightarrow:\"⟶\",LongRightArrow:\"⟶\",Longrightarrow:\"⟹\",looparrowleft:\"↫\",looparrowright:\"↬\",lopar:\"⦅\",Lopf:\"𝕃\",lopf:\"𝕝\",loplus:\"⨭\",lotimes:\"⨴\",lowast:\"∗\",lowbar:\"_\",LowerLeftArrow:\"↙\",LowerRightArrow:\"↘\",loz:\"◊\",lozenge:\"◊\",lozf:\"⧫\",lpar:\"(\",lparlt:\"⦓\",lrarr:\"⇆\",lrcorner:\"⌟\",lrhar:\"⇋\",lrhard:\"⥭\",lrm:\"‎\",lrtri:\"⊿\",lsaquo:\"‹\",lscr:\"𝓁\",Lscr:\"ℒ\",lsh:\"↰\",Lsh:\"↰\",lsim:\"≲\",lsime:\"⪍\",lsimg:\"⪏\",lsqb:\"[\",lsquo:\"‘\",lsquor:\"‚\",Lstrok:\"Ł\",lstrok:\"ł\",ltcc:\"⪦\",ltcir:\"⩹\",lt:\"<\",LT:\"<\",Lt:\"≪\",ltdot:\"⋖\",lthree:\"⋋\",ltimes:\"⋉\",ltlarr:\"⥶\",ltquest:\"⩻\",ltri:\"◃\",ltrie:\"⊴\",ltrif:\"◂\",ltrPar:\"⦖\",lurdshar:\"⥊\",luruhar:\"⥦\",lvertneqq:\"≨︀\",lvnE:\"≨︀\",macr:\"¯\",male:\"♂\",malt:\"✠\",maltese:\"✠\",Map:\"⤅\",map:\"↦\",mapsto:\"↦\",mapstodown:\"↧\",mapstoleft:\"↤\",mapstoup:\"↥\",marker:\"▮\",mcomma:\"⨩\",Mcy:\"М\",mcy:\"м\",mdash:\"—\",mDDot:\"∺\",measuredangle:\"∡\",MediumSpace:\" \",Mellintrf:\"ℳ\",Mfr:\"𝔐\",mfr:\"𝔪\",mho:\"℧\",micro:\"µ\",midast:\"*\",midcir:\"⫰\",mid:\"∣\",middot:\"·\",minusb:\"⊟\",minus:\"−\",minusd:\"∸\",minusdu:\"⨪\",MinusPlus:\"∓\",mlcp:\"⫛\",mldr:\"…\",mnplus:\"∓\",models:\"⊧\",Mopf:\"𝕄\",mopf:\"𝕞\",mp:\"∓\",mscr:\"𝓂\",Mscr:\"ℳ\",mstpos:\"∾\",Mu:\"Μ\",mu:\"μ\",multimap:\"⊸\",mumap:\"⊸\",nabla:\"∇\",Nacute:\"Ń\",nacute:\"ń\",nang:\"∠⃒\",nap:\"≉\",napE:\"⩰̸\",napid:\"≋̸\",napos:\"ŉ\",napprox:\"≉\",natural:\"♮\",naturals:\"ℕ\",natur:\"♮\",nbsp:\" \",nbump:\"≎̸\",nbumpe:\"≏̸\",ncap:\"⩃\",Ncaron:\"Ň\",ncaron:\"ň\",Ncedil:\"Ņ\",ncedil:\"ņ\",ncong:\"≇\",ncongdot:\"⩭̸\",ncup:\"⩂\",Ncy:\"Н\",ncy:\"н\",ndash:\"–\",nearhk:\"⤤\",nearr:\"↗\",neArr:\"⇗\",nearrow:\"↗\",ne:\"≠\",nedot:\"≐̸\",NegativeMediumSpace:\"​\",NegativeThickSpace:\"​\",NegativeThinSpace:\"​\",NegativeVeryThinSpace:\"​\",nequiv:\"≢\",nesear:\"⤨\",nesim:\"≂̸\",NestedGreaterGreater:\"≫\",NestedLessLess:\"≪\",NewLine:\"\\n\",nexist:\"∄\",nexists:\"∄\",Nfr:\"𝔑\",nfr:\"𝔫\",ngE:\"≧̸\",nge:\"≱\",ngeq:\"≱\",ngeqq:\"≧̸\",ngeqslant:\"⩾̸\",nges:\"⩾̸\",nGg:\"⋙̸\",ngsim:\"≵\",nGt:\"≫⃒\",ngt:\"≯\",ngtr:\"≯\",nGtv:\"≫̸\",nharr:\"↮\",nhArr:\"⇎\",nhpar:\"⫲\",ni:\"∋\",nis:\"⋼\",nisd:\"⋺\",niv:\"∋\",NJcy:\"Њ\",njcy:\"њ\",nlarr:\"↚\",nlArr:\"⇍\",nldr:\"‥\",nlE:\"≦̸\",nle:\"≰\",nleftarrow:\"↚\",nLeftarrow:\"⇍\",nleftrightarrow:\"↮\",nLeftrightarrow:\"⇎\",nleq:\"≰\",nleqq:\"≦̸\",nleqslant:\"⩽̸\",nles:\"⩽̸\",nless:\"≮\",nLl:\"⋘̸\",nlsim:\"≴\",nLt:\"≪⃒\",nlt:\"≮\",nltri:\"⋪\",nltrie:\"⋬\",nLtv:\"≪̸\",nmid:\"∤\",NoBreak:\"⁠\",NonBreakingSpace:\" \",nopf:\"𝕟\",Nopf:\"ℕ\",Not:\"⫬\",not:\"¬\",NotCongruent:\"≢\",NotCupCap:\"≭\",NotDoubleVerticalBar:\"∦\",NotElement:\"∉\",NotEqual:\"≠\",NotEqualTilde:\"≂̸\",NotExists:\"∄\",NotGreater:\"≯\",NotGreaterEqual:\"≱\",NotGreaterFullEqual:\"≧̸\",NotGreaterGreater:\"≫̸\",NotGreaterLess:\"≹\",NotGreaterSlantEqual:\"⩾̸\",NotGreaterTilde:\"≵\",NotHumpDownHump:\"≎̸\",NotHumpEqual:\"≏̸\",notin:\"∉\",notindot:\"⋵̸\",notinE:\"⋹̸\",notinva:\"∉\",notinvb:\"⋷\",notinvc:\"⋶\",NotLeftTriangleBar:\"⧏̸\",NotLeftTriangle:\"⋪\",NotLeftTriangleEqual:\"⋬\",NotLess:\"≮\",NotLessEqual:\"≰\",NotLessGreater:\"≸\",NotLessLess:\"≪̸\",NotLessSlantEqual:\"⩽̸\",NotLessTilde:\"≴\",NotNestedGreaterGreater:\"⪢̸\",NotNestedLessLess:\"⪡̸\",notni:\"∌\",notniva:\"∌\",notnivb:\"⋾\",notnivc:\"⋽\",NotPrecedes:\"⊀\",NotPrecedesEqual:\"⪯̸\",NotPrecedesSlantEqual:\"⋠\",NotReverseElement:\"∌\",NotRightTriangleBar:\"⧐̸\",NotRightTriangle:\"⋫\",NotRightTriangleEqual:\"⋭\",NotSquareSubset:\"⊏̸\",NotSquareSubsetEqual:\"⋢\",NotSquareSuperset:\"⊐̸\",NotSquareSupersetEqual:\"⋣\",NotSubset:\"⊂⃒\",NotSubsetEqual:\"⊈\",NotSucceeds:\"⊁\",NotSucceedsEqual:\"⪰̸\",NotSucceedsSlantEqual:\"⋡\",NotSucceedsTilde:\"≿̸\",NotSuperset:\"⊃⃒\",NotSupersetEqual:\"⊉\",NotTilde:\"≁\",NotTildeEqual:\"≄\",NotTildeFullEqual:\"≇\",NotTildeTilde:\"≉\",NotVerticalBar:\"∤\",nparallel:\"∦\",npar:\"∦\",nparsl:\"⫽⃥\",npart:\"∂̸\",npolint:\"⨔\",npr:\"⊀\",nprcue:\"⋠\",nprec:\"⊀\",npreceq:\"⪯̸\",npre:\"⪯̸\",nrarrc:\"⤳̸\",nrarr:\"↛\",nrArr:\"⇏\",nrarrw:\"↝̸\",nrightarrow:\"↛\",nRightarrow:\"⇏\",nrtri:\"⋫\",nrtrie:\"⋭\",nsc:\"⊁\",nsccue:\"⋡\",nsce:\"⪰̸\",Nscr:\"𝒩\",nscr:\"𝓃\",nshortmid:\"∤\",nshortparallel:\"∦\",nsim:\"≁\",nsime:\"≄\",nsimeq:\"≄\",nsmid:\"∤\",nspar:\"∦\",nsqsube:\"⋢\",nsqsupe:\"⋣\",nsub:\"⊄\",nsubE:\"⫅̸\",nsube:\"⊈\",nsubset:\"⊂⃒\",nsubseteq:\"⊈\",nsubseteqq:\"⫅̸\",nsucc:\"⊁\",nsucceq:\"⪰̸\",nsup:\"⊅\",nsupE:\"⫆̸\",nsupe:\"⊉\",nsupset:\"⊃⃒\",nsupseteq:\"⊉\",nsupseteqq:\"⫆̸\",ntgl:\"≹\",Ntilde:\"Ñ\",ntilde:\"ñ\",ntlg:\"≸\",ntriangleleft:\"⋪\",ntrianglelefteq:\"⋬\",ntriangleright:\"⋫\",ntrianglerighteq:\"⋭\",Nu:\"Ν\",nu:\"ν\",num:\"#\",numero:\"№\",numsp:\" \",nvap:\"≍⃒\",nvdash:\"⊬\",nvDash:\"⊭\",nVdash:\"⊮\",nVDash:\"⊯\",nvge:\"≥⃒\",nvgt:\">⃒\",nvHarr:\"⤄\",nvinfin:\"⧞\",nvlArr:\"⤂\",nvle:\"≤⃒\",nvlt:\"<⃒\",nvltrie:\"⊴⃒\",nvrArr:\"⤃\",nvrtrie:\"⊵⃒\",nvsim:\"∼⃒\",nwarhk:\"⤣\",nwarr:\"↖\",nwArr:\"⇖\",nwarrow:\"↖\",nwnear:\"⤧\",Oacute:\"Ó\",oacute:\"ó\",oast:\"⊛\",Ocirc:\"Ô\",ocirc:\"ô\",ocir:\"⊚\",Ocy:\"О\",ocy:\"о\",odash:\"⊝\",Odblac:\"Ő\",odblac:\"ő\",odiv:\"⨸\",odot:\"⊙\",odsold:\"⦼\",OElig:\"Œ\",oelig:\"œ\",ofcir:\"⦿\",Ofr:\"𝔒\",ofr:\"𝔬\",ogon:\"˛\",Ograve:\"Ò\",ograve:\"ò\",ogt:\"⧁\",ohbar:\"⦵\",ohm:\"Ω\",oint:\"∮\",olarr:\"↺\",olcir:\"⦾\",olcross:\"⦻\",oline:\"‾\",olt:\"⧀\",Omacr:\"Ō\",omacr:\"ō\",Omega:\"Ω\",omega:\"ω\",Omicron:\"Ο\",omicron:\"ο\",omid:\"⦶\",ominus:\"⊖\",Oopf:\"𝕆\",oopf:\"𝕠\",opar:\"⦷\",OpenCurlyDoubleQuote:\"“\",OpenCurlyQuote:\"‘\",operp:\"⦹\",oplus:\"⊕\",orarr:\"↻\",Or:\"⩔\",or:\"∨\",ord:\"⩝\",order:\"ℴ\",orderof:\"ℴ\",ordf:\"ª\",ordm:\"º\",origof:\"⊶\",oror:\"⩖\",orslope:\"⩗\",orv:\"⩛\",oS:\"Ⓢ\",Oscr:\"𝒪\",oscr:\"ℴ\",Oslash:\"Ø\",oslash:\"ø\",osol:\"⊘\",Otilde:\"Õ\",otilde:\"õ\",otimesas:\"⨶\",Otimes:\"⨷\",otimes:\"⊗\",Ouml:\"Ö\",ouml:\"ö\",ovbar:\"⌽\",OverBar:\"‾\",OverBrace:\"⏞\",OverBracket:\"⎴\",OverParenthesis:\"⏜\",para:\"¶\",parallel:\"∥\",par:\"∥\",parsim:\"⫳\",parsl:\"⫽\",part:\"∂\",PartialD:\"∂\",Pcy:\"П\",pcy:\"п\",percnt:\"%\",period:\".\",permil:\"‰\",perp:\"⊥\",pertenk:\"‱\",Pfr:\"𝔓\",pfr:\"𝔭\",Phi:\"Φ\",phi:\"φ\",phiv:\"ϕ\",phmmat:\"ℳ\",phone:\"☎\",Pi:\"Π\",pi:\"π\",pitchfork:\"⋔\",piv:\"ϖ\",planck:\"ℏ\",planckh:\"ℎ\",plankv:\"ℏ\",plusacir:\"⨣\",plusb:\"⊞\",pluscir:\"⨢\",plus:\"+\",plusdo:\"∔\",plusdu:\"⨥\",pluse:\"⩲\",PlusMinus:\"±\",plusmn:\"±\",plussim:\"⨦\",plustwo:\"⨧\",pm:\"±\",Poincareplane:\"ℌ\",pointint:\"⨕\",popf:\"𝕡\",Popf:\"ℙ\",pound:\"£\",prap:\"⪷\",Pr:\"⪻\",pr:\"≺\",prcue:\"≼\",precapprox:\"⪷\",prec:\"≺\",preccurlyeq:\"≼\",Precedes:\"≺\",PrecedesEqual:\"⪯\",PrecedesSlantEqual:\"≼\",PrecedesTilde:\"≾\",preceq:\"⪯\",precnapprox:\"⪹\",precneqq:\"⪵\",precnsim:\"⋨\",pre:\"⪯\",prE:\"⪳\",precsim:\"≾\",prime:\"′\",Prime:\"″\",primes:\"ℙ\",prnap:\"⪹\",prnE:\"⪵\",prnsim:\"⋨\",prod:\"∏\",Product:\"∏\",profalar:\"⌮\",profline:\"⌒\",profsurf:\"⌓\",prop:\"∝\",Proportional:\"∝\",Proportion:\"∷\",propto:\"∝\",prsim:\"≾\",prurel:\"⊰\",Pscr:\"𝒫\",pscr:\"𝓅\",Psi:\"Ψ\",psi:\"ψ\",puncsp:\" \",Qfr:\"𝔔\",qfr:\"𝔮\",qint:\"⨌\",qopf:\"𝕢\",Qopf:\"ℚ\",qprime:\"⁗\",Qscr:\"𝒬\",qscr:\"𝓆\",quaternions:\"ℍ\",quatint:\"⨖\",quest:\"?\",questeq:\"≟\",quot:'\"',QUOT:'\"',rAarr:\"⇛\",race:\"∽̱\",Racute:\"Ŕ\",racute:\"ŕ\",radic:\"√\",raemptyv:\"⦳\",rang:\"⟩\",Rang:\"⟫\",rangd:\"⦒\",range:\"⦥\",rangle:\"⟩\",raquo:\"»\",rarrap:\"⥵\",rarrb:\"⇥\",rarrbfs:\"⤠\",rarrc:\"⤳\",rarr:\"→\",Rarr:\"↠\",rArr:\"⇒\",rarrfs:\"⤞\",rarrhk:\"↪\",rarrlp:\"↬\",rarrpl:\"⥅\",rarrsim:\"⥴\",Rarrtl:\"⤖\",rarrtl:\"↣\",rarrw:\"↝\",ratail:\"⤚\",rAtail:\"⤜\",ratio:\"∶\",rationals:\"ℚ\",rbarr:\"⤍\",rBarr:\"⤏\",RBarr:\"⤐\",rbbrk:\"❳\",rbrace:\"}\",rbrack:\"]\",rbrke:\"⦌\",rbrksld:\"⦎\",rbrkslu:\"⦐\",Rcaron:\"Ř\",rcaron:\"ř\",Rcedil:\"Ŗ\",rcedil:\"ŗ\",rceil:\"⌉\",rcub:\"}\",Rcy:\"Р\",rcy:\"р\",rdca:\"⤷\",rdldhar:\"⥩\",rdquo:\"”\",rdquor:\"”\",rdsh:\"↳\",real:\"ℜ\",realine:\"ℛ\",realpart:\"ℜ\",reals:\"ℝ\",Re:\"ℜ\",rect:\"▭\",reg:\"®\",REG:\"®\",ReverseElement:\"∋\",ReverseEquilibrium:\"⇋\",ReverseUpEquilibrium:\"⥯\",rfisht:\"⥽\",rfloor:\"⌋\",rfr:\"𝔯\",Rfr:\"ℜ\",rHar:\"⥤\",rhard:\"⇁\",rharu:\"⇀\",rharul:\"⥬\",Rho:\"Ρ\",rho:\"ρ\",rhov:\"ϱ\",RightAngleBracket:\"⟩\",RightArrowBar:\"⇥\",rightarrow:\"→\",RightArrow:\"→\",Rightarrow:\"⇒\",RightArrowLeftArrow:\"⇄\",rightarrowtail:\"↣\",RightCeiling:\"⌉\",RightDoubleBracket:\"⟧\",RightDownTeeVector:\"⥝\",RightDownVectorBar:\"⥕\",RightDownVector:\"⇂\",RightFloor:\"⌋\",rightharpoondown:\"⇁\",rightharpoonup:\"⇀\",rightleftarrows:\"⇄\",rightleftharpoons:\"⇌\",rightrightarrows:\"⇉\",rightsquigarrow:\"↝\",RightTeeArrow:\"↦\",RightTee:\"⊢\",RightTeeVector:\"⥛\",rightthreetimes:\"⋌\",RightTriangleBar:\"⧐\",RightTriangle:\"⊳\",RightTriangleEqual:\"⊵\",RightUpDownVector:\"⥏\",RightUpTeeVector:\"⥜\",RightUpVectorBar:\"⥔\",RightUpVector:\"↾\",RightVectorBar:\"⥓\",RightVector:\"⇀\",ring:\"˚\",risingdotseq:\"≓\",rlarr:\"⇄\",rlhar:\"⇌\",rlm:\"‏\",rmoustache:\"⎱\",rmoust:\"⎱\",rnmid:\"⫮\",roang:\"⟭\",roarr:\"⇾\",robrk:\"⟧\",ropar:\"⦆\",ropf:\"𝕣\",Ropf:\"ℝ\",roplus:\"⨮\",rotimes:\"⨵\",RoundImplies:\"⥰\",rpar:\")\",rpargt:\"⦔\",rppolint:\"⨒\",rrarr:\"⇉\",Rrightarrow:\"⇛\",rsaquo:\"›\",rscr:\"𝓇\",Rscr:\"ℛ\",rsh:\"↱\",Rsh:\"↱\",rsqb:\"]\",rsquo:\"’\",rsquor:\"’\",rthree:\"⋌\",rtimes:\"⋊\",rtri:\"▹\",rtrie:\"⊵\",rtrif:\"▸\",rtriltri:\"⧎\",RuleDelayed:\"⧴\",ruluhar:\"⥨\",rx:\"℞\",Sacute:\"Ś\",sacute:\"ś\",sbquo:\"‚\",scap:\"⪸\",Scaron:\"Š\",scaron:\"š\",Sc:\"⪼\",sc:\"≻\",sccue:\"≽\",sce:\"⪰\",scE:\"⪴\",Scedil:\"Ş\",scedil:\"ş\",Scirc:\"Ŝ\",scirc:\"ŝ\",scnap:\"⪺\",scnE:\"⪶\",scnsim:\"⋩\",scpolint:\"⨓\",scsim:\"≿\",Scy:\"С\",scy:\"с\",sdotb:\"⊡\",sdot:\"⋅\",sdote:\"⩦\",searhk:\"⤥\",searr:\"↘\",seArr:\"⇘\",searrow:\"↘\",sect:\"§\",semi:\";\",seswar:\"⤩\",setminus:\"∖\",setmn:\"∖\",sext:\"✶\",Sfr:\"𝔖\",sfr:\"𝔰\",sfrown:\"⌢\",sharp:\"♯\",SHCHcy:\"Щ\",shchcy:\"щ\",SHcy:\"Ш\",shcy:\"ш\",ShortDownArrow:\"↓\",ShortLeftArrow:\"←\",shortmid:\"∣\",shortparallel:\"∥\",ShortRightArrow:\"→\",ShortUpArrow:\"↑\",shy:\"­\",Sigma:\"Σ\",sigma:\"σ\",sigmaf:\"ς\",sigmav:\"ς\",sim:\"∼\",simdot:\"⩪\",sime:\"≃\",simeq:\"≃\",simg:\"⪞\",simgE:\"⪠\",siml:\"⪝\",simlE:\"⪟\",simne:\"≆\",simplus:\"⨤\",simrarr:\"⥲\",slarr:\"←\",SmallCircle:\"∘\",smallsetminus:\"∖\",smashp:\"⨳\",smeparsl:\"⧤\",smid:\"∣\",smile:\"⌣\",smt:\"⪪\",smte:\"⪬\",smtes:\"⪬︀\",SOFTcy:\"Ь\",softcy:\"ь\",solbar:\"⌿\",solb:\"⧄\",sol:\"/\",Sopf:\"𝕊\",sopf:\"𝕤\",spades:\"♠\",spadesuit:\"♠\",spar:\"∥\",sqcap:\"⊓\",sqcaps:\"⊓︀\",sqcup:\"⊔\",sqcups:\"⊔︀\",Sqrt:\"√\",sqsub:\"⊏\",sqsube:\"⊑\",sqsubset:\"⊏\",sqsubseteq:\"⊑\",sqsup:\"⊐\",sqsupe:\"⊒\",sqsupset:\"⊐\",sqsupseteq:\"⊒\",square:\"□\",Square:\"□\",SquareIntersection:\"⊓\",SquareSubset:\"⊏\",SquareSubsetEqual:\"⊑\",SquareSuperset:\"⊐\",SquareSupersetEqual:\"⊒\",SquareUnion:\"⊔\",squarf:\"▪\",squ:\"□\",squf:\"▪\",srarr:\"→\",Sscr:\"𝒮\",sscr:\"𝓈\",ssetmn:\"∖\",ssmile:\"⌣\",sstarf:\"⋆\",Star:\"⋆\",star:\"☆\",starf:\"★\",straightepsilon:\"ϵ\",straightphi:\"ϕ\",strns:\"¯\",sub:\"⊂\",Sub:\"⋐\",subdot:\"⪽\",subE:\"⫅\",sube:\"⊆\",subedot:\"⫃\",submult:\"⫁\",subnE:\"⫋\",subne:\"⊊\",subplus:\"⪿\",subrarr:\"⥹\",subset:\"⊂\",Subset:\"⋐\",subseteq:\"⊆\",subseteqq:\"⫅\",SubsetEqual:\"⊆\",subsetneq:\"⊊\",subsetneqq:\"⫋\",subsim:\"⫇\",subsub:\"⫕\",subsup:\"⫓\",succapprox:\"⪸\",succ:\"≻\",succcurlyeq:\"≽\",Succeeds:\"≻\",SucceedsEqual:\"⪰\",SucceedsSlantEqual:\"≽\",SucceedsTilde:\"≿\",succeq:\"⪰\",succnapprox:\"⪺\",succneqq:\"⪶\",succnsim:\"⋩\",succsim:\"≿\",SuchThat:\"∋\",sum:\"∑\",Sum:\"∑\",sung:\"♪\",sup1:\"¹\",sup2:\"²\",sup3:\"³\",sup:\"⊃\",Sup:\"⋑\",supdot:\"⪾\",supdsub:\"⫘\",supE:\"⫆\",supe:\"⊇\",supedot:\"⫄\",Superset:\"⊃\",SupersetEqual:\"⊇\",suphsol:\"⟉\",suphsub:\"⫗\",suplarr:\"⥻\",supmult:\"⫂\",supnE:\"⫌\",supne:\"⊋\",supplus:\"⫀\",supset:\"⊃\",Supset:\"⋑\",supseteq:\"⊇\",supseteqq:\"⫆\",supsetneq:\"⊋\",supsetneqq:\"⫌\",supsim:\"⫈\",supsub:\"⫔\",supsup:\"⫖\",swarhk:\"⤦\",swarr:\"↙\",swArr:\"⇙\",swarrow:\"↙\",swnwar:\"⤪\",szlig:\"ß\",Tab:\"\\t\",target:\"⌖\",Tau:\"Τ\",tau:\"τ\",tbrk:\"⎴\",Tcaron:\"Ť\",tcaron:\"ť\",Tcedil:\"Ţ\",tcedil:\"ţ\",Tcy:\"Т\",tcy:\"т\",tdot:\"⃛\",telrec:\"⌕\",Tfr:\"𝔗\",tfr:\"𝔱\",there4:\"∴\",therefore:\"∴\",Therefore:\"∴\",Theta:\"Θ\",theta:\"θ\",thetasym:\"ϑ\",thetav:\"ϑ\",thickapprox:\"≈\",thicksim:\"∼\",ThickSpace:\"  \",ThinSpace:\" \",thinsp:\" \",thkap:\"≈\",thksim:\"∼\",THORN:\"Þ\",thorn:\"þ\",tilde:\"˜\",Tilde:\"∼\",TildeEqual:\"≃\",TildeFullEqual:\"≅\",TildeTilde:\"≈\",timesbar:\"⨱\",timesb:\"⊠\",times:\"×\",timesd:\"⨰\",tint:\"∭\",toea:\"⤨\",topbot:\"⌶\",topcir:\"⫱\",top:\"⊤\",Topf:\"𝕋\",topf:\"𝕥\",topfork:\"⫚\",tosa:\"⤩\",tprime:\"‴\",trade:\"™\",TRADE:\"™\",triangle:\"▵\",triangledown:\"▿\",triangleleft:\"◃\",trianglelefteq:\"⊴\",triangleq:\"≜\",triangleright:\"▹\",trianglerighteq:\"⊵\",tridot:\"◬\",trie:\"≜\",triminus:\"⨺\",TripleDot:\"⃛\",triplus:\"⨹\",trisb:\"⧍\",tritime:\"⨻\",trpezium:\"⏢\",Tscr:\"𝒯\",tscr:\"𝓉\",TScy:\"Ц\",tscy:\"ц\",TSHcy:\"Ћ\",tshcy:\"ћ\",Tstrok:\"Ŧ\",tstrok:\"ŧ\",twixt:\"≬\",twoheadleftarrow:\"↞\",twoheadrightarrow:\"↠\",Uacute:\"Ú\",uacute:\"ú\",uarr:\"↑\",Uarr:\"↟\",uArr:\"⇑\",Uarrocir:\"⥉\",Ubrcy:\"Ў\",ubrcy:\"ў\",Ubreve:\"Ŭ\",ubreve:\"ŭ\",Ucirc:\"Û\",ucirc:\"û\",Ucy:\"У\",ucy:\"у\",udarr:\"⇅\",Udblac:\"Ű\",udblac:\"ű\",udhar:\"⥮\",ufisht:\"⥾\",Ufr:\"𝔘\",ufr:\"𝔲\",Ugrave:\"Ù\",ugrave:\"ù\",uHar:\"⥣\",uharl:\"↿\",uharr:\"↾\",uhblk:\"▀\",ulcorn:\"⌜\",ulcorner:\"⌜\",ulcrop:\"⌏\",ultri:\"◸\",Umacr:\"Ū\",umacr:\"ū\",uml:\"¨\",UnderBar:\"_\",UnderBrace:\"⏟\",UnderBracket:\"⎵\",UnderParenthesis:\"⏝\",Union:\"⋃\",UnionPlus:\"⊎\",Uogon:\"Ų\",uogon:\"ų\",Uopf:\"𝕌\",uopf:\"𝕦\",UpArrowBar:\"⤒\",uparrow:\"↑\",UpArrow:\"↑\",Uparrow:\"⇑\",UpArrowDownArrow:\"⇅\",updownarrow:\"↕\",UpDownArrow:\"↕\",Updownarrow:\"⇕\",UpEquilibrium:\"⥮\",upharpoonleft:\"↿\",upharpoonright:\"↾\",uplus:\"⊎\",UpperLeftArrow:\"↖\",UpperRightArrow:\"↗\",upsi:\"υ\",Upsi:\"ϒ\",upsih:\"ϒ\",Upsilon:\"Υ\",upsilon:\"υ\",UpTeeArrow:\"↥\",UpTee:\"⊥\",upuparrows:\"⇈\",urcorn:\"⌝\",urcorner:\"⌝\",urcrop:\"⌎\",Uring:\"Ů\",uring:\"ů\",urtri:\"◹\",Uscr:\"𝒰\",uscr:\"𝓊\",utdot:\"⋰\",Utilde:\"Ũ\",utilde:\"ũ\",utri:\"▵\",utrif:\"▴\",uuarr:\"⇈\",Uuml:\"Ü\",uuml:\"ü\",uwangle:\"⦧\",vangrt:\"⦜\",varepsilon:\"ϵ\",varkappa:\"ϰ\",varnothing:\"∅\",varphi:\"ϕ\",varpi:\"ϖ\",varpropto:\"∝\",varr:\"↕\",vArr:\"⇕\",varrho:\"ϱ\",varsigma:\"ς\",varsubsetneq:\"⊊︀\",varsubsetneqq:\"⫋︀\",varsupsetneq:\"⊋︀\",varsupsetneqq:\"⫌︀\",vartheta:\"ϑ\",vartriangleleft:\"⊲\",vartriangleright:\"⊳\",vBar:\"⫨\",Vbar:\"⫫\",vBarv:\"⫩\",Vcy:\"В\",vcy:\"в\",vdash:\"⊢\",vDash:\"⊨\",Vdash:\"⊩\",VDash:\"⊫\",Vdashl:\"⫦\",veebar:\"⊻\",vee:\"∨\",Vee:\"⋁\",veeeq:\"≚\",vellip:\"⋮\",verbar:\"|\",Verbar:\"‖\",vert:\"|\",Vert:\"‖\",VerticalBar:\"∣\",VerticalLine:\"|\",VerticalSeparator:\"❘\",VerticalTilde:\"≀\",VeryThinSpace:\" \",Vfr:\"𝔙\",vfr:\"𝔳\",vltri:\"⊲\",vnsub:\"⊂⃒\",vnsup:\"⊃⃒\",Vopf:\"𝕍\",vopf:\"𝕧\",vprop:\"∝\",vrtri:\"⊳\",Vscr:\"𝒱\",vscr:\"𝓋\",vsubnE:\"⫋︀\",vsubne:\"⊊︀\",vsupnE:\"⫌︀\",vsupne:\"⊋︀\",Vvdash:\"⊪\",vzigzag:\"⦚\",Wcirc:\"Ŵ\",wcirc:\"ŵ\",wedbar:\"⩟\",wedge:\"∧\",Wedge:\"⋀\",wedgeq:\"≙\",weierp:\"℘\",Wfr:\"𝔚\",wfr:\"𝔴\",Wopf:\"𝕎\",wopf:\"𝕨\",wp:\"℘\",wr:\"≀\",wreath:\"≀\",Wscr:\"𝒲\",wscr:\"𝓌\",xcap:\"⋂\",xcirc:\"◯\",xcup:\"⋃\",xdtri:\"▽\",Xfr:\"𝔛\",xfr:\"𝔵\",xharr:\"⟷\",xhArr:\"⟺\",Xi:\"Ξ\",xi:\"ξ\",xlarr:\"⟵\",xlArr:\"⟸\",xmap:\"⟼\",xnis:\"⋻\",xodot:\"⨀\",Xopf:\"𝕏\",xopf:\"𝕩\",xoplus:\"⨁\",xotime:\"⨂\",xrarr:\"⟶\",xrArr:\"⟹\",Xscr:\"𝒳\",xscr:\"𝓍\",xsqcup:\"⨆\",xuplus:\"⨄\",xutri:\"△\",xvee:\"⋁\",xwedge:\"⋀\",Yacute:\"Ý\",yacute:\"ý\",YAcy:\"Я\",yacy:\"я\",Ycirc:\"Ŷ\",ycirc:\"ŷ\",Ycy:\"Ы\",ycy:\"ы\",yen:\"¥\",Yfr:\"𝔜\",yfr:\"𝔶\",YIcy:\"Ї\",yicy:\"ї\",Yopf:\"𝕐\",yopf:\"𝕪\",Yscr:\"𝒴\",yscr:\"𝓎\",YUcy:\"Ю\",yucy:\"ю\",yuml:\"ÿ\",Yuml:\"Ÿ\",Zacute:\"Ź\",zacute:\"ź\",Zcaron:\"Ž\",zcaron:\"ž\",Zcy:\"З\",zcy:\"з\",Zdot:\"Ż\",zdot:\"ż\",zeetrf:\"ℨ\",ZeroWidthSpace:\"​\",Zeta:\"Ζ\",zeta:\"ζ\",zfr:\"𝔷\",Zfr:\"ℨ\",ZHcy:\"Ж\",zhcy:\"ж\",zigrarr:\"⇝\",zopf:\"𝕫\",Zopf:\"ℤ\",Zscr:\"𝒵\",zscr:\"𝓏\",zwj:\"‍\",zwnj:\"‌\"}},function(e,t){},function(e,t){},function(e,t,n){\"use strict\";function i(e){return Array.prototype.slice.call(arguments,1).forEach((function(t){t&&Object.keys(t).forEach((function(n){e[n]=t[n]}))})),e}function r(e){return Object.prototype.toString.call(e)}function a(e){return\"[object String]\"===r(e)}function o(e){return\"[object Object]\"===r(e)}function s(e){return\"[object RegExp]\"===r(e)}function l(e){return\"[object Function]\"===r(e)}function c(e){return e.replace(/[.?*+^$[\\]\\\\(){}|-]/g,\"\\\\$&\")}function u(e){return Object.keys(e||{}).reduce((function(e,t){return e||b.hasOwnProperty(t)}),!1)}function d(e){e.__index__=-1,e.__text_cache__=\"\"}function p(e){return function(t,n){var i=t.slice(n);return e.test(i)?i.match(e)[0].length:0}}function h(){return function(e,t){t.normalize(e)}}function f(e){function t(e){return e.replace(\"%TLDS%\",r.src_tlds)}function i(e,t){throw new Error('(LinkifyIt) Invalid schema \"'+e+'\": '+t)}var r=e.re=n(117)(e.__opts__),u=e.__tlds__.slice();e.onCompile(),e.__tlds_replaced__||u.push(E),u.push(r.src_xn),r.src_tlds=u.join(\"|\"),r.email_fuzzy=RegExp(t(r.tpl_email_fuzzy),\"i\"),r.link_fuzzy=RegExp(t(r.tpl_link_fuzzy),\"i\"),r.link_no_ip_fuzzy=RegExp(t(r.tpl_link_no_ip_fuzzy),\"i\"),r.host_fuzzy_test=RegExp(t(r.tpl_host_fuzzy_test),\"i\");var f=[];e.__compiled__={},Object.keys(e.__schemas__).forEach((function(t){var n=e.__schemas__[t];if(null!==n){var r={validate:null,link:null};return e.__compiled__[t]=r,o(n)?(s(n.validate)?r.validate=p(n.validate):l(n.validate)?r.validate=n.validate:i(t,n),void(l(n.normalize)?r.normalize=n.normalize:n.normalize?i(t,n):r.normalize=h())):a(n)?void f.push(t):void i(t,n)}})),f.forEach((function(t){e.__compiled__[e.__schemas__[t]]&&(e.__compiled__[t].validate=e.__compiled__[e.__schemas__[t]].validate,e.__compiled__[t].normalize=e.__compiled__[e.__schemas__[t]].normalize)})),e.__compiled__[\"\"]={validate:null,normalize:h()};var _=Object.keys(e.__compiled__).filter((function(t){return t.length>0&&e.__compiled__[t]})).map(c).join(\"|\");e.re.schema_test=RegExp(\"(^|(?!_)(?:[><｜]|\"+r.src_ZPCc+\"))(\"+_+\")\",\"i\"),e.re.schema_search=RegExp(\"(^|(?!_)(?:[><｜]|\"+r.src_ZPCc+\"))(\"+_+\")\",\"ig\"),e.re.pretest=RegExp(\"(\"+e.re.schema_test.source+\")|(\"+e.re.host_fuzzy_test.source+\")|@\",\"i\"),d(e)}function _(e,t){var n=e.__index__,i=e.__last_index__,r=e.__text_cache__.slice(n,i);this.schema=e.__schema__.toLowerCase(),this.index=n+t,this.lastIndex=i+t,this.raw=r,this.text=r,this.url=r}function m(e,t){var n=new _(e,t);return e.__compiled__[n.schema].normalize(n,e),n}function g(e,t){if(!(this instanceof g))return new g(e,t);t||u(e)&&(t=e,e={}),this.__opts__=i({},b,t),this.__index__=-1,this.__last_index__=-1,this.__schema__=\"\",this.__text_cache__=\"\",this.__schemas__=i({},v,e),this.__compiled__={},this.__tlds__=y,this.__tlds_replaced__=!1,this.re={},f(this)}var b={fuzzyLink:!0,fuzzyEmail:!0,fuzzyIP:!1},v={\"http:\":{validate:function(e,t,n){var i=e.slice(t);return n.re.http||(n.re.http=new RegExp(\"^\\\\/\\\\/\"+n.re.src_auth+n.re.src_host_port_strict+n.re.src_path,\"i\")),n.re.http.test(i)?i.match(n.re.http)[0].length:0}},\"https:\":\"http:\",\"ftp:\":\"http:\",\"//\":{validate:function(e,t,n){var i=e.slice(t);return n.re.no_http||(n.re.no_http=new RegExp(\"^\"+n.re.src_auth+\"(?:localhost|(?:(?:\"+n.re.src_domain+\")\\\\.)+\"+n.re.src_domain_root+\")\"+n.re.src_port+n.re.src_host_terminator+n.re.src_path,\"i\")),n.re.no_http.test(i)?t>=3&&\":\"===e[t-3]||t>=3&&\"/\"===e[t-3]?0:i.match(n.re.no_http)[0].length:0}},\"mailto:\":{validate:function(e,t,n){var i=e.slice(t);return n.re.mailto||(n.re.mailto=new RegExp(\"^\"+n.re.src_email_name+\"@\"+n.re.src_host_strict,\"i\")),n.re.mailto.test(i)?i.match(n.re.mailto)[0].length:0}}},E=\"a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]\",y=\"biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф\".split(\"|\");g.prototype.add=function(e,t){return this.__schemas__[e]=t,f(this),this},g.prototype.set=function(e){return this.__opts__=i(this.__opts__,e),this},g.prototype.test=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return!1;var t,n,i,r,a,o,s,l;if(this.re.schema_test.test(e))for(s=this.re.schema_search,s.lastIndex=0;null!==(t=s.exec(e));)if(r=this.testSchemaAt(e,t[2],s.lastIndex)){this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+r;break}return this.__opts__.fuzzyLink&&this.__compiled__[\"http:\"]&&(l=e.search(this.re.host_fuzzy_test))>=0&&(this.__index__<0||l<this.__index__)&&null!==(n=e.match(this.__opts__.fuzzyIP?this.re.link_fuzzy:this.re.link_no_ip_fuzzy))&&(a=n.index+n[1].length,(this.__index__<0||a<this.__index__)&&(this.__schema__=\"\",this.__index__=a,this.__last_index__=n.index+n[0].length)),this.__opts__.fuzzyEmail&&this.__compiled__[\"mailto:\"]&&e.indexOf(\"@\")>=0&&null!==(i=e.match(this.re.email_fuzzy))&&(a=i.index+i[1].length,o=i.index+i[0].length,(this.__index__<0||a<this.__index__||a===this.__index__&&o>this.__last_index__)&&(this.__schema__=\"mailto:\",this.__index__=a,this.__last_index__=o)),this.__index__>=0},g.prototype.pretest=function(e){return this.re.pretest.test(e)},g.prototype.testSchemaAt=function(e,t,n){return this.__compiled__[t.toLowerCase()]?this.__compiled__[t.toLowerCase()].validate(e,n,this):0},g.prototype.match=function(e){var t=0,n=[];this.__index__>=0&&this.__text_cache__===e&&(n.push(m(this,t)),t=this.__last_index__);for(var i=t?e.slice(t):e;this.test(i);)n.push(m(this,t)),i=i.slice(this.__last_index__),t+=this.__last_index__;return n.length?n:null},g.prototype.tlds=function(e,t){return e=Array.isArray(e)?e:[e],t?(this.__tlds__=this.__tlds__.concat(e).sort().filter((function(e,t,n){return e!==n[t-1]})).reverse(),f(this),this):(this.__tlds__=e.slice(),this.__tlds_replaced__=!0,f(this),this)},g.prototype.normalize=function(e){e.schema||(e.url=\"http://\"+e.url),\"mailto:\"!==e.schema||/^mailto:/i.test(e.url)||(e.url=\"mailto:\"+e.url)},g.prototype.onCompile=function(){},e.exports=g},function(e,t,n){\"use strict\";e.exports=function(e){var t={};return t.src_Any=n(60).source,t.src_Cc=n(58).source,t.src_Z=n(59).source,t.src_P=n(34).source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join(\"|\"),t.src_ZCc=[t.src_Z,t.src_Cc].join(\"|\"),t.src_pseudo_letter=\"(?:(?![><｜]|\"+t.src_ZPCc+\")\"+t.src_Any+\")\",t.src_ip4=\"(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\",t.src_auth=\"(?:(?:(?!\"+t.src_ZCc+\"|[@/\\\\[\\\\]()]).)+@)?\",t.src_port=\"(?::(?:6(?:[0-4]\\\\d{3}|5(?:[0-4]\\\\d{2}|5(?:[0-2]\\\\d|3[0-5])))|[1-5]?\\\\d{1,4}))?\",t.src_host_terminator=\"(?=$|[><｜]|\"+t.src_ZPCc+\")(?!-|_|:\\\\d|\\\\.-|\\\\.(?!$|\"+t.src_ZPCc+\"))\",t.src_path=\"(?:[/?#](?:(?!\"+t.src_ZCc+\"|[><｜]|[()[\\\\]{}.,\\\"'?!\\\\-]).|\\\\[(?:(?!\"+t.src_ZCc+\"|\\\\]).)*\\\\]|\\\\((?:(?!\"+t.src_ZCc+\"|[)]).)*\\\\)|\\\\{(?:(?!\"+t.src_ZCc+'|[}]).)*\\\\}|\\\\\"(?:(?!'+t.src_ZCc+'|[\"]).)+\\\\\"|\\\\\\'(?:(?!'+t.src_ZCc+\"|[']).)+\\\\'|\\\\'(?=\"+t.src_pseudo_letter+\"|[-]).|\\\\.{2,4}[a-zA-Z0-9%/]|\\\\.(?!\"+t.src_ZCc+\"|[.]).|\"+(e&&e[\"---\"]?\"\\\\-(?!--(?:[^-]|$))(?:-*)|\":\"\\\\-+|\")+\"\\\\,(?!\"+t.src_ZCc+\").|\\\\!(?!\"+t.src_ZCc+\"|[!]).|\\\\?(?!\"+t.src_ZCc+\"|[?]).)+|\\\\/)?\",t.src_email_name='[\\\\-;:&=\\\\+\\\\$,\\\\.a-zA-Z0-9_][\\\\-;:&=\\\\+\\\\$,\\\\\"\\\\.a-zA-Z0-9_]*',t.src_xn=\"xn--[a-z0-9\\\\-]{1,59}\",t.src_domain_root=\"(?:\"+t.src_xn+\"|\"+t.src_pseudo_letter+\"{1,63})\",t.src_domain=\"(?:\"+t.src_xn+\"|(?:\"+t.src_pseudo_letter+\")|(?:\"+t.src_pseudo_letter+\"(?:-|\"+t.src_pseudo_letter+\"){0,61}\"+t.src_pseudo_letter+\"))\",t.src_host=\"(?:(?:(?:(?:\"+t.src_domain+\")\\\\.)*\"+t.src_domain+\"))\",t.tpl_host_fuzzy=\"(?:\"+t.src_ip4+\"|(?:(?:(?:\"+t.src_domain+\")\\\\.)+(?:%TLDS%)))\",t.tpl_host_no_ip_fuzzy=\"(?:(?:(?:\"+t.src_domain+\")\\\\.)+(?:%TLDS%))\",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test=\"localhost|www\\\\.|\\\\.\\\\d{1,3}\\\\.|(?:\\\\.(?:%TLDS%)(?:\"+t.src_ZPCc+\"|>|$))\",t.tpl_email_fuzzy='(^|[><｜]|\"|\\\\(|'+t.src_ZCc+\")(\"+t.src_email_name+\"@\"+t.tpl_host_fuzzy_strict+\")\",t.tpl_link_fuzzy=\"(^|(?![.:/\\\\-_@])(?:[$+<=>^`|｜]|\"+t.src_ZPCc+\"))((?![$+<=>^`|｜])\"+t.tpl_host_port_fuzzy_strict+t.src_path+\")\",t.tpl_link_no_ip_fuzzy=\"(^|(?![.:/\\\\-_@])(?:[$+<=>^`|｜]|\"+t.src_ZPCc+\"))((?![$+<=>^`|｜])\"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+\")\",t}},function(e,t,n){\"use strict\";e.exports=function(e){function t(e,t,n,i){var r,a,o,s,l,c=e.bMarks[t]+e.tShift[t],u=e.eMarks[t];if(c+2>=u)return!1;if(42!==e.src.charCodeAt(c++))return!1;if(91!==e.src.charCodeAt(c++))return!1;for(s=c;c<u;c++){if(91===(o=e.src.charCodeAt(c)))return!1;if(93===o){l=c;break}92===o&&c++}return!(l<0||58!==e.src.charCodeAt(l+1))&&(!!i||(r=e.src.slice(s,l).replace(/\\\\(.)/g,\"$1\"),a=e.src.slice(l+2,u).trim(),0!==r.length&&0!==a.length&&(e.env.abbreviations||(e.env.abbreviations={}),void 0===e.env.abbreviations[\":\"+r]&&(e.env.abbreviations[\":\"+r]=a),e.line=t+1,!0)))}function n(e){var t,n,l,c,u,d,p,h,f,_,m,g,b,v=e.tokens;if(e.env.abbreviations)for(g=new RegExp(\"(?:\"+Object.keys(e.env.abbreviations).map((function(e){return e.substr(1)})).sort((function(e,t){return t.length-e.length})).map(i).join(\"|\")+\")\"),m=\"(^|\"+o+\"|\"+s+\"|[\"+a.split(\"\").map(i).join(\"\")+\"])(\"+Object.keys(e.env.abbreviations).map((function(e){return e.substr(1)})).sort((function(e,t){return t.length-e.length})).map(i).join(\"|\")+\")($|\"+o+\"|\"+s+\"|[\"+a.split(\"\").map(i).join(\"\")+\"])\",f=new RegExp(m,\"g\"),n=0,l=v.length;n<l;n++)if(\"inline\"===v[n].type)for(c=v[n].children,t=c.length-1;t>=0;t--)if(b=c[t],\"text\"===b.type&&(h=0,d=b.content,f.lastIndex=0,p=[],g.test(d))){for(;_=f.exec(d);)(_.index>0||_[1].length>0)&&(u=new e.Token(\"text\",\"\",0),u.content=d.slice(h,_.index+_[1].length),p.push(u)),u=new e.Token(\"abbr_open\",\"abbr\",1),u.attrs=[[\"title\",e.env.abbreviations[\":\"+_[2]]]],p.push(u),u=new e.Token(\"text\",\"\",0),u.content=_[2],p.push(u),u=new e.Token(\"abbr_close\",\"abbr\",-1),p.push(u),f.lastIndex-=_[3].length,h=f.lastIndex;p.length&&(h<d.length&&(u=new e.Token(\"text\",\"\",0),u.content=d.slice(h),p.push(u)),v[n].children=c=r(c,t,p))}}var i=e.utils.escapeRE,r=e.utils.arrayReplaceAt,a=\" \\r\\n$+<=>^`|~\",o=e.utils.lib.ucmicro.P.source,s=e.utils.lib.ucmicro.Z.source;e.block.ruler.before(\"reference\",\"abbr_def\",t,{alt:[\"paragraph\",\"reference\"]}),e.core.ruler.after(\"linkify\",\"abbr_replace\",n)}},function(e,t,n){\"use strict\";e.exports=function(e,t,n){function i(e){return e.trim().split(\" \",2)[0]===t}function r(e,n,i,r,a){return 1===e[n].nesting&&e[n].attrPush([\"class\",t]),a.renderToken(e,n,i,r,a)}function a(e,n,i,r){var a,d,p,h,f,_,m,g,b=!1,v=e.bMarks[n]+e.tShift[n],E=e.eMarks[n];if(l!==e.src.charCodeAt(v))return!1;for(a=v+1;a<=E&&s[(a-v)%c]===e.src[a];a++);if((p=Math.floor((a-v)/c))<o)return!1;if(a-=(a-v)%c,h=e.src.slice(v,a),f=e.src.slice(a,E),!u(f))return!1;if(r)return!0;for(d=n;!(++d>=i)&&(v=e.bMarks[d]+e.tShift[d],E=e.eMarks[d],!(v<E&&e.sCount[d]<e.blkIndent));)if(l===e.src.charCodeAt(v)&&!(e.sCount[d]-e.blkIndent>=4)){for(a=v+1;a<=E&&s[(a-v)%c]===e.src[a];a++);if(!(Math.floor((a-v)/c)<p||(a-=(a-v)%c,(a=e.skipSpaces(a))<E))){b=!0;break}}return m=e.parentType,g=e.lineMax,e.parentType=\"container\",e.lineMax=d,_=e.push(\"container_\"+t+\"_open\",\"div\",1),_.markup=h,_.block=!0,_.info=f,_.map=[n,d],e.md.block.tokenize(e,n+1,d),_=e.push(\"container_\"+t+\"_close\",\"div\",-1),_.markup=e.src.slice(v,a),_.block=!0,e.parentType=m,e.lineMax=g,e.line=d+(b?1:0),!0}n=n||{};var o=3,s=n.marker||\":\",l=s.charCodeAt(0),c=s.length,u=n.validate||i,d=n.render||r;e.block.ruler.before(\"fence\",\"container_\"+t,a,{alt:[\"paragraph\",\"reference\",\"blockquote\",\"list\"]}),e.renderer.rules[\"container_\"+t+\"_open\"]=d,e.renderer.rules[\"container_\"+t+\"_close\"]=d}},function(e,t,n){\"use strict\";e.exports=function(e){function t(e,t){var n,i,r=e.bMarks[t]+e.tShift[t],a=e.eMarks[t];return r>=a||126!==(i=e.src.charCodeAt(r++))&&58!==i?-1:(n=e.skipSpaces(r),r===n||n>=a?-1:r)}function n(e,t){var n,i,r=e.level+2;for(n=t+2,i=e.tokens.length-2;n<i;n++)e.tokens[n].level===r&&\"paragraph_open\"===e.tokens[n].type&&(e.tokens[n+2].hidden=!0,e.tokens[n].hidden=!0,n+=2)}function i(e,i,a,o){var s,l,c,u,d,p,h,f,_,m,g,b,v,E,y,S,C,T,x,w;if(o)return!(e.ddIndent<0)&&t(e,i)>=0;if((_=i+1)>=a)return!1;if(e.isEmpty(_)&&++_>=a)return!1;if(e.sCount[_]<e.blkIndent)return!1;if((l=t(e,_))<0)return!1;h=e.tokens.length,x=!0,w=e.push(\"dl_open\",\"dl\",1),w.map=p=[i,0],u=i,c=_;e:for(;;){for(T=!1,w=e.push(\"dt_open\",\"dt\",1),w.map=[u,u],w=e.push(\"inline\",\"\",0),w.map=[u,u],w.content=e.getLines(u,u+1,e.blkIndent,!1).trim(),w.children=[],w=e.push(\"dt_close\",\"dt\",-1);;){for(w=e.push(\"dd_open\",\"dd\",1),w.map=d=[_,0],C=l,f=e.eMarks[c],m=e.sCount[c]+l-(e.bMarks[c]+e.tShift[c]);C<f&&(s=e.src.charCodeAt(C),r(s));)9===s?m+=4-m%4:m++,C++;if(l=C,S=e.tight,g=e.ddIndent,b=e.blkIndent,y=e.tShift[c],E=e.sCount[c],v=e.parentType,e.blkIndent=e.ddIndent=e.sCount[c]+2,e.tShift[c]=l-e.bMarks[c],e.sCount[c]=m,e.tight=!0,e.parentType=\"deflist\",e.md.block.tokenize(e,c,a,!0),e.tight&&!T||(x=!1),T=e.line-c>1&&e.isEmpty(e.line-1),e.tShift[c]=y,e.sCount[c]=E,e.tight=S,e.parentType=v,e.blkIndent=b,e.ddIndent=g,w=e.push(\"dd_close\",\"dd\",-1),d[1]=_=e.line,_>=a)break e;if(e.sCount[_]<e.blkIndent)break e;if((l=t(e,_))<0)break;c=_}if(_>=a)break;if(u=_,e.isEmpty(u))break;if(e.sCount[u]<e.blkIndent)break;if((c=u+1)>=a)break;if(e.isEmpty(c)&&c++,c>=a)break;if(e.sCount[c]<e.blkIndent)break;if((l=t(e,c))<0)break}return w=e.push(\"dl_close\",\"dl\",-1),p[1]=_,e.line=_,x&&n(e,h),!0}var r=e.utils.isSpace;e.block.ruler.before(\"paragraph\",\"deflist\",i,{alt:[\"paragraph\",\"reference\"]})}},function(e,t,n){\"use strict\";var i=n(122),r=n(123),a=n(125),o=n(126),s=n(124);e.exports=function(e,t){var n={defs:i,shortcuts:r,enabled:[]},l=s(e.utils.assign({},n,t||{}));e.renderer.rules.emoji=a,e.core.ruler.push(\"emoji\",o(e,l.defs,l.shortcuts,l.scanRE,l.replaceRE))}},function(e,t){e.exports={100:\"💯\",1234:\"🔢\",grinning:\"😀\",smiley:\"😃\",smile:\"😄\",grin:\"😁\",laughing:\"😆\",satisfied:\"😆\",sweat_smile:\"😅\",joy:\"😂\",rofl:\"🤣\",relaxed:\"☺️\",blush:\"😊\",innocent:\"😇\",slightly_smiling_face:\"🙂\",upside_down_face:\"🙃\",wink:\"😉\",relieved:\"😌\",heart_eyes:\"😍\",kissing_heart:\"😘\",kissing:\"😗\",kissing_smiling_eyes:\"😙\",kissing_closed_eyes:\"😚\",yum:\"😋\",stuck_out_tongue_winking_eye:\"😜\",stuck_out_tongue_closed_eyes:\"😝\",stuck_out_tongue:\"😛\",money_mouth_face:\"🤑\",hugs:\"🤗\",nerd_face:\"🤓\",sunglasses:\"😎\",clown_face:\"🤡\",cowboy_hat_face:\"🤠\",smirk:\"😏\",unamused:\"😒\",disappointed:\"😞\",pensive:\"😔\",worried:\"😟\",confused:\"😕\",slightly_frowning_face:\"🙁\",frowning_face:\"☹️\",persevere:\"😣\",confounded:\"😖\",tired_face:\"😫\",weary:\"😩\",triumph:\"😤\",angry:\"😠\",rage:\"😡\",pout:\"😡\",no_mouth:\"😶\",neutral_face:\"😐\",expressionless:\"😑\",hushed:\"😯\",frowning:\"😦\",anguished:\"😧\",open_mouth:\"😮\",astonished:\"😲\",dizzy_face:\"😵\",flushed:\"😳\",scream:\"😱\",fearful:\"😨\",cold_sweat:\"😰\",cry:\"😢\",disappointed_relieved:\"😥\",drooling_face:\"🤤\",sob:\"😭\",sweat:\"😓\",sleepy:\"😪\",sleeping:\"😴\",roll_eyes:\"🙄\",thinking:\"🤔\",lying_face:\"🤥\",grimacing:\"😬\",zipper_mouth_face:\"🤐\",nauseated_face:\"🤢\",sneezing_face:\"🤧\",mask:\"😷\",face_with_thermometer:\"🤒\",face_with_head_bandage:\"🤕\",smiling_imp:\"😈\",imp:\"👿\",japanese_ogre:\"👹\",japanese_goblin:\"👺\",hankey:\"💩\",poop:\"💩\",shit:\"💩\",ghost:\"👻\",skull:\"💀\",skull_and_crossbones:\"☠️\",alien:\"👽\",space_invader:\"👾\",robot:\"🤖\",jack_o_lantern:\"🎃\",smiley_cat:\"😺\",smile_cat:\"😸\",joy_cat:\"😹\",heart_eyes_cat:\"😻\",smirk_cat:\"😼\",kissing_cat:\"😽\",scream_cat:\"🙀\",crying_cat_face:\"😿\",pouting_cat:\"😾\",open_hands:\"👐\",raised_hands:\"🙌\",clap:\"👏\",pray:\"🙏\",handshake:\"🤝\",\"+1\":\"👍\",thumbsup:\"👍\",\"-1\":\"👎\",thumbsdown:\"👎\",fist_oncoming:\"👊\",facepunch:\"👊\",punch:\"👊\",fist_raised:\"✊\",fist:\"✊\",fist_left:\"🤛\",fist_right:\"🤜\",crossed_fingers:\"🤞\",v:\"✌️\",metal:\"🤘\",ok_hand:\"👌\",point_left:\"👈\",point_right:\"👉\",point_up_2:\"👆\",point_down:\"👇\",point_up:\"☝️\",hand:\"✋\",raised_hand:\"✋\",raised_back_of_hand:\"🤚\",raised_hand_with_fingers_splayed:\"🖐\",vulcan_salute:\"🖖\",wave:\"👋\",call_me_hand:\"🤙\",muscle:\"💪\",middle_finger:\"🖕\",fu:\"🖕\",writing_hand:\"✍️\",selfie:\"🤳\",nail_care:\"💅\",ring:\"💍\",lipstick:\"💄\",kiss:\"💋\",lips:\"👄\",tongue:\"👅\",ear:\"👂\",nose:\"👃\",footprints:\"👣\",eye:\"👁\",eyes:\"👀\",speaking_head:\"🗣\",bust_in_silhouette:\"👤\",busts_in_silhouette:\"👥\",baby:\"👶\",boy:\"👦\",girl:\"👧\",man:\"👨\",woman:\"👩\",blonde_woman:\"👱‍♀\",blonde_man:\"👱\",person_with_blond_hair:\"👱\",older_man:\"👴\",older_woman:\"👵\",man_with_gua_pi_mao:\"👲\",woman_with_turban:\"👳‍♀\",man_with_turban:\"👳\",policewoman:\"👮‍♀\",policeman:\"👮\",cop:\"👮\",construction_worker_woman:\"👷‍♀\",construction_worker_man:\"👷\",construction_worker:\"👷\",guardswoman:\"💂‍♀\",guardsman:\"💂\",female_detective:\"🕵️‍♀️\",male_detective:\"🕵\",detective:\"🕵\",woman_health_worker:\"👩‍⚕\",man_health_worker:\"👨‍⚕\",woman_farmer:\"👩‍🌾\",man_farmer:\"👨‍🌾\",woman_cook:\"👩‍🍳\",man_cook:\"👨‍🍳\",woman_student:\"👩‍🎓\",man_student:\"👨‍🎓\",woman_singer:\"👩‍🎤\",man_singer:\"👨‍🎤\",woman_teacher:\"👩‍🏫\",man_teacher:\"👨‍🏫\",woman_factory_worker:\"👩‍🏭\",man_factory_worker:\"👨‍🏭\",woman_technologist:\"👩‍💻\",man_technologist:\"👨‍💻\",woman_office_worker:\"👩‍💼\",man_office_worker:\"👨‍💼\",woman_mechanic:\"👩‍🔧\",man_mechanic:\"👨‍🔧\",woman_scientist:\"👩‍🔬\",man_scientist:\"👨‍🔬\",woman_artist:\"👩‍🎨\",man_artist:\"👨‍🎨\",woman_firefighter:\"👩‍🚒\",man_firefighter:\"👨‍🚒\",woman_pilot:\"👩‍✈\",man_pilot:\"👨‍✈\",woman_astronaut:\"👩‍🚀\",man_astronaut:\"👨‍🚀\",woman_judge:\"👩‍⚖\",man_judge:\"👨‍⚖\",mrs_claus:\"🤶\",santa:\"🎅\",princess:\"👸\",prince:\"🤴\",bride_with_veil:\"👰\",man_in_tuxedo:\"🤵\",angel:\"👼\",pregnant_woman:\"🤰\",bowing_woman:\"🙇‍♀\",bowing_man:\"🙇\",bow:\"🙇\",tipping_hand_woman:\"💁\",information_desk_person:\"💁\",sassy_woman:\"💁\",tipping_hand_man:\"💁‍♂\",sassy_man:\"💁‍♂\",no_good_woman:\"🙅\",no_good:\"🙅\",ng_woman:\"🙅\",no_good_man:\"🙅‍♂\",ng_man:\"🙅‍♂\",ok_woman:\"🙆\",ok_man:\"🙆‍♂\",raising_hand_woman:\"🙋\",raising_hand:\"🙋\",raising_hand_man:\"🙋‍♂\",woman_facepalming:\"🤦‍♀\",man_facepalming:\"🤦‍♂\",woman_shrugging:\"🤷‍♀\",man_shrugging:\"🤷‍♂\",pouting_woman:\"🙎\",person_with_pouting_face:\"🙎\",pouting_man:\"🙎‍♂\",frowning_woman:\"🙍\",person_frowning:\"🙍\",frowning_man:\"🙍‍♂\",haircut_woman:\"💇\",haircut:\"💇\",haircut_man:\"💇‍♂\",massage_woman:\"💆\",massage:\"💆\",massage_man:\"💆‍♂\",business_suit_levitating:\"🕴\",dancer:\"💃\",man_dancing:\"🕺\",dancing_women:\"👯\",dancers:\"👯\",dancing_men:\"👯‍♂\",walking_woman:\"🚶‍♀\",walking_man:\"🚶\",walking:\"🚶\",running_woman:\"🏃‍♀\",running_man:\"🏃\",runner:\"🏃\",running:\"🏃\",couple:\"👫\",two_women_holding_hands:\"👭\",two_men_holding_hands:\"👬\",couple_with_heart_woman_man:\"💑\",couple_with_heart:\"💑\",couple_with_heart_woman_woman:\"👩‍❤️‍👩\",couple_with_heart_man_man:\"👨‍❤️‍👨\",couplekiss_man_woman:\"💏\",couplekiss_woman_woman:\"👩‍❤️‍💋‍👩\",couplekiss_man_man:\"👨‍❤️‍💋‍👨\",family_man_woman_boy:\"👪\",family:\"👪\",family_man_woman_girl:\"👨‍👩‍👧\",family_man_woman_girl_boy:\"👨‍👩‍👧‍👦\",family_man_woman_boy_boy:\"👨‍👩‍👦‍👦\",family_man_woman_girl_girl:\"👨‍👩‍👧‍👧\",family_woman_woman_boy:\"👩‍👩‍👦\",family_woman_woman_girl:\"👩‍👩‍👧\",family_woman_woman_girl_boy:\"👩‍👩‍👧‍👦\",family_woman_woman_boy_boy:\"👩‍👩‍👦‍👦\",family_woman_woman_girl_girl:\"👩‍👩‍👧‍👧\",family_man_man_boy:\"👨‍👨‍👦\",family_man_man_girl:\"👨‍👨‍👧\",family_man_man_girl_boy:\"👨‍👨‍👧‍👦\",family_man_man_boy_boy:\"👨‍👨‍👦‍👦\",family_man_man_girl_girl:\"👨‍👨‍👧‍👧\",family_woman_boy:\"👩‍👦\",family_woman_girl:\"👩‍👧\",family_woman_girl_boy:\"👩‍👧‍👦\",family_woman_boy_boy:\"👩‍👦‍👦\",family_woman_girl_girl:\"👩‍👧‍👧\",family_man_boy:\"👨‍👦\",family_man_girl:\"👨‍👧\",family_man_girl_boy:\"👨‍👧‍👦\",family_man_boy_boy:\"👨‍👦‍👦\",family_man_girl_girl:\"👨‍👧‍👧\",womans_clothes:\"👚\",shirt:\"👕\",tshirt:\"👕\",jeans:\"👖\",necktie:\"👔\",dress:\"👗\",bikini:\"👙\",kimono:\"👘\",high_heel:\"👠\",sandal:\"👡\",boot:\"👢\",mans_shoe:\"👞\",shoe:\"👞\",athletic_shoe:\"👟\",womans_hat:\"👒\",tophat:\"🎩\",mortar_board:\"🎓\",crown:\"👑\",rescue_worker_helmet:\"⛑\",school_satchel:\"🎒\",pouch:\"👝\",purse:\"👛\",handbag:\"👜\",briefcase:\"💼\",eyeglasses:\"👓\",dark_sunglasses:\"🕶\",closed_umbrella:\"🌂\",open_umbrella:\"☂️\",dog:\"🐶\",cat:\"🐱\",mouse:\"🐭\",hamster:\"🐹\",rabbit:\"🐰\",fox_face:\"🦊\",bear:\"🐻\",panda_face:\"🐼\",koala:\"🐨\",tiger:\"🐯\",lion:\"🦁\",cow:\"🐮\",pig:\"🐷\",pig_nose:\"🐽\",frog:\"🐸\",monkey_face:\"🐵\",see_no_evil:\"🙈\",hear_no_evil:\"🙉\",speak_no_evil:\"🙊\",monkey:\"🐒\",chicken:\"🐔\",penguin:\"🐧\",bird:\"🐦\",baby_chick:\"🐤\",hatching_chick:\"🐣\",hatched_chick:\"🐥\",duck:\"🦆\",eagle:\"🦅\",owl:\"🦉\",bat:\"🦇\",wolf:\"🐺\",boar:\"🐗\",horse:\"🐴\",unicorn:\"🦄\",bee:\"🐝\",honeybee:\"🐝\",bug:\"🐛\",butterfly:\"🦋\",snail:\"🐌\",shell:\"🐚\",beetle:\"🐞\",ant:\"🐜\",spider:\"🕷\",spider_web:\"🕸\",turtle:\"🐢\",snake:\"🐍\",lizard:\"🦎\",scorpion:\"🦂\",crab:\"🦀\",squid:\"🦑\",octopus:\"🐙\",shrimp:\"🦐\",tropical_fish:\"🐠\",fish:\"🐟\",blowfish:\"🐡\",dolphin:\"🐬\",flipper:\"🐬\",shark:\"🦈\",whale:\"🐳\",whale2:\"🐋\",crocodile:\"🐊\",leopard:\"🐆\",tiger2:\"🐅\",water_buffalo:\"🐃\",ox:\"🐂\",cow2:\"🐄\",deer:\"🦌\",dromedary_camel:\"🐪\",camel:\"🐫\",elephant:\"🐘\",rhinoceros:\"🦏\",gorilla:\"🦍\",racehorse:\"🐎\",pig2:\"🐖\",goat:\"🐐\",ram:\"🐏\",sheep:\"🐑\",dog2:\"🐕\",poodle:\"🐩\",cat2:\"🐈\",rooster:\"🐓\",turkey:\"🦃\",dove:\"🕊\",rabbit2:\"🐇\",mouse2:\"🐁\",rat:\"🐀\",chipmunk:\"🐿\",feet:\"🐾\",paw_prints:\"🐾\",dragon:\"🐉\",dragon_face:\"🐲\",cactus:\"🌵\",christmas_tree:\"🎄\",evergreen_tree:\"🌲\",deciduous_tree:\"🌳\",palm_tree:\"🌴\",seedling:\"🌱\",herb:\"🌿\",shamrock:\"☘️\",four_leaf_clover:\"🍀\",bamboo:\"🎍\",tanabata_tree:\"🎋\",leaves:\"🍃\",fallen_leaf:\"🍂\",maple_leaf:\"🍁\",mushroom:\"🍄\",ear_of_rice:\"🌾\",bouquet:\"💐\",tulip:\"🌷\",rose:\"🌹\",wilted_flower:\"🥀\",sunflower:\"🌻\",blossom:\"🌼\",cherry_blossom:\"🌸\",hibiscus:\"🌺\",earth_americas:\"🌎\",earth_africa:\"🌍\",earth_asia:\"🌏\",full_moon:\"🌕\",waning_gibbous_moon:\"🌖\",last_quarter_moon:\"🌗\",waning_crescent_moon:\"🌘\",new_moon:\"🌑\",waxing_crescent_moon:\"🌒\",first_quarter_moon:\"🌓\",moon:\"🌔\",waxing_gibbous_moon:\"🌔\",new_moon_with_face:\"🌚\",full_moon_with_face:\"🌝\",sun_with_face:\"🌞\",first_quarter_moon_with_face:\"🌛\",last_quarter_moon_with_face:\"🌜\",crescent_moon:\"🌙\",dizzy:\"💫\",star:\"⭐️\",star2:\"🌟\",sparkles:\"✨\",zap:\"⚡️\",fire:\"🔥\",boom:\"💥\",collision:\"💥\",comet:\"☄\",sunny:\"☀️\",sun_behind_small_cloud:\"🌤\",partly_sunny:\"⛅️\",sun_behind_large_cloud:\"🌥\",sun_behind_rain_cloud:\"🌦\",rainbow:\"🌈\",cloud:\"☁️\",cloud_with_rain:\"🌧\",cloud_with_lightning_and_rain:\"⛈\",cloud_with_lightning:\"🌩\",cloud_with_snow:\"🌨\",snowman_with_snow:\"☃️\",snowman:\"⛄️\",snowflake:\"❄️\",wind_face:\"🌬\",dash:\"💨\",tornado:\"🌪\",fog:\"🌫\",ocean:\"🌊\",droplet:\"💧\",sweat_drops:\"💦\",umbrella:\"☔️\",green_apple:\"🍏\",apple:\"🍎\",pear:\"🍐\",tangerine:\"🍊\",orange:\"🍊\",mandarin:\"🍊\",lemon:\"🍋\",banana:\"🍌\",watermelon:\"🍉\",grapes:\"🍇\",strawberry:\"🍓\",melon:\"🍈\",cherries:\"🍒\",peach:\"🍑\",pineapple:\"🍍\",kiwi_fruit:\"🥝\",avocado:\"🥑\",tomato:\"🍅\",eggplant:\"🍆\",cucumber:\"🥒\",carrot:\"🥕\",corn:\"🌽\",hot_pepper:\"🌶\",potato:\"🥔\",sweet_potato:\"🍠\",chestnut:\"🌰\",peanuts:\"🥜\",honey_pot:\"🍯\",croissant:\"🥐\",bread:\"🍞\",baguette_bread:\"🥖\",cheese:\"🧀\",egg:\"🥚\",fried_egg:\"🍳\",bacon:\"🥓\",pancakes:\"🥞\",fried_shrimp:\"🍤\",poultry_leg:\"🍗\",meat_on_bone:\"🍖\",pizza:\"🍕\",hotdog:\"🌭\",hamburger:\"🍔\",fries:\"🍟\",stuffed_flatbread:\"🥙\",taco:\"🌮\",burrito:\"🌯\",green_salad:\"🥗\",shallow_pan_of_food:\"🥘\",spaghetti:\"🍝\",ramen:\"🍜\",stew:\"🍲\",fish_cake:\"🍥\",sushi:\"🍣\",bento:\"🍱\",curry:\"🍛\",rice:\"🍚\",rice_ball:\"🍙\",rice_cracker:\"🍘\",oden:\"🍢\",dango:\"🍡\",shaved_ice:\"🍧\",ice_cream:\"🍨\",icecream:\"🍦\",cake:\"🍰\",birthday:\"🎂\",custard:\"🍮\",lollipop:\"🍭\",candy:\"🍬\",chocolate_bar:\"🍫\",popcorn:\"🍿\",doughnut:\"🍩\",cookie:\"🍪\",milk_glass:\"🥛\",baby_bottle:\"🍼\",coffee:\"☕️\",tea:\"🍵\",sake:\"🍶\",beer:\"🍺\",beers:\"🍻\",clinking_glasses:\"🥂\",wine_glass:\"🍷\",tumbler_glass:\"🥃\",cocktail:\"🍸\",tropical_drink:\"🍹\",champagne:\"🍾\",spoon:\"🥄\",fork_and_knife:\"🍴\",plate_with_cutlery:\"🍽\",soccer:\"⚽️\",basketball:\"🏀\",football:\"🏈\",baseball:\"⚾️\",tennis:\"🎾\",volleyball:\"🏐\",rugby_football:\"🏉\",\"8ball\":\"🎱\",ping_pong:\"🏓\",badminton:\"🏸\",goal_net:\"🥅\",ice_hockey:\"🏒\",field_hockey:\"🏑\",cricket:\"🏏\",golf:\"⛳️\",bow_and_arrow:\"🏹\",fishing_pole_and_fish:\"🎣\",boxing_glove:\"🥊\",martial_arts_uniform:\"🥋\",ice_skate:\"⛸\",ski:\"🎿\",skier:\"⛷\",snowboarder:\"🏂\",weight_lifting_woman:\"🏋️‍♀️\",weight_lifting_man:\"🏋\",person_fencing:\"🤺\",women_wrestling:\"🤼‍♀\",men_wrestling:\"🤼‍♂\",woman_cartwheeling:\"🤸‍♀\",man_cartwheeling:\"🤸‍♂\",basketball_woman:\"⛹️‍♀️\",basketball_man:\"⛹\",woman_playing_handball:\"🤾‍♀\",man_playing_handball:\"🤾‍♂\",golfing_woman:\"🏌️‍♀️\",golfing_man:\"🏌\",surfing_woman:\"🏄‍♀\",surfing_man:\"🏄\",surfer:\"🏄\",swimming_woman:\"🏊‍♀\",swimming_man:\"🏊\",swimmer:\"🏊\",woman_playing_water_polo:\"🤽‍♀\",man_playing_water_polo:\"🤽‍♂\",rowing_woman:\"🚣‍♀\",rowing_man:\"🚣\",rowboat:\"🚣\",horse_racing:\"🏇\",biking_woman:\"🚴‍♀\",biking_man:\"🚴\",bicyclist:\"🚴\",mountain_biking_woman:\"🚵‍♀\",mountain_biking_man:\"🚵\",mountain_bicyclist:\"🚵\",running_shirt_with_sash:\"🎽\",medal_sports:\"🏅\",medal_military:\"🎖\",\"1st_place_medal\":\"🥇\",\"2nd_place_medal\":\"🥈\",\"3rd_place_medal\":\"🥉\",trophy:\"🏆\",rosette:\"🏵\",reminder_ribbon:\"🎗\",ticket:\"🎫\",tickets:\"🎟\",circus_tent:\"🎪\",woman_juggling:\"🤹‍♀\",man_juggling:\"🤹‍♂\",performing_arts:\"🎭\",art:\"🎨\",clapper:\"🎬\",microphone:\"🎤\",headphones:\"🎧\",musical_score:\"🎼\",musical_keyboard:\"🎹\",drum:\"🥁\",saxophone:\"🎷\",trumpet:\"🎺\",guitar:\"🎸\",violin:\"🎻\",game_die:\"🎲\",dart:\"🎯\",bowling:\"🎳\",video_game:\"🎮\",slot_machine:\"🎰\",car:\"🚗\",red_car:\"🚗\",taxi:\"🚕\",blue_car:\"🚙\",bus:\"🚌\",trolleybus:\"🚎\",racing_car:\"🏎\",police_car:\"🚓\",ambulance:\"🚑\",fire_engine:\"🚒\",minibus:\"🚐\",truck:\"🚚\",articulated_lorry:\"🚛\",tractor:\"🚜\",kick_scooter:\"🛴\",bike:\"🚲\",motor_scooter:\"🛵\",motorcycle:\"🏍\",rotating_light:\"🚨\",oncoming_police_car:\"🚔\",oncoming_bus:\"🚍\",oncoming_automobile:\"🚘\",oncoming_taxi:\"🚖\",aerial_tramway:\"🚡\",mountain_cableway:\"🚠\",suspension_railway:\"🚟\",railway_car:\"🚃\",train:\"🚋\",mountain_railway:\"🚞\",monorail:\"🚝\",bullettrain_side:\"🚄\",bullettrain_front:\"🚅\",light_rail:\"🚈\",steam_locomotive:\"🚂\",train2:\"🚆\",metro:\"🚇\",tram:\"🚊\",station:\"🚉\",helicopter:\"🚁\",small_airplane:\"🛩\",airplane:\"✈️\",flight_departure:\"🛫\",flight_arrival:\"🛬\",rocket:\"🚀\",artificial_satellite:\"🛰\",seat:\"💺\",canoe:\"🛶\",boat:\"⛵️\",sailboat:\"⛵️\",motor_boat:\"🛥\",speedboat:\"🚤\",passenger_ship:\"🛳\",ferry:\"⛴\",ship:\"🚢\",anchor:\"⚓️\",construction:\"🚧\",fuelpump:\"⛽️\",busstop:\"🚏\",vertical_traffic_light:\"🚦\",traffic_light:\"🚥\",world_map:\"🗺\",moyai:\"🗿\",statue_of_liberty:\"🗽\",fountain:\"⛲️\",tokyo_tower:\"🗼\",european_castle:\"🏰\",japanese_castle:\"🏯\",stadium:\"🏟\",ferris_wheel:\"🎡\",roller_coaster:\"🎢\",carousel_horse:\"🎠\",parasol_on_ground:\"⛱\",beach_umbrella:\"🏖\",desert_island:\"🏝\",mountain:\"⛰\",mountain_snow:\"🏔\",mount_fuji:\"🗻\",volcano:\"🌋\",desert:\"🏜\",camping:\"🏕\",tent:\"⛺️\",railway_track:\"🛤\",motorway:\"🛣\",building_construction:\"🏗\",factory:\"🏭\",house:\"🏠\",house_with_garden:\"🏡\",houses:\"🏘\",derelict_house:\"🏚\",office:\"🏢\",department_store:\"🏬\",post_office:\"🏣\",european_post_office:\"🏤\",hospital:\"🏥\",bank:\"🏦\",hotel:\"🏨\",convenience_store:\"🏪\",school:\"🏫\",love_hotel:\"🏩\",wedding:\"💒\",classical_building:\"🏛\",church:\"⛪️\",mosque:\"🕌\",synagogue:\"🕍\",kaaba:\"🕋\",shinto_shrine:\"⛩\",japan:\"🗾\",rice_scene:\"🎑\",national_park:\"🏞\",sunrise:\"🌅\",sunrise_over_mountains:\"🌄\",stars:\"🌠\",sparkler:\"🎇\",fireworks:\"🎆\",city_sunrise:\"🌇\",city_sunset:\"🌆\",cityscape:\"🏙\",night_with_stars:\"🌃\",milky_way:\"🌌\",bridge_at_night:\"🌉\",foggy:\"🌁\",watch:\"⌚️\",iphone:\"📱\",calling:\"📲\",computer:\"💻\",keyboard:\"⌨️\",desktop_computer:\"🖥\",printer:\"🖨\",computer_mouse:\"🖱\",trackball:\"🖲\",joystick:\"🕹\",clamp:\"🗜\",minidisc:\"💽\",floppy_disk:\"💾\",cd:\"💿\",dvd:\"📀\",vhs:\"📼\",camera:\"📷\",camera_flash:\"📸\",video_camera:\"📹\",movie_camera:\"🎥\",film_projector:\"📽\",film_strip:\"🎞\",telephone_receiver:\"📞\",phone:\"☎️\",telephone:\"☎️\",pager:\"📟\",fax:\"📠\",tv:\"📺\",radio:\"📻\",studio_microphone:\"🎙\",level_slider:\"🎚\",control_knobs:\"🎛\",stopwatch:\"⏱\",timer_clock:\"⏲\",alarm_clock:\"⏰\",mantelpiece_clock:\"🕰\",hourglass:\"⌛️\",hourglass_flowing_sand:\"⏳\",satellite:\"📡\",battery:\"🔋\",electric_plug:\"🔌\",bulb:\"💡\",flashlight:\"🔦\",candle:\"🕯\",wastebasket:\"🗑\",oil_drum:\"🛢\",money_with_wings:\"💸\",dollar:\"💵\",yen:\"💴\",euro:\"💶\",pound:\"💷\",moneybag:\"💰\",credit_card:\"💳\",gem:\"💎\",balance_scale:\"⚖️\",wrench:\"🔧\",hammer:\"🔨\",hammer_and_pick:\"⚒\",hammer_and_wrench:\"🛠\",pick:\"⛏\",nut_and_bolt:\"🔩\",gear:\"⚙️\",chains:\"⛓\",gun:\"🔫\",bomb:\"💣\",hocho:\"🔪\",knife:\"🔪\",dagger:\"🗡\",crossed_swords:\"⚔️\",shield:\"🛡\",smoking:\"🚬\",coffin:\"⚰️\",funeral_urn:\"⚱️\",amphora:\"🏺\",crystal_ball:\"🔮\",prayer_beads:\"📿\",barber:\"💈\",alembic:\"⚗️\",telescope:\"🔭\",microscope:\"🔬\",hole:\"🕳\",pill:\"💊\",syringe:\"💉\",thermometer:\"🌡\",toilet:\"🚽\",potable_water:\"🚰\",shower:\"🚿\",bathtub:\"🛁\",bath:\"🛀\",bellhop_bell:\"🛎\",key:\"🔑\",old_key:\"🗝\",door:\"🚪\",couch_and_lamp:\"🛋\",bed:\"🛏\",sleeping_bed:\"🛌\",framed_picture:\"🖼\",shopping:\"🛍\",shopping_cart:\"🛒\",gift:\"🎁\",balloon:\"🎈\",flags:\"🎏\",ribbon:\"🎀\",confetti_ball:\"🎊\",tada:\"🎉\",dolls:\"🎎\",izakaya_lantern:\"🏮\",lantern:\"🏮\",wind_chime:\"🎐\",email:\"✉️\",envelope:\"✉️\",envelope_with_arrow:\"📩\",incoming_envelope:\"📨\",\"e-mail\":\"📧\",love_letter:\"💌\",inbox_tray:\"📥\",outbox_tray:\"📤\",package:\"📦\",label:\"🏷\",mailbox_closed:\"📪\",mailbox:\"📫\",mailbox_with_mail:\"📬\",mailbox_with_no_mail:\"📭\",postbox:\"📮\",postal_horn:\"📯\",scroll:\"📜\",page_with_curl:\"📃\",page_facing_up:\"📄\",bookmark_tabs:\"📑\",bar_chart:\"📊\",chart_with_upwards_trend:\"📈\",chart_with_downwards_trend:\"📉\",spiral_notepad:\"🗒\",spiral_calendar:\"🗓\",calendar:\"📆\",date:\"📅\",card_index:\"📇\",card_file_box:\"🗃\",ballot_box:\"🗳\",file_cabinet:\"🗄\",clipboard:\"📋\",file_folder:\"📁\",open_file_folder:\"📂\",card_index_dividers:\"🗂\",newspaper_roll:\"🗞\",newspaper:\"📰\",notebook:\"📓\",notebook_with_decorative_cover:\"📔\",ledger:\"📒\",closed_book:\"📕\",green_book:\"📗\",blue_book:\"📘\",orange_book:\"📙\",books:\"📚\",book:\"📖\",open_book:\"📖\",bookmark:\"🔖\",link:\"🔗\",paperclip:\"📎\",paperclips:\"🖇\",triangular_ruler:\"📐\",straight_ruler:\"📏\",pushpin:\"📌\",round_pushpin:\"📍\",scissors:\"✂️\",pen:\"🖊\",fountain_pen:\"🖋\",black_nib:\"✒️\",paintbrush:\"🖌\",crayon:\"🖍\",memo:\"📝\",pencil:\"📝\",pencil2:\"✏️\",mag:\"🔍\",mag_right:\"🔎\",lock_with_ink_pen:\"🔏\",closed_lock_with_key:\"🔐\",lock:\"🔒\",unlock:\"🔓\",heart:\"❤️\",yellow_heart:\"💛\",green_heart:\"💚\",blue_heart:\"💙\",purple_heart:\"💜\",black_heart:\"🖤\",broken_heart:\"💔\",heavy_heart_exclamation:\"❣️\",two_hearts:\"💕\",revolving_hearts:\"💞\",heartbeat:\"💓\",heartpulse:\"💗\",sparkling_heart:\"💖\",cupid:\"💘\",gift_heart:\"💝\",heart_decoration:\"💟\",peace_symbol:\"☮️\",latin_cross:\"✝️\",star_and_crescent:\"☪️\",om:\"🕉\",wheel_of_dharma:\"☸️\",star_of_david:\"✡️\",six_pointed_star:\"🔯\",menorah:\"🕎\",yin_yang:\"☯️\",orthodox_cross:\"☦️\",place_of_worship:\"🛐\",ophiuchus:\"⛎\",aries:\"♈️\",taurus:\"♉️\",gemini:\"♊️\",cancer:\"♋️\",leo:\"♌️\",virgo:\"♍️\",libra:\"♎️\",scorpius:\"♏️\",sagittarius:\"♐️\",capricorn:\"♑️\",aquarius:\"♒️\",pisces:\"♓️\",id:\"🆔\",atom_symbol:\"⚛️\",accept:\"🉑\",radioactive:\"☢️\",biohazard:\"☣️\",mobile_phone_off:\"📴\",vibration_mode:\"📳\",eight_pointed_black_star:\"✴️\",vs:\"🆚\",white_flower:\"💮\",ideograph_advantage:\"🉐\",secret:\"㊙️\",congratulations:\"㊗️\",u6e80:\"🈵\",a:\"🅰️\",b:\"🅱️\",ab:\"🆎\",cl:\"🆑\",o2:\"🅾️\",sos:\"🆘\",x:\"❌\",o:\"⭕️\",stop_sign:\"🛑\",no_entry:\"⛔️\",name_badge:\"📛\",no_entry_sign:\"🚫\",anger:\"💢\",hotsprings:\"♨️\",no_pedestrians:\"🚷\",do_not_litter:\"🚯\",no_bicycles:\"🚳\",\"non-potable_water\":\"🚱\",underage:\"🔞\",no_mobile_phones:\"📵\",no_smoking:\"🚭\",exclamation:\"❗️\",heavy_exclamation_mark:\"❗️\",grey_exclamation:\"❕\",question:\"❓\",grey_question:\"❔\",bangbang:\"‼️\",interrobang:\"⁉️\",low_brightness:\"🔅\",high_brightness:\"🔆\",part_alternation_mark:\"〽️\",warning:\"⚠️\",children_crossing:\"🚸\",trident:\"🔱\",fleur_de_lis:\"⚜️\",beginner:\"🔰\",recycle:\"♻️\",white_check_mark:\"✅\",chart:\"💹\",sparkle:\"❇️\",eight_spoked_asterisk:\"✳️\",negative_squared_cross_mark:\"❎\",globe_with_meridians:\"🌐\",diamond_shape_with_a_dot_inside:\"💠\",m:\"Ⓜ️\",cyclone:\"🌀\",zzz:\"💤\",atm:\"🏧\",wc:\"🚾\",wheelchair:\"♿️\",parking:\"🅿️\",sa:\"🈂️\",passport_control:\"🛂\",customs:\"🛃\",baggage_claim:\"🛄\",left_luggage:\"🛅\",mens:\"🚹\",womens:\"🚺\",baby_symbol:\"🚼\",restroom:\"🚻\",put_litter_in_its_place:\"🚮\",cinema:\"🎦\",signal_strength:\"📶\",koko:\"🈁\",symbols:\"🔣\",information_source:\"ℹ️\",abc:\"🔤\",abcd:\"🔡\",capital_abcd:\"🔠\",ng:\"🆖\",ok:\"🆗\",up:\"🆙\",cool:\"🆒\",new:\"🆕\",free:\"🆓\",zero:\"0️⃣\",one:\"1️⃣\",two:\"2️⃣\",three:\"3️⃣\",four:\"4️⃣\",five:\"5️⃣\",six:\"6️⃣\",seven:\"7️⃣\",eight:\"8️⃣\",nine:\"9️⃣\",keycap_ten:\"🔟\",hash:\"#️⃣\",asterisk:\"*️⃣\",arrow_forward:\"▶️\",pause_button:\"⏸\",play_or_pause_button:\"⏯\",stop_button:\"⏹\",record_button:\"⏺\",next_track_button:\"⏭\",previous_track_button:\"⏮\",fast_forward:\"⏩\",rewind:\"⏪\",arrow_double_up:\"⏫\",arrow_double_down:\"⏬\",arrow_backward:\"◀️\",arrow_up_small:\"🔼\",arrow_down_small:\"🔽\",arrow_right:\"➡️\",arrow_left:\"⬅️\",arrow_up:\"⬆️\",arrow_down:\"⬇️\",arrow_upper_right:\"↗️\",arrow_lower_right:\"↘️\",arrow_lower_left:\"↙️\",arrow_upper_left:\"↖️\",arrow_up_down:\"↕️\",left_right_arrow:\"↔️\",arrow_right_hook:\"↪️\",leftwards_arrow_with_hook:\"↩️\",arrow_heading_up:\"⤴️\",arrow_heading_down:\"⤵️\",twisted_rightwards_arrows:\"🔀\",repeat:\"🔁\",repeat_one:\"🔂\",arrows_counterclockwise:\"🔄\",arrows_clockwise:\"🔃\",musical_note:\"🎵\",notes:\"🎶\",heavy_plus_sign:\"➕\",heavy_minus_sign:\"➖\",heavy_division_sign:\"➗\",heavy_multiplication_x:\"✖️\",heavy_dollar_sign:\"💲\",currency_exchange:\"💱\",tm:\"™️\",copyright:\"©️\",registered:\"®️\",wavy_dash:\"〰️\",curly_loop:\"➰\",loop:\"➿\",end:\"🔚\",back:\"🔙\",on:\"🔛\",top:\"🔝\",soon:\"🔜\",heavy_check_mark:\"✔️\",ballot_box_with_check:\"☑️\",radio_button:\"🔘\",white_circle:\"⚪️\",black_circle:\"⚫️\",red_circle:\"🔴\",large_blue_circle:\"🔵\",small_red_triangle:\"🔺\",small_red_triangle_down:\"🔻\",small_orange_diamond:\"🔸\",small_blue_diamond:\"🔹\",large_orange_diamond:\"🔶\",large_blue_diamond:\"🔷\",white_square_button:\"🔳\",black_square_button:\"🔲\",black_small_square:\"▪️\",white_small_square:\"▫️\",black_medium_small_square:\"◾️\",white_medium_small_square:\"◽️\",black_medium_square:\"◼️\",white_medium_square:\"◻️\",black_large_square:\"⬛️\",white_large_square:\"⬜️\",speaker:\"🔈\",mute:\"🔇\",sound:\"🔉\",loud_sound:\"🔊\",bell:\"🔔\",no_bell:\"🔕\",mega:\"📣\",loudspeaker:\"📢\",eye_speech_bubble:\"👁‍🗨\",speech_balloon:\"💬\",thought_balloon:\"💭\",right_anger_bubble:\"🗯\",spades:\"♠️\",clubs:\"♣️\",hearts:\"♥️\",diamonds:\"♦️\",black_joker:\"🃏\",flower_playing_cards:\"🎴\",mahjong:\"🀄️\",clock1:\"🕐\",clock2:\"🕑\",clock3:\"🕒\",clock4:\"🕓\",clock5:\"🕔\",clock6:\"🕕\",clock7:\"🕖\",clock8:\"🕗\",clock9:\"🕘\",clock10:\"🕙\",clock11:\"🕚\",clock12:\"🕛\",clock130:\"🕜\",clock230:\"🕝\",clock330:\"🕞\",clock430:\"🕟\",clock530:\"🕠\",clock630:\"🕡\",clock730:\"🕢\",clock830:\"🕣\",clock930:\"🕤\",clock1030:\"🕥\",clock1130:\"🕦\",clock1230:\"🕧\",white_flag:\"🏳️\",black_flag:\"🏴\",checkered_flag:\"🏁\",triangular_flag_on_post:\"🚩\",rainbow_flag:\"🏳️‍🌈\",afghanistan:\"🇦🇫\",aland_islands:\"🇦🇽\",albania:\"🇦🇱\",algeria:\"🇩🇿\",american_samoa:\"🇦🇸\",andorra:\"🇦🇩\",angola:\"🇦🇴\",anguilla:\"🇦🇮\",antarctica:\"🇦🇶\",antigua_barbuda:\"🇦🇬\",argentina:\"🇦🇷\",armenia:\"🇦🇲\",aruba:\"🇦🇼\",australia:\"🇦🇺\",austria:\"🇦🇹\",azerbaijan:\"🇦🇿\",bahamas:\"🇧🇸\",bahrain:\"🇧🇭\",bangladesh:\"🇧🇩\",barbados:\"🇧🇧\",belarus:\"🇧🇾\",belgium:\"🇧🇪\",belize:\"🇧🇿\",benin:\"🇧🇯\",bermuda:\"🇧🇲\",bhutan:\"🇧🇹\",bolivia:\"🇧🇴\",caribbean_netherlands:\"🇧🇶\",bosnia_herzegovina:\"🇧🇦\",botswana:\"🇧🇼\",brazil:\"🇧🇷\",british_indian_ocean_territory:\"🇮🇴\",british_virgin_islands:\"🇻🇬\",brunei:\"🇧🇳\",bulgaria:\"🇧🇬\",burkina_faso:\"🇧🇫\",burundi:\"🇧🇮\",cape_verde:\"🇨🇻\",cambodia:\"🇰🇭\",cameroon:\"🇨🇲\",canada:\"🇨🇦\",canary_islands:\"🇮🇨\",cayman_islands:\"🇰🇾\",central_african_republic:\"🇨🇫\",chad:\"🇹🇩\",chile:\"🇨🇱\",cn:\"🇨🇳\",christmas_island:\"🇨🇽\",cocos_islands:\"🇨🇨\",colombia:\"🇨🇴\",comoros:\"🇰🇲\",congo_brazzaville:\"🇨🇬\",congo_kinshasa:\"🇨🇩\",cook_islands:\"🇨🇰\",costa_rica:\"🇨🇷\",cote_divoire:\"🇨🇮\",croatia:\"🇭🇷\",cuba:\"🇨🇺\",curacao:\"🇨🇼\",cyprus:\"🇨🇾\",czech_republic:\"🇨🇿\",denmark:\"🇩🇰\",djibouti:\"🇩🇯\",dominica:\"🇩🇲\",dominican_republic:\"🇩🇴\",ecuador:\"🇪🇨\",egypt:\"🇪🇬\",el_salvador:\"🇸🇻\",equatorial_guinea:\"🇬🇶\",eritrea:\"🇪🇷\",estonia:\"🇪🇪\",ethiopia:\"🇪🇹\",eu:\"🇪🇺\",european_union:\"🇪🇺\",falkland_islands:\"🇫🇰\",faroe_islands:\"🇫🇴\",fiji:\"🇫🇯\",finland:\"🇫🇮\",fr:\"🇫🇷\",french_guiana:\"🇬🇫\",french_polynesia:\"🇵🇫\",french_southern_territories:\"🇹🇫\",gabon:\"🇬🇦\",gambia:\"🇬🇲\",georgia:\"🇬🇪\",de:\"🇩🇪\",ghana:\"🇬🇭\",gibraltar:\"🇬🇮\",greece:\"🇬🇷\",greenland:\"🇬🇱\",grenada:\"🇬🇩\",guadeloupe:\"🇬🇵\",guam:\"🇬🇺\",guatemala:\"🇬🇹\",guernsey:\"🇬🇬\",guinea:\"🇬🇳\",guinea_bissau:\"🇬🇼\",guyana:\"🇬🇾\",haiti:\"🇭🇹\",honduras:\"🇭🇳\",hong_kong:\"🇭🇰\",hungary:\"🇭🇺\",iceland:\"🇮🇸\",india:\"🇮🇳\",indonesia:\"🇮🇩\",iran:\"🇮🇷\",iraq:\"🇮🇶\",ireland:\"🇮🇪\",isle_of_man:\"🇮🇲\",israel:\"🇮🇱\",it:\"🇮🇹\",jamaica:\"🇯🇲\",jp:\"🇯🇵\",crossed_flags:\"🎌\",jersey:\"🇯🇪\",jordan:\"🇯🇴\",kazakhstan:\"🇰🇿\",kenya:\"🇰🇪\",kiribati:\"🇰🇮\",kosovo:\"🇽🇰\",kuwait:\"🇰🇼\",kyrgyzstan:\"🇰🇬\",laos:\"🇱🇦\",latvia:\"🇱🇻\",lebanon:\"🇱🇧\",lesotho:\"🇱🇸\",liberia:\"🇱🇷\",libya:\"🇱🇾\",liechtenstein:\"🇱🇮\",lithuania:\"🇱🇹\",luxembourg:\"🇱🇺\",macau:\"🇲🇴\",macedonia:\"🇲🇰\",madagascar:\"🇲🇬\",malawi:\"🇲🇼\",malaysia:\"🇲🇾\",maldives:\"🇲🇻\",mali:\"🇲🇱\",malta:\"🇲🇹\",marshall_islands:\"🇲🇭\",martinique:\"🇲🇶\",mauritania:\"🇲🇷\",mauritius:\"🇲🇺\",mayotte:\"🇾🇹\",mexico:\"🇲🇽\",micronesia:\"🇫🇲\",moldova:\"🇲🇩\",monaco:\"🇲🇨\",mongolia:\"🇲🇳\",montenegro:\"🇲🇪\",montserrat:\"🇲🇸\",morocco:\"🇲🇦\",mozambique:\"🇲🇿\",myanmar:\"🇲🇲\",namibia:\"🇳🇦\",nauru:\"🇳🇷\",nepal:\"🇳🇵\",netherlands:\"🇳🇱\",new_caledonia:\"🇳🇨\",new_zealand:\"🇳🇿\",nicaragua:\"🇳🇮\",niger:\"🇳🇪\",nigeria:\"🇳🇬\",niue:\"🇳🇺\",norfolk_island:\"🇳🇫\",northern_mariana_islands:\"🇲🇵\",north_korea:\"🇰🇵\",norway:\"🇳🇴\",oman:\"🇴🇲\",pakistan:\"🇵🇰\",palau:\"🇵🇼\",palestinian_territories:\"🇵🇸\",panama:\"🇵🇦\",papua_new_guinea:\"🇵🇬\",paraguay:\"🇵🇾\",peru:\"🇵🇪\",philippines:\"🇵🇭\",pitcairn_islands:\"🇵🇳\",poland:\"🇵🇱\",portugal:\"🇵🇹\",puerto_rico:\"🇵🇷\",qatar:\"🇶🇦\",reunion:\"🇷🇪\",romania:\"🇷🇴\",ru:\"🇷🇺\",rwanda:\"🇷🇼\",st_barthelemy:\"🇧🇱\",st_helena:\"🇸🇭\",st_kitts_nevis:\"🇰🇳\",st_lucia:\"🇱🇨\",st_pierre_miquelon:\"🇵🇲\",st_vincent_grenadines:\"🇻🇨\",samoa:\"🇼🇸\",san_marino:\"🇸🇲\",sao_tome_principe:\"🇸🇹\",saudi_arabia:\"🇸🇦\",senegal:\"🇸🇳\",serbia:\"🇷🇸\",seychelles:\"🇸🇨\",sierra_leone:\"🇸🇱\",singapore:\"🇸🇬\",sint_maarten:\"🇸🇽\",slovakia:\"🇸🇰\",slovenia:\"🇸🇮\",solomon_islands:\"🇸🇧\",somalia:\"🇸🇴\",south_africa:\"🇿🇦\",south_georgia_south_sandwich_islands:\"🇬🇸\",kr:\"🇰🇷\",south_sudan:\"🇸🇸\",es:\"🇪🇸\",sri_lanka:\"🇱🇰\",sudan:\"🇸🇩\",suriname:\"🇸🇷\",swaziland:\"🇸🇿\",sweden:\"🇸🇪\",switzerland:\"🇨🇭\",syria:\"🇸🇾\",taiwan:\"🇹🇼\",tajikistan:\"🇹🇯\",tanzania:\"🇹🇿\",thailand:\"🇹🇭\",timor_leste:\"🇹🇱\",togo:\"🇹🇬\",tokelau:\"🇹🇰\",tonga:\"🇹🇴\",trinidad_tobago:\"🇹🇹\",tunisia:\"🇹🇳\",tr:\"🇹🇷\",turkmenistan:\"🇹🇲\",turks_caicos_islands:\"🇹🇨\",tuvalu:\"🇹🇻\",uganda:\"🇺🇬\",ukraine:\"🇺🇦\",united_arab_emirates:\"🇦🇪\",gb:\"🇬🇧\",uk:\"🇬🇧\",us:\"🇺🇸\",us_virgin_islands:\"🇻🇮\",uruguay:\"🇺🇾\",uzbekistan:\"🇺🇿\",vanuatu:\"🇻🇺\",vatican_city:\"🇻🇦\",venezuela:\"🇻🇪\",vietnam:\"🇻🇳\",wallis_futuna:\"🇼🇫\",western_sahara:\"🇪🇭\",yemen:\"🇾🇪\",zambia:\"🇿🇲\",zimbabwe:\"🇿🇼\"}},function(e,t,n){\"use strict\";e.exports={angry:[\">:(\",\">:-(\"],blush:[':\")',':-\")'],broken_heart:[\"</3\",\"<\\\\3\"],confused:[\":/\",\":-/\"],cry:[\":'(\",\":'-(\",\":,(\",\":,-(\"],frowning:[\":(\",\":-(\"],heart:[\"<3\"],imp:[\"]:(\",\"]:-(\"],innocent:[\"o:)\",\"O:)\",\"o:-)\",\"O:-)\",\"0:)\",\"0:-)\"],joy:[\":')\",\":'-)\",\":,)\",\":,-)\",\":'D\",\":'-D\",\":,D\",\":,-D\"],kissing:[\":*\",\":-*\"],laughing:[\"x-)\",\"X-)\"],neutral_face:[\":|\",\":-|\"],open_mouth:[\":o\",\":-o\",\":O\",\":-O\"],rage:[\":@\",\":-@\"],smile:[\":D\",\":-D\"],smiley:[\":)\",\":-)\"],smiling_imp:[\"]:)\",\"]:-)\"],sob:[\":,'(\",\":,'-(\",\";(\",\";-(\"],stuck_out_tongue:[\":P\",\":-P\"],sunglasses:[\"8-)\",\"B-)\"],sweat:[\",:(\",\",:-(\"],sweat_smile:[\",:)\",\",:-)\"],unamused:[\":s\",\":-S\",\":z\",\":-Z\",\":$\",\":-$\"],wink:[\";)\",\";-)\"]}},function(e,t,n){\"use strict\";function i(e){return e.replace(/[.?*+^$[\\]\\\\(){}|-]/g,\"\\\\$&\")}e.exports=function(e){var t,n=e.defs;e.enabled.length&&(n=Object.keys(n).reduce((function(t,i){return e.enabled.indexOf(i)>=0&&(t[i]=n[i]),t}),{})),t=Object.keys(e.shortcuts).reduce((function(t,i){return n[i]?Array.isArray(e.shortcuts[i])?(e.shortcuts[i].forEach((function(e){t[e]=i})),t):(t[e.shortcuts[i]]=i,t):t}),{});var r=Object.keys(n).map((function(e){return\":\"+e+\":\"})).concat(Object.keys(t)).sort().reverse().map((function(e){return i(e)})).join(\"|\"),a=RegExp(r),o=RegExp(r,\"g\");return{defs:n,shortcuts:t,scanRE:a,replaceRE:o}}},function(e,t,n){\"use strict\";e.exports=function(e,t){return e[t].content}},function(e,t,n){\"use strict\";e.exports=function(e,t,n,i,r){function a(e,i,a){var o,s=0,c=[];return e.replace(r,(function(i,r,u){var d;if(n.hasOwnProperty(i)){if(d=n[i],r>0&&!l.test(u[r-1]))return;if(r+i.length<u.length&&!l.test(u[r+i.length]))return}else d=i.slice(1,-1);r>s&&(o=new a(\"text\",\"\",0),o.content=e.slice(s,r),c.push(o)),o=new a(\"emoji\",\"\",0),o.markup=d,o.content=t[d],c.push(o),s=r+i.length})),s<e.length&&(o=new a(\"text\",\"\",0),o.content=e.slice(s),c.push(o)),c}var o=e.utils.arrayReplaceAt,s=e.utils.lib.ucmicro,l=new RegExp([s.Z.source,s.P.source,s.Cc.source].join(\"|\"));return function(e){var t,n,r,s,l,c=e.tokens,u=0;for(n=0,r=c.length;n<r;n++)if(\"inline\"===c[n].type)for(s=c[n].children,t=s.length-1;t>=0;t--)l=s[t],\"link_open\"!==l.type&&\"link_close\"!==l.type||\"auto\"===l.info&&(u-=l.nesting),\"text\"===l.type&&0===u&&i.test(l.content)&&(c[n].children=s=o(s,t,a(l.content,l.level,e.Token)))}}},function(e,t,n){\"use strict\";function i(e,t,n,i){var r=Number(e[t].meta.id+1).toString(),a=\"\";return\"string\"==typeof i.docId&&(a=\"-\"+i.docId+\"-\"),a+r}function r(e,t){var n=Number(e[t].meta.id+1).toString();return e[t].meta.subId>0&&(n+=\":\"+e[t].meta.subId),\"[\"+n+\"]\"}function a(e,t,n,i,r){var a=r.rules.footnote_anchor_name(e,t,n,i,r),o=r.rules.footnote_caption(e,t,n,i,r),s=a;return e[t].meta.subId>0&&(s+=\":\"+e[t].meta.subId),'<sup class=\"footnote-ref\"><a href=\"#fn'+a+'\" id=\"fnref'+s+'\">'+o+\"</a></sup>\"}function o(e,t,n){return(n.xhtmlOut?'<hr class=\"footnotes-sep\" />\\n':'<hr class=\"footnotes-sep\">\\n')+'<section class=\"footnotes\">\\n<ol class=\"footnotes-list\">\\n'}function s(){return\"</ol>\\n</section>\\n\"}function l(e,t,n,i,r){var a=r.rules.footnote_anchor_name(e,t,n,i,r);return e[t].meta.subId>0&&(a+=\":\"+e[t].meta.subId),'<li id=\"fn'+a+'\" class=\"footnote-item\">'}function c(){return\"</li>\\n\"}function u(e,t,n,i,r){var a=r.rules.footnote_anchor_name(e,t,n,i,r);return e[t].meta.subId>0&&(a+=\":\"+e[t].meta.subId),' <a href=\"#fnref'+a+'\" class=\"footnote-backref\">↩︎</a>'}e.exports=function(e){function t(e,t,n,i){var r,a,o,s,l,c,u,d,p,h,_,m=e.bMarks[t]+e.tShift[t],g=e.eMarks[t];if(m+4>g)return!1;if(91!==e.src.charCodeAt(m))return!1;if(94!==e.src.charCodeAt(m+1))return!1;for(l=m+2;l<g;l++){if(32===e.src.charCodeAt(l))return!1;if(93===e.src.charCodeAt(l))break}if(l===m+2)return!1;if(l+1>=g||58!==e.src.charCodeAt(++l))return!1;if(i)return!0;for(l++,e.env.footnotes||(e.env.footnotes={}),e.env.footnotes.refs||(e.env.footnotes.refs={}),c=e.src.slice(m+2,l-2),e.env.footnotes.refs[\":\"+c]=-1,u=new e.Token(\"footnote_reference_open\",\"\",1),u.meta={label:c},u.level=e.level++,e.tokens.push(u),r=e.bMarks[t],a=e.tShift[t],o=e.sCount[t],s=e.parentType,_=l,d=p=e.sCount[t]+l-(e.bMarks[t]+e.tShift[t]);l<g&&(h=e.src.charCodeAt(l),f(h));)9===h?p+=4-p%4:p++,l++;return e.tShift[t]=l-_,e.sCount[t]=p-d,e.bMarks[t]=_,e.blkIndent+=4,e.parentType=\"footnote\",e.sCount[t]<e.blkIndent&&(e.sCount[t]+=e.blkIndent),e.md.block.tokenize(e,t,n,!0),e.parentType=s,e.blkIndent-=4,e.tShift[t]=a,e.sCount[t]=o,e.bMarks[t]=r,u=new e.Token(\"footnote_reference_close\",\"\",-1),u.level=--e.level,e.tokens.push(u),!0}function n(e,t){var n,i,r,a,o,s=e.posMax,l=e.pos;return!(l+2>=s)&&94===e.src.charCodeAt(l)&&91===e.src.charCodeAt(l+1)&&(n=l+2,!((i=h(e,l+1))<0)&&(t||(e.env.footnotes||(e.env.footnotes={}),e.env.footnotes.list||(e.env.footnotes.list=[]),r=e.env.footnotes.list.length,e.md.inline.parse(e.src.slice(n,i),e.md,e.env,o=[]),a=e.push(\"footnote_ref\",\"\",0),a.meta={id:r},e.env.footnotes.list[r]={content:e.src.slice(n,i),tokens:o}),e.pos=i+1,e.posMax=s,!0))}function d(e,t){var n,i,r,a,o,s=e.posMax,l=e.pos;if(l+3>s)return!1;if(!e.env.footnotes||!e.env.footnotes.refs)return!1;if(91!==e.src.charCodeAt(l))return!1;if(94!==e.src.charCodeAt(l+1))return!1;for(i=l+2;i<s;i++){if(32===e.src.charCodeAt(i))return!1;if(10===e.src.charCodeAt(i))return!1;if(93===e.src.charCodeAt(i))break}return i!==l+2&&!(i>=s)&&(i++,n=e.src.slice(l+2,i-1),void 0!==e.env.footnotes.refs[\":\"+n]&&(t||(e.env.footnotes.list||(e.env.footnotes.list=[]),e.env.footnotes.refs[\":\"+n]<0?(r=e.env.footnotes.list.length,e.env.footnotes.list[r]={label:n,count:0},e.env.footnotes.refs[\":\"+n]=r):r=e.env.footnotes.refs[\":\"+n],a=e.env.footnotes.list[r].count,e.env.footnotes.list[r].count++,o=e.push(\"footnote_ref\",\"\",0),o.meta={id:r,subId:a,label:n}),e.pos=i,e.posMax=s,!0))}function p(e){var t,n,i,r,a,o,s,l,c,u,d=!1,p={};if(e.env.footnotes&&(e.tokens=e.tokens.filter((function(e){return\"footnote_reference_open\"===e.type?(d=!0,c=[],u=e.meta.label,!1):\"footnote_reference_close\"===e.type?(d=!1,p[\":\"+u]=c,!1):(d&&c.push(e),!d)})),e.env.footnotes.list)){for(o=e.env.footnotes.list,s=new e.Token(\"footnote_block_open\",\"\",1),e.tokens.push(s),t=0,n=o.length;t<n;t++){for(s=new e.Token(\"footnote_open\",\"\",1),s.meta={id:t,label:o[t].label},e.tokens.push(s),o[t].tokens?(l=[],s=new e.Token(\"paragraph_open\",\"p\",1),s.block=!0,l.push(s),s=new e.Token(\"inline\",\"\",0),s.children=o[t].tokens,s.content=o[t].content,l.push(s),s=new e.Token(\"paragraph_close\",\"p\",-1),s.block=!0,l.push(s)):o[t].label&&(l=p[\":\"+o[t].label]),e.tokens=e.tokens.concat(l),a=\"paragraph_close\"===e.tokens[e.tokens.length-1].type?e.tokens.pop():null,r=o[t].count>0?o[t].count:1,i=0;i<r;i++)s=new e.Token(\"footnote_anchor\",\"\",0),s.meta={id:t,subId:i,label:o[t].label},e.tokens.push(s);a&&e.tokens.push(a),s=new e.Token(\"footnote_close\",\"\",-1),e.tokens.push(s)}s=new e.Token(\"footnote_block_close\",\"\",-1),e.tokens.push(s)}}var h=e.helpers.parseLinkLabel,f=e.utils.isSpace;e.renderer.rules.footnote_ref=a,e.renderer.rules.footnote_block_open=o,e.renderer.rules.footnote_block_close=s,e.renderer.rules.footnote_open=l,e.renderer.rules.footnote_close=c,e.renderer.rules.footnote_anchor=u,e.renderer.rules.footnote_caption=r,e.renderer.rules.footnote_anchor_name=i,e.block.ruler.before(\"reference\",\"footnote_def\",t,{alt:[\"paragraph\",\"reference\"]}),e.inline.ruler.after(\"image\",\"footnote_inline\",n),e.inline.ruler.after(\"footnote_inline\",\"footnote_ref\",d),e.core.ruler.after(\"inline\",\"footnote_tail\",p)}},function(e,t){var n=function(e,t){t=t||{},void 0===t.highlighted&&(t.highlighted=!0),void 0===t.hljs&&(t.hljs=\"auto\"),\"function\"!=typeof t.langCheck&&(t.langCheck=function(){}),e.options.highlight=function(n,i){var r=t.hljs;if(\"auto\"===t.hljs&&(r=window.hljs),t.highlighted&&i&&r){if(r.getLanguage(i))return'<pre><div class=\"hljs\"><code class=\"'+e.options.langPrefix+i+'\">'+r.highlight(i,n,!0).value+\"</code></div></pre>\";\"function\"==typeof t.langCheck&&t.langCheck(i)}return'<pre><code class=\"'+e.options.langPrefix+i+'\">'+e.utils.escapeHtml(n)+\"</code></pre>\"}};e.exports=n},function(e,t){e.exports=function(e,t){e.image_add=function(t,n){e.__image instanceof Object||(e.__image={}),e.__image[t]=n},e.image_del=function(t){e.__image instanceof Object||(e.__image={}),delete e.__image[t]};var n=e.renderer.rules.image;e.renderer.rules.image=function(t,i,r,a,o){var s=t[i].attrs;if(e.__image instanceof Object)for(var l=0;l<s.length;l++)if(\"src\"==s[l][0]&&e.__image.hasOwnProperty(t[i].attrs[l][1])){s.push([\"rel\",s[l][1]]),s[l][1]=e.__image[t[i].attrs[l][1]];break}return n(t,i,r,a,o)}}},function(e,t,n){\"use strict\";e.exports=function(e){function t(e,t){var n,i,r,a,o,s=e.pos,l=e.src.charCodeAt(s);if(t)return!1;if(43!==l)return!1;if(i=e.scanDelims(e.pos,!0),a=i.length,o=String.fromCharCode(l),a<2)return!1;for(a%2&&(r=e.push(\"text\",\"\",0),r.content=o,a--),n=0;n<a;n+=2)r=e.push(\"text\",\"\",0),r.content=o+o,e.delimiters.push({marker:l,jump:n,token:e.tokens.length-1,level:e.level,end:-1,open:i.can_open,close:i.can_close});return e.pos+=i.length,!0}function n(e){var t,n,i,r,a,o=[],s=e.delimiters,l=e.delimiters.length;for(t=0;t<l;t++)i=s[t],43===i.marker&&-1!==i.end&&(r=s[i.end],a=e.tokens[i.token],a.type=\"ins_open\",a.tag=\"ins\",a.nesting=1,a.markup=\"++\",a.content=\"\",a=e.tokens[r.token],a.type=\"ins_close\",a.tag=\"ins\",a.nesting=-1,a.markup=\"++\",a.content=\"\",\"text\"===e.tokens[r.token-1].type&&\"+\"===e.tokens[r.token-1].content&&o.push(r.token-1));for(;o.length;){for(t=o.pop(),n=t+1;n<e.tokens.length&&\"ins_close\"===e.tokens[n].type;)n++;n--,t!==n&&(a=e.tokens[n],e.tokens[n]=e.tokens[t],e.tokens[t]=a)}}e.inline.ruler.before(\"emphasis\",\"ins\",t),e.inline.ruler2.before(\"emphasis\",\"ins\",n)}},function(e,t,n){\"use strict\";function i(e,t){var n,i,r=e.posMax,a=!0,o=!0;return n=t>0?e.src.charCodeAt(t-1):-1,i=t+1<=r?e.src.charCodeAt(t+1):-1,(32===n||9===n||i>=48&&i<=57)&&(o=!1),32!==i&&9!==i||(a=!1),{can_open:a,can_close:o}}function r(e,t){if(!o&&window.katex&&(o=window.katex),!o)return!1;var n,r,a,s,l;if(\"$\"!==e.src[e.pos])return!1;if(s=i(e,e.pos),!s.can_open)return t||(e.pending+=\"$\"),e.pos+=1,!0;for(n=e.pos+1,r=n;-1!==(r=e.src.indexOf(\"$\",r));){for(l=r-1;\"\\\\\"===e.src[l];)l-=1;if((r-l)%2==1)break;r+=1}return-1===r?(t||(e.pending+=\"$\"),e.pos=n,!0):r-n==0?(t||(e.pending+=\"$$\"),e.pos=n+1,!0):(s=i(e,r),s.can_close?(t||(a=e.push(\"math_inline\",\"math\",0),a.markup=\"$\",a.content=e.src.slice(n,r)),e.pos=r+1,!0):(t||(e.pending+=\"$\"),e.pos=n,!0))}function a(e,t,n,i){if(!o&&window.katex&&(o=window.katex),!o)return!1;var r,a,s,l,c,u=!1,d=e.bMarks[t]+e.tShift[t],p=e.eMarks[t];if(d+2>p)return!1;if(\"$$\"!==e.src.slice(d,d+2))return!1;if(d+=2,r=e.src.slice(d,p),i)return!0;for(\"$$\"===r.trim().slice(-2)&&(r=r.trim().slice(0,-2),u=!0),s=t;!u&&!(++s>=n)&&(d=e.bMarks[s]+e.tShift[s],p=e.eMarks[s],!(d<p&&e.tShift[s]<e.blkIndent));)\"$$\"===e.src.slice(d,p).trim().slice(-2)&&(l=e.src.slice(0,p).lastIndexOf(\"$$\"),a=e.src.slice(d,l),u=!0);return e.line=s+1,c=e.push(\"math_block\",\"math\",0),c.block=!0,c.content=(r&&r.trim()?r+\"\\n\":\"\")+e.getLines(t+1,s,e.tShift[t],!0)+(a&&a.trim()?a:\"\"),c.map=[t,e.line],c.markup=\"$$\",!0}var o=null;e.exports=function(e,t){t=t||{};var n=function(e){!o&&window.katex&&(o=window.katex),t.displayMode=!1;try{return o.renderToString(e,t)}catch(n){return t.throwOnError,e}},i=function(e,t){return n(e[t].content)},s=function(e){!o&&window.katex&&(o=window.katex),t.displayMode=!0;try{return\"<p>\"+o.renderToString(e,t)+\"</p>\"}catch(n){return t.throwOnError,e}},l=function(e,t){return s(e[t].content)+\"\\n\"};e.inline.ruler.after(\"escape\",\"math_inline\",r),e.block.ruler.after(\"blockquote\",\"math_block\",a,{alt:[\"paragraph\",\"reference\",\"blockquote\",\"list\"]}),e.renderer.rules.math_inline=i,e.renderer.rules.math_block=l}},function(e,t,n){\"use strict\";e.exports=function(e){function t(e,t){var n,i,r,a,o,s=e.pos,l=e.src.charCodeAt(s);if(t)return!1;if(61!==l)return!1;if(i=e.scanDelims(e.pos,!0),a=i.length,o=String.fromCharCode(l),a<2)return!1;for(a%2&&(r=e.push(\"text\",\"\",0),r.content=o,a--),n=0;n<a;n+=2)r=e.push(\"text\",\"\",0),r.content=o+o,e.delimiters.push({marker:l,jump:n,token:e.tokens.length-1,level:e.level,end:-1,open:i.can_open,close:i.can_close});return e.pos+=i.length,!0}function n(e){var t,n,i,r,a,o=[],s=e.delimiters,l=e.delimiters.length;for(t=0;t<l;t++)i=s[t],61===i.marker&&-1!==i.end&&(r=s[i.end],a=e.tokens[i.token],a.type=\"mark_open\",a.tag=\"mark\",a.nesting=1,a.markup=\"==\",a.content=\"\",a=e.tokens[r.token],a.type=\"mark_close\",a.tag=\"mark\",a.nesting=-1,a.markup=\"==\",a.content=\"\",\"text\"===e.tokens[r.token-1].type&&\"=\"===e.tokens[r.token-1].content&&o.push(r.token-1));for(;o.length;){for(t=o.pop(),n=t+1;n<e.tokens.length&&\"mark_close\"===e.tokens[n].type;)n++;n--,t!==n&&(a=e.tokens[n],e.tokens[n]=e.tokens[t],e.tokens[t]=a)}}e.inline.ruler.before(\"emphasis\",\"mark\",t),e.inline.ruler2.before(\"emphasis\",\"mark\",n)}},function(e,t,n){\"use strict\";function i(e,t){var n,i,a,o=e.posMax,s=e.pos;if(126!==e.src.charCodeAt(s))return!1;if(t)return!1;if(s+2>=o)return!1;for(e.pos=s+1;e.pos<o;){if(126===e.src.charCodeAt(e.pos)){n=!0;break}e.md.inline.skipToken(e)}return n&&s+1!==e.pos?(i=e.src.slice(s+1,e.pos),i.match(/(^|[^\\\\])(\\\\\\\\)*\\s/)?(e.pos=s,!1):(e.posMax=e.pos,e.pos=s+1,a=e.push(\"sub_open\",\"sub\",1),a.markup=\"~\",a=e.push(\"text\",\"\",0),a.content=i.replace(r,\"$1\"),a=e.push(\"sub_close\",\"sub\",-1),a.markup=\"~\",e.pos=e.posMax+1,e.posMax=o,!0)):(e.pos=s,!1)}var r=/\\\\([ \\\\!\"#$%&'()*+,.\\/:;<=>?@[\\]^_`{|}~-])/g;e.exports=function(e){e.inline.ruler.after(\"emphasis\",\"sub\",i)}},function(e,t,n){\"use strict\";function i(e,t){var n,i,a,o=e.posMax,s=e.pos;if(94!==e.src.charCodeAt(s))return!1;if(t)return!1;if(s+2>=o)return!1;for(e.pos=s+1;e.pos<o;){if(94===e.src.charCodeAt(e.pos)){n=!0;break}e.md.inline.skipToken(e)}return n&&s+1!==e.pos?(i=e.src.slice(s+1,e.pos),i.match(/(^|[^\\\\])(\\\\\\\\)*\\s/)?(e.pos=s,!1):(e.posMax=e.pos,e.pos=s+1,a=e.push(\"sup_open\",\"sup\",1),a.markup=\"^\",a=e.push(\"text\",\"\",0),a.content=i.replace(r,\"$1\"),a=e.push(\"sup_close\",\"sup\",-1),a.markup=\"^\",e.pos=e.posMax+1,e.posMax=o,!0)):(e.pos=s,!1)}var r=/\\\\([ \\\\!\"#$%&'()*+,.\\/:;<=>?@[\\]^_`{|}~-])/g;e.exports=function(e){e.inline.ruler.after(\"emphasis\",\"sup\",i)}},function(e,t){function n(e,t,n){var i=e.attrIndex(t),r=[t,n];i<0?e.attrPush(r):e.attrs[i]=r}function i(e,t){for(var n=e[t].level-1,i=t-1;i>=0;i--)if(e[i].level===n)return i;return-1}function r(e,t){return u(e[t])&&d(e[t-1])&&p(e[t-2])&&h(e[t])}function a(e,t){if(e.children.unshift(o(e,t)),e.children[1].content=e.children[1].content.slice(3),e.content=e.content.slice(3),_)if(m){e.children.pop();var n=\"task-item-\"+Math.ceil(1e7*Math.random()-1e3);e.children[0].content=e.children[0].content.slice(0,-1)+' id=\"'+n+'\">',e.children.push(c(e.content,n,t))}else e.children.unshift(s(t)),e.children.push(l(t))}function o(e,t){var n=new t(\"html_inline\",\"\",0),i=f?' disabled=\"\" ':\"\";return 0===e.content.indexOf(\"[ ] \")?n.content='<input class=\"task-list-item-checkbox\"'+i+'type=\"checkbox\">':0!==e.content.indexOf(\"[x] \")&&0!==e.content.indexOf(\"[X] \")||(n.content='<input class=\"task-list-item-checkbox\" checked=\"\"'+i+'type=\"checkbox\">'),n}function s(e){var t=new e(\"html_inline\",\"\",0);return t.content=\"<label>\",t}function l(e){var t=new e(\"html_inline\",\"\",0);return t.content=\"</label>\",t}function c(e,t,n){var i=new n(\"html_inline\",\"\",0);return i.content='<label class=\"task-list-item-label\" for=\"'+t+'\">'+e+\"</label>\",i.attrs=[{for:t}],i}function u(e){return\"inline\"===e.type}function d(e){return\"paragraph_open\"===e.type}function p(e){return\"list_item_open\"===e.type}function h(e){return 0===e.content.indexOf(\"[ ] \")||0===e.content.indexOf(\"[x] \")||0===e.content.indexOf(\"[X] \")}var f=!0,_=!1,m=!1;e.exports=function(e,t){t&&(f=!t.enabled,_=!!t.label,m=!!t.labelAfter),e.core.ruler.after(\"inline\",\"github-task-lists\",(function(e){for(var t=e.tokens,o=2;o<t.length;o++)r(t,o)&&(a(t[o],e.Token),n(t[o-2],\"class\",\"task-list-item\"+(f?\"\":\" enabled\")),n(t[i(t,o-2)],\"class\",\"contains-task-list\"))}))}},function(e,t,n){\"use strict\";e.exports=function(e){function t(e,t){for(;e.src.indexOf(\"\\n\")>=0&&e.src.indexOf(\"\\n\")<e.src.indexOf(\"@[toc]\");)\"softbreak\"===e.tokens.slice(-1)[0].type&&(e.src=e.src.split(\"\\n\").slice(1).join(\"\\n\"),e.pos=0);var n;if(64!==e.src.charCodeAt(e.pos))return!1;if(91!==e.src.charCodeAt(e.pos+1))return!1;var a=i.exec(e.src);if(!a)return!1;if(a=a.filter((function(e){return e})),a.length<1)return!1;if(t)return!1;n=e.push(\"toc_open\",\"toc\",1),n.markup=\"@[toc]\",n=e.push(\"toc_body\",\"\",0);var o=r;a.length>1&&(o=a.pop()),n.content=o,n=e.push(\"toc_close\",\"toc\",-1);var s=0,l=e.src.indexOf(\"\\n\");return s=-1!==l?e.pos+l:e.pos+e.posMax+1,e.pos=s,!0}var n,i=/^@\\[toc\\](?:\\((?:\\s+)?([^\\)]+)(?:\\s+)?\\)?)?(?:\\s+?)?$/im,r=\"Table of Contents\",a=function(e){return e.replace(/[^\\w\\s]/gi,\"\").split(\" \").join(\"_\")};e.renderer.rules.heading_open=function(e,t){var n=e[t].tag,i=e[t+1];return\"inline\"===i.type?\"<\"+n+'><a id=\"'+a(i.content)+\"_\"+i.map[0]+'\"></a>':\"</h1>\"},e.renderer.rules.toc_open=function(e,t){return\"\"},e.renderer.rules.toc_close=function(e,t){return\"\"},e.renderer.rules.toc_body=function(e,t){for(var i=[],r=n.tokens,o=r.length,s=0;s<o;s++)if(\"heading_close\"===r[s].type){var l=r[s],c=r[s-1];\"inline\"===c.type&&i.push({level:+l.tag.substr(1,1),anchor:a(c.content)+\"_\"+c.map[0],content:c.content})}var u=0,d=i.map((function(e){var t=[];if(e.level>u)for(var n=e.level-u,i=0;i<n;i++)t.push(\"<ul>\"),u++;else if(e.level<u)for(n=u-e.level,i=0;i<n;i++)t.push(\"</ul>\"),u--;return t=t.concat(['<li><a href=\"#',e.anchor,'\">',e.content,\"</a></li>\"]),t.join(\"\")}));return\"<h3>\"+e[t].content+\"</h3>\"+d.join(\"\")+new Array(u+1).join(\"</ul>\")},e.core.ruler.push(\"grab_state\",(function(e){n=e})),e.inline.ruler.after(\"emphasis\",\"toc\",t)}},function(e,t,n){\"use strict\";e.exports=n(143)},function(e,t,n){\"use strict\";e.exports=[\"address\",\"article\",\"aside\",\"base\",\"basefont\",\"blockquote\",\"body\",\"caption\",\"center\",\"col\",\"colgroup\",\"dd\",\"details\",\"dialog\",\"dir\",\"div\",\"dl\",\"dt\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"frame\",\"frameset\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"head\",\"header\",\"hr\",\"html\",\"iframe\",\"legend\",\"li\",\"link\",\"main\",\"menu\",\"menuitem\",\"meta\",\"nav\",\"noframes\",\"ol\",\"optgroup\",\"option\",\"p\",\"param\",\"section\",\"source\",\"summary\",\"table\",\"tbody\",\"td\",\"tfoot\",\"th\",\"thead\",\"title\",\"tr\",\"track\",\"ul\"]},function(e,t,n){\"use strict\";t.parseLinkLabel=n(141),t.parseLinkDestination=n(140),t.parseLinkTitle=n(142)},function(e,t,n){\"use strict\";var i=n(0).unescapeAll;e.exports=function(e,t,n){var r,a,o=t,s={ok:!1,pos:0,lines:0,str:\"\"};if(60===e.charCodeAt(t)){for(t++;t<n;){if(10===(r=e.charCodeAt(t)))return s;if(62===r)return s.pos=t+1,s.str=i(e.slice(o+1,t)),s.ok=!0,s;92===r&&t+1<n?t+=2:t++}return s}for(a=0;t<n&&32!==(r=e.charCodeAt(t))&&!(r<32||127===r);)if(92===r&&t+1<n)t+=2;else{if(40===r&&a++,41===r){if(0===a)break;a--}t++}return o===t||0!==a||(s.str=i(e.slice(o,t)),s.lines=0,s.pos=t,s.ok=!0),s}},function(e,t,n){\"use strict\";e.exports=function(e,t,n){var i,r,a,o,s=-1,l=e.posMax,c=e.pos;for(e.pos=t+1,i=1;e.pos<l;){if(93===(a=e.src.charCodeAt(e.pos))&&0===--i){r=!0;break}if(o=e.pos,e.md.inline.skipToken(e),91===a)if(o===e.pos-1)i++;else if(n)return e.pos=c,-1}return r&&(s=e.pos),e.pos=c,s}},function(e,t,n){\"use strict\";var i=n(0).unescapeAll;e.exports=function(e,t,n){var r,a,o=0,s=t,l={ok:!1,pos:0,lines:0,str:\"\"};if(t>=n)return l;if(34!==(a=e.charCodeAt(t))&&39!==a&&40!==a)return l;for(t++,40===a&&(a=41);t<n;){if((r=e.charCodeAt(t))===a)return l.pos=t+1,l.lines=o,l.str=i(e.slice(s+1,t)),l.ok=!0,l;10===r?o++:92===r&&t+1<n&&(t++,10===e.charCodeAt(t)&&o++),t++}return l}},function(e,t,n){\"use strict\";function i(e){var t=e.trim().toLowerCase();return!g.test(t)||!!b.test(t)}function r(e){var t=f.parse(e,!0);if(t.hostname&&(!t.protocol||v.indexOf(t.protocol)>=0))try{t.hostname=_.toASCII(t.hostname)}catch(e){}return f.encode(f.format(t))}function a(e){var t=f.parse(e,!0);if(t.hostname&&(!t.protocol||v.indexOf(t.protocol)>=0))try{t.hostname=_.toUnicode(t.hostname)}catch(e){}return f.decode(f.format(t))}function o(e,t){if(!(this instanceof o))return new o(e,t);t||s.isString(e)||(t=e||{},e=\"default\"),this.inline=new p,this.block=new d,this.core=new u,this.renderer=new c,this.linkify=new h,this.validateLink=i,this.normalizeLink=r,this.normalizeLinkText=a,this.utils=s,this.helpers=s.assign({},l),this.options={},this.configure(e),t&&this.set(t)}var s=n(0),l=n(139),c=n(150),u=n(145),d=n(144),p=n(146),h=n(116),f=n(57),_=n(186),m={default:n(148),zero:n(149),commonmark:n(147)},g=/^(vbscript|javascript|file|data):/,b=/^data:image\\/(gif|png|jpeg|webp);/,v=[\"http:\",\"https:\",\"mailto:\"];o.prototype.set=function(e){return s.assign(this.options,e),this},o.prototype.configure=function(e){var t,n=this;if(s.isString(e)&&(t=e,!(e=m[t])))throw new Error('Wrong `markdown-it` preset \"'+t+'\", check name');if(!e)throw new Error(\"Wrong `markdown-it` preset, can't be empty\");return e.options&&n.set(e.options),e.components&&Object.keys(e.components).forEach((function(t){e.components[t].rules&&n[t].ruler.enableOnly(e.components[t].rules),e.components[t].rules2&&n[t].ruler2.enableOnly(e.components[t].rules2)})),this},o.prototype.enable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),[\"core\",\"block\",\"inline\"].forEach((function(t){n=n.concat(this[t].ruler.enable(e,!0))}),this),n=n.concat(this.inline.ruler2.enable(e,!0));var i=e.filter((function(e){return n.indexOf(e)<0}));if(i.length&&!t)throw new Error(\"MarkdownIt. Failed to enable unknown rule(s): \"+i);return this},o.prototype.disable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),[\"core\",\"block\",\"inline\"].forEach((function(t){n=n.concat(this[t].ruler.disable(e,!0))}),this),n=n.concat(this.inline.ruler2.disable(e,!0));var i=e.filter((function(e){return n.indexOf(e)<0}));if(i.length&&!t)throw new Error(\"MarkdownIt. Failed to disable unknown rule(s): \"+i);return this},o.prototype.use=function(e){var t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this},o.prototype.parse=function(e,t){if(\"string\"!=typeof e)throw new Error(\"Input data should be a String\");var n=new this.core.State(e,this,t);return this.core.process(n),n.tokens},o.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)},o.prototype.parseInline=function(e,t){var n=new this.core.State(e,this,t);return n.inlineMode=!0,this.core.process(n),n.tokens},o.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)},e.exports=o},function(e,t,n){\"use strict\";function i(){this.ruler=new r;for(var e=0;e<a.length;e++)this.ruler.push(a[e][0],a[e][1],{alt:(a[e][2]||[]).slice()})}var r=n(32),a=[[\"table\",n(162),[\"paragraph\",\"reference\"]],[\"code\",n(152)],[\"fence\",n(153),[\"paragraph\",\"reference\",\"blockquote\",\"list\"]],[\"blockquote\",n(151),[\"paragraph\",\"reference\",\"blockquote\",\"list\"]],[\"hr\",n(155),[\"paragraph\",\"reference\",\"blockquote\",\"list\"]],[\"list\",n(158),[\"paragraph\",\"reference\",\"blockquote\"]],[\"reference\",n(160)],[\"heading\",n(154),[\"paragraph\",\"reference\",\"blockquote\"]],[\"lheading\",n(157)],[\"html_block\",n(156),[\"paragraph\",\"reference\",\"blockquote\"]],[\"paragraph\",n(159)]];i.prototype.tokenize=function(e,t,n){for(var i,r=this.ruler.getRules(\"\"),a=r.length,o=t,s=!1,l=e.md.options.maxNesting;o<n&&(e.line=o=e.skipEmptyLines(o),!(o>=n))&&!(e.sCount[o]<e.blkIndent);){if(e.level>=l){e.line=n;break}for(i=0;i<a&&!r[i](e,o,n,!1);i++);e.tight=!s,e.isEmpty(e.line-1)&&(s=!0),(o=e.line)<n&&e.isEmpty(o)&&(s=!0,o++,e.line=o)}},i.prototype.parse=function(e,t,n,i){var r;e&&(r=new this.State(e,t,n,i),this.tokenize(r,r.line,r.lineMax))},i.prototype.State=n(161),e.exports=i},function(e,t,n){\"use strict\";function i(){this.ruler=new r;for(var e=0;e<a.length;e++)this.ruler.push(a[e][0],a[e][1])}var r=n(32),a=[[\"normalize\",n(166)],[\"block\",n(163)],[\"inline\",n(164)],[\"linkify\",n(165)],[\"replacements\",n(167)],[\"smartquotes\",n(168)]];i.prototype.process=function(e){var t,n,i;for(i=this.ruler.getRules(\"\"),t=0,n=i.length;t<n;t++)i[t](e)},i.prototype.State=n(169),e.exports=i},function(e,t,n){\"use strict\";function i(){var e;for(this.ruler=new r,e=0;e<a.length;e++)this.ruler.push(a[e][0],a[e][1]);for(this.ruler2=new r,e=0;e<o.length;e++)this.ruler2.push(o[e][0],o[e][1])}var r=n(32),a=[[\"text\",n(180)],[\"newline\",n(178)],[\"escape\",n(174)],[\"backticks\",n(171)],[\"strikethrough\",n(56).tokenize],[\"emphasis\",n(55).tokenize],[\"link\",n(177)],[\"image\",n(176)],[\"autolink\",n(170)],[\"html_inline\",n(175)],[\"entity\",n(173)]],o=[[\"balance_pairs\",n(172)],[\"strikethrough\",n(56).postProcess],[\"emphasis\",n(55).postProcess],[\"text_collapse\",n(181)]];i.prototype.skipToken=function(e){var t,n,i=e.pos,r=this.ruler.getRules(\"\"),a=r.length,o=e.md.options.maxNesting,s=e.cache;if(void 0===s[i]){if(e.level<o)for(n=0;n<a&&(e.level++,t=r[n](e,!0),e.level--,!t);n++);else e.pos=e.posMax;t||e.pos++,s[i]=e.pos}else e.pos=s[i]},i.prototype.tokenize=function(e){for(var t,n,i=this.ruler.getRules(\"\"),r=i.length,a=e.posMax,o=e.md.options.maxNesting;e.pos<a;){if(e.level<o)for(n=0;n<r&&!(t=i[n](e,!1));n++);if(t){if(e.pos>=a)break}else e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()},i.prototype.parse=function(e,t,n,i){var r,a,o,s=new this.State(e,t,n,i);for(this.tokenize(s),a=this.ruler2.getRules(\"\"),o=a.length,r=0;r<o;r++)a[r](s)},i.prototype.State=n(179),e.exports=i},function(e,t,n){\"use strict\";e.exports={options:{html:!0,xhtmlOut:!0,breaks:!1,langPrefix:\"language-\",linkify:!1,typographer:!1,quotes:\"“”‘’\",highlight:null,maxNesting:20},components:{core:{rules:[\"normalize\",\"block\",\"inline\"]},block:{rules:[\"blockquote\",\"code\",\"fence\",\"heading\",\"hr\",\"html_block\",\"lheading\",\"list\",\"reference\",\"paragraph\"]},inline:{rules:[\"autolink\",\"backticks\",\"emphasis\",\"entity\",\"escape\",\"html_inline\",\"image\",\"link\",\"newline\",\"text\"],rules2:[\"balance_pairs\",\"emphasis\",\"text_collapse\"]}}}},function(e,t,n){\"use strict\";e.exports={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:\"language-\",linkify:!1,typographer:!1,quotes:\"“”‘’\",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}}},function(e,t,n){\"use strict\";e.exports={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:\"language-\",linkify:!1,typographer:!1,quotes:\"“”‘’\",highlight:null,maxNesting:20},components:{core:{rules:[\"normalize\",\"block\",\"inline\"]},block:{rules:[\"paragraph\"]},inline:{rules:[\"text\"],rules2:[\"balance_pairs\",\"text_collapse\"]}}}},function(e,t,n){\"use strict\";function i(){this.rules=r({},s)}var r=n(0).assign,a=n(0).unescapeAll,o=n(0).escapeHtml,s={code_inline:function(e,t,n,i,r){var a=e[t];return\"<code\"+r.renderAttrs(a)+\">\"+o(e[t].content)+\"</code>\"},code_block:function(e,t,n,i,r){var a=e[t];return\"<pre\"+r.renderAttrs(a)+\"><code>\"+o(e[t].content)+\"</code></pre>\\n\"},fence:function(e,t,n,i,r){var s,l,c,u,d=e[t],p=d.info?a(d.info).trim():\"\",h=\"\";return p&&(h=p.split(/\\s+/g)[0]),s=n.highlight&&n.highlight(d.content,h)||o(d.content),0===s.indexOf(\"<pre\")?s+\"\\n\":p?(l=d.attrIndex(\"class\"),c=d.attrs?d.attrs.slice():[],l<0?c.push([\"class\",n.langPrefix+h]):c[l][1]+=\" \"+n.langPrefix+h,u={attrs:c},\"<pre><code\"+r.renderAttrs(u)+\">\"+s+\"</code></pre>\\n\"):\"<pre><code\"+r.renderAttrs(d)+\">\"+s+\"</code></pre>\\n\"},image:function(e,t,n,i,r){var a=e[t];return a.attrs[a.attrIndex(\"alt\")][1]=r.renderInlineAsText(a.children,n,i),r.renderToken(e,t,n)},hardbreak:function(e,t,n){return n.xhtmlOut?\"<br />\\n\":\"<br>\\n\"},softbreak:function(e,t,n){return n.breaks?n.xhtmlOut?\"<br />\\n\":\"<br>\\n\":\"\\n\"},text:function(e,t){return o(e[t].content)},html_block:function(e,t){return e[t].content},html_inline:function(e,t){return e[t].content}};i.prototype.renderAttrs=function(e){var t,n,i;if(!e.attrs)return\"\";for(i=\"\",t=0,n=e.attrs.length;t<n;t++)i+=\" \"+o(e.attrs[t][0])+'=\"'+o(e.attrs[t][1])+'\"';return i},i.prototype.renderToken=function(e,t,n){var i,r=\"\",a=!1,o=e[t];return o.hidden?\"\":(o.block&&-1!==o.nesting&&t&&e[t-1].hidden&&(r+=\"\\n\"),r+=(-1===o.nesting?\"</\":\"<\")+o.tag,r+=this.renderAttrs(o),0===o.nesting&&n.xhtmlOut&&(r+=\" /\"),o.block&&(a=!0,1===o.nesting&&t+1<e.length&&(i=e[t+1],(\"inline\"===i.type||i.hidden||-1===i.nesting&&i.tag===o.tag)&&(a=!1))),r+=a?\">\\n\":\">\")},i.prototype.renderInline=function(e,t,n){for(var i,r=\"\",a=this.rules,o=0,s=e.length;o<s;o++)i=e[o].type,void 0!==a[i]?r+=a[i](e,o,t,n,this):r+=this.renderToken(e,o,t);return r},i.prototype.renderInlineAsText=function(e,t,n){for(var i=\"\",r=0,a=e.length;r<a;r++)\"text\"===e[r].type?i+=e[r].content:\"image\"===e[r].type&&(i+=this.renderInlineAsText(e[r].children,t,n));return i},i.prototype.render=function(e,t,n){var i,r,a,o=\"\",s=this.rules;for(i=0,r=e.length;i<r;i++)a=e[i].type,\"inline\"===a?o+=this.renderInline(e[i].children,t,n):void 0!==s[a]?o+=s[e[i].type](e,i,t,n,this):o+=this.renderToken(e,i,t,n);return o},e.exports=i},function(e,t,n){\"use strict\";var i=n(0).isSpace;e.exports=function(e,t,n,r){var a,o,s,l,c,u,d,p,h,f,_,m,g,b,v,E,y,S,C,T,x=e.lineMax,w=e.bMarks[t]+e.tShift[t],O=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(62!==e.src.charCodeAt(w++))return!1;if(r)return!0;for(l=h=e.sCount[t]+w-(e.bMarks[t]+e.tShift[t]),32===e.src.charCodeAt(w)?(w++,l++,h++,a=!1,E=!0):9===e.src.charCodeAt(w)?(E=!0,(e.bsCount[t]+h)%4==3?(w++,l++,h++,a=!1):a=!0):E=!1,f=[e.bMarks[t]],e.bMarks[t]=w;w<O&&(o=e.src.charCodeAt(w),i(o));)9===o?h+=4-(h+e.bsCount[t]+(a?1:0))%4:h++,w++;for(_=[e.bsCount[t]],e.bsCount[t]=e.sCount[t]+1+(E?1:0),u=w>=O,b=[e.sCount[t]],e.sCount[t]=h-l,v=[e.tShift[t]],e.tShift[t]=w-e.bMarks[t],S=e.md.block.ruler.getRules(\"blockquote\"),g=e.parentType,e.parentType=\"blockquote\",T=!1,p=t+1;p<n&&(e.sCount[p]<e.blkIndent&&(T=!0),w=e.bMarks[p]+e.tShift[p],O=e.eMarks[p],!(w>=O));p++)if(62!==e.src.charCodeAt(w++)||T){if(u)break;for(y=!1,s=0,c=S.length;s<c;s++)if(S[s](e,p,n,!0)){y=!0;break}if(y){e.lineMax=p,0!==e.blkIndent&&(f.push(e.bMarks[p]),_.push(e.bsCount[p]),v.push(e.tShift[p]),b.push(e.sCount[p]),e.sCount[p]-=e.blkIndent);break}f.push(e.bMarks[p]),_.push(e.bsCount[p]),v.push(e.tShift[p]),b.push(e.sCount[p]),e.sCount[p]=-1}else{for(l=h=e.sCount[p]+w-(e.bMarks[p]+e.tShift[p]),32===e.src.charCodeAt(w)?(w++,l++,h++,a=!1,E=!0):9===e.src.charCodeAt(w)?(E=!0,(e.bsCount[p]+h)%4==3?(w++,l++,h++,a=!1):a=!0):E=!1,f.push(e.bMarks[p]),e.bMarks[p]=w;w<O&&(o=e.src.charCodeAt(w),i(o));)9===o?h+=4-(h+e.bsCount[p]+(a?1:0))%4:h++,w++;u=w>=O,_.push(e.bsCount[p]),e.bsCount[p]=e.sCount[p]+1+(E?1:0),b.push(e.sCount[p]),e.sCount[p]=h-l,v.push(e.tShift[p]),e.tShift[p]=w-e.bMarks[p]}for(m=e.blkIndent,e.blkIndent=0,C=e.push(\"blockquote_open\",\"blockquote\",1),C.markup=\">\",C.map=d=[t,0],e.md.block.tokenize(e,t,p),C=e.push(\"blockquote_close\",\"blockquote\",-1),C.markup=\">\",e.lineMax=x,e.parentType=g,d[1]=e.line,s=0;s<v.length;s++)e.bMarks[s+t]=f[s],e.tShift[s+t]=v[s],e.sCount[s+t]=b[s],e.bsCount[s+t]=_[s];return e.blkIndent=m,!0}},function(e,t,n){\"use strict\";e.exports=function(e,t,n){var i,r,a;if(e.sCount[t]-e.blkIndent<4)return!1;for(r=i=t+1;i<n;)if(e.isEmpty(i))i++;else{if(!(e.sCount[i]-e.blkIndent>=4))break;i++,r=i}return e.line=r,a=e.push(\"code_block\",\"code\",0),a.content=e.getLines(t,r,4+e.blkIndent,!0),a.map=[t,e.line],!0}},function(e,t,n){\"use strict\";e.exports=function(e,t,n,i){var r,a,o,s,l,c,u,d=!1,p=e.bMarks[t]+e.tShift[t],h=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(p+3>h)return!1;if(126!==(r=e.src.charCodeAt(p))&&96!==r)return!1;if(l=p,p=e.skipChars(p,r),(a=p-l)<3)return!1;if(u=e.src.slice(l,p),o=e.src.slice(p,h),96===r&&o.indexOf(String.fromCharCode(r))>=0)return!1;if(i)return!0;for(s=t;!(++s>=n)&&(p=l=e.bMarks[s]+e.tShift[s],h=e.eMarks[s],!(p<h&&e.sCount[s]<e.blkIndent));)if(e.src.charCodeAt(p)===r&&!(e.sCount[s]-e.blkIndent>=4||(p=e.skipChars(p,r))-l<a||(p=e.skipSpaces(p))<h)){d=!0;break}return a=e.sCount[t],e.line=s+(d?1:0),c=e.push(\"fence\",\"code\",0),c.info=o,c.content=e.getLines(t+1,s,a,!0),c.markup=u,c.map=[t,e.line],!0}},function(e,t,n){\"use strict\";var i=n(0).isSpace;e.exports=function(e,t,n,r){var a,o,s,l,c=e.bMarks[t]+e.tShift[t],u=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(35!==(a=e.src.charCodeAt(c))||c>=u)return!1;for(o=1,a=e.src.charCodeAt(++c);35===a&&c<u&&o<=6;)o++,a=e.src.charCodeAt(++c);return!(o>6||c<u&&!i(a))&&(!!r||(u=e.skipSpacesBack(u,c),s=e.skipCharsBack(u,35,c),s>c&&i(e.src.charCodeAt(s-1))&&(u=s),e.line=t+1,l=e.push(\"heading_open\",\"h\"+String(o),1),l.markup=\"########\".slice(0,o),l.map=[t,e.line],l=e.push(\"inline\",\"\",0),l.content=e.src.slice(c,u).trim(),l.map=[t,e.line],l.children=[],l=e.push(\"heading_close\",\"h\"+String(o),-1),l.markup=\"########\".slice(0,o),!0))}},function(e,t,n){\"use strict\";var i=n(0).isSpace;e.exports=function(e,t,n,r){var a,o,s,l,c=e.bMarks[t]+e.tShift[t],u=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(42!==(a=e.src.charCodeAt(c++))&&45!==a&&95!==a)return!1;for(o=1;c<u;){if((s=e.src.charCodeAt(c++))!==a&&!i(s))return!1;s===a&&o++}return!(o<3)&&(!!r||(e.line=t+1,l=e.push(\"hr\",\"hr\",0),l.map=[t,e.line],l.markup=Array(o+1).join(String.fromCharCode(a)),!0))}},function(e,t,n){\"use strict\";var i=n(138),r=n(54).HTML_OPEN_CLOSE_TAG_RE,a=[[/^<(script|pre|style)(?=(\\s|>|$))/i,/<\\/(script|pre|style)>/i,!0],[/^<!--/,/-->/,!0],[/^<\\?/,/\\?>/,!0],[/^<![A-Z]/,/>/,!0],[/^<!\\[CDATA\\[/,/\\]\\]>/,!0],[new RegExp(\"^</?(\"+i.join(\"|\")+\")(?=(\\\\s|/?>|$))\",\"i\"),/^$/,!0],[new RegExp(r.source+\"\\\\s*$\"),/^$/,!1]];e.exports=function(e,t,n,i){var r,o,s,l,c=e.bMarks[t]+e.tShift[t],u=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(!e.md.options.html)return!1;if(60!==e.src.charCodeAt(c))return!1;for(l=e.src.slice(c,u),r=0;r<a.length&&!a[r][0].test(l);r++);if(r===a.length)return!1;if(i)return a[r][2];if(o=t+1,!a[r][1].test(l))for(;o<n&&!(e.sCount[o]<e.blkIndent);o++)if(c=e.bMarks[o]+e.tShift[o],u=e.eMarks[o],l=e.src.slice(c,u),a[r][1].test(l)){0!==l.length&&o++;break}return e.line=o,s=e.push(\"html_block\",\"\",0),s.map=[t,o],s.content=e.getLines(t,o,e.blkIndent,!0),!0}},function(e,t,n){\"use strict\";e.exports=function(e,t,n){var i,r,a,o,s,l,c,u,d,p,h=t+1,f=e.md.block.ruler.getRules(\"paragraph\");if(e.sCount[t]-e.blkIndent>=4)return!1;for(p=e.parentType,e.parentType=\"paragraph\";h<n&&!e.isEmpty(h);h++)if(!(e.sCount[h]-e.blkIndent>3)){if(e.sCount[h]>=e.blkIndent&&(l=e.bMarks[h]+e.tShift[h],c=e.eMarks[h],l<c&&(45===(d=e.src.charCodeAt(l))||61===d)&&(l=e.skipChars(l,d),(l=e.skipSpaces(l))>=c))){u=61===d?1:2;break}if(!(e.sCount[h]<0)){for(r=!1,a=0,o=f.length;a<o;a++)if(f[a](e,h,n,!0)){r=!0;break}if(r)break}}return!!u&&(i=e.getLines(t,h,e.blkIndent,!1).trim(),e.line=h+1,s=e.push(\"heading_open\",\"h\"+String(u),1),s.markup=String.fromCharCode(d),s.map=[t,e.line],s=e.push(\"inline\",\"\",0),s.content=i,s.map=[t,e.line-1],s.children=[],s=e.push(\"heading_close\",\"h\"+String(u),-1),s.markup=String.fromCharCode(d),e.parentType=p,!0)}},function(e,t,n){\"use strict\";function i(e,t){var n,i,r,a;return i=e.bMarks[t]+e.tShift[t],r=e.eMarks[t],n=e.src.charCodeAt(i++),42!==n&&45!==n&&43!==n||i<r&&(a=e.src.charCodeAt(i),!o(a))?-1:i}function r(e,t){var n,i=e.bMarks[t]+e.tShift[t],r=i,a=e.eMarks[t];if(r+1>=a)return-1;if((n=e.src.charCodeAt(r++))<48||n>57)return-1;for(;;){if(r>=a)return-1;if(n=e.src.charCodeAt(r++),!(n>=48&&n<=57)){if(41===n||46===n)break;return-1}if(r-i>=10)return-1}return r<a&&(n=e.src.charCodeAt(r),!o(n))?-1:r}function a(e,t){var n,i,r=e.level+2;for(n=t+2,i=e.tokens.length-2;n<i;n++)e.tokens[n].level===r&&\"paragraph_open\"===e.tokens[n].type&&(e.tokens[n+2].hidden=!0,e.tokens[n].hidden=!0,n+=2)}var o=n(0).isSpace;e.exports=function(e,t,n,o){var s,l,c,u,d,p,h,f,_,m,g,b,v,E,y,S,C,T,x,w,O,N,R,k,A,D,I,M,L=!1,P=!0;if(e.sCount[t]-e.blkIndent>=4)return!1;if(e.listIndent>=0&&e.sCount[t]-e.listIndent>=4&&e.sCount[t]<e.blkIndent)return!1;if(o&&\"paragraph\"===e.parentType&&e.tShift[t]>=e.blkIndent&&(L=!0),(R=r(e,t))>=0){if(h=!0,A=e.bMarks[t]+e.tShift[t],v=Number(e.src.substr(A,R-A-1)),L&&1!==v)return!1}else{if(!((R=i(e,t))>=0))return!1;h=!1}if(L&&e.skipSpaces(R)>=e.eMarks[t])return!1;if(b=e.src.charCodeAt(R-1),o)return!0;for(g=e.tokens.length,h?(M=e.push(\"ordered_list_open\",\"ol\",1),1!==v&&(M.attrs=[[\"start\",v]])):M=e.push(\"bullet_list_open\",\"ul\",1),M.map=m=[t,0],M.markup=String.fromCharCode(b),y=t,k=!1,I=e.md.block.ruler.getRules(\"list\"),T=e.parentType,e.parentType=\"list\";y<n;){for(N=R,E=e.eMarks[y],p=S=e.sCount[y]+R-(e.bMarks[t]+e.tShift[t]);N<E;){if(9===(s=e.src.charCodeAt(N)))S+=4-(S+e.bsCount[y])%4;else{if(32!==s)break;S++}N++}if(l=N,d=l>=E?1:S-p,d>4&&(d=1),u=p+d,M=e.push(\"list_item_open\",\"li\",1),M.markup=String.fromCharCode(b),M.map=f=[t,0],O=e.tight,w=e.tShift[t],x=e.sCount[t],C=e.listIndent,e.listIndent=e.blkIndent,e.blkIndent=u,e.tight=!0,e.tShift[t]=l-e.bMarks[t],e.sCount[t]=S,l>=E&&e.isEmpty(t+1)?e.line=Math.min(e.line+2,n):e.md.block.tokenize(e,t,n,!0),e.tight&&!k||(P=!1),k=e.line-t>1&&e.isEmpty(e.line-1),e.blkIndent=e.listIndent,e.listIndent=C,e.tShift[t]=w,e.sCount[t]=x,e.tight=O,M=e.push(\"list_item_close\",\"li\",-1),M.markup=String.fromCharCode(b),y=t=e.line,f[1]=y,l=e.bMarks[t],y>=n)break;if(e.sCount[y]<e.blkIndent)break;if(e.sCount[t]-e.blkIndent>=4)break;for(D=!1,c=0,_=I.length;c<_;c++)if(I[c](e,y,n,!0)){D=!0;break}if(D)break;if(h){if((R=r(e,y))<0)break}else if((R=i(e,y))<0)break;if(b!==e.src.charCodeAt(R-1))break}return M=h?e.push(\"ordered_list_close\",\"ol\",-1):e.push(\"bullet_list_close\",\"ul\",-1),M.markup=String.fromCharCode(b),m[1]=y,e.line=y,e.parentType=T,P&&a(e,g),!0}},function(e,t,n){\"use strict\";e.exports=function(e,t){var n,i,r,a,o,s,l=t+1,c=e.md.block.ruler.getRules(\"paragraph\"),u=e.lineMax;for(s=e.parentType,e.parentType=\"paragraph\";l<u&&!e.isEmpty(l);l++)if(!(e.sCount[l]-e.blkIndent>3||e.sCount[l]<0)){for(i=!1,r=0,a=c.length;r<a;r++)if(c[r](e,l,u,!0)){i=!0;break}if(i)break}return n=e.getLines(t,l,e.blkIndent,!1).trim(),e.line=l,o=e.push(\"paragraph_open\",\"p\",1),o.map=[t,e.line],o=e.push(\"inline\",\"\",0),o.content=n,o.map=[t,e.line],o.children=[],o=e.push(\"paragraph_close\",\"p\",-1),e.parentType=s,!0}},function(e,t,n){\"use strict\";var i=n(0).normalizeReference,r=n(0).isSpace;e.exports=function(e,t,n,a){var o,s,l,c,u,d,p,h,f,_,m,g,b,v,E,y,S=0,C=e.bMarks[t]+e.tShift[t],T=e.eMarks[t],x=t+1;if(e.sCount[t]-e.blkIndent>=4)return!1;if(91!==e.src.charCodeAt(C))return!1;for(;++C<T;)if(93===e.src.charCodeAt(C)&&92!==e.src.charCodeAt(C-1)){if(C+1===T)return!1;if(58!==e.src.charCodeAt(C+1))return!1;break}for(c=e.lineMax,E=e.md.block.ruler.getRules(\"reference\"),_=e.parentType,e.parentType=\"reference\";x<c&&!e.isEmpty(x);x++)if(!(e.sCount[x]-e.blkIndent>3||e.sCount[x]<0)){for(v=!1,d=0,p=E.length;d<p;d++)if(E[d](e,x,c,!0)){v=!0;break}if(v)break}for(b=e.getLines(t,x,e.blkIndent,!1).trim(),T=b.length,C=1;C<T;C++){if(91===(o=b.charCodeAt(C)))return!1;if(93===o){f=C;break}(10===o||92===o&&++C<T&&10===b.charCodeAt(C))&&S++}if(f<0||58!==b.charCodeAt(f+1))return!1;for(C=f+2;C<T;C++)if(10===(o=b.charCodeAt(C)))S++;else if(!r(o))break;if(m=e.md.helpers.parseLinkDestination(b,C,T),!m.ok)return!1;if(u=e.md.normalizeLink(m.str),!e.md.validateLink(u))return!1;for(C=m.pos,S+=m.lines,s=C,l=S,g=C;C<T;C++)if(10===(o=b.charCodeAt(C)))S++;else if(!r(o))break;for(m=e.md.helpers.parseLinkTitle(b,C,T),C<T&&g!==C&&m.ok?(y=m.str,C=m.pos,S+=m.lines):(y=\"\",C=s,S=l);C<T&&(o=b.charCodeAt(C),r(o));)C++;if(C<T&&10!==b.charCodeAt(C)&&y)for(y=\"\",C=s,S=l;C<T&&(o=b.charCodeAt(C),r(o));)C++;return!(C<T&&10!==b.charCodeAt(C))&&!!(h=i(b.slice(1,f)))&&(!!a||(void 0===e.env.references&&(e.env.references={}),void 0===e.env.references[h]&&(e.env.references[h]={title:y,href:u}),e.parentType=_,e.line=t+S+1,!0))}},function(e,t,n){\"use strict\";function i(e,t,n,i){var r,o,s,l,c,u,d,p;for(this.src=e,this.md=t,this.env=n,this.tokens=i,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.listIndent=-1,this.parentType=\"root\",this.level=0,this.result=\"\",o=this.src,p=!1,s=l=u=d=0,c=o.length;l<c;l++){if(r=o.charCodeAt(l),!p){if(a(r)){u++,9===r?d+=4-d%4:d++;continue}p=!0}10!==r&&l!==c-1||(10!==r&&l++,this.bMarks.push(s),this.eMarks.push(l),this.tShift.push(u),this.sCount.push(d),this.bsCount.push(0),p=!1,u=0,d=0,s=l+1)}this.bMarks.push(o.length),this.eMarks.push(o.length),this.tShift.push(0),this.sCount.push(0),this.bsCount.push(0),this.lineMax=this.bMarks.length-1}var r=n(33),a=n(0).isSpace;i.prototype.push=function(e,t,n){var i=new r(e,t,n);return i.block=!0,n<0&&this.level--,i.level=this.level,n>0&&this.level++,this.tokens.push(i),i},i.prototype.isEmpty=function(e){return this.bMarks[e]+this.tShift[e]>=this.eMarks[e]},i.prototype.skipEmptyLines=function(e){for(var t=this.lineMax;e<t&&!(this.bMarks[e]+this.tShift[e]<this.eMarks[e]);e++);return e},i.prototype.skipSpaces=function(e){for(var t,n=this.src.length;e<n&&(t=this.src.charCodeAt(e),a(t));e++);return e},i.prototype.skipSpacesBack=function(e,t){if(e<=t)return e;for(;e>t;)if(!a(this.src.charCodeAt(--e)))return e+1;return e},i.prototype.skipChars=function(e,t){for(var n=this.src.length;e<n&&this.src.charCodeAt(e)===t;e++);return e},i.prototype.skipCharsBack=function(e,t,n){if(e<=n)return e;for(;e>n;)if(t!==this.src.charCodeAt(--e))return e+1;return e},i.prototype.getLines=function(e,t,n,i){var r,o,s,l,c,u,d,p=e;if(e>=t)return\"\";for(u=new Array(t-e),r=0;p<t;p++,r++){for(o=0,d=l=this.bMarks[p],c=p+1<t||i?this.eMarks[p]+1:this.eMarks[p];l<c&&o<n;){if(s=this.src.charCodeAt(l),a(s))9===s?o+=4-(o+this.bsCount[p])%4:o++;else{if(!(l-d<this.tShift[p]))break;o++}l++}u[r]=o>n?new Array(o-n+1).join(\" \")+this.src.slice(l,c):this.src.slice(l,c)}return u.join(\"\")},i.prototype.Token=r,e.exports=i},function(e,t,n){\"use strict\";function i(e,t){var n=e.bMarks[t]+e.blkIndent,i=e.eMarks[t];return e.src.substr(n,i-n)}function r(e){var t,n=[],i=0,r=e.length,a=0,o=0,s=!1,l=0;for(t=e.charCodeAt(i);i<r;)96===t?s?(s=!1,l=i):a%2==0&&(s=!0,l=i):124!==t||a%2!=0||s||(n.push(e.substring(o,i)),o=i+1),92===t?a++:a=0,i++,i===r&&s&&(s=!1,i=l+1),t=e.charCodeAt(i);return n.push(e.substring(o)),n}var a=n(0).isSpace;e.exports=function(e,t,n,o){var s,l,c,u,d,p,h,f,_,m,g,b;if(t+2>n)return!1;if(d=t+1,e.sCount[d]<e.blkIndent)return!1;if(e.sCount[d]-e.blkIndent>=4)return!1;if((c=e.bMarks[d]+e.tShift[d])>=e.eMarks[d])return!1;if(124!==(s=e.src.charCodeAt(c++))&&45!==s&&58!==s)return!1;for(;c<e.eMarks[d];){if(124!==(s=e.src.charCodeAt(c))&&45!==s&&58!==s&&!a(s))return!1;c++}for(l=i(e,t+1),p=l.split(\"|\"),_=[],u=0;u<p.length;u++){if(!(m=p[u].trim())){if(0===u||u===p.length-1)continue;return!1}if(!/^:?-+:?$/.test(m))return!1;58===m.charCodeAt(m.length-1)?_.push(58===m.charCodeAt(0)?\"center\":\"right\"):58===m.charCodeAt(0)?_.push(\"left\"):_.push(\"\")}if(l=i(e,t).trim(),-1===l.indexOf(\"|\"))return!1;if(e.sCount[t]-e.blkIndent>=4)return!1;if(p=r(l.replace(/^\\||\\|$/g,\"\")),(h=p.length)>_.length)return!1;if(o)return!0;for(f=e.push(\"table_open\",\"table\",1),f.map=g=[t,0],f=e.push(\"thead_open\",\"thead\",1),f.map=[t,t+1],f=e.push(\"tr_open\",\"tr\",1),f.map=[t,t+1],u=0;u<p.length;u++)f=e.push(\"th_open\",\"th\",1),f.map=[t,t+1],_[u]&&(f.attrs=[[\"style\",\"text-align:\"+_[u]]]),f=e.push(\"inline\",\"\",0),f.content=p[u].trim(),f.map=[t,t+1],f.children=[],f=e.push(\"th_close\",\"th\",-1);for(f=e.push(\"tr_close\",\"tr\",-1),f=e.push(\"thead_close\",\"thead\",-1),f=e.push(\"tbody_open\",\"tbody\",1),f.map=b=[t+2,0],d=t+2;d<n&&!(e.sCount[d]<e.blkIndent)&&(l=i(e,d).trim(),-1!==l.indexOf(\"|\"))&&!(e.sCount[d]-e.blkIndent>=4);d++){for(p=r(l.replace(/^\\||\\|$/g,\"\")),f=e.push(\"tr_open\",\"tr\",1),u=0;u<h;u++)f=e.push(\"td_open\",\"td\",1),_[u]&&(f.attrs=[[\"style\",\"text-align:\"+_[u]]]),f=e.push(\"inline\",\"\",0),f.content=p[u]?p[u].trim():\"\",f.children=[],f=e.push(\"td_close\",\"td\",-1);f=e.push(\"tr_close\",\"tr\",-1)}return f=e.push(\"tbody_close\",\"tbody\",-1),f=e.push(\"table_close\",\"table\",-1),g[1]=b[1]=d,e.line=d,!0}},function(e,t,n){\"use strict\";e.exports=function(e){var t;e.inlineMode?(t=new e.Token(\"inline\",\"\",0),t.content=e.src,t.map=[0,1],t.children=[],e.tokens.push(t)):e.md.block.parse(e.src,e.md,e.env,e.tokens)}},function(e,t,n){\"use strict\";e.exports=function(e){var t,n,i,r=e.tokens;for(n=0,i=r.length;n<i;n++)t=r[n],\"inline\"===t.type&&e.md.inline.parse(t.content,e.md,e.env,t.children)}},function(e,t,n){\"use strict\";function i(e){return/^<a[>\\s]/i.test(e)}function r(e){return/^<\\/a\\s*>/i.test(e)}var a=n(0).arrayReplaceAt;e.exports=function(e){var t,n,o,s,l,c,u,d,p,h,f,_,m,g,b,v,E,y=e.tokens;if(e.md.options.linkify)for(n=0,o=y.length;n<o;n++)if(\"inline\"===y[n].type&&e.md.linkify.pretest(y[n].content))for(s=y[n].children,m=0,t=s.length-1;t>=0;t--)if(c=s[t],\"link_close\"!==c.type){if(\"html_inline\"===c.type&&(i(c.content)&&m>0&&m--,r(c.content)&&m++),!(m>0)&&\"text\"===c.type&&e.md.linkify.test(c.content)){for(p=c.content,E=e.md.linkify.match(p),u=[],_=c.level,f=0,d=0;d<E.length;d++)g=E[d].url,b=e.md.normalizeLink(g),e.md.validateLink(b)&&(v=E[d].text,v=E[d].schema?\"mailto:\"!==E[d].schema||/^mailto:/i.test(v)?e.md.normalizeLinkText(v):e.md.normalizeLinkText(\"mailto:\"+v).replace(/^mailto:/,\"\"):e.md.normalizeLinkText(\"http://\"+v).replace(/^http:\\/\\//,\"\"),h=E[d].index,h>f&&(l=new e.Token(\"text\",\"\",0),l.content=p.slice(f,h),l.level=_,u.push(l)),l=new e.Token(\"link_open\",\"a\",1),l.attrs=[[\"href\",b]],l.level=_++,l.markup=\"linkify\",l.info=\"auto\",u.push(l),l=new e.Token(\"text\",\"\",0),l.content=v,l.level=_,u.push(l),l=new e.Token(\"link_close\",\"a\",-1),l.level=--_,l.markup=\"linkify\",l.info=\"auto\",u.push(l),f=E[d].lastIndex);f<p.length&&(l=new e.Token(\"text\",\"\",0),l.content=p.slice(f),l.level=_,u.push(l)),y[n].children=s=a(s,t,u)}}else for(t--;s[t].level!==c.level&&\"link_open\"!==s[t].type;)t--}},function(e,t,n){\"use strict\";var i=/\\r\\n?|\\n/g,r=/\\0/g;e.exports=function(e){var t;t=e.src.replace(i,\"\\n\"),t=t.replace(r,\"�\"),e.src=t}},function(e,t,n){\"use strict\";function i(e,t){return c[t.toLowerCase()]}function r(e){var t,n,r=0;for(t=e.length-1;t>=0;t--)n=e[t],\"text\"!==n.type||r||(n.content=n.content.replace(l,i)),\"link_open\"===n.type&&\"auto\"===n.info&&r--,\"link_close\"===n.type&&\"auto\"===n.info&&r++}function a(e){var t,n,i=0;for(t=e.length-1;t>=0;t--)n=e[t],\"text\"!==n.type||i||o.test(n.content)&&(n.content=n.content.replace(/\\+-/g,\"±\").replace(/\\.{2,}/g,\"…\").replace(/([?!])…/g,\"$1..\").replace(/([?!]){4,}/g,\"$1$1$1\").replace(/,{2,}/g,\",\").replace(/(^|[^-])---([^-]|$)/gm,\"$1—$2\").replace(/(^|\\s)--(\\s|$)/gm,\"$1–$2\").replace(/(^|[^-\\s])--([^-\\s]|$)/gm,\"$1–$2\")),\"link_open\"===n.type&&\"auto\"===n.info&&i--,\"link_close\"===n.type&&\"auto\"===n.info&&i++}var o=/\\+-|\\.\\.|\\?\\?\\?\\?|!!!!|,,|--/,s=/\\((c|tm|r|p)\\)/i,l=/\\((c|tm|r|p)\\)/gi,c={c:\"©\",r:\"®\",p:\"§\",tm:\"™\"};e.exports=function(e){var t;if(e.md.options.typographer)for(t=e.tokens.length-1;t>=0;t--)\"inline\"===e.tokens[t].type&&(s.test(e.tokens[t].content)&&r(e.tokens[t].children),o.test(e.tokens[t].content)&&a(e.tokens[t].children))}},function(e,t,n){\"use strict\";function i(e,t,n){return e.substr(0,t)+n+e.substr(t+1)}function r(e,t){var n,r,l,d,p,h,f,_,m,g,b,v,E,y,S,C,T,x,w,O,N;for(w=[],n=0;n<e.length;n++){for(r=e[n],f=e[n].level,T=w.length-1;T>=0&&!(w[T].level<=f);T--);if(w.length=T+1,\"text\"===r.type){l=r.content,p=0,h=l.length;e:for(;p<h&&(c.lastIndex=p,d=c.exec(l));){if(S=C=!0,p=d.index+1,x=\"'\"===d[0],m=32,d.index-1>=0)m=l.charCodeAt(d.index-1);else for(T=n-1;T>=0&&\"softbreak\"!==e[T].type&&\"hardbreak\"!==e[T].type;T--)if(\"text\"===e[T].type){m=e[T].content.charCodeAt(e[T].content.length-1);break}if(g=32,p<h)g=l.charCodeAt(p);else for(T=n+1;T<e.length&&\"softbreak\"!==e[T].type&&\"hardbreak\"!==e[T].type;T++)if(\"text\"===e[T].type){g=e[T].content.charCodeAt(0);break}if(b=s(m)||o(String.fromCharCode(m)),v=s(g)||o(String.fromCharCode(g)),E=a(m),y=a(g),y?S=!1:v&&(E||b||(S=!1)),E?C=!1:b&&(y||v||(C=!1)),34===g&&'\"'===d[0]&&m>=48&&m<=57&&(C=S=!1),S&&C&&(S=!1,C=v),S||C){if(C)for(T=w.length-1;T>=0&&(_=w[T],!(w[T].level<f));T--)if(_.single===x&&w[T].level===f){_=w[T],x?(O=t.md.options.quotes[2],N=t.md.options.quotes[3]):(O=t.md.options.quotes[0],N=t.md.options.quotes[1]),r.content=i(r.content,d.index,N),e[_.token].content=i(e[_.token].content,_.pos,O),p+=N.length-1,_.token===n&&(p+=O.length-1),l=r.content,h=l.length,w.length=T;continue e}S?w.push({token:n,pos:d.index,single:x,level:f}):C&&x&&(r.content=i(r.content,d.index,u))}else x&&(r.content=i(r.content,d.index,u))}}}}var a=n(0).isWhiteSpace,o=n(0).isPunctChar,s=n(0).isMdAsciiPunct,l=/['\"]/,c=/['\"]/g,u=\"’\";e.exports=function(e){var t;if(e.md.options.typographer)for(t=e.tokens.length-1;t>=0;t--)\"inline\"===e.tokens[t].type&&l.test(e.tokens[t].content)&&r(e.tokens[t].children,e)}},function(e,t,n){\"use strict\";function i(e,t,n){this.src=e,this.env=n,this.tokens=[],this.inlineMode=!1,this.md=t}var r=n(33);i.prototype.Token=r,e.exports=i},function(e,t,n){\"use strict\";var i=/^<([a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)>/,r=/^<([a-zA-Z][a-zA-Z0-9+.\\-]{1,31}):([^<>\\x00-\\x20]*)>/;e.exports=function(e,t){var n,a,o,s,l,c,u=e.pos;return 60===e.src.charCodeAt(u)&&(n=e.src.slice(u),!(n.indexOf(\">\")<0)&&(r.test(n)?(a=n.match(r),s=a[0].slice(1,-1),l=e.md.normalizeLink(s),!!e.md.validateLink(l)&&(t||(c=e.push(\"link_open\",\"a\",1),c.attrs=[[\"href\",l]],c.markup=\"autolink\",c.info=\"auto\",c=e.push(\"text\",\"\",0),c.content=e.md.normalizeLinkText(s),c=e.push(\"link_close\",\"a\",-1),c.markup=\"autolink\",c.info=\"auto\"),e.pos+=a[0].length,!0)):!!i.test(n)&&(o=n.match(i),s=o[0].slice(1,-1),l=e.md.normalizeLink(\"mailto:\"+s),!!e.md.validateLink(l)&&(t||(c=e.push(\"link_open\",\"a\",1),c.attrs=[[\"href\",l]],c.markup=\"autolink\",c.info=\"auto\",c=e.push(\"text\",\"\",0),c.content=e.md.normalizeLinkText(s),c=e.push(\"link_close\",\"a\",-1),c.markup=\"autolink\",c.info=\"auto\"),e.pos+=o[0].length,!0))))}},function(e,t,n){\"use strict\";e.exports=function(e,t){var n,i,r,a,o,s,l=e.pos;if(96!==e.src.charCodeAt(l))return!1;for(n=l,l++,i=e.posMax;l<i&&96===e.src.charCodeAt(l);)l++;for(r=e.src.slice(n,l),a=o=l;-1!==(a=e.src.indexOf(\"`\",o));){for(o=a+1;o<i&&96===e.src.charCodeAt(o);)o++;if(o-a===r.length)return t||(s=e.push(\"code_inline\",\"code\",0),s.markup=r,s.content=e.src.slice(l,a).replace(/\\n/g,\" \").replace(/^ (.+) $/,\"$1\")),e.pos=o,!0}return t||(e.pending+=r),e.pos+=r.length,!0}},function(e,t,n){\"use strict\";function i(e,t){var n,i,r,a,o,s,l,c,u={},d=t.length;for(n=0;n<d;n++)if(r=t[n],r.length=r.length||0,r.close){for(u.hasOwnProperty(r.marker)||(u[r.marker]=[-1,-1,-1]),o=u[r.marker][r.length%3],s=-1,i=n-r.jump-1;i>o;i-=a.jump+1)if(a=t[i],a.marker===r.marker&&(-1===s&&(s=i),a.open&&a.end<0&&a.level===r.level&&(l=!1,(a.close||r.open)&&(a.length+r.length)%3==0&&(a.length%3==0&&r.length%3==0||(l=!0)),!l))){c=i>0&&!t[i-1].open?t[i-1].jump+1:0,r.jump=n-i+c,r.open=!1,a.end=n,a.jump=c,a.close=!1,s=-1;break}-1!==s&&(u[r.marker][(r.length||0)%3]=s)}}e.exports=function(e){var t,n=e.tokens_meta,r=e.tokens_meta.length;for(i(e,e.delimiters),t=0;t<r;t++)n[t]&&n[t].delimiters&&i(e,n[t].delimiters)}},function(e,t,n){\"use strict\";var i=n(53),r=n(0).has,a=n(0).isValidEntityCode,o=n(0).fromCodePoint,s=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,l=/^&([a-z][a-z0-9]{1,31});/i;e.exports=function(e,t){var n,c,u=e.pos,d=e.posMax;if(38!==e.src.charCodeAt(u))return!1;if(u+1<d)if(35===e.src.charCodeAt(u+1)){if(c=e.src.slice(u).match(s))return t||(n=\"x\"===c[1][0].toLowerCase()?parseInt(c[1].slice(1),16):parseInt(c[1],10),e.pending+=o(a(n)?n:65533)),e.pos+=c[0].length,!0}else if((c=e.src.slice(u).match(l))&&r(i,c[1]))return t||(e.pending+=i[c[1]]),e.pos+=c[0].length,!0;return t||(e.pending+=\"&\"),e.pos++,!0}},function(e,t,n){\"use strict\";for(var i=n(0).isSpace,r=[],a=0;a<256;a++)r.push(0);\"\\\\!\\\"#$%&'()*+,./:;<=>?@[]^_`{|}~-\".split(\"\").forEach((function(e){r[e.charCodeAt(0)]=1})),e.exports=function(e,t){var n,a=e.pos,o=e.posMax;if(92!==e.src.charCodeAt(a))return!1;if(++a<o){if((n=e.src.charCodeAt(a))<256&&0!==r[n])return t||(e.pending+=e.src[a]),e.pos+=2,!0;if(10===n){for(t||e.push(\"hardbreak\",\"br\",0),a++;a<o&&(n=e.src.charCodeAt(a),i(n));)a++;return e.pos=a,!0}}return t||(e.pending+=\"\\\\\"),e.pos++,!0}},function(e,t,n){\"use strict\";function i(e){var t=32|e;return t>=97&&t<=122}var r=n(54).HTML_TAG_RE;e.exports=function(e,t){var n,a,o,s,l=e.pos;return!!e.md.options.html&&(o=e.posMax,!(60!==e.src.charCodeAt(l)||l+2>=o)&&!(33!==(n=e.src.charCodeAt(l+1))&&63!==n&&47!==n&&!i(n))&&!!(a=e.src.slice(l).match(r))&&(t||(s=e.push(\"html_inline\",\"\",0),s.content=e.src.slice(l,l+a[0].length)),e.pos+=a[0].length,!0))}},function(e,t,n){\"use strict\";var i=n(0).normalizeReference,r=n(0).isSpace;e.exports=function(e,t){var n,a,o,s,l,c,u,d,p,h,f,_,m,g=\"\",b=e.pos,v=e.posMax;if(33!==e.src.charCodeAt(e.pos))return!1;if(91!==e.src.charCodeAt(e.pos+1))return!1;if(c=e.pos+2,(l=e.md.helpers.parseLinkLabel(e,e.pos+1,!1))<0)return!1;if((u=l+1)<v&&40===e.src.charCodeAt(u)){for(u++;u<v&&(a=e.src.charCodeAt(u),r(a)||10===a);u++);if(u>=v)return!1;for(m=u,p=e.md.helpers.parseLinkDestination(e.src,u,e.posMax),p.ok&&(g=e.md.normalizeLink(p.str),e.md.validateLink(g)?u=p.pos:g=\"\"),m=u;u<v&&(a=e.src.charCodeAt(u),r(a)||10===a);u++);if(p=e.md.helpers.parseLinkTitle(e.src,u,e.posMax),u<v&&m!==u&&p.ok)for(h=p.str,u=p.pos;u<v&&(a=e.src.charCodeAt(u),r(a)||10===a);u++);else h=\"\";if(u>=v||41!==e.src.charCodeAt(u))return e.pos=b,!1;u++}else{if(void 0===e.env.references)return!1;if(u<v&&91===e.src.charCodeAt(u)?(m=u+1,u=e.md.helpers.parseLinkLabel(e,u),u>=0?s=e.src.slice(m,u++):u=l+1):u=l+1,s||(s=e.src.slice(c,l)),!(d=e.env.references[i(s)]))return e.pos=b,!1;g=d.href,h=d.title}return t||(o=e.src.slice(c,l),e.md.inline.parse(o,e.md,e.env,_=[]),f=e.push(\"image\",\"img\",0),f.attrs=n=[[\"src\",g],[\"alt\",\"\"]],f.children=_,f.content=o,h&&n.push([\"title\",h])),e.pos=u,e.posMax=v,!0}},function(e,t,n){\"use strict\";var i=n(0).normalizeReference,r=n(0).isSpace;e.exports=function(e,t){var n,a,o,s,l,c,u,d,p,h,f=\"\",_=e.pos,m=e.posMax,g=e.pos,b=!0;if(91!==e.src.charCodeAt(e.pos))return!1;if(l=e.pos+1,(s=e.md.helpers.parseLinkLabel(e,e.pos,!0))<0)return!1;if((c=s+1)<m&&40===e.src.charCodeAt(c)){for(b=!1,c++;c<m&&(a=e.src.charCodeAt(c),r(a)||10===a);c++);if(c>=m)return!1;for(g=c,u=e.md.helpers.parseLinkDestination(e.src,c,e.posMax),u.ok&&(f=e.md.normalizeLink(u.str),e.md.validateLink(f)?c=u.pos:f=\"\"),g=c;c<m&&(a=e.src.charCodeAt(c),r(a)||10===a);c++);if(u=e.md.helpers.parseLinkTitle(e.src,c,e.posMax),c<m&&g!==c&&u.ok)for(p=u.str,c=u.pos;c<m&&(a=e.src.charCodeAt(c),r(a)||10===a);c++);else p=\"\";(c>=m||41!==e.src.charCodeAt(c))&&(b=!0),c++}if(b){if(void 0===e.env.references)return!1;if(c<m&&91===e.src.charCodeAt(c)?(g=c+1,c=e.md.helpers.parseLinkLabel(e,c),c>=0?o=e.src.slice(g,c++):c=s+1):c=s+1,o||(o=e.src.slice(l,s)),!(d=e.env.references[i(o)]))return e.pos=_,!1;f=d.href,p=d.title}return t||(e.pos=l,e.posMax=s,h=e.push(\"link_open\",\"a\",1),h.attrs=n=[[\"href\",f]],p&&n.push([\"title\",p]),e.md.inline.tokenize(e),h=e.push(\"link_close\",\"a\",-1)),e.pos=c,e.posMax=m,!0}},function(e,t,n){\"use strict\";var i=n(0).isSpace;e.exports=function(e,t){var n,r,a=e.pos;if(10!==e.src.charCodeAt(a))return!1;for(n=e.pending.length-1,r=e.posMax,t||(n>=0&&32===e.pending.charCodeAt(n)?n>=1&&32===e.pending.charCodeAt(n-1)?(e.pending=e.pending.replace(/ +$/,\"\"),e.push(\"hardbreak\",\"br\",0)):(e.pending=e.pending.slice(0,-1),e.push(\"softbreak\",\"br\",0)):e.push(\"softbreak\",\"br\",0)),a++;a<r&&i(e.src.charCodeAt(a));)a++;return e.pos=a,!0}},function(e,t,n){\"use strict\";function i(e,t,n,i){this.src=e,this.env=n,this.md=t,this.tokens=i,this.tokens_meta=Array(i.length),this.pos=0,this.posMax=this.src.length,this.level=0,this.pending=\"\",this.pendingLevel=0,this.cache={},this.delimiters=[],this._prev_delimiters=[]}var r=n(33),a=n(0).isWhiteSpace,o=n(0).isPunctChar,s=n(0).isMdAsciiPunct;i.prototype.pushPending=function(){var e=new r(\"text\",\"\",0);return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending=\"\",e},i.prototype.push=function(e,t,n){this.pending&&this.pushPending();var i=new r(e,t,n),a=null;return n<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),i.level=this.level,n>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],a={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(i),this.tokens_meta.push(a),i},i.prototype.scanDelims=function(e,t){var n,i,r,l,c,u,d,p,h,f=e,_=!0,m=!0,g=this.posMax,b=this.src.charCodeAt(e);for(n=e>0?this.src.charCodeAt(e-1):32;f<g&&this.src.charCodeAt(f)===b;)f++;return r=f-e,i=f<g?this.src.charCodeAt(f):32,d=s(n)||o(String.fromCharCode(n)),h=s(i)||o(String.fromCharCode(i)),u=a(n),p=a(i),p?_=!1:h&&(u||d||(_=!1)),u?m=!1:d&&(p||h||(m=!1)),t?(l=_,c=m):(l=_&&(!m||d),c=m&&(!_||h)),{can_open:l,can_close:c,length:r}},i.prototype.Token=r,e.exports=i},function(e,t,n){\"use strict\";function i(e){switch(e){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}e.exports=function(e,t){for(var n=e.pos;n<e.posMax&&!i(e.src.charCodeAt(n));)n++;return n!==e.pos&&(t||(e.pending+=e.src.slice(e.pos,n)),e.pos=n,!0)}},function(e,t,n){\"use strict\";e.exports=function(e){var t,n,i=0,r=e.tokens,a=e.tokens.length;for(t=n=0;t<a;t++)r[t].nesting<0&&i--,r[t].level=i,r[t].nesting>0&&i++,\"text\"===r[t].type&&t+1<a&&\"text\"===r[t+1].type?r[t+1].content=r[t].content+r[t+1].content:(t!==n&&(r[n]=r[t]),n++);t!==n&&(r.length=n)}},function(e,t,n){\"use strict\";function i(e){var t,n,i=a[e];if(i)return i;for(i=a[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),i.push(n);for(t=0;t<e.length;t++)n=e.charCodeAt(t),i[n]=\"%\"+(\"0\"+n.toString(16).toUpperCase()).slice(-2);return i}function r(e,t){var n;return\"string\"!=typeof t&&(t=r.defaultChars),n=i(t),e.replace(/(%[a-f0-9]{2})+/gi,(function(e){var t,i,r,a,o,s,l,c=\"\";for(t=0,i=e.length;t<i;t+=3)r=parseInt(e.slice(t+1,t+3),16),r<128?c+=n[r]:192==(224&r)&&t+3<i&&128==(192&(a=parseInt(e.slice(t+4,t+6),16)))?(l=r<<6&1984|63&a,c+=l<128?\"��\":String.fromCharCode(l),t+=3):224==(240&r)&&t+6<i&&(a=parseInt(e.slice(t+4,t+6),16),o=parseInt(e.slice(t+7,t+9),16),128==(192&a)&&128==(192&o))?(l=r<<12&61440|a<<6&4032|63&o,c+=l<2048||l>=55296&&l<=57343?\"���\":String.fromCharCode(l),t+=6):240==(248&r)&&t+9<i&&(a=parseInt(e.slice(t+4,t+6),16),o=parseInt(e.slice(t+7,t+9),16),s=parseInt(e.slice(t+10,t+12),16),128==(192&a)&&128==(192&o)&&128==(192&s))?(l=r<<18&1835008|a<<12&258048|o<<6&4032|63&s,l<65536||l>1114111?c+=\"����\":(l-=65536,c+=String.fromCharCode(55296+(l>>10),56320+(1023&l))),t+=9):c+=\"�\";return c}))}var a={};r.defaultChars=\";/?:@&=+$,#\",r.componentChars=\"\",e.exports=r},function(e,t,n){\"use strict\";function i(e){var t,n,i=a[e];if(i)return i;for(i=a[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),/^[0-9a-z]$/i.test(n)?i.push(n):i.push(\"%\"+(\"0\"+t.toString(16).toUpperCase()).slice(-2));for(t=0;t<e.length;t++)i[e.charCodeAt(t)]=e[t];return i}function r(e,t,n){var a,o,s,l,c,u=\"\";for(\"string\"!=typeof t&&(n=t,t=r.defaultChars),void 0===n&&(n=!0),c=i(t),a=0,o=e.length;a<o;a++)if(s=e.charCodeAt(a),n&&37===s&&a+2<o&&/^[0-9a-f]{2}$/i.test(e.slice(a+1,a+3)))u+=e.slice(a,a+3),a+=2;else if(s<128)u+=c[s];else if(s>=55296&&s<=57343){if(s>=55296&&s<=56319&&a+1<o&&(l=e.charCodeAt(a+1))>=56320&&l<=57343){u+=encodeURIComponent(e[a]+e[a+1]),a++;continue}u+=\"%EF%BF%BD\"}else u+=encodeURIComponent(e[a]);return u}var a={};r.defaultChars=\";/?:@&=+$,-_.!~*'()#\",r.componentChars=\"-_.!~*'()\",e.exports=r},function(e,t,n){\"use strict\";e.exports=function(e){var t=\"\";return t+=e.protocol||\"\",t+=e.slashes?\"//\":\"\",t+=e.auth?e.auth+\"@\":\"\",e.hostname&&-1!==e.hostname.indexOf(\":\")?t+=\"[\"+e.hostname+\"]\":t+=e.hostname||\"\",t+=e.port?\":\"+e.port:\"\",t+=e.pathname||\"\",t+=e.search||\"\",t+(e.hash||\"\")}},function(e,t,n){\"use strict\";function i(){this.protocol=null,this.slashes=null,this.auth=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.pathname=null}function r(e,t){if(e&&e instanceof i)return e;var n=new i;return n.parse(e,t),n}var a=/^([a-z0-9.+-]+:)/i,o=/:[0-9]*$/,s=/^(\\/\\/?(?!\\/)[^\\?\\s]*)(\\?[^\\s]*)?$/,l=[\"<\",\">\",'\"',\"`\",\" \",\"\\r\",\"\\n\",\"\\t\"],c=[\"{\",\"}\",\"|\",\"\\\\\",\"^\",\"`\"].concat(l),u=[\"'\"].concat(c),d=[\"%\",\"/\",\"?\",\";\",\"#\"].concat(u),p=[\"/\",\"?\",\"#\"],h=/^[+a-z0-9A-Z_-]{0,63}$/,f=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,_={javascript:!0,\"javascript:\":!0},m={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,\"http:\":!0,\"https:\":!0,\"ftp:\":!0,\"gopher:\":!0,\"file:\":!0};i.prototype.parse=function(e,t){var n,i,r,o,l,c=e;if(c=c.trim(),!t&&1===e.split(\"#\").length){var u=s.exec(c);if(u)return this.pathname=u[1],u[2]&&(this.search=u[2]),this}var g=a.exec(c);if(g&&(g=g[0],r=g.toLowerCase(),this.protocol=g,c=c.substr(g.length)),(t||g||c.match(/^\\/\\/[^@\\/]+@[^@\\/]+/))&&(!(l=\"//\"===c.substr(0,2))||g&&_[g]||(c=c.substr(2),this.slashes=!0)),!_[g]&&(l||g&&!m[g])){var b,v,E=-1;for(n=0;n<p.length;n++)-1!==(o=c.indexOf(p[n]))&&(-1===E||o<E)&&(E=o);for(v=-1===E?c.lastIndexOf(\"@\"):c.lastIndexOf(\"@\",E),-1!==v&&(b=c.slice(0,v),c=c.slice(v+1),this.auth=b),E=-1,n=0;n<d.length;n++)-1!==(o=c.indexOf(d[n]))&&(-1===E||o<E)&&(E=o);-1===E&&(E=c.length),\":\"===c[E-1]&&E--;var y=c.slice(0,E);c=c.slice(E),this.parseHost(y),this.hostname=this.hostname||\"\";var S=\"[\"===this.hostname[0]&&\"]\"===this.hostname[this.hostname.length-1];if(!S){var C=this.hostname.split(/\\./);for(n=0,i=C.length;n<i;n++){var T=C[n];if(T&&!T.match(h)){for(var x=\"\",w=0,O=T.length;w<O;w++)T.charCodeAt(w)>127?x+=\"x\":x+=T[w];if(!x.match(h)){var N=C.slice(0,n),R=C.slice(n+1),k=T.match(f);k&&(N.push(k[1]),R.unshift(k[2])),R.length&&(c=R.join(\".\")+c),this.hostname=N.join(\".\");break}}}}this.hostname.length>255&&(this.hostname=\"\"),S&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var A=c.indexOf(\"#\");-1!==A&&(this.hash=c.substr(A),c=c.slice(0,A));var D=c.indexOf(\"?\");return-1!==D&&(this.search=c.substr(D),c=c.slice(0,D)),c&&(this.pathname=c),m[r]&&this.hostname&&!this.pathname&&(this.pathname=\"\"),this},i.prototype.parseHost=function(e){var t=o.exec(e);t&&(t=t[0],\":\"!==t&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)},e.exports=r},function(e,t,n){(function(e,i){var r;!function(i){function a(e){throw new RangeError(k[e])}function o(e,t){for(var n=e.length,i=[];n--;)i[n]=t(e[n]);return i}function s(e,t){var n=e.split(\"@\"),i=\"\";return n.length>1&&(i=n[0]+\"@\",e=n[1]),e=e.replace(R,\".\"),i+o(e.split(\".\"),t).join(\".\")}function l(e){for(var t,n,i=[],r=0,a=e.length;r<a;)t=e.charCodeAt(r++),t>=55296&&t<=56319&&r<a?(n=e.charCodeAt(r++),56320==(64512&n)?i.push(((1023&t)<<10)+(1023&n)+65536):(i.push(t),r--)):i.push(t);return i}function c(e){return o(e,(function(e){var t=\"\";return e>65535&&(e-=65536,t+=I(e>>>10&1023|55296),e=56320|1023&e),t+I(e)})).join(\"\")}function u(e){return e-48<10?e-22:e-65<26?e-65:e-97<26?e-97:v}function d(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function p(e,t,n){var i=0;for(e=n?D(e/C):e>>1,e+=D(e/t);e>A*y>>1;i+=v)e=D(e/A);return D(i+(A+1)*e/(e+S))}function h(e){var t,n,i,r,o,s,l,d,h,f,_=[],m=e.length,g=0,S=x,C=T;for(n=e.lastIndexOf(w),n<0&&(n=0),i=0;i<n;++i)e.charCodeAt(i)>=128&&a(\"not-basic\"),_.push(e.charCodeAt(i));for(r=n>0?n+1:0;r<m;){for(o=g,s=1,l=v;r>=m&&a(\"invalid-input\"),d=u(e.charCodeAt(r++)),(d>=v||d>D((b-g)/s))&&a(\"overflow\"),g+=d*s,h=l<=C?E:l>=C+y?y:l-C,!(d<h);l+=v)f=v-h,s>D(b/f)&&a(\"overflow\"),s*=f;t=_.length+1,C=p(g-o,t,0==o),D(g/t)>b-S&&a(\"overflow\"),S+=D(g/t),g%=t,_.splice(g++,0,S)}return c(_)}function f(e){var t,n,i,r,o,s,c,u,h,f,_,m,g,S,C,O=[];for(e=l(e),m=e.length,t=x,n=0,o=T,s=0;s<m;++s)(_=e[s])<128&&O.push(I(_));for(i=r=O.length,r&&O.push(w);i<m;){for(c=b,s=0;s<m;++s)(_=e[s])>=t&&_<c&&(c=_);for(g=i+1,c-t>D((b-n)/g)&&a(\"overflow\"),n+=(c-t)*g,t=c,s=0;s<m;++s)if(_=e[s],_<t&&++n>b&&a(\"overflow\"),_==t){for(u=n,h=v;f=h<=o?E:h>=o+y?y:h-o,!(u<f);h+=v)C=u-f,S=v-f,O.push(I(d(f+C%S,0))),u=D(C/S);O.push(I(d(u,0))),o=p(n,g,i==r),n=0,++i}++n,++t}return O.join(\"\")}function _(e){return s(e,(function(e){return O.test(e)?h(e.slice(4).toLowerCase()):e}))}function m(e){return s(e,(function(e){return N.test(e)?\"xn--\"+f(e):e}))}\"object\"==typeof t&&t&&t.nodeType,\"object\"==typeof e&&e&&e.nodeType;var g,b=2147483647,v=36,E=1,y=26,S=38,C=700,T=72,x=128,w=\"-\",O=/^xn--/,N=/[^\\x20-\\x7E]/,R=/[\\x2E\\u3002\\uFF0E\\uFF61]/g,k={overflow:\"Overflow: input needs wider integers to process\",\"not-basic\":\"Illegal input >= 0x80 (not a basic code point)\",\"invalid-input\":\"Invalid input\"},A=v-E,D=Math.floor,I=String.fromCharCode;g={version:\"1.4.1\",ucs2:{decode:l,encode:c},decode:h,encode:f,toASCII:m,toUnicode:_},void 0!==(r=function(){return g}.call(t,n,t,e))&&(e.exports=r)}()}).call(t,n(208)(e),n(207))},function(e,t){e.exports='@[toc](Catalog)\\n\\nMarkdown Handbuch\\n===\\n> Details: [http://commonmark.org/help/](http://commonmark.org/help/)\\n\\n## **Fett**\\n```\\n**fett**\\n__fett__\\n```\\n## *Kursiv*\\n```\\n*kursiv*\\n_kursiv_\\n```\\n## Überschriften\\n```\\n# h1 #\\nh1\\n====\\n## h2 ##\\nh2\\n----\\n### h3 ###\\n#### h4 ####\\n##### h5 #####\\n###### h6 ######\\n```\\n## Trennlinien\\n```\\n***\\n---\\n```\\n****\\n## ^Hoch^gestellt & ~Tief~gestellt\\n```\\nhochgestellt x^2^\\ntiefgestellt H~2~0\\n```\\n## ++Unterstrichen++ & ~~Durchgestrichen~~\\n```\\n++unterstrichen++\\n~~durchgestrichen~~\\n```\\n## ==Markiert==\\n```\\n==markiert==\\n```\\n## Zitat\\n\\n```\\n> zitat 1\\n>> zitat 2\\n>>> zitat 3\\n...\\n```\\n\\n## Liste\\n```\\nol\\n1.\\n2.\\n3.\\n...\\n\\nul\\n-\\n-\\n...\\n```\\n\\n## Todo Liste\\n\\n- [x] aufgabe 1\\n- [ ] aufgabe 2\\n\\n```\\n- [x] aufgabe 1\\n- [ ] aufgabe 2\\n```\\n\\n## Link\\n```\\nText Link\\n[Text](www.baidu.com)\\n\\nLink mit Bild\\n![Text](http://www.image.com)\\n```\\n## Code\\n\\\\``` Typ\\n\\nCodeblock\\n\\n\\\\```\\n\\n\\\\` code \\\\`\\n\\n```c++\\nint main()\\n{\\n    printf(\"hello world!\");\\n}\\n```\\n`code`\\n\\n## Tabelle\\n```\\n| th1 | th2 | th3 |\\n| :--  | :--: | ----: |\\n| links | mitte | rechts |\\n```\\n| th1 | th2 | th3 |\\n| :--  | :--: | ----: |\\n| links | mitte | rechts |\\n| ---------------------- | ------------- | ----------------- |\\n## Fußnote\\n```\\nhallo[^hallo]\\n```\\n\\nSchau zum unteren Rand[^hallo]\\n\\n[^hallo]: fussnote\\n\\n## Emojis\\nDetails: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\\n```\\n:laughing:\\n:blush:\\n:smiley:\\n:)\\n...\\n```\\n:laughing::blush::smiley::)\\n\\n## $\\\\KaTeX$ Mathematik\\n\\nFormeln lassen sich darstellen z.b. ：$x_i + y_i = z_i$ und $\\\\sum_{i=1}^n a_i=0$\\nFormeln können auf einer eigenen Zeile gerendert werden\\n$$\\\\sum_{i=1}^n a_i=0$$\\nDetails: [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)和[katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)以及[latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\\n\\n## Layout\\n\\n::: hljs-left\\n`::: hljs-left`\\n`links`\\n`:::`\\n:::\\n\\n::: hljs-center\\n`::: hljs-center`\\n`mitte`\\n`:::`\\n:::\\n\\n::: hljs-right\\n`::: hljs-right`\\n`rechts`\\n`:::`\\n:::\\n\\n## Liste von Definitionen\\n\\nTerm 1\\n\\n:   Definition 1\\n\\nTerm 2 mit *inline markup*\\n\\n:   Definition 2\\n\\n        { ein wenig code, teil von Definition 2 }\\n\\n    Dritter Absatz von Definition 2.\\n\\n```\\nTerm 1\\n\\n:   Definition 1\\n\\nTerm 2 mit *inline markup*\\n\\n:   Definition 2\\n\\n        { ein wenig code, teil von Definition 2 }\\n\\n    Dritter Absatz von Definition 2.\\n\\n```\\n\\n## Abkürzungen\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nDie HTML Spezifikation\\nwird gepflegt vom W3C.\\n```\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nDie HTML Spezifikation\\nwird gepflegt vom W3C.\\n```\\n'},function(e,t){e.exports='@[toc](Catalog)\\n\\nMarkdown Guide\\n===\\n> Detailed: [http://commonmark.org/help/](http://commonmark.org/help/)\\n\\n## **Bold**\\n```\\n**bold**\\n__bold__\\n```\\n## *Italic*\\n```\\n*italic*\\n_italic_\\n```\\n## Header\\n```\\n# h1 #\\nh1\\n====\\n## h2 ##\\nh2\\n----\\n### h3 ###\\n#### h4 ####\\n##### h5 #####\\n###### h6 ######\\n```\\n## Dividing line\\n```\\n***\\n---\\n```\\n****\\n## ^Super^script & ~Sub~script\\n```\\nsuper x^2^\\nsub H~2~0\\n```\\n## ++Underline++ & ~~Strikethrough~~\\n```\\n++underline++\\n~~strikethrough~~\\n```\\n## ==Mark==\\n```\\n==mark==\\n```\\n## Quote\\n\\n```\\n> quote 1\\n>> quote 2\\n>>> quote 3\\n...\\n```\\n\\n## List\\n```\\nol\\n1.\\n2.\\n3.\\n...\\n\\nul\\n-\\n-\\n...\\n```\\n\\n## Todo List\\n\\n- [x] task 1\\n- [ ] task 2\\n\\n```\\n- [x] task 1\\n- [ ] task 2\\n```\\n\\n## Link\\n```\\nText Link\\n[Text](www.baidu.com)\\n\\nImage Link\\n![Text](http://www.image.com)\\n```\\n## Code\\n\\\\``` type\\n\\ncode block\\n\\n\\\\```\\n\\n\\\\` code \\\\`\\n\\n```c++\\nint main()\\n{\\n    printf(\"hello world!\");\\n}\\n```\\n`code`\\n\\n## Table\\n```\\n| th1 | th2 | th3 |\\n| :--  | :--: | ----: |\\n| left | center | right |\\n```\\n| th1 | th2 | th3 |\\n| :--  | :--: | ----: |\\n| left | center | right |\\n| ---------------------- | ------------- | ----------------- |\\n## Footnote\\n```\\nhello[^hello]\\n```\\n\\nLook at the bottom[^hello]\\n\\n[^hello]: footnote\\n\\n## Emojis\\nDetailed: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\\n```\\n:laughing:\\n:blush:\\n:smiley:\\n:)\\n...\\n```\\n:laughing::blush::smiley::)\\n\\n## $\\\\KaTeX$ Mathematics\\n\\nWe can render formulas for example：$x_i + y_i = z_i$ and $\\\\sum_{i=1}^n a_i=0$\\nWe can also single-line rendering\\n$$\\\\sum_{i=1}^n a_i=0$$\\nDetailed: [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)和[katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)以及[latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\\n\\n## Layout\\n\\n::: hljs-left\\n`::: hljs-left`\\n`left`\\n`:::`\\n:::\\n\\n::: hljs-center\\n`::: hljs-center`\\n`center`\\n`:::`\\n:::\\n\\n::: hljs-right\\n`::: hljs-right`\\n`right`\\n`:::`\\n:::\\n\\n## deflist\\n\\nTerm 1\\n\\n:   Definition 1\\n\\nTerm 2 with *inline markup*\\n\\n:   Definition 2\\n\\n        { some code, part of Definition 2 }\\n\\n    Third paragraph of definition 2.\\n\\n```\\nTerm 1\\n\\n:   Definition 1\\n\\nTerm 2 with *inline markup*\\n\\n:   Definition 2\\n\\n        { some code, part of Definition 2 }\\n\\n    Third paragraph of definition 2.\\n\\n```\\n\\n## abbr\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nThe HTML specification\\nis maintained by the W3C.\\n```\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nThe HTML specification\\nis maintained by the W3C.\\n```\\n'},function(e,t){e.exports='@[toc](Catalogue)\\n\\nGuide Markdown\\n==============\\n> Détail : [http://commonmark.org/help/](http://commonmark.org/help/)\\n\\n## **Bold**\\n```\\n**bold**\\n__bold__\\n```\\n## *Italic*\\n```\\n*italic*\\n_italic_\\n```\\n## Header\\n```\\n# h1 #\\nh1\\n====\\n## h2 ##\\nh2\\n----\\n### h3 ###\\n#### h4 ####\\n##### h5 #####\\n###### h6 ######\\n```\\n## Dividing line\\n```\\n***\\n---\\n```\\n****\\n## ^Super^script & ~Sub~script\\n```\\nsuper x^2^\\nsub H~2~0\\n```\\n## ++Underline++ & ~~Strikethrough~~\\n```\\n++underline++\\n~~strikethrough~~\\n```\\n## ==Mark==\\n```\\n==mark==\\n```\\n## Quote\\n\\n```\\n> quote 1\\n>> quote 2\\n>>> quote 3\\n...\\n```\\n\\n## List\\n```\\nol\\n1.\\n2.\\n3.\\n...\\n\\nul\\n-\\n-\\n...\\n```\\n## Link\\n\\n## Todo List\\n\\n- [x] Équipe 1\\n- [ ] Équipe 2\\n\\n```\\n- [x] Équipe 1\\n- [ ] Équipe 2\\n```\\n\\n```\\nText Link\\n[Text](www.baidu.com)\\n\\nImage Link\\n![Text](http://www.image.com)\\n```\\n## Code\\n\\\\``` type\\n\\ncode block\\n\\n\\\\```\\n\\n\\\\` code \\\\`\\n\\n```c++\\nint main()\\n{\\n    printf(\"hello world!\");\\n}\\n```\\n`code`\\n\\n## Table\\n```\\n| th1 | th2 | th3 |\\n| :--  | :--: | ----: |\\n| left | center | right |\\n```\\n| th1 | th2 | th3 |\\n| :--  | :--: | ----: |\\n| left | center | right |\\n| ---------------------- | ------------- | ----------------- |\\n## Footnote\\n```\\nhello[^hello]\\n```\\n\\nLook at the bottom[^hello]\\n\\n[^hello]: footnote\\n\\n## Emojis\\nDetailed: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\\n```\\n:laughing:\\n:blush:\\n:smiley:\\n:)\\n...\\n```\\n:laughing::blush::smiley::)\\n\\n## $\\\\KaTeX$ Mathematics\\n\\nWe can render formulas for example：$x_i + y_i = z_i$ and $\\\\sum_{i=1}^n a_i=0$\\nWe can also single-line rendering\\n$$\\\\sum_{i=1}^n a_i=0$$\\nDetailed: [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)和[katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)以及[latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\\n\\n## Layout\\n\\n::: hljs-left\\n`::: hljs-left`\\n`left`\\n`:::`\\n:::\\n\\n::: hljs-center\\n`::: hljs-center`\\n`center`\\n`:::`\\n:::\\n\\n::: hljs-right\\n`::: hljs-right`\\n`right`\\n`:::`\\n:::\\n\\n## deflist\\n\\nTerm 1\\n\\n:   Definition 1\\n\\nTerm 2 with *inline markup*\\n\\n:   Definition 2\\n\\n        { some code, part of Definition 2 }\\n\\n    Third paragraph of definition 2.\\n\\n```\\nTerm 1\\n\\n:   Definition 1\\n\\nTerm 2 with *inline markup*\\n\\n:   Definition 2\\n\\n        { some code, part of Definition 2 }\\n\\n    Third paragraph of definition 2.\\n\\n```\\n\\n## abbr\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nThe HTML specification\\nis maintained by the W3C.\\n```\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nThe HTML specification\\nis maintained by the W3C.\\n```\\n'},function(e,t){e.exports='@[toc](目次)\\n\\nMarkdown 文法ガイド\\n===\\n> Detailed: [http://commonmark.org/help/](http://commonmark.org/help/)\\n\\n## **太字**\\n```\\n**太字**\\n__太字__\\n```\\n## *斜体*\\n```\\n*斜体*\\n_斜体_\\n```\\n## 見出し\\n```\\n# h1 #\\nh1\\n====\\n## h2 ##\\nh2\\n----\\n### h3 ###\\n#### h4 ####\\n##### h5 #####\\n###### h6 ######\\n```\\n## 横線\\n```\\n***\\n---\\n```\\n****\\n## ^上付き^文字 & ~下付き~文字\\n```\\nsuper x^2^\\nsub H~2~0\\n```\\n## ++下線++ & ~~取り消し線~~\\n```\\n++underline++\\n~~strikethrough~~\\n```\\n## ==蛍光ペン==\\n```\\n==mark==\\n```\\n## 引用\\n\\n```\\n> quote 1\\n>> quote 2\\n>>> quote 3\\n...\\n```\\n\\n## リスト\\n```\\n番号付きリスト\\n1.\\n2.\\n3.\\n...\\n\\n箇条書きリスト\\n-\\n-\\n...\\n```\\n\\n## Todoリスト\\n\\n- [x] task 1\\n- [ ] task 2\\n\\n```\\n- [x] task 1\\n- [ ] task 2\\n```\\n\\n## リンク\\n```\\nText Link\\n[Text](www.baidu.com)\\n\\nImage Link\\n![Text](http://www.image.com)\\n```\\n## コード\\n\\\\``` type\\n\\ncode block\\n\\n\\\\```\\n\\n\\\\` code \\\\`\\n\\n```c++\\nint main()\\n{\\n    printf(\"hello world!\");\\n}\\n```\\n`code`\\n\\n## 表\\n```\\n| th1 | th2 | th3 |\\n| :--  | :--: | ----: |\\n| left | center | right |\\n```\\n| th1 | th2 | th3 |\\n| :--  | :--: | ----: |\\n| left | center | right |\\n| ---------------------- | ------------- | ----------------- |\\n\\n## 脚注\\n```\\nhello[^hello]\\n```\\n\\nLook at the bottom[^hello]\\n\\n[^hello]: footnote\\n\\n## 絵文字\\n> Detailed: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\\n```\\n:laughing:\\n:blush:\\n:smiley:\\n:)\\n...\\n```\\n:laughing::blush::smiley::)\\n\\n## $\\\\KaTeX$ 数式\\n> Detailed: [KaTeXマニュアル](http://www.intmath.com/cg5/katex-mathjax-comparison.php)、[KaTeX function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)、[LaTeXマニュアル](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\\n\\nWe can render formulas for example：$x_i + y_i = z_i$ and $\\\\sum_{i=1}^n a_i=0$  \\nWe can also single-line rendering\\n$$\\\\sum_{i=1}^n a_i=0$$\\n\\n## レイアウト\\n\\n::: hljs-left\\n`::: hljs-left`\\n`left`\\n`:::`\\n:::\\n\\n::: hljs-center\\n`::: hljs-center`\\n`center`\\n`:::`\\n:::\\n\\n::: hljs-right\\n`::: hljs-right`\\n`right`\\n`:::`\\n:::\\n\\n## 定義リスト\\n\\nTerm 1\\n\\n:   Definition 1\\n\\nTerm 2 with *inline markup*\\n\\n:   Definition 2\\n\\n        { some code, part of Definition 2 }\\n\\n    Third paragraph of definition 2.\\n\\n```\\nTerm 1\\n\\n:   Definition 1\\n\\nTerm 2 with *inline markup*\\n\\n:   Definition 2\\n\\n        { some code, part of Definition 2 }\\n\\n    Third paragraph of definition 2.\\n\\n```\\n\\n## abbr\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nThe HTML specification\\nis maintained by the W3C.\\n```\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nThe HTML specification\\nis maintained by the W3C.\\n```\\n'},function(e,t){e.exports='@[toc](Directory)\\n\\nGuia Markdown\\n===\\n> Detalhes: [http://commonmark.org/help/](http://commonmark.org/help/)\\n\\n## **Negrito**\\n```\\n**negrito**\\n__negrito__\\n```\\n## *Itálico*\\n```\\n*itálico*\\n_itálico_\\n```\\n## Cabeçalho\\n```\\n# h1 #\\nh1\\n====\\n## h2 ##\\nh2\\n----\\n### h3 ###\\n#### h4 ####\\n##### h5 #####\\n###### h6 ######\\n```\\n## Linha Divisora\\n```\\n***\\n---\\n```\\n****\\n## ^Sobre^scrito & ~Sub~scrito\\n```\\nsobre x^2^\\nsub H~2~0\\n```\\n## ++Sublinhar++ & ~~Tachar~~\\n```\\n++sublinhar++\\n~~tachar~~\\n```\\n## ==Marcador==\\n```\\n==marcador==\\n```\\n## Citação\\n\\n```\\n> citação 1\\n>> citação 2\\n>>> citação 3\\n...\\n```\\n\\n## Listas\\n```\\nlista Numerada\\n1.\\n2.\\n3.\\n...\\n\\nlista com marcadores\\n-\\n-\\n...\\n```\\n\\n## Todo Listas\\n\\n- [x] Tarefa 1\\n- [ ] Tarefa 2\\n\\n```\\n- [x] Tarefa 1\\n- [ ] Tarefa 2\\n```\\n\\n## Link\\n```\\nLink Texto\\n[Text](www.baidu.com)\\n\\nLink Imagem\\n![Text](http://www.image.com)\\n```\\n## Código\\n\\\\``` tipo\\n\\nbloco de código\\n\\n\\\\```\\n\\n\\\\` código \\\\`\\n\\n```c++\\nint main()\\n{\\n    printf(\"hello world!\");\\n}\\n```\\n`code`\\n\\n## Tabela\\n```\\n| th1 | th2 | th3 |\\n| :--  | :--: | ----: |\\n| esquerda | centro | direita |\\n```\\n| th1 | th2 | th3 |\\n| :--  | :--: | ----: |\\n| esquerda | centro | direita |\\n| ---------------------- | ------------- | ----------------- |\\n## Rodapé\\n```\\nolá[^olá]\\n```\\n\\nOlhe para baixo[^olá]\\n\\n[^olá]: rodapé\\n\\n## Emojis\\nDetalhes: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\\n```\\n:laughing:\\n:blush:\\n:smiley:\\n:)\\n...\\n```\\n:laughing::blush::smiley::)\\n\\n## $\\\\KaTeX$ Mathematics\\n\\nPodemos mostrar fórmulas por exemplo：$x_i + y_i = z_i$ and $\\\\sum_{i=1}^n a_i=0$\\nPodemos também mostrar em uma única linha:\\n$$\\\\sum_{i=1}^n a_i=0$$\\nDetalhes: [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)和[katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)以及[latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\\n\\n## Layout\\n\\n::: hljs-left\\n`::: hljs-left`\\n`esquerda`\\n`:::`\\n:::\\n\\n::: hljs-center\\n`::: hljs-center`\\n`centro`\\n`:::`\\n:::\\n\\n::: hljs-right\\n`::: hljs-right`\\n`direita`\\n`:::`\\n:::\\n\\n## Definições\\n\\nTermo 1\\n\\n:   Definição 1\\n\\nTermo 2 com *markup inline*\\n\\n:   Definição 2\\n\\n        { um pouco de código, parte da Definição 2 }\\n\\n    Terceiro parágrafo da definição 2.\\n\\n```\\nTermo 1\\n\\n:   Definição 1\\n\\nTermo 2 com *markup inline*\\n\\n:   Definição 2\\n\\n        { um pouco de código, parte da Definição 2 }\\n\\n    Terceiro parágrafo da definição 2.\\n\\n```\\n\\n## Abreviações\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nA especificação HTML\\né mantida pela W3C.\\n```\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nThe HTML specification\\né mantida pela W3C.\\n```\\n'},function(e,t){e.exports='@[toc](Catalog)  \\n  \\nMarkdown помощь  \\n===  \\n> Подробнее: [http://commonmark.org/help/](http://commonmark.org/help/)  \\n  \\n## **Полужирный**  \\n```  \\n**Полужирный**  \\n__Полужирный__  \\n```  \\n## *Курсив*  \\n```  \\n*Курсив*  \\n_Курсив_  \\n```  \\n## Заголовок  \\n```  \\n# h1 #  \\nh1  \\n====  \\n## h2 ##  \\nh2  \\n----  \\n### h3 ###  \\n#### h4 ####  \\n##### h5 #####  \\n###### h6 ######  \\n```  \\n## Разделительная линия  \\n```  \\n***  \\n---  \\n```  \\n****  \\n## ^Верхний^индекс & ~Нижний~индекс  \\n```  \\nверхний x^2^  \\nнижний H~2~0  \\n```  \\n## ++Подчеркнутый++ & ~~Зачеркнутый~~  \\n```  \\n++Подчеркнутый++  \\n~~Зачеркнутый~~  \\n```  \\n## ==Отметка==  \\n```  \\n==Отметка==  \\n```  \\n## Цитата  \\n  \\n```  \\n> Цитата  \\n>> Цитата 2  \\n>>> Цитата 3  \\n...  \\n```  \\n  \\n## Список  \\n```  \\nol  \\n1.  \\n2.  \\n3.  \\n...  \\n  \\nul  \\n-  \\n-  \\n...  \\n```  \\n  \\n## Список задач  \\n  \\n- [x] Задача 1  \\n- [ ] Задача 2  \\n  \\n```  \\n- [x] Задача 1  \\n- [ ] Задача 2  \\n```  \\n  \\n## Ссылка  \\n```  \\nСсылка  \\n[Текст](www.baidu.com)  \\n  \\nСсылка изображения  \\n![Текст](http://www.image.com)  \\n```  \\n## Код  \\n\\\\``` type  \\n  \\ncode block  \\n  \\n\\\\```  \\n  \\n\\\\` code \\\\`  \\n  \\n```c++  \\nint main()  \\n{  \\n printf(\"hello world!\");}  \\n```  \\n`code`  \\n  \\n## Таблица  \\n```  \\n| th1 | th2 | th3 |  \\n| :--  | :--: | ----: |  \\n| left | center | right |  \\n```  \\n| th1 | th2 | th3 |  \\n| :--  | :--: | ----: |  \\n| left | center | right |  \\n| ---------------------- | ------------- | ----------------- |  \\n## Сноска  \\n```  \\nПривет[^Привет]  \\n```  \\n  \\nТут что-то непонятное[^Привет]  \\n  \\n[^Привет]: А тут объяснение  \\n  \\n## Emojis  \\nПодробнее: [https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)  \\n```  \\n:laughing:  \\n:blush:  \\n:smiley:  \\n:)  \\n...  \\n```  \\n:laughing::blush::smiley::)  \\n  \\n## $\\\\KaTeX$ Mathematics  \\n  \\nМожно выводить такие формулы：$x_i + y_i = z_i$ and $\\\\sum_{i=1}^n a_i=0$  \\nА также в одну строку:\\n$$\\\\sum_{i=1}^n a_i=0$$  \\nПодробнее: \\n- [katex](http://www.intmath.com/cg5/katex-mathjax-comparison.php)\\n- [katex function](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)\\n- [latex](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)  \\n  \\n## Разметка\\n  \\n::: hljs-left  \\n`::: hljs-left`  \\n`left`  \\n`:::`  \\n:::  \\n  \\n::: hljs-center  \\n`::: hljs-center`  \\n`center`  \\n`:::`  \\n:::  \\n  \\n::: hljs-right  \\n`::: hljs-right`  \\n`right`  \\n`:::`  \\n:::  \\n  \\n## Список определений\\n  \\nТермин 1  \\n  \\n:   Определение 1  \\n  \\nТермин  2 с использованием *разметки*\\n  \\n:   Определение 2  \\n  \\n { Какой-нибудь код, часть определения 2 }  \\n Третий параграф определения 2.  \\n```  \\nТермин 1  \\n  \\n:   Определение 1  \\n  \\nТермин  2 с использованием *разметки*\\n  \\n:   Определение 2  \\n  \\n { Какой-нибудь код, часть определения 2 }  \\n Третий параграф определения 2.  \\n```  \\n  \\n## Сокращения\\n*[HTML]: Hyper Text Markup Language  \\n*[W3C]:  World Wide Web Consortium  \\nThe HTML specification  \\nis maintained by the W3C.  \\n```  \\n*[HTML]: Hyper Text Markup Language  \\n*[W3C]:  World Wide Web Consortium  \\nThe HTML specification  \\nis maintained by the W3C.  \\n```\\n'},function(e,t){e.exports='@[toc](目录)\\n\\nMarkdown 语法简介\\n=============\\n> [语法详解](http://commonmark.org/help/)\\n\\n## **粗体**\\n```\\n**粗体**\\n__粗体__\\n```\\n## *斜体*\\n```\\n*斜体*\\n_斜体_\\n```\\n## 标题\\n```\\n# 一级标题 #\\n一级标题\\n====\\n## 二级标题 ##\\n二级标题\\n----\\n### 三级标题 ###\\n#### 四级标题 ####\\n##### 五级标题 #####\\n###### 六级标题 ######\\n```\\n## 分割线\\n```\\n***\\n---\\n```\\n****\\n## ^上^角~下~标\\n```\\n上角标 x^2^\\n下角标 H~2~0\\n```\\n## ++下划线++ ~~中划线~~\\n```\\n++下划线++\\n~~中划线~~\\n```\\n## ==标记==\\n```\\n==标记==\\n```\\n## 段落引用\\n```\\n> 一级\\n>> 二级\\n>>> 三级\\n...\\n```\\n\\n## 列表\\n```\\n有序列表\\n1.\\n2.\\n3.\\n...\\n无序列表\\n-\\n-\\n...\\n```\\n\\n## 任务列表\\n\\n- [x] 已完成任务\\n- [ ] 未完成任务\\n\\n```\\n- [x] 已完成任务\\n- [ ] 未完成任务\\n```\\n\\n## 链接\\n```\\n[链接](www.baidu.com)\\n![图片描述](http://www.image.com)\\n```\\n## 代码段落\\n\\\\``` type\\n\\n代码段落\\n\\n\\\\```\\n\\n\\\\` 代码块 \\\\`\\n\\n```c++\\nint main()\\n{\\n    printf(\"hello world!\");\\n}\\n```\\n`code`\\n## 表格(table)\\n```\\n| 标题1 | 标题2 | 标题3 |\\n| :--  | :--: | ----: |\\n| 左对齐 | 居中 | 右对齐 |\\n| ---------------------- | ------------- | ----------------- |\\n```\\n| 标题1 | 标题2 | 标题3 |\\n| :--  | :--: | ----: |\\n| 左对齐 | 居中 | 右对齐 |\\n| ---------------------- | ------------- | ----------------- |\\n## 脚注(footnote)\\n```\\nhello[^hello]\\n```\\n\\n见底部脚注[^hello]\\n\\n[^hello]: 一个注脚\\n\\n## 表情(emoji)\\n[参考网站: https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\\n```\\n:laughing:\\n:blush:\\n:smiley:\\n:)\\n...\\n```\\n:laughing::blush::smiley::)\\n\\n## $\\\\KaTeX$公式\\n\\n我们可以渲染公式例如：$x_i + y_i = z_i$和$\\\\sum_{i=1}^n a_i=0$\\n我们也可以单行渲染\\n$$\\\\sum_{i=1}^n a_i=0$$\\n具体可参照[katex文档](http://www.intmath.com/cg5/katex-mathjax-comparison.php)和[katex支持的函数](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)以及[latex文档](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\\n\\n## 布局\\n\\n::: hljs-left\\n`::: hljs-left`\\n`居左`\\n`:::`\\n:::\\n\\n::: hljs-center\\n`::: hljs-center`\\n`居中`\\n`:::`\\n:::\\n\\n::: hljs-right\\n`::: hljs-right`\\n`居右`\\n`:::`\\n:::\\n\\n## 定义\\n\\n术语一\\n\\n:   定义一\\n\\n包含有*行内标记*的术语二\\n\\n:   定义二\\n\\n        {一些定义二的文字或代码}\\n\\n    定义二的第三段\\n\\n```\\n术语一\\n\\n:   定义一\\n\\n包含有*行内标记*的术语二\\n\\n:   定义二\\n\\n        {一些定义二的文字或代码}\\n\\n    定义二的第三段\\n\\n```\\n\\n## abbr\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nHTML 规范由 W3C 维护\\n```\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nHTML 规范由 W3C 维护\\n```\\n\\n'},function(e,t){e.exports='@[toc](目錄)\\n\\nMarkdown 語法簡介\\n=============\\n> [語法詳解](http://commonmark.org/help/)\\n\\n## **粗體**\\n```\\n**粗體**\\n__粗體__\\n```\\n## *斜體*\\n```\\n*斜體*\\n_斜體_\\n```\\n## 標題\\n```\\n# 一級標題 #\\n一級標題\\n====\\n## 二級標題 ##\\n二級標題\\n----\\n### 三級標題 ###\\n#### 四級標題 ####\\n##### 五級標題 #####\\n###### 六級標題 ######\\n```\\n## 分割線\\n```\\n***\\n---\\n```\\n****\\n## ^上^角~下~標\\n```\\n上角標 x^2^\\n下角標 H~2~0\\n```\\n## ++下劃線++ ~~中劃線~~\\n```\\n++下劃線++\\n~~中劃線~~\\n```\\n## ==標記==\\n```\\n==標記==\\n```\\n## 段落引用\\n```\\n> 一級\\n>> 二級\\n>>> 三級\\n...\\n```\\n\\n## 列表\\n```\\n有序列表\\n1.\\n2.\\n3.\\n...\\n無序列表\\n-\\n-\\n...\\n```\\n\\n## 任務列表\\n\\n- [x] 已完成任務\\n- [ ] 未完成任務\\n\\n```\\n- [x] 已完成任務\\n- [ ] 未完成任務\\n```\\n\\n## 鏈接\\n```\\n[鏈接](www.baidu.com)\\n![圖片描述](http://www.image.com)\\n```\\n## 代碼段落\\n\\\\``` type\\n\\n代碼段落\\n\\n\\\\```\\n\\n\\\\` 代碼塊 \\\\`\\n\\n```c++\\nint main()\\n{\\n    printf(\"hello world!\");\\n}\\n```\\n`code`\\n## 表格(table)\\n```\\n| 標題1 | 標題2 | 標題3 |\\n| :--  | :--: | ----: |\\n| 左對齊 | 居中 | 右對齊 |\\n| ---------------------- | ------------- | ----------------- |\\n```\\n| 標題1 | 標題2 | 標題3 |\\n| :--  | :--: | ----: |\\n| 左對齊 | 居中 | 右對齊 |\\n| ---------------------- | ------------- | ----------------- |\\n## 腳註(footnote)\\n```\\nhello[^hello]\\n```\\n\\n見底部腳註[^hello]\\n\\n[^hello]: 一個註腳\\n\\n## 表情(emoji)\\n[參考網站: https://www.webpagefx.com/tools/emoji-cheat-sheet/](https://www.webpagefx.com/tools/emoji-cheat-sheet/)\\n```\\n:laughing:\\n:blush:\\n:smiley:\\n:)\\n...\\n```\\n:laughing::blush::smiley::)\\n\\n## $\\\\KaTeX$公式\\n\\n我們可以渲染公式例如：$x_i + y_i = z_i$和$\\\\sum_{i=1}^n a_i=0$\\n我們也可以單行渲染\\n$$\\\\sum_{i=1}^n a_i=0$$\\n具體可參照[katex文檔](http://www.intmath.com/cg5/katex-mathjax-comparison.php)和[katex支持的函數](https://github.com/Khan/KaTeX/wiki/Function-Support-in-KaTeX)以及[latex文檔](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)\\n\\n## 布局\\n\\n::: hljs-left\\n`::: hljs-left`\\n`居左`\\n`:::`\\n:::\\n\\n::: hljs-center\\n`::: hljs-center`\\n`居中`\\n`:::`\\n:::\\n\\n::: hljs-right\\n`::: hljs-right`\\n`居右`\\n`:::`\\n:::\\n\\n## 定義\\n\\n術語一\\n\\n:   定義一\\n\\n包含有*行內標記*的術語二\\n\\n:   定義二\\n\\n        {一些定義二的文字或代碼}\\n\\n    定義二的第三段\\n\\n```\\n術語一\\n\\n:   定義一\\n\\n包含有*行內標記*的術語二\\n\\n:   定義二\\n\\n        {一些定義二的文字或代碼}\\n\\n    定義二的第三段\\n\\n```\\n\\n## abbr\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nHTML 規範由 W3C 維護\\n```\\n*[HTML]: Hyper Text Markup Language\\n*[W3C]:  World Wide Web Consortium\\nHTML 規範由 W3C 維護\\n```\\n\\n'},function(e,t){e.exports=/[\\xAD\\u0600-\\u0605\\u061C\\u06DD\\u070F\\u08E2\\u180E\\u200B-\\u200F\\u202A-\\u202E\\u2060-\\u2064\\u2066-\\u206F\\uFEFF\\uFFF9-\\uFFFB]|\\uD804[\\uDCBD\\uDCCD]|\\uD82F[\\uDCA0-\\uDCA3]|\\uD834[\\uDD73-\\uDD7A]|\\uDB40[\\uDC01\\uDC20-\\uDC7F]/},function(e,t,n){\"use strict\";t.Any=n(60),t.Cc=n(58),t.Cf=n(195),t.P=n(34),t.Z=n(59)},function(e,t,n){function i(e){r||n(202)}var r=!1,a=n(16)(n(65),n(199),i,null,null);a.options.__file=\"/Users/zhuhongyu/Documents/mavonEditor/node_modules/auto-textarea/auto-textarea.vue\",a.esModule&&Object.keys(a.esModule).some((function(e){return\"default\"!==e&&\"__\"!==e.substr(0,2)})),a.options.functional,e.exports=a.exports},function(e,t,n){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"v-right-item\"},[e._t(\"right-toolbar-before\"),e._v(\" \"),e.toolbars.navigation?n(\"button\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.s_navigation,expression:\"!s_navigation\"}],staticClass:\"op-icon fa fa-mavon-bars\",attrs:{type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_navigation_on+\" (F8)\"},on:{click:function(t){return e.$clicks(\"navigation\")}}}):e._e(),e._v(\" \"),e.toolbars.navigation?n(\"button\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.s_navigation,expression:\"s_navigation\"}],staticClass:\"op-icon fa fa-mavon-bars selected\",attrs:{type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_navigation_off+\" (F8)\"},on:{click:function(t){return e.$clicks(\"navigation\")}}}):e._e(),e._v(\" \"),e.toolbars.preview?n(\"button\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.s_preview_switch,expression:\"s_preview_switch\"}],staticClass:\"op-icon fa fa-mavon-eye-slash selected\",attrs:{type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_edit+\" (F9)\"},on:{click:function(t){return e.$clicks(\"preview\")}}}):e._e(),e._v(\" \"),e.toolbars.preview?n(\"button\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.s_preview_switch,expression:\"!s_preview_switch\"}],staticClass:\"op-icon fa fa-mavon-eye\",attrs:{type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_preview+\" (F9)\"},on:{click:function(t){return e.$clicks(\"preview\")}}}):e._e(),e._v(\" \"),e.toolbars.fullscreen?n(\"button\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.s_fullScreen,expression:\"!s_fullScreen\"}],staticClass:\"op-icon fa fa-mavon-arrows-alt\",attrs:{type:\"button\",title:e.d_words.tl_fullscreen_on+\" (F10)\",\"aria-hidden\":\"true\"},on:{click:function(t){return e.$clicks(\"fullscreen\")}}}):e._e(),e._v(\" \"),e.toolbars.fullscreen?n(\"button\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.s_fullScreen,expression:\"s_fullScreen\"}],staticClass:\"op-icon fa fa-mavon-compress selected\",attrs:{type:\"button\",title:e.d_words.tl_fullscreen_off+\" (F10)\",\"aria-hidden\":\"true\"},on:{click:function(t){return e.$clicks(\"fullscreen\")}}}):e._e(),e._v(\" \"),e.toolbars.readmodel?n(\"button\",{staticClass:\"op-icon fa fa-mavon-window-maximize\",attrs:{type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_read+\" (F11)\"},on:{click:function(t){return e.$clicks(\"read\")}}}):e._e(),e._v(\" \"),e.toolbars.subfield?n(\"button\",{staticClass:\"op-icon fa fa-mavon-columns\",class:{selected:e.s_subfield},attrs:{type:\"button\",\"aria-hidden\":\"true\",title:(e.s_subfield?e.d_words.tl_single_column:e.d_words.tl_double_column)+\" (F12)\"},on:{click:function(t){return e.$clicks(\"subfield\")}}}):e._e(),e._v(\" \"),e.toolbars.help&&e.toolbars.htmlcode&&e.toolbars.readmodel&&e.toolbars.fullscreen&&e.toolbars.subfield&&e.toolbars.navigation?n(\"span\",{staticClass:\"op-icon-divider\"}):e._e(),e._v(\" \"),e.toolbars.htmlcode?n(\"button\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.s_html_code,expression:\"!s_html_code\"}],staticClass:\"op-icon fa fa-mavon-code\",attrs:{type:\"button\",title:e.d_words.tl_html_on,\"aria-hidden\":\"true\"},on:{click:function(t){return e.$clicks(\"html\")}}}):e._e(),e._v(\" \"),e.toolbars.htmlcode?n(\"button\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.s_html_code,expression:\"s_html_code\"}],staticClass:\"op-icon fa fa-mavon-code selected\",attrs:{type:\"button\",title:e.d_words.tl_html_off,\"aria-hidden\":\"true\"},on:{click:function(t){return e.$clicks(\"html\")}}}):e._e(),e._v(\" \"),e.toolbars.help?n(\"button\",{staticClass:\"op-icon fa fa-mavon-question-circle\",staticStyle:{\"font-size\":\"17px\",padding:\"5px 6px 5px 3px\"},attrs:{type:\"button\",title:e.d_words.tl_help,\"aria-hidden\":\"true\"},on:{click:function(t){return e.$clicks(\"help\")}}}):e._e(),e._v(\" \"),e._t(\"right-toolbar-after\")],2)},staticRenderFns:[]},e.exports.render._withStripped=!0},function(e,t,n){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"auto-textarea-wrapper\",style:{fontSize:e.fontSize,lineHeight:e.lineHeight,height:e.fullHeight?\"100%\":\"auto\"}},[n(\"pre\",{staticClass:\"auto-textarea-block\",style:{fontSize:e.fontSize,lineHeight:e.lineHeight,minHeight:e.fullHeight?\"100%\":\"auto\"}},[n(\"br\"),e._v(e._s(e.temp_value)+\" \")]),e._v(\" \"),n(\"textarea\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.temp_value,expression:\"temp_value\"}],ref:\"vTextarea\",staticClass:\"auto-textarea-input\",class:{\"no-border\":!e.border,\"no-resize\":!e.resize},style:{fontSize:e.fontSize,lineHeight:e.lineHeight},attrs:{autofocus:e.s_autofocus,spellcheck:\"false\",placeholder:e.placeholder},domProps:{value:e.temp_value},on:{keyup:e.change,input:function(t){t.target.composing||(e.temp_value=t.target.value)}}})])},staticRenderFns:[]},e.exports.render._withStripped=!0},function(e,t,n){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"v-left-item\"},[e._t(\"left-toolbar-before\"),e._v(\" \"),e.toolbars.bold?n(\"button\",{staticClass:\"op-icon fa fa-mavon-bold\",attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_bold+\" (ctrl+b)\"},on:{click:function(t){return e.$clicks(\"bold\")}}}):e._e(),e._v(\" \"),e.toolbars.italic?n(\"button\",{staticClass:\"op-icon fa fa-mavon-italic\",attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_italic+\" (ctrl+i)\"},on:{click:function(t){return e.$clicks(\"italic\")}}}):e._e(),e._v(\" \"),e.toolbars.header?n(\"div\",{staticClass:\"op-icon fa fa-mavon-header dropdown dropdown-wrapper\",class:{selected:e.s_header_dropdown_open},attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_header+\" (ctrl+h)\"},on:{mouseleave:e.$mouseleave_header_dropdown,mouseenter:e.$mouseenter_header_dropdown}},[n(\"transition\",{attrs:{name:\"fade\"}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.s_header_dropdown_open,expression:\"s_header_dropdown_open\"}],staticClass:\"op-header popup-dropdown\",class:{transition:e.transition},on:{mouseenter:e.$mouseenter_header_dropdown,mouseleave:e.$mouseleave_header_dropdown}},[n(\"div\",{staticClass:\"dropdown-item\",attrs:{title:\"#\"},on:{click:function(t){return t.stopPropagation(),e.$click_header(\"header1\")}}},[n(\"span\",[e._v(e._s(e.d_words.tl_header_one))])]),e._v(\" \"),n(\"div\",{staticClass:\"dropdown-item\",attrs:{title:\"## \"},on:{click:function(t){return t.stopPropagation(),e.$click_header(\"header2\")}}},[n(\"span\",[e._v(e._s(e.d_words.tl_header_two))])]),e._v(\" \"),n(\"div\",{staticClass:\"dropdown-item\",attrs:{title:\"### \"},on:{click:function(t){return t.stopPropagation(),e.$click_header(\"header3\")}}},[n(\"span\",[e._v(e._s(e.d_words.tl_header_three))])]),e._v(\" \"),n(\"div\",{staticClass:\"dropdown-item\",attrs:{title:\"#### \"},on:{click:function(t){return t.stopPropagation(),e.$click_header(\"header4\")}}},[n(\"span\",[e._v(e._s(e.d_words.tl_header_four))])]),e._v(\" \"),n(\"div\",{staticClass:\"dropdown-item\",attrs:{title:\"##### \"},on:{click:function(t){return t.stopPropagation(),e.$click_header(\"header5\")}}},[n(\"span\",[e._v(e._s(e.d_words.tl_header_five))])]),e._v(\" \"),n(\"div\",{staticClass:\"dropdown-item\",attrs:{title:\"###### \"},on:{click:function(t){return t.stopPropagation(),e.$click_header(\"header6\")}}},[n(\"span\",[e._v(e._s(e.d_words.tl_header_six))])])])])],1):e._e(),e._v(\" \"),e.toolbars.header||e.toolbars.italic||e.toolbars.bold?n(\"span\",{staticClass:\"op-icon-divider\"}):e._e(),e._v(\" \"),e.toolbars.underline?n(\"button\",{staticClass:\"op-icon fa fa-mavon-underline\",attrs:{disabled:!e.editable,type:\"button\",title:e.d_words.tl_underline+\" (ctrl+u)\",\"aria-hidden\":\"true\"},on:{click:function(t){return e.$clicks(\"underline\")}}}):e._e(),e._v(\" \"),e.toolbars.strikethrough?n(\"button\",{staticClass:\"op-icon fa fa-mavon-strikethrough\",attrs:{disabled:!e.editable,type:\"button\",title:e.d_words.tl_strikethrough+\" (ctrl+shift+d)\",\"aria-hidden\":\"true\"},on:{click:function(t){return e.$clicks(\"strikethrough\")}}}):e._e(),e._v(\" \"),e.toolbars.mark?n(\"button\",{staticClass:\"op-icon fa fa-mavon-thumb-tack\",attrs:{disabled:!e.editable,type:\"button\",title:e.d_words.tl_mark+\" (ctrl+m)\",\"aria-hidden\":\"true\"},on:{click:function(t){return e.$clicks(\"mark\")}}}):e._e(),e._v(\" \"),e.toolbars.superscript?n(\"button\",{staticClass:\"op-icon fa fa-mavon-superscript\",attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_superscript+\" (ctrl+alt+s)\"},on:{click:function(t){return e.$clicks(\"superscript\")}}}):e._e(),e._v(\" \"),e.toolbars.subscript?n(\"button\",{staticClass:\"op-icon fa fa-mavon-subscript\",attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_subscript+\" (ctrl+shift+s)\"},on:{click:function(t){return e.$clicks(\"subscript\")}}}):e._e(),e._v(\" \"),e.toolbars.alignleft?n(\"button\",{staticClass:\"op-icon fa fa-mavon-align-left\",attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_alignleft+\" (ctrl+l)\"},on:{click:function(t){return e.$clicks(\"alignleft\")}}}):e._e(),e._v(\" \"),e.toolbars.aligncenter?n(\"button\",{staticClass:\"op-icon fa fa-mavon-align-center\",attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_aligncenter+\" (ctrl+e)\"},on:{click:function(t){return e.$clicks(\"aligncenter\")}}}):e._e(),e._v(\" \"),e.toolbars.alignright?n(\"button\",{staticClass:\"op-icon fa fa-mavon-align-right\",attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_alignright+\" (ctrl+r)\"},on:{click:function(t){return e.$clicks(\"alignright\")}}}):e._e(),e._v(\" \"),e.toolbars.superscript||e.toolbars.subscript||e.toolbars.underline||e.toolbars.strikethrough||e.toolbars.mark?n(\"span\",{staticClass:\"op-icon-divider\"}):e._e(),e._v(\" \"),e.toolbars.quote?n(\"button\",{staticClass:\"op-icon fa fa-mavon-quote-left\",attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_quote+\" (ctrl+q)\"},on:{click:function(t){return e.$clicks(\"quote\")}}}):e._e(),e._v(\" \"),e.toolbars.ol?n(\"button\",{staticClass:\"op-icon fa fa-mavon-list-ol\",attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_ol+\" (ctrl+o)\"},on:{click:function(t){return e.$clicks(\"ol\")}}}):e._e(),e._v(\" \"),e.toolbars.ul?n(\"button\",{staticClass:\"op-icon fa fa-mavon-list-ul\",attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_ul+\" (ctrl+alt+u)\"},on:{click:function(t){return e.$clicks(\"ul\")}}}):e._e(),e._v(\" \"),e.toolbars.ul||e.toolbars.ol||e.toolbars.quote?n(\"span\",{staticClass:\"op-icon-divider\"}):e._e(),e._v(\" \"),e.toolbars.link?n(\"button\",{staticClass:\"op-icon fa fa-mavon-link\",attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_link+\" (ctrl+l)\"},on:{click:function(t){return t.stopPropagation(),e.$toggle_imgLinkAdd(\"link\")}}}):e._e(),e._v(\" \"),e.toolbars.imagelink?n(\"div\",{staticClass:\"op-icon fa fa-mavon-picture-o dropdown dropdown-wrapper\",class:{selected:e.s_img_dropdown_open},attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\"},on:{mouseleave:e.$mouseleave_img_dropdown,mouseenter:e.$mouseenter_img_dropdown}},[n(\"transition\",{attrs:{name:\"fade\"}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.s_img_dropdown_open,expression:\"s_img_dropdown_open\"}],staticClass:\"op-image popup-dropdown\",class:{transition:e.transition},on:{mouseleave:e.$mouseleave_img_dropdown,mouseenter:e.$mouseenter_img_dropdown}},[n(\"div\",{staticClass:\"dropdown-item\",on:{click:function(t){return t.stopPropagation(),e.$toggle_imgLinkAdd(\"imagelink\")}}},[n(\"span\",[e._v(e._s(e.d_words.tl_image))])]),e._v(\" \"),n(\"div\",{staticClass:\"dropdown-item\",staticStyle:{overflow:\"hidden\"}},[n(\"input\",{attrs:{type:\"file\",accept:\"image/gif,image/jpeg,image/jpg,image/png,image/svg\",multiple:\"multiple\"},on:{change:function(t){return e.$imgAdd(t)}}}),e._v(e._s(e.d_words.tl_upload)+\"\\n                \")]),e._v(\" \"),e._l(e.img_file,(function(t,i){return t&&t[1]?n(\"div\",{key:i,staticClass:\"dropdown-item dropdown-images\",attrs:{title:t[1].name},on:{click:function(t){return t.stopPropagation(),e.$imgFileListClick(i)}}},[n(\"span\",[e._v(e._s(t[1].name))]),e._v(\" \"),n(\"button\",{staticClass:\"op-icon fa fa-mavon-times\",attrs:{slot:\"right\",type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_upload_remove},on:{click:function(t){return t.stopPropagation(),e.$imgDel(i)}},slot:\"right\"}),e._v(\" \"),n(\"img\",{staticClass:\"image-show\",class:{transition:e.transition},attrs:{src:t[1].miniurl,alt:\"none\"}})]):e._e()}))],2)])],1):e._e(),e._v(\" \"),e.toolbars.code?n(\"button\",{staticClass:\"op-icon fa fa-mavon-code\",attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_code+\" (ctrl+alt+c)\"},on:{click:function(t){return e.$clicks(\"code\")}}}):e._e(),e._v(\" \"),e.toolbars.table?n(\"button\",{staticClass:\"op-icon fa fa-mavon-table\",attrs:{disabled:!e.editable,type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_table+\" (ctrl+alt+t)\"},on:{click:function(t){return e.$clicks(\"table\")}}}):e._e(),e._v(\" \"),e.toolbars.link||e.toolbars.imagelink||e.toolbars.code||e.toolbars.table?n(\"span\",{staticClass:\"op-icon-divider\"}):e._e(),e._v(\" \"),e.toolbars.undo?n(\"button\",{staticClass:\"op-icon fa fa-mavon-undo\",attrs:{type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_undo+\" (ctrl+z)\"},on:{click:function(t){return e.$clicks(\"undo\")}}}):e._e(),e._v(\" \"),e.toolbars.redo?n(\"button\",{staticClass:\"op-icon fa fa-mavon-repeat\",attrs:{type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_redo+\" (ctrl+y)\"},on:{click:function(t){return e.$clicks(\"redo\")}}}):e._e(),e._v(\" \"),e.toolbars.trash?n(\"button\",{staticClass:\"op-icon fa fa-mavon-trash-o\",attrs:{type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_trash+\" (ctrl+breakspace)\"},on:{click:function(t){return e.$clicks(\"trash\")}}}):e._e(),e._v(\" \"),e.toolbars.save?n(\"button\",{staticClass:\"op-icon fa fa-mavon-floppy-o\",attrs:{type:\"button\",\"aria-hidden\":\"true\",title:e.d_words.tl_save+\" (ctrl+s)\"},on:{click:function(t){return e.$clicks(\"save\")}}}):e._e(),e._v(\" \"),e._t(\"left-toolbar-after\"),e._v(\" \"),n(\"transition\",{attrs:{name:\"fade\"}},[e.s_img_link_open?n(\"div\",{staticClass:\"add-image-link-wrapper\"},[n(\"div\",{staticClass:\"add-image-link\"},[n(\"i\",{staticClass:\"fa fa-mavon-times\",attrs:{\"aria-hidden\":\"true\"},on:{click:function(t){t.stopPropagation(),t.preventDefault(),e.s_img_link_open=!1}}}),e._v(\" \"),n(\"h3\",{staticClass:\"title\"},[e._v(e._s(\"link\"==e.link_type?e.d_words.tl_popup_link_title:e.d_words.tl_popup_img_link_title))]),e._v(\" \"),n(\"div\",{staticClass:\"link-text input-wrapper\"},[n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.link_text,expression:\"link_text\"}],ref:\"linkTextInput\",attrs:{type:\"text\",placeholder:\"link\"==e.link_type?e.d_words.tl_popup_link_text:e.d_words.tl_popup_img_link_text},domProps:{value:e.link_text},on:{input:function(t){t.target.composing||(e.link_text=t.target.value)}}})]),e._v(\" \"),n(\"div\",{staticClass:\"link-addr input-wrapper\"},[n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.link_addr,expression:\"link_addr\"}],attrs:{type:\"text\",placeholder:\"link\"==e.link_type?e.d_words.tl_popup_link_addr:e.d_words.tl_popup_img_link_addr},domProps:{value:e.link_addr},on:{input:function(t){t.target.composing||(e.link_addr=t.target.value)}}})]),e._v(\" \"),n(\"div\",{staticClass:\"op-btn cancel\",on:{click:function(t){t.stopPropagation(),e.s_img_link_open=!1}}},[e._v(e._s(e.d_words.tl_popup_link_cancel))]),e._v(\" \"),n(\"div\",{staticClass:\"op-btn sure\",on:{click:function(t){return t.stopPropagation(),e.$imgLinkAdd()}}},[e._v(e._s(e.d_words.tl_popup_link_sure))])])]):e._e()])],2)},staticRenderFns:[]},e.exports.render._withStripped=!0},function(e,t,n){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"v-note-wrapper markdown-body\",class:[{fullscreen:e.s_fullScreen,shadow:e.boxShadow}],style:{\"box-shadow\":e.boxShadow?e.boxShadowStyle:\"\"}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.toolbarsFlag,expression:\"toolbarsFlag\"}],staticClass:\"v-note-op\",style:{background:e.toolbarsBackground}},[n(\"v-md-toolbar-left\",{ref:\"toolbar_left\",class:{transition:e.transition},attrs:{editable:e.editable,transition:e.transition,d_words:e.d_words,toolbars:e.toolbars,image_filter:e.imageFilter},on:{toolbar_left_click:e.toolbar_left_click,toolbar_left_addlink:e.toolbar_left_addlink,imgAdd:e.$imgAdd,imgDel:e.$imgDel,imgTouch:e.$imgTouch}},[e._t(\"left-toolbar-before\",null,{slot:\"left-toolbar-before\"}),e._v(\" \"),e._t(\"left-toolbar-after\",null,{slot:\"left-toolbar-after\"})],2),e._v(\" \"),n(\"v-md-toolbar-right\",{ref:\"toolbar_right\",class:{transition:e.transition},attrs:{d_words:e.d_words,toolbars:e.toolbars,s_subfield:e.s_subfield,s_preview_switch:e.s_preview_switch,s_fullScreen:e.s_fullScreen,s_html_code:e.s_html_code,s_navigation:e.s_navigation},on:{toolbar_right_click:e.toolbar_right_click}},[e._t(\"right-toolbar-before\",null,{slot:\"right-toolbar-before\"}),e._v(\" \"),e._t(\"right-toolbar-after\",null,{slot:\"right-toolbar-after\"})],2)],1),e._v(\" \"),n(\"div\",{staticClass:\"v-note-panel\"},[n(\"div\",{ref:\"vNoteEdit\",staticClass:\"v-note-edit divarea-wrapper\",class:{\"scroll-style\":e.s_scrollStyle,\"scroll-style-border-radius\":e.s_scrollStyle&&!e.s_preview_switch&&!e.s_html_code,\"single-edit\":!e.s_preview_switch&&!e.s_html_code,\"single-show\":!e.s_subfield&&e.s_preview_switch||!e.s_subfield&&e.s_html_code,transition:e.transition},on:{scroll:e.$v_edit_scroll,click:e.textAreaFocus}},[n(\"div\",{staticClass:\"content-input-wrapper\",style:{\"background-color\":e.editorBackground}},[n(\"v-autoTextarea\",{ref:\"vNoteTextarea\",staticClass:\"content-input\",style:{\"background-color\":e.editorBackground},attrs:{placeholder:e.placeholder?e.placeholder:e.d_words.start_editor,fontSize:e.fontSize,lineHeight:\"1.5\",fullHeight:\"\"},model:{value:e.d_value,callback:function(t){e.d_value=t},expression:\"d_value\"}})],1)]),e._v(\" \"),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.s_preview_switch||e.s_html_code,expression:\"s_preview_switch || s_html_code\"}],staticClass:\"v-note-show\",class:{\"single-show\":!e.s_subfield&&e.s_preview_switch||!e.s_subfield&&e.s_html_code}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:!e.s_html_code,expression:\"!s_html_code\"}],ref:\"vShowContent\",staticClass:\"v-show-content\",class:{\"scroll-style\":e.s_scrollStyle,\"scroll-style-border-radius\":e.s_scrollStyle},style:{\"background-color\":e.previewBackground},domProps:{innerHTML:e._s(e.d_render)}}),e._v(\" \"),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.s_html_code,expression:\"s_html_code\"}],staticClass:\"v-show-content-html\",class:{\"scroll-style\":e.s_scrollStyle,\"scroll-style-border-radius\":e.s_scrollStyle},style:{\"background-color\":e.previewBackground}},[e._v(\"\\n                \"+e._s(e.d_render)+\"\\n            \")])]),e._v(\" \"),n(\"transition\",{attrs:{name:\"slideTop\"}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.s_navigation,expression:\"s_navigation\"}],staticClass:\"v-note-navigation-wrapper\",class:{transition:e.transition}},[n(\"div\",{staticClass:\"v-note-navigation-title\"},[e._v(\"\\n                    \"+e._s(e.d_words.navigation_title)),n(\"i\",{staticClass:\"fa fa-mavon-times v-note-navigation-close\",attrs:{\"aria-hidden\":\"true\"},on:{click:function(t){return e.toolbar_right_click(\"navigation\")}}})]),e._v(\" \"),n(\"div\",{ref:\"navigationContent\",staticClass:\"v-note-navigation-content\",class:{\"scroll-style\":e.s_scrollStyle}})])])],1),e._v(\" \"),n(\"transition\",{attrs:{name:\"fade\"}},[n(\"div\",{ref:\"help\"},[e.s_help?n(\"div\",{staticClass:\"v-note-help-wrapper\",on:{click:function(t){return e.toolbar_right_click(\"help\")}}},[n(\"div\",{staticClass:\"v-note-help-content markdown-body\",class:{shadow:e.boxShadow}},[n(\"i\",{staticClass:\"fa fa-mavon-times\",attrs:{\"aria-hidden\":\"true\"},on:{click:function(t){return t.stopPropagation(),t.preventDefault(),e.toolbar_right_click(\"help\")}}}),e._v(\" \"),n(\"div\",{staticClass:\"scroll-style v-note-help-show\",domProps:{innerHTML:e._s(e.d_help)}})])]):e._e()])]),e._v(\" \"),n(\"transition\",{attrs:{name:\"fade\"}},[e.d_preview_imgsrc?n(\"div\",{staticClass:\"v-note-img-wrapper\",on:{click:function(t){e.d_preview_imgsrc=null}}},[n(\"img\",{attrs:{src:e.d_preview_imgsrc,alt:\"none\"}})]):e._e()]),e._v(\" \"),n(\"div\",{ref:\"vReadModel\",staticClass:\"v-note-read-model scroll-style\",class:{show:e.s_readmodel}},[n(\"div\",{ref:\"vNoteReadContent\",staticClass:\"v-note-read-content\",domProps:{innerHTML:e._s(e.d_render)}})])],1)},staticRenderFns:[]},e.exports.render._withStripped=!0},function(e,t,n){var i=n(107);\"string\"==typeof i&&(i=[[e.i,i,\"\"]]),i.locals&&(e.exports=i.locals),n(17)(\"21628fa6\",i,!1,{})},function(e,t,n){var i=n(108);\"string\"==typeof i&&(i=[[e.i,i,\"\"]]),i.locals&&(e.exports=i.locals),n(17)(\"633bf0ee\",i,!1,{})},function(e,t,n){var i=n(109);\"string\"==typeof i&&(i=[[e.i,i,\"\"]]),i.locals&&(e.exports=i.locals),n(17)(\"7e7efc12\",i,!1,{})},function(e,t,n){var i=n(110);\"string\"==typeof i&&(i=[[e.i,i,\"\"]]),i.locals&&(e.exports=i.locals),n(17)(\"18258fa3\",i,!1,{})},function(e,t){e.exports=function(e,t){for(var n=[],i={},r=0;r<t.length;r++){var a=t[r],o=a[0],s=a[1],l=a[2],c=a[3],u={id:e+\":\"+r,css:s,media:l,sourceMap:c};i[o]?i[o].parts.push(u):n.push(i[o]={id:o,parts:[u]})}return n}},function(e,t){var n;n=function(){return this}();try{n=n||Function(\"return this\")()||(0,eval)(\"this\")}catch(e){\"object\"==typeof window&&(n=window)}e.exports=n},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,\"loaded\",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,\"id\",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,n){function i(e,t){return new o(t).process(e)}var r=n(61),a=n(62),o=n(210);for(var s in t=e.exports=i,t.filterXSS=i,t.FilterXSS=o,r)t[s]=r[s];for(var s in a)t[s]=a[s];\"undefined\"!=typeof window&&(window.filterXSS=e.exports),function(){return\"undefined\"!=typeof self&&\"undefined\"!=typeof DedicatedWorkerGlobalScope&&self instanceof DedicatedWorkerGlobalScope}()&&(self.filterXSS=e.exports)},function(e,t,n){function i(e){return void 0===e||null===e}function r(e){var t=p.spaceIndex(e);if(-1===t)return{html:\"\",closing:\"/\"===e[e.length-2]};e=p.trim(e.slice(t+1,-1));var n=\"/\"===e[e.length-1];return n&&(e=p.trim(e.slice(0,-1))),{html:e,closing:n}}function a(e){var t={};for(var n in e)t[n]=e[n];return t}function o(e){e=a(e||{}),e.stripIgnoreTag&&(e.onIgnoreTag,e.onIgnoreTag=l.onIgnoreTagStripAll),e.whiteList=e.whiteList||l.whiteList,e.onTag=e.onTag||l.onTag,e.onTagAttr=e.onTagAttr||l.onTagAttr,e.onIgnoreTag=e.onIgnoreTag||l.onIgnoreTag,e.onIgnoreTagAttr=e.onIgnoreTagAttr||l.onIgnoreTagAttr,e.safeAttrValue=e.safeAttrValue||l.safeAttrValue,e.escapeHtml=e.escapeHtml||l.escapeHtml,this.options=e,!1===e.css?this.cssFilter=!1:(e.css=e.css||{},this.cssFilter=new s(e.css))}var s=n(31).FilterCSS,l=n(61),c=n(62),u=c.parseTag,d=c.parseAttr,p=n(35);o.prototype.process=function(e){if(e=e||\"\",!(e=e.toString()))return\"\";var t=this,n=t.options,a=n.whiteList,o=n.onTag,s=n.onIgnoreTag,c=n.onTagAttr,h=n.onIgnoreTagAttr,f=n.safeAttrValue,_=n.escapeHtml,m=t.cssFilter;n.stripBlankChar&&(e=l.stripBlankChar(e)),n.allowCommentTag||(e=l.stripCommentTag(e));var g=!1;if(n.stripIgnoreTagBody){g=l.StripTagBody(n.stripIgnoreTagBody,s);s=g.onIgnoreTag}var b=u(e,(function(e,t,n,l,u){var g={sourcePosition:e,position:t,isClosing:u,isWhite:a.hasOwnProperty(n)},b=o(n,l,g);if(!i(b))return b;if(g.isWhite){if(g.isClosing)return\"</\"+n+\">\";var v=r(l),E=a[n],y=d(v.html,(function(e,t){var r=-1!==p.indexOf(E,e),a=c(n,e,t,r);if(!i(a))return a;if(r)return t=f(n,e,t,m),t?e+'=\"'+t+'\"':e;a=h(n,e,t,r);return i(a)?void 0:a}));l=\"<\"+n;return y&&(l+=\" \"+y),v.closing&&(l+=\" /\"),l+\">\"}b=s(n,l,g);return i(b)?_(l):b}),_);return g&&(b=g.remove(b)),b},e.exports=o},function(e,t){e.exports={start_editor:\"Bearbeitung beginnen...\",navigation_title:\"Navigation\",tl_bold:\"Fett\",tl_italic:\"Kursiv\",tl_header:\"Überschrift\",tl_header_one:\"Überschrift 1\",tl_header_two:\"Überschrift 2\",tl_header_three:\"Überschrift 3\",tl_header_four:\"Überschrift 4\",tl_header_five:\"Überschrift 5\",tl_header_six:\"Überschrift 6\",tl_underline:\"Unterstrichen\",tl_strikethrough:\"Durchgestrichen\",tl_mark:\"Markiert\",tl_superscript:\"Hochgestellt\",tl_subscript:\"Tiefgestellt\",tl_quote:\"Zitat\",tl_ol:\"Ol\",tl_ul:\"Ul\",tl_link:\"Link\",tl_image:\"Link mit Bild\",tl_code:\"Code\",tl_table:\"Tabelle\",tl_undo:\"Rückgängig\",tl_redo:\"Wiederherstellen\",tl_trash:\"Mülleimer\",tl_save:\"Speichern\",tl_navigation_on:\"Navigation AN\",tl_navigation_off:\"Navigation AUS\",tl_preview:\"Vorschau\",tl_aligncenter:\"Text zentrieren\",tl_alignleft:\"Nach links ausrichten\",tl_alignright:\"Nach rechts ausrichten\",tl_edit:\"Bearbeiten\",tl_single_column:\"Einspaltig\",tl_double_column:\"Zweispaltig\",tl_fullscreen_on:\"Vollbild AN\",tl_fullscreen_off:\"Vollbild AUS\",tl_read:\"Lesemodus\",tl_html_on:\"HTML AN\",tl_html_off:\"HTML AUS\",tl_help:\"Markdown Handbuch\",tl_upload:\"Bilder-Upload\",tl_upload_remove:\"Entfernen\",tl_popup_link_title:\"Link hinzufügen\",tl_popup_link_text:\"Text des Links\",tl_popup_link_addr:\"Linkziel\",tl_popup_img_link_title:\"Bild hinzufügen\",tl_popup_img_link_text:\"Text des Bildes\",tl_popup_img_link_addr:\"Link auf Bild\",tl_popup_link_sure:\"Ja\",tl_popup_link_cancel:\"Abbruch\"}},function(e,t){e.exports={start_editor:\"Begin editing...\",navigation_title:\"Navigation\",tl_bold:\"Bold\",tl_italic:\"Italic\",tl_header:\"Header\",tl_header_one:\"Header 1\",tl_header_two:\"Header 2\",tl_header_three:\"Header 3\",tl_header_four:\"Header 4\",tl_header_five:\"Header 5\",tl_header_six:\"Header 6\",tl_underline:\"Underline\",tl_strikethrough:\"Strikethrough\",tl_mark:\"Mark\",tl_superscript:\"Superscript\",tl_subscript:\"Subscript\",tl_quote:\"Quote\",tl_ol:\"Ol\",tl_ul:\"Ul\",tl_link:\"Link\",tl_image:\"Image Link\",tl_code:\"Code\",tl_table:\"Table\",tl_undo:\"Undo\",tl_redo:\"Redo\",tl_trash:\"Trash\",tl_save:\"Save\",tl_navigation_on:\"Navigation ON\",tl_navigation_off:\"Navigation OFF\",tl_preview:\"Preview\",tl_aligncenter:\"Center text\",tl_alignleft:\"Clamp text to the left\",tl_alignright:\"Clamp text to the right\",tl_edit:\"Edit\",tl_single_column:\"Single Column\",tl_double_column:\"Double Columns\",tl_fullscreen_on:\"FullScreen ON\",tl_fullscreen_off:\"FullScreen OFF\",tl_read:\"Read Model\",tl_html_on:\"HTML ON\",tl_html_off:\"HTML OFF\",tl_help:\"Markdown Guide\",tl_upload:\"Upload Images\",tl_upload_remove:\"Remove\",tl_popup_link_title:\"Add Link\",tl_popup_link_text:\"Link text\",tl_popup_link_addr:\"Link address\",tl_popup_img_link_title:\"Add Image\",tl_popup_img_link_text:\"Image Text\",tl_popup_img_link_addr:\"Image Link\",tl_popup_link_sure:\"Sure\",tl_popup_link_cancel:\"Cancel\"}},function(e,t){e.exports={start_editor:\"Début d'édition...\",navigation_title:\"Navigation\",tl_bold:\"Gras\",tl_italic:\"Italique\",tl_header:\"Entête\",tl_header_one:\"Entête 1\",tl_header_two:\"Entête 2\",tl_header_three:\"Entête 3\",tl_header_four:\"Entête 4\",tl_header_five:\"Entête 5\",tl_header_six:\"Entête 6\",tl_underline:\"Souligné\",tl_strikethrough:\"Barré\",tl_mark:\"Mark\",tl_superscript:\"Exposant\",tl_subscript:\"Sous-exposant\",tl_quote:\"Quote\",tl_ol:\"Liste \",tl_ul:\"Puce\",tl_link:\"Lien\",tl_image:\"Image Lien\",tl_code:\"Code\",tl_table:\"Table\",tl_undo:\"Annuler\",tl_redo:\"Refaire\",tl_trash:\"Supprimer\",tl_save:\"Sauver\",tl_navigation_on:\"Activer la navigation\",tl_navigation_off:\"Désactiver le navigation\",tl_preview:\"Previsualisé\",tl_aligncenter:\"Center le texte\",tl_alignleft:\"Férer le texte à gauche\",tl_alignright:\"Férer le texte à droite\",tl_edit:\"Editer\",tl_single_column:\"Seule Colonne\",tl_double_column:\"Colonnes Doubles\",tl_fullscreen_on:\"Activer le mode plein écran\",tl_fullscreen_off:\"Désactiver le mode plein écran\",tl_read:\"Lire le modèle\",tl_html_on:\"Activer le mode HTML\",tl_html_off:\"Désactiver le mode HTML\",tl_help:\"Guide Markdown\",tl_upload:\"Télécharger les images\",tl_upload_remove:\"Supprimer\",tl_popup_link_title:\"Ajouter un lien\",tl_popup_link_text:\"Description\",tl_popup_link_addr:\"Link\",tl_popup_img_link_title:\"Ajouter une image\",tl_popup_img_link_text:\"Description\",tl_popup_img_link_addr:\"Link\",tl_popup_link_sure:\"sûr\",tl_popup_link_cancel:\"Annuler\"}},function(e,t){e.exports={start_editor:\"編集を始めてね！\",navigation_title:\"ナビゲーション\",tl_bold:\"太字\",tl_italic:\"斜体\",tl_header:\"見出し\",tl_header_one:\"見出し1\",tl_header_two:\"見出し2\",tl_header_three:\"見出し3\",tl_header_four:\"見出し4\",tl_header_five:\"見出し5\",tl_header_six:\"見出し6\",tl_underline:\"下線\",tl_strikethrough:\"取り消し線\",tl_mark:\"蛍光ペン\",tl_superscript:\"上付き文字\",tl_subscript:\"下付き文字\",tl_quote:\"引用\",tl_ol:\"番号付きリスト\",tl_ul:\"箇条書きリスト\",tl_link:\"ハイパーリンク\",tl_image:\"画像のリンク\",tl_code:\"コードの挿入\",tl_table:\"表の挿入\",tl_undo:\"戻る\",tl_redo:\"進む\",tl_trash:\"削除\",tl_save:\"保存\",tl_navigation_on:\"ナビゲーションを表示\",tl_navigation_off:\"ナビゲーションを非表示\",tl_preview:\"プレビュー\",tl_aligncenter:\"中央揃え\",tl_alignleft:\"左揃え\",tl_alignright:\"右揃え\",tl_edit:\"編集\",tl_single_column:\"一列\",tl_double_column:\"二列\",tl_fullscreen_on:\"全画面表示\",tl_fullscreen_off:\"全画面表示の終了\",tl_read:\"モデルの読み込み\",tl_html_on:\"HTMLで表示\",tl_html_off:\"HTML表示の終了\",tl_help:\"ヘルプ\",tl_upload:\"画像をアップロード\",tl_upload_remove:\"画像の削除\",tl_popup_link_title:\"リンクの追加\",tl_popup_link_text:\"リンクテキスト\",tl_popup_link_addr:\"リンク先のURL\",tl_popup_img_link_title:\"画像の追加\",tl_popup_img_link_text:\"画像タイトル\",tl_popup_img_link_addr:\"画像URL\",tl_popup_link_sure:\"OK\",tl_popup_link_cancel:\"戻る\"}},function(e,t){e.exports={start_editor:\"Começar edição...\",navigation_title:\"Navegação\",tl_bold:\"Negrito\",tl_italic:\"Itálico\",tl_header:\"Cabeçalho\",tl_header_one:\"Cabeçalho 1\",tl_header_two:\"Cabeçalho 2\",tl_header_three:\"Cabeçalho 3\",tl_header_four:\"Cabeçalho 4\",tl_header_five:\"Cabeçalho 5\",tl_header_six:\"Cabeçalho 6\",tl_underline:\"Sublinhar\",tl_strikethrough:\"Tachar\",tl_mark:\"Marcação\",tl_superscript:\"Sobrescrito\",tl_subscript:\"Subscrito\",tl_quote:\"Citação\",tl_ol:\"Lista Numerada\",tl_ul:\"Lista com marcadores\",tl_link:\"Link\",tl_image:\"Link de imagem\",tl_code:\"Código\",tl_table:\"Tabela\",tl_undo:\"Desfazer\",tl_redo:\"Refazer\",tl_trash:\"Lixo\",tl_save:\"Salvar\",tl_navigation_on:\"Mostrar Navegação\",tl_navigation_off:\"Esconder Navegação\",tl_preview:\"Preview\",tl_aligncenter:\"Alinhar no centro\",tl_alignleft:\"Alinhar à esquerda\",tl_alignright:\"Alinhar à direita\",tl_edit:\"Editar\",tl_single_column:\"Coluna Única\",tl_double_column:\"Duas Colunas\",tl_fullscreen_on:\"Ligar Tela Cheia\",tl_fullscreen_off:\"Desligar Tela Cheia\",tl_read:\"Modo de Leitura\",tl_html_on:\"Ligar HTML\",tl_html_off:\"Desligar HTML\",tl_help:\"Guia Markdown\",tl_upload:\"Upload de Imagens\",tl_upload_remove:\"Remover\",tl_popup_link_title:\"Adicionar Link\",tl_popup_link_text:\"Descrição\",tl_popup_link_addr:\"Link\",tl_popup_img_link_title:\"Adicionar fotos\",tl_popup_img_link_text:\"Descrição\",tl_popup_img_link_addr:\"Link\",tl_popup_link_sure:\"Confirmar\",tl_popup_link_cancel:\"Cancelar\"}},function(e,t){e.exports={start_editor:\"Начните редактирование...\",navigation_title:\"Навигация\",tl_bold:\"Полужирный\",tl_italic:\"Курсив\",tl_header:\"Заголовки\",tl_header_one:\"Заголовок 1\",tl_header_two:\"Заголовок 2\",tl_header_three:\"Заголовок 3\",tl_header_four:\"Заголовок 4\",tl_header_five:\"Заголовок 5\",tl_header_six:\"Заголовок 6\",tl_underline:\"Подчеркнутый\",tl_strikethrough:\"Зачеркнутый\",tl_mark:\"Отметка\",tl_superscript:\"Верхний индекс\",tl_subscript:\"Нижний индекс\",tl_quote:\"Цитата\",tl_ol:\"Нумерованный список\",tl_ul:\"Список\",tl_link:\"Ссылка\",tl_image:\"Ссылка изображения\",tl_code:\"Код\",tl_table:\"Таблица\",tl_undo:\"Отменить\",tl_redo:\"Вернуть\",tl_trash:\"Удалить\",tl_save:\"Сохранить\",tl_navigation_on:\"Показать навигацию\",tl_navigation_off:\"Скрыть навигацию\",tl_preview:\"Предпросмотр\",tl_aligncenter:\"Выровнять по центру\",tl_alignleft:\"Выровнять по левому краю\",tl_alignright:\"Выровнять по правому краю\",tl_edit:\"Редактор\",tl_single_column:\"Одно поле\",tl_double_column:\"Два поля\",tl_fullscreen_on:\"Полноэкранный режим\",tl_fullscreen_off:\"Выключить полноэкранный режим\",tl_read:\"Режим чтения\",tl_html_on:\"Показать HTML\",tl_html_off:\"Убрать HTML\",tl_help:\"Markdown помощь\",tl_upload:\"Загрузить изображение\",tl_upload_remove:\"Удалить\",tl_popup_link_title:\"Добавить ссылку\",tl_popup_link_text:\"Текст ссылки\",tl_popup_link_addr:\"Адрес ссылки\",tl_popup_img_link_title:\"Локальное изображение\",tl_popup_img_link_text:\"Текст изображения\",tl_popup_img_link_addr:\"Ссылка изображения\",tl_popup_link_sure:\"Добавить\",tl_popup_link_cancel:\"Отменить\"}},function(e,t){e.exports={start_editor:\"开始编辑...\",navigation_title:\"导航目录\",tl_bold:\"粗体\",tl_italic:\"斜体\",tl_header:\"标题\",tl_header_one:\"一级标题\",tl_header_two:\"二级标题\",tl_header_three:\"三级标题\",tl_header_four:\"四级标题\",tl_header_five:\"五级标题\",tl_header_six:\"六级标题\",tl_underline:\"下划线\",tl_strikethrough:\"中划线\",tl_mark:\"标记\",tl_superscript:\"上角标\",tl_subscript:\"下角标\",tl_quote:\"段落引用\",tl_ol:\"有序列表\",tl_ul:\"无序列表\",tl_link:\"链接\",tl_image:\"添加图片链接\",tl_code:\"代码块\",tl_table:\"表格\",tl_undo:\"上一步\",tl_redo:\"下一步\",tl_trash:\"清空\",tl_save:\"保存\",tl_navigation_on:\"开启标题导航\",tl_navigation_off:\"关闭标题导航\",tl_preview:\"预览\",tl_aligncenter:\"居中\",tl_alignleft:\"居左\",tl_alignright:\"居右\",tl_edit:\"编辑\",tl_single_column:\"单栏\",tl_double_column:\"双栏\",tl_fullscreen_on:\"全屏编辑\",tl_fullscreen_off:\"退出全屏\",tl_read:\"沉浸式阅读\",tl_html_on:\"查看html文本\",tl_html_off:\"返回markdown文本\",tl_help:\"markdown语法帮助\",tl_upload:\"上传图片\",tl_upload_remove:\"删除\",tl_popup_link_title:\"添加链接\",tl_popup_link_text:\"链接描述\",tl_popup_link_addr:\"链接地址\",tl_popup_img_link_title:\"添加图片\",tl_popup_img_link_text:\"图片描述\",tl_popup_img_link_addr:\"图片链接\",tl_popup_link_sure:\"确定\",tl_popup_link_cancel:\"取消\"}},function(e,t){e.exports={start_editor:\"開始編輯...\",navigation_title:\"導航目錄\",tl_bold:\"粗體\",tl_italic:\"斜體\",tl_header:\"標題\",tl_header_one:\"一級標題\",tl_header_two:\"二級標題\",tl_header_three:\"三級標題\",tl_header_four:\"四級標題\",tl_header_five:\"五級標題\",tl_header_six:\"六級標題\",tl_underline:\"下劃線\",tl_strikethrough:\"中劃線\",tl_mark:\"標記\",tl_superscript:\"上角標\",tl_subscript:\"下角標\",tl_quote:\"段落引用\",tl_ol:\"有序列表\",tl_ul:\"無序列表\",tl_link:\"鏈接\",tl_image:\"添加圖片鏈接\",tl_code:\"代碼塊\",tl_table:\"表格\",tl_undo:\"上一步\",tl_redo:\"下一步\",tl_trash:\"清空\",tl_save:\"保存\",tl_navigation_on:\"開啟標題導航\",tl_navigation_off:\"關閉標題導航\",tl_preview:\"預覽\",tl_aligncenter:\"居中\",tl_alignleft:\"居左\",tl_alignright:\"居右\",tl_edit:\"編輯\",tl_single_column:\"單欄\",tl_double_column:\"雙欄\",tl_fullscreen_on:\"全屏編輯\",tl_fullscreen_off:\"退出全屏\",tl_read:\"沈浸式閱讀\",tl_html_on:\"查看html文本\",tl_html_off:\"返回markdown文本\",tl_help:\"markdown語法幫助\",tl_upload:\"上傳圖片\",tl_upload_remove:\"刪除\",tl_popup_link_title:\"添加鏈接\",tl_popup_link_text:\"鏈接描述\",tl_popup_link_addr:\"鏈接地址\",tl_popup_img_link_title:\"添加圖片\",tl_popup_img_link_text:\"圖片描述\",tl_popup_img_link_addr:\"圖片鏈接\",tl_popup_link_sure:\"確定\",tl_popup_link_cancel:\"取消\"}}])}))},b313:function(e,t,n){\"use strict\";var i=String.prototype.replace,r=/%20/g;e.exports={default:\"RFC3986\",formatters:{RFC1738:function(e){return i.call(e,r,\"+\")},RFC3986:function(e){return e}},RFC1738:\"RFC1738\",RFC3986:\"RFC3986\"}},b322:function(e,t){function n(e){const t={className:\"variable\",begin:/\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)/},n={className:\"variable\",begin:/\\$+\\{[\\w.:-]+\\}/},i={className:\"variable\",begin:/\\$+\\w+/,illegal:/\\(\\)\\{\\}/},r={className:\"variable\",begin:/\\$+\\([\\w^.:-]+\\)/},a={className:\"params\",begin:\"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)\"},o={className:\"keyword\",begin:/!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversion|gettlbversion|if|ifdef|ifmacrodef|ifmacrondef|ifndef|include|insertmacro|macro|macroend|makensis|packhdr|searchparse|searchreplace|system|tempfile|undef|verbose|warning)/},s={className:\"meta\",begin:/\\$(\\\\[nrt]|\\$)/},l={className:\"class\",begin:/\\w+::\\w+/},c={className:\"string\",variants:[{begin:'\"',end:'\"'},{begin:\"'\",end:\"'\"},{begin:\"`\",end:\"`\"}],illegal:/\\n/,contains:[s,t,n,i,r]};return{name:\"NSIS\",case_insensitive:!1,keywords:{keyword:\"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecShellWait ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileWriteUTF16LE FileSeek FileWrite FileWriteByte FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetKnownFolderPath GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfRtlLanguage IfShellVarContextAll IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText Int64Cmp Int64CmpU Int64Fmt IntCmp IntCmpU IntFmt IntOp IntPtrCmp IntPtrCmpU IntPtrOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadAndSetImage LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestLongPathAware ManifestMaxVersionTested ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PEAddResource PEDllCharacteristics PERemoveResource PESubsysVer Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegMultiStr WriteRegNone WriteRegStr WriteUninstaller XPStyle\",literal:\"admin all auto both bottom bzip2 colored components current custom directory false force hide highest ifdiff ifnewer instfiles lastused leave left license listonly lzma nevershow none normal notset off on open print right show silent silentlog smooth textonly top true try un.components un.custom un.directory un.instfiles un.license uninstConfirm user Win10 Win7 Win8 WinVista zlib\"},contains:[e.HASH_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.COMMENT(\";\",\"$\",{relevance:0}),{className:\"function\",beginKeywords:\"Function PageEx Section SectionGroup\",end:\"$\"},c,o,n,i,r,a,l,e.NUMBER_MODE]}}e.exports=n},b3c5:function(e,t){function n(e){const t=\"[a-z'][a-zA-Z0-9_']*\",n=\"(\"+t+\":\"+t+\"|\"+t+\")\",i={keyword:\"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor\",literal:\"false true\"},r=e.COMMENT(\"%\",\"$\"),a={className:\"number\",begin:\"\\\\b(\\\\d+(_\\\\d+)*#[a-fA-F0-9]+(_[a-fA-F0-9]+)*|\\\\d+(_\\\\d+)*(\\\\.\\\\d+(_\\\\d+)*)?([eE][-+]?\\\\d+)?)\",relevance:0},o={begin:\"fun\\\\s+\"+t+\"/\\\\d+\"},s={begin:n+\"\\\\(\",end:\"\\\\)\",returnBegin:!0,relevance:0,contains:[{begin:n,relevance:0},{begin:\"\\\\(\",end:\"\\\\)\",endsWithParent:!0,returnEnd:!0,relevance:0}]},l={begin:/\\{/,end:/\\}/,relevance:0},c={begin:\"\\\\b_([A-Z][A-Za-z0-9_]*)?\",relevance:0},u={begin:\"[A-Z][a-zA-Z0-9_]*\",relevance:0},d={begin:\"#\"+e.UNDERSCORE_IDENT_RE,relevance:0,returnBegin:!0,contains:[{begin:\"#\"+e.UNDERSCORE_IDENT_RE,relevance:0},{begin:/\\{/,end:/\\}/,relevance:0}]},p={beginKeywords:\"fun receive if try case\",end:\"end\",keywords:i};p.contains=[r,o,e.inherit(e.APOS_STRING_MODE,{className:\"\"}),p,s,e.QUOTE_STRING_MODE,a,l,c,u,d];const h=[r,o,p,s,e.QUOTE_STRING_MODE,a,l,c,u,d];s.contains[1].contains=h,l.contains=h,d.contains[1].contains=h;const f=[\"-module\",\"-record\",\"-undef\",\"-export\",\"-ifdef\",\"-ifndef\",\"-author\",\"-copyright\",\"-doc\",\"-vsn\",\"-import\",\"-include\",\"-include_lib\",\"-compile\",\"-define\",\"-else\",\"-endif\",\"-file\",\"-behaviour\",\"-behavior\",\"-spec\"],_={className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",contains:h};return{name:\"Erlang\",aliases:[\"erl\"],keywords:i,illegal:\"(</|\\\\*=|\\\\+=|-=|/\\\\*|\\\\*/|\\\\(\\\\*|\\\\*\\\\))\",contains:[{className:\"function\",begin:\"^\"+t+\"\\\\s*\\\\(\",end:\"->\",returnBegin:!0,illegal:\"\\\\(|#|//|/\\\\*|\\\\\\\\|:|;\",contains:[_,e.inherit(e.TITLE_MODE,{begin:t})],starts:{end:\";|\\\\.\",keywords:i,contains:h}},r,{begin:\"^-\",end:\"\\\\.\",relevance:0,excludeEnd:!0,returnBegin:!0,keywords:{$pattern:\"-\"+e.IDENT_RE,keyword:f.map(e=>e+\"|1.5\").join(\" \")},contains:[_]},a,e.QUOTE_STRING_MODE,d,c,u,l,{begin:/\\.$/}]}}e.exports=n},b447:function(e,t,n){var i=n(\"3a38\"),r=Math.min;e.exports=function(e){return e>0?r(i(e),9007199254740991):0}},b50d:function(e,t,n){\"use strict\";var i=n(\"c532\"),r=n(\"467f\"),a=n(\"30b5\"),o=n(\"83b9\"),s=n(\"c345\"),l=n(\"3934\"),c=n(\"2d83\");e.exports=function(e){return new Promise((function(t,u){var d=e.data,p=e.headers;i.isFormData(d)&&delete p[\"Content-Type\"];var h=new XMLHttpRequest;if(e.auth){var f=e.auth.username||\"\",_=e.auth.password||\"\";p.Authorization=\"Basic \"+btoa(f+\":\"+_)}var m=o(e.baseURL,e.url);if(h.open(e.method.toUpperCase(),a(m,e.params,e.paramsSerializer),!0),h.timeout=e.timeout,h.onreadystatechange=function(){if(h&&4===h.readyState&&(0!==h.status||h.responseURL&&0===h.responseURL.indexOf(\"file:\"))){var n=\"getAllResponseHeaders\"in h?s(h.getAllResponseHeaders()):null,i=e.responseType&&\"text\"!==e.responseType?h.response:h.responseText,a={data:i,status:h.status,statusText:h.statusText,headers:n,config:e,request:h};r(t,u,a),h=null}},h.onabort=function(){h&&(u(c(\"Request aborted\",e,\"ECONNABORTED\",h)),h=null)},h.onerror=function(){u(c(\"Network Error\",e,null,h)),h=null},h.ontimeout=function(){var t=\"timeout of \"+e.timeout+\"ms exceeded\";e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),u(c(t,e,\"ECONNABORTED\",h)),h=null},i.isStandardBrowserEnv()){var g=n(\"7aac\"),b=(e.withCredentials||l(m))&&e.xsrfCookieName?g.read(e.xsrfCookieName):void 0;b&&(p[e.xsrfHeaderName]=b)}if(\"setRequestHeader\"in h&&i.forEach(p,(function(e,t){\"undefined\"===typeof d&&\"content-type\"===t.toLowerCase()?delete p[t]:h.setRequestHeader(t,e)})),i.isUndefined(e.withCredentials)||(h.withCredentials=!!e.withCredentials),e.responseType)try{h.responseType=e.responseType}catch(v){if(\"json\"!==e.responseType)throw v}\"function\"===typeof e.onDownloadProgress&&h.addEventListener(\"progress\",e.onDownloadProgress),\"function\"===typeof e.onUploadProgress&&h.upload&&h.upload.addEventListener(\"progress\",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then((function(e){h&&(h.abort(),u(e),h=null)})),void 0===d&&(d=null),h.send(d)}))}},b528:function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(e){const t={ruleDeclaration:/^[a-zA-Z][a-zA-Z0-9-]*/,unexpectedChars:/[!@#$^&',?+~`|:]/},n=[\"ALPHA\",\"BIT\",\"CHAR\",\"CR\",\"CRLF\",\"CTL\",\"DIGIT\",\"DQUOTE\",\"HEXDIG\",\"HTAB\",\"LF\",\"LWSP\",\"OCTET\",\"SP\",\"VCHAR\",\"WSP\"],r=e.COMMENT(/;/,/$/),a={className:\"symbol\",begin:/%b[0-1]+(-[0-1]+|(\\.[0-1]+)+){0,1}/},o={className:\"symbol\",begin:/%d[0-9]+(-[0-9]+|(\\.[0-9]+)+){0,1}/},s={className:\"symbol\",begin:/%x[0-9A-F]+(-[0-9A-F]+|(\\.[0-9A-F]+)+){0,1}/},l={className:\"symbol\",begin:/%[si]/},c={className:\"attribute\",begin:i(t.ruleDeclaration,/(?=\\s*=)/)};return{name:\"Augmented Backus-Naur Form\",illegal:t.unexpectedChars,keywords:n,contains:[c,r,a,o,s,l,e.QUOTE_STRING_MODE,e.NUMBER_MODE]}}e.exports=r},b65b:function(e,t){function n(e){return{name:\"Shell Session\",aliases:[\"console\"],contains:[{className:\"meta\",begin:/^\\s{0,3}[/~\\w\\d[\\]()@-]*[>%$#]/,starts:{end:/[^\\\\](?=\\s*$)/,subLanguage:\"bash\"}}]}}e.exports=n},b7aa:function(e,t){function n(e){return{name:\"Julia REPL\",contains:[{className:\"meta\",begin:/^julia>/,relevance:10,starts:{end:/^(?![ ]{6})/,subLanguage:\"julia\"},aliases:[\"jldoctest\"]}]}}e.exports=n},b884:function(e,t){function n(e){const t=\"a-zA-Z_\\\\-!.?+*=<>&#'\",n=\"[\"+t+\"][\"+t+\"0-9/;:]*\",i=\"def defonce defprotocol defstruct defmulti defmethod defn- defn defmacro deftype defrecord\",r={$pattern:n,\"builtin-name\":i+\" cond apply if-not if-let if not not= =|0 <|0 >|0 <=|0 >=|0 ==|0 +|0 /|0 *|0 -|0 rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy first rest cons cast coll last butlast sigs reify second ffirst fnext nfirst nnext meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize\"},a=\"[-+]?\\\\d+(\\\\.\\\\d+)?\",o={begin:n,relevance:0},s={className:\"number\",begin:a,relevance:0},l=e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),c=e.COMMENT(\";\",\"$\",{relevance:0}),u={className:\"literal\",begin:/\\b(true|false|nil)\\b/},d={begin:\"[\\\\[\\\\{]\",end:\"[\\\\]\\\\}]\"},p={className:\"comment\",begin:\"\\\\^\"+n},h=e.COMMENT(\"\\\\^\\\\{\",\"\\\\}\"),f={className:\"symbol\",begin:\"[:]{1,2}\"+n},_={begin:\"\\\\(\",end:\"\\\\)\"},m={endsWithParent:!0,relevance:0},g={keywords:r,className:\"name\",begin:n,relevance:0,starts:m},b=[_,l,p,h,c,f,d,s,u,o],v={beginKeywords:i,lexemes:n,end:'(\\\\[|#|\\\\d|\"|:|\\\\{|\\\\)|\\\\(|$)',contains:[{className:\"title\",begin:n,relevance:0,excludeEnd:!0,endsParent:!0}].concat(b)};return _.contains=[e.COMMENT(\"comment\",\"\"),v,g,m],m.contains=b,d.contains=b,h.contains=[d],{name:\"Clojure\",aliases:[\"clj\"],illegal:/\\S/,contains:[_,l,p,h,c,f,d,s,u]}}e.exports=n},b8e3:function(e,t){e.exports=!0},b90a:function(e,t){function n(e){return{name:\"Python profiler\",contains:[e.C_NUMBER_MODE,{begin:\"[a-zA-Z_][\\\\da-zA-Z_]+\\\\.[\\\\da-zA-Z_]{1,3}\",end:\":\",excludeEnd:!0},{begin:\"(ncalls|tottime|cumtime)\",end:\"$\",keywords:\"ncalls tottime|10 cumtime|10 filename\",relevance:10},{begin:\"function calls\",end:\"$\",contains:[e.C_NUMBER_MODE],relevance:10},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:\"string\",begin:\"\\\\(\",end:\"\\\\)$\",excludeBegin:!0,excludeEnd:!0,relevance:0}]}}e.exports=n},b91e:function(e,t){function n(e){const t={className:\"string\",begin:/\"/,end:/\"/},n={className:\"string\",begin:/'/,end:/'/},i={className:\"string\",begin:/[\\w\\-?]+:\\w+/,end:/\\W/,relevance:0},r={className:\"string\",begin:/\\w+(\\-\\w+)*/,end:/(?=\\W)/,relevance:0};return{keywords:\"dsconfig\",contains:[{className:\"keyword\",begin:\"^dsconfig\",end:/\\s/,excludeEnd:!0,relevance:10},{className:\"built_in\",begin:/(list|create|get|set|delete)-(\\w+)/,end:/\\s/,excludeEnd:!0,illegal:\"!@#$%^&*()\",relevance:10},{className:\"built_in\",begin:/--(\\w+)/,end:/\\s/,excludeEnd:!0},t,n,i,r,e.HASH_COMMENT_MODE]}}e.exports=n},ba76:function(e,t){function n(e){const t=\"assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty\",n=\"shared abstract formal default actual variable late native deprecated final sealed annotation suppressWarnings small\",i=\"doc by license see throws tagged\",r={className:\"subst\",excludeBegin:!0,excludeEnd:!0,begin:/``/,end:/``/,keywords:t,relevance:10},a=[{className:\"string\",begin:'\"\"\"',end:'\"\"\"',relevance:10},{className:\"string\",begin:'\"',end:'\"',contains:[r]},{className:\"string\",begin:\"'\",end:\"'\"},{className:\"number\",begin:\"#[0-9a-fA-F_]+|\\\\$[01_]+|[0-9_]+(?:\\\\.[0-9_](?:[eE][+-]?\\\\d+)?)?[kMGTPmunpf]?\",relevance:0}];return r.contains=a,{name:\"Ceylon\",keywords:{keyword:t+\" \"+n,meta:i},illegal:\"\\\\$[^01]|#[^0-9a-fA-F]\",contains:[e.C_LINE_COMMENT_MODE,e.COMMENT(\"/\\\\*\",\"\\\\*/\",{contains:[\"self\"]}),{className:\"meta\",begin:'@[a-z]\\\\w*(?::\"[^\"]*\")?'}].concat(a)}}e.exports=n},bb43:function(e,t){function n(e){const t=\"[A-Za-zА-Яа-яёЁ_!][A-Za-zА-Яа-яёЁ_0-9]*\",n=\"[A-Za-zА-Яа-яёЁ_][A-Za-zА-Яа-яёЁ_0-9]*\",i=\"and и else иначе endexcept endfinally endforeach конецвсе endif конецесли endwhile конецпока except exitfor finally foreach все if если in в not не or или try while пока \",r=\"SYSRES_CONST_ACCES_RIGHT_TYPE_EDIT SYSRES_CONST_ACCES_RIGHT_TYPE_FULL SYSRES_CONST_ACCES_RIGHT_TYPE_VIEW SYSRES_CONST_ACCESS_MODE_REQUISITE_CODE SYSRES_CONST_ACCESS_NO_ACCESS_VIEW SYSRES_CONST_ACCESS_NO_ACCESS_VIEW_CODE SYSRES_CONST_ACCESS_RIGHTS_ADD_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_ADD_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_CHANGE_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_CHANGE_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_DELETE_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_DELETE_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_EXECUTE_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_EXECUTE_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_NO_ACCESS_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_NO_ACCESS_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_RATIFY_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_RATIFY_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_VIEW SYSRES_CONST_ACCESS_RIGHTS_VIEW_CODE SYSRES_CONST_ACCESS_RIGHTS_VIEW_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_VIEW_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_TYPE_CHANGE SYSRES_CONST_ACCESS_TYPE_CHANGE_CODE SYSRES_CONST_ACCESS_TYPE_EXISTS SYSRES_CONST_ACCESS_TYPE_EXISTS_CODE SYSRES_CONST_ACCESS_TYPE_FULL SYSRES_CONST_ACCESS_TYPE_FULL_CODE SYSRES_CONST_ACCESS_TYPE_VIEW SYSRES_CONST_ACCESS_TYPE_VIEW_CODE SYSRES_CONST_ACTION_TYPE_ABORT SYSRES_CONST_ACTION_TYPE_ACCEPT SYSRES_CONST_ACTION_TYPE_ACCESS_RIGHTS SYSRES_CONST_ACTION_TYPE_ADD_ATTACHMENT SYSRES_CONST_ACTION_TYPE_CHANGE_CARD SYSRES_CONST_ACTION_TYPE_CHANGE_KIND SYSRES_CONST_ACTION_TYPE_CHANGE_STORAGE SYSRES_CONST_ACTION_TYPE_CONTINUE SYSRES_CONST_ACTION_TYPE_COPY SYSRES_CONST_ACTION_TYPE_CREATE SYSRES_CONST_ACTION_TYPE_CREATE_VERSION SYSRES_CONST_ACTION_TYPE_DELETE SYSRES_CONST_ACTION_TYPE_DELETE_ATTACHMENT SYSRES_CONST_ACTION_TYPE_DELETE_VERSION SYSRES_CONST_ACTION_TYPE_DISABLE_DELEGATE_ACCESS_RIGHTS SYSRES_CONST_ACTION_TYPE_ENABLE_DELEGATE_ACCESS_RIGHTS SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_CERTIFICATE SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_CERTIFICATE_AND_PASSWORD SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_PASSWORD SYSRES_CONST_ACTION_TYPE_EXPORT_WITH_LOCK SYSRES_CONST_ACTION_TYPE_EXPORT_WITHOUT_LOCK SYSRES_CONST_ACTION_TYPE_IMPORT_WITH_UNLOCK SYSRES_CONST_ACTION_TYPE_IMPORT_WITHOUT_UNLOCK SYSRES_CONST_ACTION_TYPE_LIFE_CYCLE_STAGE SYSRES_CONST_ACTION_TYPE_LOCK SYSRES_CONST_ACTION_TYPE_LOCK_FOR_SERVER SYSRES_CONST_ACTION_TYPE_LOCK_MODIFY SYSRES_CONST_ACTION_TYPE_MARK_AS_READED SYSRES_CONST_ACTION_TYPE_MARK_AS_UNREADED SYSRES_CONST_ACTION_TYPE_MODIFY SYSRES_CONST_ACTION_TYPE_MODIFY_CARD SYSRES_CONST_ACTION_TYPE_MOVE_TO_ARCHIVE SYSRES_CONST_ACTION_TYPE_OFF_ENCRYPTION SYSRES_CONST_ACTION_TYPE_PASSWORD_CHANGE SYSRES_CONST_ACTION_TYPE_PERFORM SYSRES_CONST_ACTION_TYPE_RECOVER_FROM_LOCAL_COPY SYSRES_CONST_ACTION_TYPE_RESTART SYSRES_CONST_ACTION_TYPE_RESTORE_FROM_ARCHIVE SYSRES_CONST_ACTION_TYPE_REVISION SYSRES_CONST_ACTION_TYPE_SEND_BY_MAIL SYSRES_CONST_ACTION_TYPE_SIGN SYSRES_CONST_ACTION_TYPE_START SYSRES_CONST_ACTION_TYPE_UNLOCK SYSRES_CONST_ACTION_TYPE_UNLOCK_FROM_SERVER SYSRES_CONST_ACTION_TYPE_VERSION_STATE SYSRES_CONST_ACTION_TYPE_VERSION_VISIBILITY SYSRES_CONST_ACTION_TYPE_VIEW SYSRES_CONST_ACTION_TYPE_VIEW_SHADOW_COPY SYSRES_CONST_ACTION_TYPE_WORKFLOW_DESCRIPTION_MODIFY SYSRES_CONST_ACTION_TYPE_WRITE_HISTORY SYSRES_CONST_ACTIVE_VERSION_STATE_PICK_VALUE SYSRES_CONST_ADD_REFERENCE_MODE_NAME SYSRES_CONST_ADDITION_REQUISITE_CODE SYSRES_CONST_ADDITIONAL_PARAMS_REQUISITE_CODE SYSRES_CONST_ADITIONAL_JOB_END_DATE_REQUISITE_NAME SYSRES_CONST_ADITIONAL_JOB_READ_REQUISITE_NAME SYSRES_CONST_ADITIONAL_JOB_START_DATE_REQUISITE_NAME SYSRES_CONST_ADITIONAL_JOB_STATE_REQUISITE_NAME SYSRES_CONST_ADMINISTRATION_HISTORY_ADDING_USER_TO_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_ADDING_USER_TO_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_COMP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_COMP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_USER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_USER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_CREATION SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_CREATION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_DELETION SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_DELETION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_COMP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_COMP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_FROM_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_FROM_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_RESTRICTION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_RESTRICTION_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_PRIVILEGE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_PRIVILEGE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_RIGHTS_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_RIGHTS_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_IS_MAIN_SERVER_CHANGED_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_IS_MAIN_SERVER_CHANGED_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_IS_PUBLIC_CHANGED_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_IS_PUBLIC_CHANGED_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_RESTRICTION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_RESTRICTION_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_PRIVILEGE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_PRIVILEGE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_RIGHTS_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_RIGHTS_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_CREATION SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_CREATION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_DELETION SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_DELETION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_CATEGORY_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_CATEGORY_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_COMP_TITLE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_COMP_TITLE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_FULL_NAME_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_FULL_NAME_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_PARENT_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_PARENT_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_AUTH_TYPE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_AUTH_TYPE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_LOGIN_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_LOGIN_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_STATUS_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_STATUS_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_USER_PASSWORD_CHANGE SYSRES_CONST_ADMINISTRATION_HISTORY_USER_PASSWORD_CHANGE_ACTION SYSRES_CONST_ALL_ACCEPT_CONDITION_RUS SYSRES_CONST_ALL_USERS_GROUP SYSRES_CONST_ALL_USERS_GROUP_NAME SYSRES_CONST_ALL_USERS_SERVER_GROUP_NAME SYSRES_CONST_ALLOWED_ACCESS_TYPE_CODE SYSRES_CONST_ALLOWED_ACCESS_TYPE_NAME SYSRES_CONST_APP_VIEWER_TYPE_REQUISITE_CODE SYSRES_CONST_APPROVING_SIGNATURE_NAME SYSRES_CONST_APPROVING_SIGNATURE_REQUISITE_CODE SYSRES_CONST_ASSISTANT_SUBSTITUE_TYPE SYSRES_CONST_ASSISTANT_SUBSTITUE_TYPE_CODE SYSRES_CONST_ATTACH_TYPE_COMPONENT_TOKEN SYSRES_CONST_ATTACH_TYPE_DOC SYSRES_CONST_ATTACH_TYPE_EDOC SYSRES_CONST_ATTACH_TYPE_FOLDER SYSRES_CONST_ATTACH_TYPE_JOB SYSRES_CONST_ATTACH_TYPE_REFERENCE SYSRES_CONST_ATTACH_TYPE_TASK SYSRES_CONST_AUTH_ENCODED_PASSWORD SYSRES_CONST_AUTH_ENCODED_PASSWORD_CODE SYSRES_CONST_AUTH_NOVELL SYSRES_CONST_AUTH_PASSWORD SYSRES_CONST_AUTH_PASSWORD_CODE SYSRES_CONST_AUTH_WINDOWS SYSRES_CONST_AUTHENTICATING_SIGNATURE_NAME SYSRES_CONST_AUTHENTICATING_SIGNATURE_REQUISITE_CODE SYSRES_CONST_AUTO_ENUM_METHOD_FLAG SYSRES_CONST_AUTO_NUMERATION_CODE SYSRES_CONST_AUTO_STRONG_ENUM_METHOD_FLAG SYSRES_CONST_AUTOTEXT_NAME_REQUISITE_CODE SYSRES_CONST_AUTOTEXT_TEXT_REQUISITE_CODE SYSRES_CONST_AUTOTEXT_USAGE_ALL SYSRES_CONST_AUTOTEXT_USAGE_ALL_CODE SYSRES_CONST_AUTOTEXT_USAGE_SIGN SYSRES_CONST_AUTOTEXT_USAGE_SIGN_CODE SYSRES_CONST_AUTOTEXT_USAGE_WORK SYSRES_CONST_AUTOTEXT_USAGE_WORK_CODE SYSRES_CONST_AUTOTEXT_USE_ANYWHERE_CODE SYSRES_CONST_AUTOTEXT_USE_ON_SIGNING_CODE SYSRES_CONST_AUTOTEXT_USE_ON_WORK_CODE SYSRES_CONST_BEGIN_DATE_REQUISITE_CODE SYSRES_CONST_BLACK_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_BLUE_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_BTN_PART SYSRES_CONST_CALCULATED_ROLE_TYPE_CODE SYSRES_CONST_CALL_TYPE_VARIABLE_BUTTON_VALUE SYSRES_CONST_CALL_TYPE_VARIABLE_PROGRAM_VALUE SYSRES_CONST_CANCEL_MESSAGE_FUNCTION_RESULT SYSRES_CONST_CARD_PART SYSRES_CONST_CARD_REFERENCE_MODE_NAME SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_ENCRYPT_VALUE SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_SIGN_AND_ENCRYPT_VALUE SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_SIGN_VALUE SYSRES_CONST_CHECK_PARAM_VALUE_DATE_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_FLOAT_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_INTEGER_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_PICK_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_REEFRENCE_PARAM_TYPE SYSRES_CONST_CLOSED_RECORD_FLAG_VALUE_FEMININE SYSRES_CONST_CLOSED_RECORD_FLAG_VALUE_MASCULINE SYSRES_CONST_CODE_COMPONENT_TYPE_ADMIN SYSRES_CONST_CODE_COMPONENT_TYPE_DEVELOPER SYSRES_CONST_CODE_COMPONENT_TYPE_DOCS SYSRES_CONST_CODE_COMPONENT_TYPE_EDOC_CARDS SYSRES_CONST_CODE_COMPONENT_TYPE_EXTERNAL_EXECUTABLE SYSRES_CONST_CODE_COMPONENT_TYPE_OTHER SYSRES_CONST_CODE_COMPONENT_TYPE_REFERENCE SYSRES_CONST_CODE_COMPONENT_TYPE_REPORT SYSRES_CONST_CODE_COMPONENT_TYPE_SCRIPT SYSRES_CONST_CODE_COMPONENT_TYPE_URL SYSRES_CONST_CODE_REQUISITE_ACCESS SYSRES_CONST_CODE_REQUISITE_CODE SYSRES_CONST_CODE_REQUISITE_COMPONENT SYSRES_CONST_CODE_REQUISITE_DESCRIPTION SYSRES_CONST_CODE_REQUISITE_EXCLUDE_COMPONENT SYSRES_CONST_CODE_REQUISITE_RECORD SYSRES_CONST_COMMENT_REQ_CODE SYSRES_CONST_COMMON_SETTINGS_REQUISITE_CODE SYSRES_CONST_COMP_CODE_GRD SYSRES_CONST_COMPONENT_GROUP_TYPE_REQUISITE_CODE SYSRES_CONST_COMPONENT_TYPE_ADMIN_COMPONENTS SYSRES_CONST_COMPONENT_TYPE_DEVELOPER_COMPONENTS SYSRES_CONST_COMPONENT_TYPE_DOCS SYSRES_CONST_COMPONENT_TYPE_EDOC_CARDS SYSRES_CONST_COMPONENT_TYPE_EDOCS SYSRES_CONST_COMPONENT_TYPE_EXTERNAL_EXECUTABLE SYSRES_CONST_COMPONENT_TYPE_OTHER SYSRES_CONST_COMPONENT_TYPE_REFERENCE_TYPES SYSRES_CONST_COMPONENT_TYPE_REFERENCES SYSRES_CONST_COMPONENT_TYPE_REPORTS SYSRES_CONST_COMPONENT_TYPE_SCRIPTS SYSRES_CONST_COMPONENT_TYPE_URL SYSRES_CONST_COMPONENTS_REMOTE_SERVERS_VIEW_CODE SYSRES_CONST_CONDITION_BLOCK_DESCRIPTION SYSRES_CONST_CONST_FIRM_STATUS_COMMON SYSRES_CONST_CONST_FIRM_STATUS_INDIVIDUAL SYSRES_CONST_CONST_NEGATIVE_VALUE SYSRES_CONST_CONST_POSITIVE_VALUE SYSRES_CONST_CONST_SERVER_STATUS_DONT_REPLICATE SYSRES_CONST_CONST_SERVER_STATUS_REPLICATE SYSRES_CONST_CONTENTS_REQUISITE_CODE SYSRES_CONST_DATA_TYPE_BOOLEAN SYSRES_CONST_DATA_TYPE_DATE SYSRES_CONST_DATA_TYPE_FLOAT SYSRES_CONST_DATA_TYPE_INTEGER SYSRES_CONST_DATA_TYPE_PICK SYSRES_CONST_DATA_TYPE_REFERENCE SYSRES_CONST_DATA_TYPE_STRING SYSRES_CONST_DATA_TYPE_TEXT SYSRES_CONST_DATA_TYPE_VARIANT SYSRES_CONST_DATE_CLOSE_REQ_CODE SYSRES_CONST_DATE_FORMAT_DATE_ONLY_CHAR SYSRES_CONST_DATE_OPEN_REQ_CODE SYSRES_CONST_DATE_REQUISITE SYSRES_CONST_DATE_REQUISITE_CODE SYSRES_CONST_DATE_REQUISITE_NAME SYSRES_CONST_DATE_REQUISITE_TYPE SYSRES_CONST_DATE_TYPE_CHAR SYSRES_CONST_DATETIME_FORMAT_VALUE SYSRES_CONST_DEA_ACCESS_RIGHTS_ACTION_CODE SYSRES_CONST_DESCRIPTION_LOCALIZE_ID_REQUISITE_CODE SYSRES_CONST_DESCRIPTION_REQUISITE_CODE SYSRES_CONST_DET1_PART SYSRES_CONST_DET2_PART SYSRES_CONST_DET3_PART SYSRES_CONST_DET4_PART SYSRES_CONST_DET5_PART SYSRES_CONST_DET6_PART SYSRES_CONST_DETAIL_DATASET_KEY_REQUISITE_CODE SYSRES_CONST_DETAIL_PICK_REQUISITE_CODE SYSRES_CONST_DETAIL_REQ_CODE SYSRES_CONST_DO_NOT_USE_ACCESS_TYPE_CODE SYSRES_CONST_DO_NOT_USE_ACCESS_TYPE_NAME SYSRES_CONST_DO_NOT_USE_ON_VIEW_ACCESS_TYPE_CODE SYSRES_CONST_DO_NOT_USE_ON_VIEW_ACCESS_TYPE_NAME SYSRES_CONST_DOCUMENT_STORAGES_CODE SYSRES_CONST_DOCUMENT_TEMPLATES_TYPE_NAME SYSRES_CONST_DOUBLE_REQUISITE_CODE SYSRES_CONST_EDITOR_CLOSE_FILE_OBSERV_TYPE_CODE SYSRES_CONST_EDITOR_CLOSE_PROCESS_OBSERV_TYPE_CODE SYSRES_CONST_EDITOR_TYPE_REQUISITE_CODE SYSRES_CONST_EDITORS_APPLICATION_NAME_REQUISITE_CODE SYSRES_CONST_EDITORS_CREATE_SEVERAL_PROCESSES_REQUISITE_CODE SYSRES_CONST_EDITORS_EXTENSION_REQUISITE_CODE SYSRES_CONST_EDITORS_OBSERVER_BY_PROCESS_TYPE SYSRES_CONST_EDITORS_REFERENCE_CODE SYSRES_CONST_EDITORS_REPLACE_SPEC_CHARS_REQUISITE_CODE SYSRES_CONST_EDITORS_USE_PLUGINS_REQUISITE_CODE SYSRES_CONST_EDITORS_VIEW_DOCUMENT_OPENED_TO_EDIT_CODE SYSRES_CONST_EDOC_CARD_TYPE_REQUISITE_CODE SYSRES_CONST_EDOC_CARD_TYPES_LINK_REQUISITE_CODE SYSRES_CONST_EDOC_CERTIFICATE_AND_PASSWORD_ENCODE_CODE SYSRES_CONST_EDOC_CERTIFICATE_ENCODE_CODE SYSRES_CONST_EDOC_DATE_REQUISITE_CODE SYSRES_CONST_EDOC_KIND_REFERENCE_CODE SYSRES_CONST_EDOC_KINDS_BY_TEMPLATE_ACTION_CODE SYSRES_CONST_EDOC_MANAGE_ACCESS_CODE SYSRES_CONST_EDOC_NONE_ENCODE_CODE SYSRES_CONST_EDOC_NUMBER_REQUISITE_CODE SYSRES_CONST_EDOC_PASSWORD_ENCODE_CODE SYSRES_CONST_EDOC_READONLY_ACCESS_CODE SYSRES_CONST_EDOC_SHELL_LIFE_TYPE_VIEW_VALUE SYSRES_CONST_EDOC_SIZE_RESTRICTION_PRIORITY_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_CHECK_ACCESS_RIGHTS_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_COMPUTER_NAME_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_DATABASE_NAME_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_EDIT_IN_STORAGE_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_LOCAL_PATH_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_SHARED_SOURCE_NAME_REQUISITE_CODE SYSRES_CONST_EDOC_TEMPLATE_REQUISITE_CODE SYSRES_CONST_EDOC_TYPES_REFERENCE_CODE SYSRES_CONST_EDOC_VERSION_ACTIVE_STAGE_CODE SYSRES_CONST_EDOC_VERSION_DESIGN_STAGE_CODE SYSRES_CONST_EDOC_VERSION_OBSOLETE_STAGE_CODE SYSRES_CONST_EDOC_WRITE_ACCES_CODE SYSRES_CONST_EDOCUMENT_CARD_REQUISITES_REFERENCE_CODE_SELECTED_REQUISITE SYSRES_CONST_ENCODE_CERTIFICATE_TYPE_CODE SYSRES_CONST_END_DATE_REQUISITE_CODE SYSRES_CONST_ENUMERATION_TYPE_REQUISITE_CODE SYSRES_CONST_EXECUTE_ACCESS_RIGHTS_TYPE_CODE SYSRES_CONST_EXECUTIVE_FILE_STORAGE_TYPE SYSRES_CONST_EXIST_CONST SYSRES_CONST_EXIST_VALUE SYSRES_CONST_EXPORT_LOCK_TYPE_ASK SYSRES_CONST_EXPORT_LOCK_TYPE_WITH_LOCK SYSRES_CONST_EXPORT_LOCK_TYPE_WITHOUT_LOCK SYSRES_CONST_EXPORT_VERSION_TYPE_ASK SYSRES_CONST_EXPORT_VERSION_TYPE_LAST SYSRES_CONST_EXPORT_VERSION_TYPE_LAST_ACTIVE SYSRES_CONST_EXTENSION_REQUISITE_CODE SYSRES_CONST_FILTER_NAME_REQUISITE_CODE SYSRES_CONST_FILTER_REQUISITE_CODE SYSRES_CONST_FILTER_TYPE_COMMON_CODE SYSRES_CONST_FILTER_TYPE_COMMON_NAME SYSRES_CONST_FILTER_TYPE_USER_CODE SYSRES_CONST_FILTER_TYPE_USER_NAME SYSRES_CONST_FILTER_VALUE_REQUISITE_NAME SYSRES_CONST_FLOAT_NUMBER_FORMAT_CHAR SYSRES_CONST_FLOAT_REQUISITE_TYPE SYSRES_CONST_FOLDER_AUTHOR_VALUE SYSRES_CONST_FOLDER_KIND_ANY_OBJECTS SYSRES_CONST_FOLDER_KIND_COMPONENTS SYSRES_CONST_FOLDER_KIND_EDOCS SYSRES_CONST_FOLDER_KIND_JOBS SYSRES_CONST_FOLDER_KIND_TASKS SYSRES_CONST_FOLDER_TYPE_COMMON SYSRES_CONST_FOLDER_TYPE_COMPONENT SYSRES_CONST_FOLDER_TYPE_FAVORITES SYSRES_CONST_FOLDER_TYPE_INBOX SYSRES_CONST_FOLDER_TYPE_OUTBOX SYSRES_CONST_FOLDER_TYPE_QUICK_LAUNCH SYSRES_CONST_FOLDER_TYPE_SEARCH SYSRES_CONST_FOLDER_TYPE_SHORTCUTS SYSRES_CONST_FOLDER_TYPE_USER SYSRES_CONST_FROM_DICTIONARY_ENUM_METHOD_FLAG SYSRES_CONST_FULL_SUBSTITUTE_TYPE SYSRES_CONST_FULL_SUBSTITUTE_TYPE_CODE SYSRES_CONST_FUNCTION_CANCEL_RESULT SYSRES_CONST_FUNCTION_CATEGORY_SYSTEM SYSRES_CONST_FUNCTION_CATEGORY_USER SYSRES_CONST_FUNCTION_FAILURE_RESULT SYSRES_CONST_FUNCTION_SAVE_RESULT SYSRES_CONST_GENERATED_REQUISITE SYSRES_CONST_GREEN_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_GROUP_ACCOUNT_TYPE_VALUE_CODE SYSRES_CONST_GROUP_CATEGORY_NORMAL_CODE SYSRES_CONST_GROUP_CATEGORY_NORMAL_NAME SYSRES_CONST_GROUP_CATEGORY_SERVICE_CODE SYSRES_CONST_GROUP_CATEGORY_SERVICE_NAME SYSRES_CONST_GROUP_COMMON_CATEGORY_FIELD_VALUE SYSRES_CONST_GROUP_FULL_NAME_REQUISITE_CODE SYSRES_CONST_GROUP_NAME_REQUISITE_CODE SYSRES_CONST_GROUP_RIGHTS_T_REQUISITE_CODE SYSRES_CONST_GROUP_SERVER_CODES_REQUISITE_CODE SYSRES_CONST_GROUP_SERVER_NAME_REQUISITE_CODE SYSRES_CONST_GROUP_SERVICE_CATEGORY_FIELD_VALUE SYSRES_CONST_GROUP_USER_REQUISITE_CODE SYSRES_CONST_GROUPS_REFERENCE_CODE SYSRES_CONST_GROUPS_REQUISITE_CODE SYSRES_CONST_HIDDEN_MODE_NAME SYSRES_CONST_HIGH_LVL_REQUISITE_CODE SYSRES_CONST_HISTORY_ACTION_CREATE_CODE SYSRES_CONST_HISTORY_ACTION_DELETE_CODE SYSRES_CONST_HISTORY_ACTION_EDIT_CODE SYSRES_CONST_HOUR_CHAR SYSRES_CONST_ID_REQUISITE_CODE SYSRES_CONST_IDSPS_REQUISITE_CODE SYSRES_CONST_IMAGE_MODE_COLOR SYSRES_CONST_IMAGE_MODE_GREYSCALE SYSRES_CONST_IMAGE_MODE_MONOCHROME SYSRES_CONST_IMPORTANCE_HIGH SYSRES_CONST_IMPORTANCE_LOW SYSRES_CONST_IMPORTANCE_NORMAL SYSRES_CONST_IN_DESIGN_VERSION_STATE_PICK_VALUE SYSRES_CONST_INCOMING_WORK_RULE_TYPE_CODE SYSRES_CONST_INT_REQUISITE SYSRES_CONST_INT_REQUISITE_TYPE SYSRES_CONST_INTEGER_NUMBER_FORMAT_CHAR SYSRES_CONST_INTEGER_TYPE_CHAR SYSRES_CONST_IS_GENERATED_REQUISITE_NEGATIVE_VALUE SYSRES_CONST_IS_PUBLIC_ROLE_REQUISITE_CODE SYSRES_CONST_IS_REMOTE_USER_NEGATIVE_VALUE SYSRES_CONST_IS_REMOTE_USER_POSITIVE_VALUE SYSRES_CONST_IS_STORED_REQUISITE_NEGATIVE_VALUE SYSRES_CONST_IS_STORED_REQUISITE_STORED_VALUE SYSRES_CONST_ITALIC_LIFE_CYCLE_STAGE_DRAW_STYLE SYSRES_CONST_JOB_BLOCK_DESCRIPTION SYSRES_CONST_JOB_KIND_CONTROL_JOB SYSRES_CONST_JOB_KIND_JOB SYSRES_CONST_JOB_KIND_NOTICE SYSRES_CONST_JOB_STATE_ABORTED SYSRES_CONST_JOB_STATE_COMPLETE SYSRES_CONST_JOB_STATE_WORKING SYSRES_CONST_KIND_REQUISITE_CODE SYSRES_CONST_KIND_REQUISITE_NAME SYSRES_CONST_KINDS_CREATE_SHADOW_COPIES_REQUISITE_CODE SYSRES_CONST_KINDS_DEFAULT_EDOC_LIFE_STAGE_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_ALL_TEPLATES_ALLOWED_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_ALLOW_LIFE_CYCLE_STAGE_CHANGING_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_ALLOW_MULTIPLE_ACTIVE_VERSIONS_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_SHARE_ACCES_RIGHTS_BY_DEFAULT_CODE SYSRES_CONST_KINDS_EDOC_TEMPLATE_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_TYPE_REQUISITE_CODE SYSRES_CONST_KINDS_SIGNERS_REQUISITES_CODE SYSRES_CONST_KOD_INPUT_TYPE SYSRES_CONST_LAST_UPDATE_DATE_REQUISITE_CODE SYSRES_CONST_LIFE_CYCLE_START_STAGE_REQUISITE_CODE SYSRES_CONST_LILAC_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_LINK_OBJECT_KIND_COMPONENT SYSRES_CONST_LINK_OBJECT_KIND_DOCUMENT SYSRES_CONST_LINK_OBJECT_KIND_EDOC SYSRES_CONST_LINK_OBJECT_KIND_FOLDER SYSRES_CONST_LINK_OBJECT_KIND_JOB SYSRES_CONST_LINK_OBJECT_KIND_REFERENCE SYSRES_CONST_LINK_OBJECT_KIND_TASK SYSRES_CONST_LINK_REF_TYPE_REQUISITE_CODE SYSRES_CONST_LIST_REFERENCE_MODE_NAME SYSRES_CONST_LOCALIZATION_DICTIONARY_MAIN_VIEW_CODE SYSRES_CONST_MAIN_VIEW_CODE SYSRES_CONST_MANUAL_ENUM_METHOD_FLAG SYSRES_CONST_MASTER_COMP_TYPE_REQUISITE_CODE SYSRES_CONST_MASTER_TABLE_REC_ID_REQUISITE_CODE SYSRES_CONST_MAXIMIZED_MODE_NAME SYSRES_CONST_ME_VALUE SYSRES_CONST_MESSAGE_ATTENTION_CAPTION SYSRES_CONST_MESSAGE_CONFIRMATION_CAPTION SYSRES_CONST_MESSAGE_ERROR_CAPTION SYSRES_CONST_MESSAGE_INFORMATION_CAPTION SYSRES_CONST_MINIMIZED_MODE_NAME SYSRES_CONST_MINUTE_CHAR SYSRES_CONST_MODULE_REQUISITE_CODE SYSRES_CONST_MONITORING_BLOCK_DESCRIPTION SYSRES_CONST_MONTH_FORMAT_VALUE SYSRES_CONST_NAME_LOCALIZE_ID_REQUISITE_CODE SYSRES_CONST_NAME_REQUISITE_CODE SYSRES_CONST_NAME_SINGULAR_REQUISITE_CODE SYSRES_CONST_NAMEAN_INPUT_TYPE SYSRES_CONST_NEGATIVE_PICK_VALUE SYSRES_CONST_NEGATIVE_VALUE SYSRES_CONST_NO SYSRES_CONST_NO_PICK_VALUE SYSRES_CONST_NO_SIGNATURE_REQUISITE_CODE SYSRES_CONST_NO_VALUE SYSRES_CONST_NONE_ACCESS_RIGHTS_TYPE_CODE SYSRES_CONST_NONOPERATING_RECORD_FLAG_VALUE SYSRES_CONST_NONOPERATING_RECORD_FLAG_VALUE_MASCULINE SYSRES_CONST_NORMAL_ACCESS_RIGHTS_TYPE_CODE SYSRES_CONST_NORMAL_LIFE_CYCLE_STAGE_DRAW_STYLE SYSRES_CONST_NORMAL_MODE_NAME SYSRES_CONST_NOT_ALLOWED_ACCESS_TYPE_CODE SYSRES_CONST_NOT_ALLOWED_ACCESS_TYPE_NAME SYSRES_CONST_NOTE_REQUISITE_CODE SYSRES_CONST_NOTICE_BLOCK_DESCRIPTION SYSRES_CONST_NUM_REQUISITE SYSRES_CONST_NUM_STR_REQUISITE_CODE SYSRES_CONST_NUMERATION_AUTO_NOT_STRONG SYSRES_CONST_NUMERATION_AUTO_STRONG SYSRES_CONST_NUMERATION_FROM_DICTONARY SYSRES_CONST_NUMERATION_MANUAL SYSRES_CONST_NUMERIC_TYPE_CHAR SYSRES_CONST_NUMREQ_REQUISITE_CODE SYSRES_CONST_OBSOLETE_VERSION_STATE_PICK_VALUE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_CODE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_FEMININE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_MASCULINE SYSRES_CONST_OPTIONAL_FORM_COMP_REQCODE_PREFIX SYSRES_CONST_ORANGE_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_ORIGINALREF_REQUISITE_CODE SYSRES_CONST_OURFIRM_REF_CODE SYSRES_CONST_OURFIRM_REQUISITE_CODE SYSRES_CONST_OURFIRM_VAR SYSRES_CONST_OUTGOING_WORK_RULE_TYPE_CODE SYSRES_CONST_PICK_NEGATIVE_RESULT SYSRES_CONST_PICK_POSITIVE_RESULT SYSRES_CONST_PICK_REQUISITE SYSRES_CONST_PICK_REQUISITE_TYPE SYSRES_CONST_PICK_TYPE_CHAR SYSRES_CONST_PLAN_STATUS_REQUISITE_CODE SYSRES_CONST_PLATFORM_VERSION_COMMENT SYSRES_CONST_PLUGINS_SETTINGS_DESCRIPTION_REQUISITE_CODE SYSRES_CONST_POSITIVE_PICK_VALUE SYSRES_CONST_POWER_TO_CREATE_ACTION_CODE SYSRES_CONST_POWER_TO_SIGN_ACTION_CODE SYSRES_CONST_PRIORITY_REQUISITE_CODE SYSRES_CONST_QUALIFIED_TASK_TYPE SYSRES_CONST_QUALIFIED_TASK_TYPE_CODE SYSRES_CONST_RECSTAT_REQUISITE_CODE SYSRES_CONST_RED_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_REF_ID_T_REF_TYPE_REQUISITE_CODE SYSRES_CONST_REF_REQUISITE SYSRES_CONST_REF_REQUISITE_TYPE SYSRES_CONST_REF_REQUISITES_REFERENCE_CODE_SELECTED_REQUISITE SYSRES_CONST_REFERENCE_RECORD_HISTORY_CREATE_ACTION_CODE SYSRES_CONST_REFERENCE_RECORD_HISTORY_DELETE_ACTION_CODE SYSRES_CONST_REFERENCE_RECORD_HISTORY_MODIFY_ACTION_CODE SYSRES_CONST_REFERENCE_TYPE_CHAR SYSRES_CONST_REFERENCE_TYPE_REQUISITE_NAME SYSRES_CONST_REFERENCES_ADD_PARAMS_REQUISITE_CODE SYSRES_CONST_REFERENCES_DISPLAY_REQUISITE_REQUISITE_CODE SYSRES_CONST_REMOTE_SERVER_STATUS_WORKING SYSRES_CONST_REMOTE_SERVER_TYPE_MAIN SYSRES_CONST_REMOTE_SERVER_TYPE_SECONDARY SYSRES_CONST_REMOTE_USER_FLAG_VALUE_CODE SYSRES_CONST_REPORT_APP_EDITOR_INTERNAL SYSRES_CONST_REPORT_BASE_REPORT_ID_REQUISITE_CODE SYSRES_CONST_REPORT_BASE_REPORT_REQUISITE_CODE SYSRES_CONST_REPORT_SCRIPT_REQUISITE_CODE SYSRES_CONST_REPORT_TEMPLATE_REQUISITE_CODE SYSRES_CONST_REPORT_VIEWER_CODE_REQUISITE_CODE SYSRES_CONST_REQ_ALLOW_COMPONENT_DEFAULT_VALUE SYSRES_CONST_REQ_ALLOW_RECORD_DEFAULT_VALUE SYSRES_CONST_REQ_ALLOW_SERVER_COMPONENT_DEFAULT_VALUE SYSRES_CONST_REQ_MODE_AVAILABLE_CODE SYSRES_CONST_REQ_MODE_EDIT_CODE SYSRES_CONST_REQ_MODE_HIDDEN_CODE SYSRES_CONST_REQ_MODE_NOT_AVAILABLE_CODE SYSRES_CONST_REQ_MODE_VIEW_CODE SYSRES_CONST_REQ_NUMBER_REQUISITE_CODE SYSRES_CONST_REQ_SECTION_VALUE SYSRES_CONST_REQ_TYPE_VALUE SYSRES_CONST_REQUISITE_FORMAT_BY_UNIT SYSRES_CONST_REQUISITE_FORMAT_DATE_FULL SYSRES_CONST_REQUISITE_FORMAT_DATE_TIME SYSRES_CONST_REQUISITE_FORMAT_LEFT SYSRES_CONST_REQUISITE_FORMAT_RIGHT SYSRES_CONST_REQUISITE_FORMAT_WITHOUT_UNIT SYSRES_CONST_REQUISITE_NUMBER_REQUISITE_CODE SYSRES_CONST_REQUISITE_SECTION_ACTIONS SYSRES_CONST_REQUISITE_SECTION_BUTTON SYSRES_CONST_REQUISITE_SECTION_BUTTONS SYSRES_CONST_REQUISITE_SECTION_CARD SYSRES_CONST_REQUISITE_SECTION_TABLE SYSRES_CONST_REQUISITE_SECTION_TABLE10 SYSRES_CONST_REQUISITE_SECTION_TABLE11 SYSRES_CONST_REQUISITE_SECTION_TABLE12 SYSRES_CONST_REQUISITE_SECTION_TABLE13 SYSRES_CONST_REQUISITE_SECTION_TABLE14 SYSRES_CONST_REQUISITE_SECTION_TABLE15 SYSRES_CONST_REQUISITE_SECTION_TABLE16 SYSRES_CONST_REQUISITE_SECTION_TABLE17 SYSRES_CONST_REQUISITE_SECTION_TABLE18 SYSRES_CONST_REQUISITE_SECTION_TABLE19 SYSRES_CONST_REQUISITE_SECTION_TABLE2 SYSRES_CONST_REQUISITE_SECTION_TABLE20 SYSRES_CONST_REQUISITE_SECTION_TABLE21 SYSRES_CONST_REQUISITE_SECTION_TABLE22 SYSRES_CONST_REQUISITE_SECTION_TABLE23 SYSRES_CONST_REQUISITE_SECTION_TABLE24 SYSRES_CONST_REQUISITE_SECTION_TABLE3 SYSRES_CONST_REQUISITE_SECTION_TABLE4 SYSRES_CONST_REQUISITE_SECTION_TABLE5 SYSRES_CONST_REQUISITE_SECTION_TABLE6 SYSRES_CONST_REQUISITE_SECTION_TABLE7 SYSRES_CONST_REQUISITE_SECTION_TABLE8 SYSRES_CONST_REQUISITE_SECTION_TABLE9 SYSRES_CONST_REQUISITES_PSEUDOREFERENCE_REQUISITE_NUMBER_REQUISITE_CODE SYSRES_CONST_RIGHT_ALIGNMENT_CODE SYSRES_CONST_ROLES_REFERENCE_CODE SYSRES_CONST_ROUTE_STEP_AFTER_RUS SYSRES_CONST_ROUTE_STEP_AND_CONDITION_RUS SYSRES_CONST_ROUTE_STEP_OR_CONDITION_RUS SYSRES_CONST_ROUTE_TYPE_COMPLEX SYSRES_CONST_ROUTE_TYPE_PARALLEL SYSRES_CONST_ROUTE_TYPE_SERIAL SYSRES_CONST_SBDATASETDESC_NEGATIVE_VALUE SYSRES_CONST_SBDATASETDESC_POSITIVE_VALUE SYSRES_CONST_SBVIEWSDESC_POSITIVE_VALUE SYSRES_CONST_SCRIPT_BLOCK_DESCRIPTION SYSRES_CONST_SEARCH_BY_TEXT_REQUISITE_CODE SYSRES_CONST_SEARCHES_COMPONENT_CONTENT SYSRES_CONST_SEARCHES_CRITERIA_ACTION_NAME SYSRES_CONST_SEARCHES_EDOC_CONTENT SYSRES_CONST_SEARCHES_FOLDER_CONTENT SYSRES_CONST_SEARCHES_JOB_CONTENT SYSRES_CONST_SEARCHES_REFERENCE_CODE SYSRES_CONST_SEARCHES_TASK_CONTENT SYSRES_CONST_SECOND_CHAR SYSRES_CONST_SECTION_REQUISITE_ACTIONS_VALUE SYSRES_CONST_SECTION_REQUISITE_CARD_VALUE SYSRES_CONST_SECTION_REQUISITE_CODE SYSRES_CONST_SECTION_REQUISITE_DETAIL_1_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_2_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_3_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_4_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_5_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_6_VALUE SYSRES_CONST_SELECT_REFERENCE_MODE_NAME SYSRES_CONST_SELECT_TYPE_SELECTABLE SYSRES_CONST_SELECT_TYPE_SELECTABLE_ONLY_CHILD SYSRES_CONST_SELECT_TYPE_SELECTABLE_WITH_CHILD SYSRES_CONST_SELECT_TYPE_UNSLECTABLE SYSRES_CONST_SERVER_TYPE_MAIN SYSRES_CONST_SERVICE_USER_CATEGORY_FIELD_VALUE SYSRES_CONST_SETTINGS_USER_REQUISITE_CODE SYSRES_CONST_SIGNATURE_AND_ENCODE_CERTIFICATE_TYPE_CODE SYSRES_CONST_SIGNATURE_CERTIFICATE_TYPE_CODE SYSRES_CONST_SINGULAR_TITLE_REQUISITE_CODE SYSRES_CONST_SQL_SERVER_AUTHENTIFICATION_FLAG_VALUE_CODE SYSRES_CONST_SQL_SERVER_ENCODE_AUTHENTIFICATION_FLAG_VALUE_CODE SYSRES_CONST_STANDART_ROUTE_REFERENCE_CODE SYSRES_CONST_STANDART_ROUTE_REFERENCE_COMMENT_REQUISITE_CODE SYSRES_CONST_STANDART_ROUTES_GROUPS_REFERENCE_CODE SYSRES_CONST_STATE_REQ_NAME SYSRES_CONST_STATE_REQUISITE_ACTIVE_VALUE SYSRES_CONST_STATE_REQUISITE_CLOSED_VALUE SYSRES_CONST_STATE_REQUISITE_CODE SYSRES_CONST_STATIC_ROLE_TYPE_CODE SYSRES_CONST_STATUS_PLAN_DEFAULT_VALUE SYSRES_CONST_STATUS_VALUE_AUTOCLEANING SYSRES_CONST_STATUS_VALUE_BLUE_SQUARE SYSRES_CONST_STATUS_VALUE_COMPLETE SYSRES_CONST_STATUS_VALUE_GREEN_SQUARE SYSRES_CONST_STATUS_VALUE_ORANGE_SQUARE SYSRES_CONST_STATUS_VALUE_PURPLE_SQUARE SYSRES_CONST_STATUS_VALUE_RED_SQUARE SYSRES_CONST_STATUS_VALUE_SUSPEND SYSRES_CONST_STATUS_VALUE_YELLOW_SQUARE SYSRES_CONST_STDROUTE_SHOW_TO_USERS_REQUISITE_CODE SYSRES_CONST_STORAGE_TYPE_FILE SYSRES_CONST_STORAGE_TYPE_SQL_SERVER SYSRES_CONST_STR_REQUISITE SYSRES_CONST_STRIKEOUT_LIFE_CYCLE_STAGE_DRAW_STYLE SYSRES_CONST_STRING_FORMAT_LEFT_ALIGN_CHAR SYSRES_CONST_STRING_FORMAT_RIGHT_ALIGN_CHAR SYSRES_CONST_STRING_REQUISITE_CODE SYSRES_CONST_STRING_REQUISITE_TYPE SYSRES_CONST_STRING_TYPE_CHAR SYSRES_CONST_SUBSTITUTES_PSEUDOREFERENCE_CODE SYSRES_CONST_SUBTASK_BLOCK_DESCRIPTION SYSRES_CONST_SYSTEM_SETTING_CURRENT_USER_PARAM_VALUE SYSRES_CONST_SYSTEM_SETTING_EMPTY_VALUE_PARAM_VALUE SYSRES_CONST_SYSTEM_VERSION_COMMENT SYSRES_CONST_TASK_ACCESS_TYPE_ALL SYSRES_CONST_TASK_ACCESS_TYPE_ALL_MEMBERS SYSRES_CONST_TASK_ACCESS_TYPE_MANUAL SYSRES_CONST_TASK_ENCODE_TYPE_CERTIFICATION SYSRES_CONST_TASK_ENCODE_TYPE_CERTIFICATION_AND_PASSWORD SYSRES_CONST_TASK_ENCODE_TYPE_NONE SYSRES_CONST_TASK_ENCODE_TYPE_PASSWORD SYSRES_CONST_TASK_ROUTE_ALL_CONDITION SYSRES_CONST_TASK_ROUTE_AND_CONDITION SYSRES_CONST_TASK_ROUTE_OR_CONDITION SYSRES_CONST_TASK_STATE_ABORTED SYSRES_CONST_TASK_STATE_COMPLETE SYSRES_CONST_TASK_STATE_CONTINUED SYSRES_CONST_TASK_STATE_CONTROL SYSRES_CONST_TASK_STATE_INIT SYSRES_CONST_TASK_STATE_WORKING SYSRES_CONST_TASK_TITLE SYSRES_CONST_TASK_TYPES_GROUPS_REFERENCE_CODE SYSRES_CONST_TASK_TYPES_REFERENCE_CODE SYSRES_CONST_TEMPLATES_REFERENCE_CODE SYSRES_CONST_TEST_DATE_REQUISITE_NAME SYSRES_CONST_TEST_DEV_DATABASE_NAME SYSRES_CONST_TEST_DEV_SYSTEM_CODE SYSRES_CONST_TEST_EDMS_DATABASE_NAME SYSRES_CONST_TEST_EDMS_MAIN_CODE SYSRES_CONST_TEST_EDMS_MAIN_DB_NAME SYSRES_CONST_TEST_EDMS_SECOND_CODE SYSRES_CONST_TEST_EDMS_SECOND_DB_NAME SYSRES_CONST_TEST_EDMS_SYSTEM_CODE SYSRES_CONST_TEST_NUMERIC_REQUISITE_NAME SYSRES_CONST_TEXT_REQUISITE SYSRES_CONST_TEXT_REQUISITE_CODE SYSRES_CONST_TEXT_REQUISITE_TYPE SYSRES_CONST_TEXT_TYPE_CHAR SYSRES_CONST_TYPE_CODE_REQUISITE_CODE SYSRES_CONST_TYPE_REQUISITE_CODE SYSRES_CONST_UNDEFINED_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_UNITS_SECTION_ID_REQUISITE_CODE SYSRES_CONST_UNITS_SECTION_REQUISITE_CODE SYSRES_CONST_UNOPERATING_RECORD_FLAG_VALUE_CODE SYSRES_CONST_UNSTORED_DATA_REQUISITE_CODE SYSRES_CONST_UNSTORED_DATA_REQUISITE_NAME SYSRES_CONST_USE_ACCESS_TYPE_CODE SYSRES_CONST_USE_ACCESS_TYPE_NAME SYSRES_CONST_USER_ACCOUNT_TYPE_VALUE_CODE SYSRES_CONST_USER_ADDITIONAL_INFORMATION_REQUISITE_CODE SYSRES_CONST_USER_AND_GROUP_ID_FROM_PSEUDOREFERENCE_REQUISITE_CODE SYSRES_CONST_USER_CATEGORY_NORMAL SYSRES_CONST_USER_CERTIFICATE_REQUISITE_CODE SYSRES_CONST_USER_CERTIFICATE_STATE_REQUISITE_CODE SYSRES_CONST_USER_CERTIFICATE_SUBJECT_NAME_REQUISITE_CODE SYSRES_CONST_USER_CERTIFICATE_THUMBPRINT_REQUISITE_CODE SYSRES_CONST_USER_COMMON_CATEGORY SYSRES_CONST_USER_COMMON_CATEGORY_CODE SYSRES_CONST_USER_FULL_NAME_REQUISITE_CODE SYSRES_CONST_USER_GROUP_TYPE_REQUISITE_CODE SYSRES_CONST_USER_LOGIN_REQUISITE_CODE SYSRES_CONST_USER_REMOTE_CONTROLLER_REQUISITE_CODE SYSRES_CONST_USER_REMOTE_SYSTEM_REQUISITE_CODE SYSRES_CONST_USER_RIGHTS_T_REQUISITE_CODE SYSRES_CONST_USER_SERVER_NAME_REQUISITE_CODE SYSRES_CONST_USER_SERVICE_CATEGORY SYSRES_CONST_USER_SERVICE_CATEGORY_CODE SYSRES_CONST_USER_STATUS_ADMINISTRATOR_CODE SYSRES_CONST_USER_STATUS_ADMINISTRATOR_NAME SYSRES_CONST_USER_STATUS_DEVELOPER_CODE SYSRES_CONST_USER_STATUS_DEVELOPER_NAME SYSRES_CONST_USER_STATUS_DISABLED_CODE SYSRES_CONST_USER_STATUS_DISABLED_NAME SYSRES_CONST_USER_STATUS_SYSTEM_DEVELOPER_CODE SYSRES_CONST_USER_STATUS_USER_CODE SYSRES_CONST_USER_STATUS_USER_NAME SYSRES_CONST_USER_STATUS_USER_NAME_DEPRECATED SYSRES_CONST_USER_TYPE_FIELD_VALUE_USER SYSRES_CONST_USER_TYPE_REQUISITE_CODE SYSRES_CONST_USERS_CONTROLLER_REQUISITE_CODE SYSRES_CONST_USERS_IS_MAIN_SERVER_REQUISITE_CODE SYSRES_CONST_USERS_REFERENCE_CODE SYSRES_CONST_USERS_REGISTRATION_CERTIFICATES_ACTION_NAME SYSRES_CONST_USERS_REQUISITE_CODE SYSRES_CONST_USERS_SYSTEM_REQUISITE_CODE SYSRES_CONST_USERS_USER_ACCESS_RIGHTS_TYPR_REQUISITE_CODE SYSRES_CONST_USERS_USER_AUTHENTICATION_REQUISITE_CODE SYSRES_CONST_USERS_USER_COMPONENT_REQUISITE_CODE SYSRES_CONST_USERS_USER_GROUP_REQUISITE_CODE SYSRES_CONST_USERS_VIEW_CERTIFICATES_ACTION_NAME SYSRES_CONST_VIEW_DEFAULT_CODE SYSRES_CONST_VIEW_DEFAULT_NAME SYSRES_CONST_VIEWER_REQUISITE_CODE SYSRES_CONST_WAITING_BLOCK_DESCRIPTION SYSRES_CONST_WIZARD_FORM_LABEL_TEST_STRING  SYSRES_CONST_WIZARD_QUERY_PARAM_HEIGHT_ETALON_STRING SYSRES_CONST_WIZARD_REFERENCE_COMMENT_REQUISITE_CODE SYSRES_CONST_WORK_RULES_DESCRIPTION_REQUISITE_CODE SYSRES_CONST_WORK_TIME_CALENDAR_REFERENCE_CODE SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE_CODE SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE_CODE_RUS SYSRES_CONST_WORK_WORKFLOW_SOFT_ROUTE_TYPE_VALUE_CODE_RUS SYSRES_CONST_WORKFLOW_ROUTE_TYPR_HARD SYSRES_CONST_WORKFLOW_ROUTE_TYPR_SOFT SYSRES_CONST_XML_ENCODING SYSRES_CONST_XREC_STAT_REQUISITE_CODE SYSRES_CONST_XRECID_FIELD_NAME SYSRES_CONST_YES SYSRES_CONST_YES_NO_2_REQUISITE_CODE SYSRES_CONST_YES_NO_REQUISITE_CODE SYSRES_CONST_YES_NO_T_REF_TYPE_REQUISITE_CODE SYSRES_CONST_YES_PICK_VALUE SYSRES_CONST_YES_VALUE \",a=\"CR FALSE nil NO_VALUE NULL TAB TRUE YES_VALUE \",o=\"ADMINISTRATORS_GROUP_NAME CUSTOMIZERS_GROUP_NAME DEVELOPERS_GROUP_NAME SERVICE_USERS_GROUP_NAME \",s=\"DECISION_BLOCK_FIRST_OPERAND_PROPERTY DECISION_BLOCK_NAME_PROPERTY DECISION_BLOCK_OPERATION_PROPERTY DECISION_BLOCK_RESULT_TYPE_PROPERTY DECISION_BLOCK_SECOND_OPERAND_PROPERTY \",l=\"ANY_FILE_EXTENTION COMPRESSED_DOCUMENT_EXTENSION EXTENDED_DOCUMENT_EXTENSION SHORT_COMPRESSED_DOCUMENT_EXTENSION SHORT_EXTENDED_DOCUMENT_EXTENSION \",c=\"JOB_BLOCK_ABORT_DEADLINE_PROPERTY JOB_BLOCK_AFTER_FINISH_EVENT JOB_BLOCK_AFTER_QUERY_PARAMETERS_EVENT JOB_BLOCK_ATTACHMENT_PROPERTY JOB_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY JOB_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY JOB_BLOCK_BEFORE_QUERY_PARAMETERS_EVENT JOB_BLOCK_BEFORE_START_EVENT JOB_BLOCK_CREATED_JOBS_PROPERTY JOB_BLOCK_DEADLINE_PROPERTY JOB_BLOCK_EXECUTION_RESULTS_PROPERTY JOB_BLOCK_IS_PARALLEL_PROPERTY JOB_BLOCK_IS_RELATIVE_ABORT_DEADLINE_PROPERTY JOB_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY JOB_BLOCK_JOB_TEXT_PROPERTY JOB_BLOCK_NAME_PROPERTY JOB_BLOCK_NEED_SIGN_ON_PERFORM_PROPERTY JOB_BLOCK_PERFORMER_PROPERTY JOB_BLOCK_RELATIVE_ABORT_DEADLINE_TYPE_PROPERTY JOB_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY JOB_BLOCK_SUBJECT_PROPERTY \",u=\"ENGLISH_LANGUAGE_CODE RUSSIAN_LANGUAGE_CODE \",d=\"smHidden smMaximized smMinimized smNormal wmNo wmYes \",p=\"COMPONENT_TOKEN_LINK_KIND DOCUMENT_LINK_KIND EDOCUMENT_LINK_KIND FOLDER_LINK_KIND JOB_LINK_KIND REFERENCE_LINK_KIND TASK_LINK_KIND \",h=\"COMPONENT_TOKEN_LOCK_TYPE EDOCUMENT_VERSION_LOCK_TYPE \",f=\"MONITOR_BLOCK_AFTER_FINISH_EVENT MONITOR_BLOCK_BEFORE_START_EVENT MONITOR_BLOCK_DEADLINE_PROPERTY MONITOR_BLOCK_INTERVAL_PROPERTY MONITOR_BLOCK_INTERVAL_TYPE_PROPERTY MONITOR_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY MONITOR_BLOCK_NAME_PROPERTY MONITOR_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY MONITOR_BLOCK_SEARCH_SCRIPT_PROPERTY \",_=\"NOTICE_BLOCK_AFTER_FINISH_EVENT NOTICE_BLOCK_ATTACHMENT_PROPERTY NOTICE_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY NOTICE_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY NOTICE_BLOCK_BEFORE_START_EVENT NOTICE_BLOCK_CREATED_NOTICES_PROPERTY NOTICE_BLOCK_DEADLINE_PROPERTY NOTICE_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY NOTICE_BLOCK_NAME_PROPERTY NOTICE_BLOCK_NOTICE_TEXT_PROPERTY NOTICE_BLOCK_PERFORMER_PROPERTY NOTICE_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY NOTICE_BLOCK_SUBJECT_PROPERTY \",m=\"dseAfterCancel dseAfterClose dseAfterDelete dseAfterDeleteOutOfTransaction dseAfterInsert dseAfterOpen dseAfterScroll dseAfterUpdate dseAfterUpdateOutOfTransaction dseBeforeCancel dseBeforeClose dseBeforeDelete dseBeforeDetailUpdate dseBeforeInsert dseBeforeOpen dseBeforeUpdate dseOnAnyRequisiteChange dseOnCloseRecord dseOnDeleteError dseOnOpenRecord dseOnPrepareUpdate dseOnUpdateError dseOnUpdateRatifiedRecord dseOnValidDelete dseOnValidUpdate reOnChange reOnChangeValues SELECTION_BEGIN_ROUTE_EVENT SELECTION_END_ROUTE_EVENT \",g=\"CURRENT_PERIOD_IS_REQUIRED PREVIOUS_CARD_TYPE_NAME SHOW_RECORD_PROPERTIES_FORM \",b=\"ACCESS_RIGHTS_SETTING_DIALOG_CODE ADMINISTRATOR_USER_CODE ANALYTIC_REPORT_TYPE asrtHideLocal asrtHideRemote CALCULATED_ROLE_TYPE_CODE COMPONENTS_REFERENCE_DEVELOPER_VIEW_CODE DCTS_TEST_PROTOCOLS_FOLDER_PATH E_EDOC_VERSION_ALREADY_APPROVINGLY_SIGNED E_EDOC_VERSION_ALREADY_APPROVINGLY_SIGNED_BY_USER E_EDOC_VERSION_ALREDY_SIGNED E_EDOC_VERSION_ALREDY_SIGNED_BY_USER EDOC_TYPES_CODE_REQUISITE_FIELD_NAME EDOCUMENTS_ALIAS_NAME FILES_FOLDER_PATH FILTER_OPERANDS_DELIMITER FILTER_OPERATIONS_DELIMITER FORMCARD_NAME FORMLIST_NAME GET_EXTENDED_DOCUMENT_EXTENSION_CREATION_MODE GET_EXTENDED_DOCUMENT_EXTENSION_IMPORT_MODE INTEGRATED_REPORT_TYPE IS_BUILDER_APPLICATION_ROLE IS_BUILDER_APPLICATION_ROLE2 IS_BUILDER_USERS ISBSYSDEV LOG_FOLDER_PATH mbCancel mbNo mbNoToAll mbOK mbYes mbYesToAll MEMORY_DATASET_DESRIPTIONS_FILENAME mrNo mrNoToAll mrYes mrYesToAll MULTIPLE_SELECT_DIALOG_CODE NONOPERATING_RECORD_FLAG_FEMININE NONOPERATING_RECORD_FLAG_MASCULINE OPERATING_RECORD_FLAG_FEMININE OPERATING_RECORD_FLAG_MASCULINE PROFILING_SETTINGS_COMMON_SETTINGS_CODE_VALUE PROGRAM_INITIATED_LOOKUP_ACTION ratDelete ratEdit ratInsert REPORT_TYPE REQUIRED_PICK_VALUES_VARIABLE rmCard rmList SBRTE_PROGID_DEV SBRTE_PROGID_RELEASE STATIC_ROLE_TYPE_CODE SUPPRESS_EMPTY_TEMPLATE_CREATION SYSTEM_USER_CODE UPDATE_DIALOG_DATASET USED_IN_OBJECT_HINT_PARAM USER_INITIATED_LOOKUP_ACTION USER_NAME_FORMAT USER_SELECTION_RESTRICTIONS WORKFLOW_TEST_PROTOCOLS_FOLDER_PATH ELS_SUBTYPE_CONTROL_NAME ELS_FOLDER_KIND_CONTROL_NAME REPEAT_PROCESS_CURRENT_OBJECT_EXCEPTION_NAME \",v=\"PRIVILEGE_COMPONENT_FULL_ACCESS PRIVILEGE_DEVELOPMENT_EXPORT PRIVILEGE_DEVELOPMENT_IMPORT PRIVILEGE_DOCUMENT_DELETE PRIVILEGE_ESD PRIVILEGE_FOLDER_DELETE PRIVILEGE_MANAGE_ACCESS_RIGHTS PRIVILEGE_MANAGE_REPLICATION PRIVILEGE_MANAGE_SESSION_SERVER PRIVILEGE_OBJECT_FULL_ACCESS PRIVILEGE_OBJECT_VIEW PRIVILEGE_RESERVE_LICENSE PRIVILEGE_SYSTEM_CUSTOMIZE PRIVILEGE_SYSTEM_DEVELOP PRIVILEGE_SYSTEM_INSTALL PRIVILEGE_TASK_DELETE PRIVILEGE_USER_PLUGIN_SETTINGS_CUSTOMIZE PRIVILEGES_PSEUDOREFERENCE_CODE \",E=\"ACCESS_TYPES_PSEUDOREFERENCE_CODE ALL_AVAILABLE_COMPONENTS_PSEUDOREFERENCE_CODE ALL_AVAILABLE_PRIVILEGES_PSEUDOREFERENCE_CODE ALL_REPLICATE_COMPONENTS_PSEUDOREFERENCE_CODE AVAILABLE_DEVELOPERS_COMPONENTS_PSEUDOREFERENCE_CODE COMPONENTS_PSEUDOREFERENCE_CODE FILTRATER_SETTINGS_CONFLICTS_PSEUDOREFERENCE_CODE GROUPS_PSEUDOREFERENCE_CODE RECEIVE_PROTOCOL_PSEUDOREFERENCE_CODE REFERENCE_REQUISITE_PSEUDOREFERENCE_CODE REFERENCE_REQUISITES_PSEUDOREFERENCE_CODE REFTYPES_PSEUDOREFERENCE_CODE REPLICATION_SEANCES_DIARY_PSEUDOREFERENCE_CODE SEND_PROTOCOL_PSEUDOREFERENCE_CODE SUBSTITUTES_PSEUDOREFERENCE_CODE SYSTEM_SETTINGS_PSEUDOREFERENCE_CODE UNITS_PSEUDOREFERENCE_CODE USERS_PSEUDOREFERENCE_CODE VIEWERS_PSEUDOREFERENCE_CODE \",y=\"CERTIFICATE_TYPE_ENCRYPT CERTIFICATE_TYPE_SIGN CERTIFICATE_TYPE_SIGN_AND_ENCRYPT \",S=\"STORAGE_TYPE_FILE STORAGE_TYPE_NAS_CIFS STORAGE_TYPE_SAPERION STORAGE_TYPE_SQL_SERVER \",C=\"COMPTYPE2_REQUISITE_DOCUMENTS_VALUE COMPTYPE2_REQUISITE_TASKS_VALUE COMPTYPE2_REQUISITE_FOLDERS_VALUE COMPTYPE2_REQUISITE_REFERENCES_VALUE \",T=\"SYSREQ_CODE SYSREQ_COMPTYPE2 SYSREQ_CONST_AVAILABLE_FOR_WEB SYSREQ_CONST_COMMON_CODE SYSREQ_CONST_COMMON_VALUE SYSREQ_CONST_FIRM_CODE SYSREQ_CONST_FIRM_STATUS SYSREQ_CONST_FIRM_VALUE SYSREQ_CONST_SERVER_STATUS SYSREQ_CONTENTS SYSREQ_DATE_OPEN SYSREQ_DATE_CLOSE SYSREQ_DESCRIPTION SYSREQ_DESCRIPTION_LOCALIZE_ID SYSREQ_DOUBLE SYSREQ_EDOC_ACCESS_TYPE SYSREQ_EDOC_AUTHOR SYSREQ_EDOC_CREATED SYSREQ_EDOC_DELEGATE_RIGHTS_REQUISITE_CODE SYSREQ_EDOC_EDITOR SYSREQ_EDOC_ENCODE_TYPE SYSREQ_EDOC_ENCRYPTION_PLUGIN_NAME SYSREQ_EDOC_ENCRYPTION_PLUGIN_VERSION SYSREQ_EDOC_EXPORT_DATE SYSREQ_EDOC_EXPORTER SYSREQ_EDOC_KIND SYSREQ_EDOC_LIFE_STAGE_NAME SYSREQ_EDOC_LOCKED_FOR_SERVER_CODE SYSREQ_EDOC_MODIFIED SYSREQ_EDOC_NAME SYSREQ_EDOC_NOTE SYSREQ_EDOC_QUALIFIED_ID SYSREQ_EDOC_SESSION_KEY SYSREQ_EDOC_SESSION_KEY_ENCRYPTION_PLUGIN_NAME SYSREQ_EDOC_SESSION_KEY_ENCRYPTION_PLUGIN_VERSION SYSREQ_EDOC_SIGNATURE_TYPE SYSREQ_EDOC_SIGNED SYSREQ_EDOC_STORAGE SYSREQ_EDOC_STORAGES_ARCHIVE_STORAGE SYSREQ_EDOC_STORAGES_CHECK_RIGHTS SYSREQ_EDOC_STORAGES_COMPUTER_NAME SYSREQ_EDOC_STORAGES_EDIT_IN_STORAGE SYSREQ_EDOC_STORAGES_EXECUTIVE_STORAGE SYSREQ_EDOC_STORAGES_FUNCTION SYSREQ_EDOC_STORAGES_INITIALIZED SYSREQ_EDOC_STORAGES_LOCAL_PATH SYSREQ_EDOC_STORAGES_SAPERION_DATABASE_NAME SYSREQ_EDOC_STORAGES_SEARCH_BY_TEXT SYSREQ_EDOC_STORAGES_SERVER_NAME SYSREQ_EDOC_STORAGES_SHARED_SOURCE_NAME SYSREQ_EDOC_STORAGES_TYPE SYSREQ_EDOC_TEXT_MODIFIED SYSREQ_EDOC_TYPE_ACT_CODE SYSREQ_EDOC_TYPE_ACT_DESCRIPTION SYSREQ_EDOC_TYPE_ACT_DESCRIPTION_LOCALIZE_ID SYSREQ_EDOC_TYPE_ACT_ON_EXECUTE SYSREQ_EDOC_TYPE_ACT_ON_EXECUTE_EXISTS SYSREQ_EDOC_TYPE_ACT_SECTION SYSREQ_EDOC_TYPE_ADD_PARAMS SYSREQ_EDOC_TYPE_COMMENT SYSREQ_EDOC_TYPE_EVENT_TEXT SYSREQ_EDOC_TYPE_NAME_IN_SINGULAR SYSREQ_EDOC_TYPE_NAME_IN_SINGULAR_LOCALIZE_ID SYSREQ_EDOC_TYPE_NAME_LOCALIZE_ID SYSREQ_EDOC_TYPE_NUMERATION_METHOD SYSREQ_EDOC_TYPE_PSEUDO_REQUISITE_CODE SYSREQ_EDOC_TYPE_REQ_CODE SYSREQ_EDOC_TYPE_REQ_DESCRIPTION SYSREQ_EDOC_TYPE_REQ_DESCRIPTION_LOCALIZE_ID SYSREQ_EDOC_TYPE_REQ_IS_LEADING SYSREQ_EDOC_TYPE_REQ_IS_REQUIRED SYSREQ_EDOC_TYPE_REQ_NUMBER SYSREQ_EDOC_TYPE_REQ_ON_CHANGE SYSREQ_EDOC_TYPE_REQ_ON_CHANGE_EXISTS SYSREQ_EDOC_TYPE_REQ_ON_SELECT SYSREQ_EDOC_TYPE_REQ_ON_SELECT_KIND SYSREQ_EDOC_TYPE_REQ_SECTION SYSREQ_EDOC_TYPE_VIEW_CARD SYSREQ_EDOC_TYPE_VIEW_CODE SYSREQ_EDOC_TYPE_VIEW_COMMENT SYSREQ_EDOC_TYPE_VIEW_IS_MAIN SYSREQ_EDOC_TYPE_VIEW_NAME SYSREQ_EDOC_TYPE_VIEW_NAME_LOCALIZE_ID SYSREQ_EDOC_VERSION_AUTHOR SYSREQ_EDOC_VERSION_CRC SYSREQ_EDOC_VERSION_DATA SYSREQ_EDOC_VERSION_EDITOR SYSREQ_EDOC_VERSION_EXPORT_DATE SYSREQ_EDOC_VERSION_EXPORTER SYSREQ_EDOC_VERSION_HIDDEN SYSREQ_EDOC_VERSION_LIFE_STAGE SYSREQ_EDOC_VERSION_MODIFIED SYSREQ_EDOC_VERSION_NOTE SYSREQ_EDOC_VERSION_SIGNATURE_TYPE SYSREQ_EDOC_VERSION_SIGNED SYSREQ_EDOC_VERSION_SIZE SYSREQ_EDOC_VERSION_SOURCE SYSREQ_EDOC_VERSION_TEXT_MODIFIED SYSREQ_EDOCKIND_DEFAULT_VERSION_STATE_CODE SYSREQ_FOLDER_KIND SYSREQ_FUNC_CATEGORY SYSREQ_FUNC_COMMENT SYSREQ_FUNC_GROUP SYSREQ_FUNC_GROUP_COMMENT SYSREQ_FUNC_GROUP_NUMBER SYSREQ_FUNC_HELP SYSREQ_FUNC_PARAM_DEF_VALUE SYSREQ_FUNC_PARAM_IDENT SYSREQ_FUNC_PARAM_NUMBER SYSREQ_FUNC_PARAM_TYPE SYSREQ_FUNC_TEXT SYSREQ_GROUP_CATEGORY SYSREQ_ID SYSREQ_LAST_UPDATE SYSREQ_LEADER_REFERENCE SYSREQ_LINE_NUMBER SYSREQ_MAIN_RECORD_ID SYSREQ_NAME SYSREQ_NAME_LOCALIZE_ID SYSREQ_NOTE SYSREQ_ORIGINAL_RECORD SYSREQ_OUR_FIRM SYSREQ_PROFILING_SETTINGS_BATCH_LOGING SYSREQ_PROFILING_SETTINGS_BATCH_SIZE SYSREQ_PROFILING_SETTINGS_PROFILING_ENABLED SYSREQ_PROFILING_SETTINGS_SQL_PROFILING_ENABLED SYSREQ_PROFILING_SETTINGS_START_LOGGED SYSREQ_RECORD_STATUS SYSREQ_REF_REQ_FIELD_NAME SYSREQ_REF_REQ_FORMAT SYSREQ_REF_REQ_GENERATED SYSREQ_REF_REQ_LENGTH SYSREQ_REF_REQ_PRECISION SYSREQ_REF_REQ_REFERENCE SYSREQ_REF_REQ_SECTION SYSREQ_REF_REQ_STORED SYSREQ_REF_REQ_TOKENS SYSREQ_REF_REQ_TYPE SYSREQ_REF_REQ_VIEW SYSREQ_REF_TYPE_ACT_CODE SYSREQ_REF_TYPE_ACT_DESCRIPTION SYSREQ_REF_TYPE_ACT_DESCRIPTION_LOCALIZE_ID SYSREQ_REF_TYPE_ACT_ON_EXECUTE SYSREQ_REF_TYPE_ACT_ON_EXECUTE_EXISTS SYSREQ_REF_TYPE_ACT_SECTION SYSREQ_REF_TYPE_ADD_PARAMS SYSREQ_REF_TYPE_COMMENT SYSREQ_REF_TYPE_COMMON_SETTINGS SYSREQ_REF_TYPE_DISPLAY_REQUISITE_NAME SYSREQ_REF_TYPE_EVENT_TEXT SYSREQ_REF_TYPE_MAIN_LEADING_REF SYSREQ_REF_TYPE_NAME_IN_SINGULAR SYSREQ_REF_TYPE_NAME_IN_SINGULAR_LOCALIZE_ID SYSREQ_REF_TYPE_NAME_LOCALIZE_ID SYSREQ_REF_TYPE_NUMERATION_METHOD SYSREQ_REF_TYPE_REQ_CODE SYSREQ_REF_TYPE_REQ_DESCRIPTION SYSREQ_REF_TYPE_REQ_DESCRIPTION_LOCALIZE_ID SYSREQ_REF_TYPE_REQ_IS_CONTROL SYSREQ_REF_TYPE_REQ_IS_FILTER SYSREQ_REF_TYPE_REQ_IS_LEADING SYSREQ_REF_TYPE_REQ_IS_REQUIRED SYSREQ_REF_TYPE_REQ_NUMBER SYSREQ_REF_TYPE_REQ_ON_CHANGE SYSREQ_REF_TYPE_REQ_ON_CHANGE_EXISTS SYSREQ_REF_TYPE_REQ_ON_SELECT SYSREQ_REF_TYPE_REQ_ON_SELECT_KIND SYSREQ_REF_TYPE_REQ_SECTION SYSREQ_REF_TYPE_VIEW_CARD SYSREQ_REF_TYPE_VIEW_CODE SYSREQ_REF_TYPE_VIEW_COMMENT SYSREQ_REF_TYPE_VIEW_IS_MAIN SYSREQ_REF_TYPE_VIEW_NAME SYSREQ_REF_TYPE_VIEW_NAME_LOCALIZE_ID SYSREQ_REFERENCE_TYPE_ID SYSREQ_STATE SYSREQ_STATЕ SYSREQ_SYSTEM_SETTINGS_VALUE SYSREQ_TYPE SYSREQ_UNIT SYSREQ_UNIT_ID SYSREQ_USER_GROUPS_GROUP_FULL_NAME SYSREQ_USER_GROUPS_GROUP_NAME SYSREQ_USER_GROUPS_GROUP_SERVER_NAME SYSREQ_USERS_ACCESS_RIGHTS SYSREQ_USERS_AUTHENTICATION SYSREQ_USERS_CATEGORY SYSREQ_USERS_COMPONENT SYSREQ_USERS_COMPONENT_USER_IS_PUBLIC SYSREQ_USERS_DOMAIN SYSREQ_USERS_FULL_USER_NAME SYSREQ_USERS_GROUP SYSREQ_USERS_IS_MAIN_SERVER SYSREQ_USERS_LOGIN SYSREQ_USERS_REFERENCE_USER_IS_PUBLIC SYSREQ_USERS_STATUS SYSREQ_USERS_USER_CERTIFICATE SYSREQ_USERS_USER_CERTIFICATE_INFO SYSREQ_USERS_USER_CERTIFICATE_PLUGIN_NAME SYSREQ_USERS_USER_CERTIFICATE_PLUGIN_VERSION SYSREQ_USERS_USER_CERTIFICATE_STATE SYSREQ_USERS_USER_CERTIFICATE_SUBJECT_NAME SYSREQ_USERS_USER_CERTIFICATE_THUMBPRINT SYSREQ_USERS_USER_DEFAULT_CERTIFICATE SYSREQ_USERS_USER_DESCRIPTION SYSREQ_USERS_USER_GLOBAL_NAME SYSREQ_USERS_USER_LOGIN SYSREQ_USERS_USER_MAIN_SERVER SYSREQ_USERS_USER_TYPE SYSREQ_WORK_RULES_FOLDER_ID \",x=\"RESULT_VAR_NAME RESULT_VAR_NAME_ENG \",w=\"AUTO_NUMERATION_RULE_ID CANT_CHANGE_ID_REQUISITE_RULE_ID CANT_CHANGE_OURFIRM_REQUISITE_RULE_ID CHECK_CHANGING_REFERENCE_RECORD_USE_RULE_ID CHECK_CODE_REQUISITE_RULE_ID CHECK_DELETING_REFERENCE_RECORD_USE_RULE_ID CHECK_FILTRATER_CHANGES_RULE_ID CHECK_RECORD_INTERVAL_RULE_ID CHECK_REFERENCE_INTERVAL_RULE_ID CHECK_REQUIRED_DATA_FULLNESS_RULE_ID CHECK_REQUIRED_REQUISITES_FULLNESS_RULE_ID MAKE_RECORD_UNRATIFIED_RULE_ID RESTORE_AUTO_NUMERATION_RULE_ID SET_FIRM_CONTEXT_FROM_RECORD_RULE_ID SET_FIRST_RECORD_IN_LIST_FORM_RULE_ID SET_IDSPS_VALUE_RULE_ID SET_NEXT_CODE_VALUE_RULE_ID SET_OURFIRM_BOUNDS_RULE_ID SET_OURFIRM_REQUISITE_RULE_ID \",O=\"SCRIPT_BLOCK_AFTER_FINISH_EVENT SCRIPT_BLOCK_BEFORE_START_EVENT SCRIPT_BLOCK_EXECUTION_RESULTS_PROPERTY SCRIPT_BLOCK_NAME_PROPERTY SCRIPT_BLOCK_SCRIPT_PROPERTY \",N=\"SUBTASK_BLOCK_ABORT_DEADLINE_PROPERTY SUBTASK_BLOCK_AFTER_FINISH_EVENT SUBTASK_BLOCK_ASSIGN_PARAMS_EVENT SUBTASK_BLOCK_ATTACHMENTS_PROPERTY SUBTASK_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY SUBTASK_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY SUBTASK_BLOCK_BEFORE_START_EVENT SUBTASK_BLOCK_CREATED_TASK_PROPERTY SUBTASK_BLOCK_CREATION_EVENT SUBTASK_BLOCK_DEADLINE_PROPERTY SUBTASK_BLOCK_IMPORTANCE_PROPERTY SUBTASK_BLOCK_INITIATOR_PROPERTY SUBTASK_BLOCK_IS_RELATIVE_ABORT_DEADLINE_PROPERTY SUBTASK_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY SUBTASK_BLOCK_JOBS_TYPE_PROPERTY SUBTASK_BLOCK_NAME_PROPERTY SUBTASK_BLOCK_PARALLEL_ROUTE_PROPERTY SUBTASK_BLOCK_PERFORMERS_PROPERTY SUBTASK_BLOCK_RELATIVE_ABORT_DEADLINE_TYPE_PROPERTY SUBTASK_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY SUBTASK_BLOCK_REQUIRE_SIGN_PROPERTY SUBTASK_BLOCK_STANDARD_ROUTE_PROPERTY SUBTASK_BLOCK_START_EVENT SUBTASK_BLOCK_STEP_CONTROL_PROPERTY SUBTASK_BLOCK_SUBJECT_PROPERTY SUBTASK_BLOCK_TASK_CONTROL_PROPERTY SUBTASK_BLOCK_TEXT_PROPERTY SUBTASK_BLOCK_UNLOCK_ATTACHMENTS_ON_STOP_PROPERTY SUBTASK_BLOCK_USE_STANDARD_ROUTE_PROPERTY SUBTASK_BLOCK_WAIT_FOR_TASK_COMPLETE_PROPERTY \",R=\"SYSCOMP_CONTROL_JOBS SYSCOMP_FOLDERS SYSCOMP_JOBS SYSCOMP_NOTICES SYSCOMP_TASKS \",k=\"SYSDLG_CREATE_EDOCUMENT SYSDLG_CREATE_EDOCUMENT_VERSION SYSDLG_CURRENT_PERIOD SYSDLG_EDIT_FUNCTION_HELP SYSDLG_EDOCUMENT_KINDS_FOR_TEMPLATE SYSDLG_EXPORT_MULTIPLE_EDOCUMENTS SYSDLG_EXPORT_SINGLE_EDOCUMENT SYSDLG_IMPORT_EDOCUMENT SYSDLG_MULTIPLE_SELECT SYSDLG_SETUP_ACCESS_RIGHTS SYSDLG_SETUP_DEFAULT_RIGHTS SYSDLG_SETUP_FILTER_CONDITION SYSDLG_SETUP_SIGN_RIGHTS SYSDLG_SETUP_TASK_OBSERVERS SYSDLG_SETUP_TASK_ROUTE SYSDLG_SETUP_USERS_LIST SYSDLG_SIGN_EDOCUMENT SYSDLG_SIGN_MULTIPLE_EDOCUMENTS \",A=\"SYSREF_ACCESS_RIGHTS_TYPES SYSREF_ADMINISTRATION_HISTORY SYSREF_ALL_AVAILABLE_COMPONENTS SYSREF_ALL_AVAILABLE_PRIVILEGES SYSREF_ALL_REPLICATING_COMPONENTS SYSREF_AVAILABLE_DEVELOPERS_COMPONENTS SYSREF_CALENDAR_EVENTS SYSREF_COMPONENT_TOKEN_HISTORY SYSREF_COMPONENT_TOKENS SYSREF_COMPONENTS SYSREF_CONSTANTS SYSREF_DATA_RECEIVE_PROTOCOL SYSREF_DATA_SEND_PROTOCOL SYSREF_DIALOGS SYSREF_DIALOGS_REQUISITES SYSREF_EDITORS SYSREF_EDOC_CARDS SYSREF_EDOC_TYPES SYSREF_EDOCUMENT_CARD_REQUISITES SYSREF_EDOCUMENT_CARD_TYPES SYSREF_EDOCUMENT_CARD_TYPES_REFERENCE SYSREF_EDOCUMENT_CARDS SYSREF_EDOCUMENT_HISTORY SYSREF_EDOCUMENT_KINDS SYSREF_EDOCUMENT_REQUISITES SYSREF_EDOCUMENT_SIGNATURES SYSREF_EDOCUMENT_TEMPLATES SYSREF_EDOCUMENT_TEXT_STORAGES SYSREF_EDOCUMENT_VIEWS SYSREF_FILTERER_SETUP_CONFLICTS SYSREF_FILTRATER_SETTING_CONFLICTS SYSREF_FOLDER_HISTORY SYSREF_FOLDERS SYSREF_FUNCTION_GROUPS SYSREF_FUNCTION_PARAMS SYSREF_FUNCTIONS SYSREF_JOB_HISTORY SYSREF_LINKS SYSREF_LOCALIZATION_DICTIONARY SYSREF_LOCALIZATION_LANGUAGES SYSREF_MODULES SYSREF_PRIVILEGES SYSREF_RECORD_HISTORY SYSREF_REFERENCE_REQUISITES SYSREF_REFERENCE_TYPE_VIEWS SYSREF_REFERENCE_TYPES SYSREF_REFERENCES SYSREF_REFERENCES_REQUISITES SYSREF_REMOTE_SERVERS SYSREF_REPLICATION_SESSIONS_LOG SYSREF_REPLICATION_SESSIONS_PROTOCOL SYSREF_REPORTS SYSREF_ROLES SYSREF_ROUTE_BLOCK_GROUPS SYSREF_ROUTE_BLOCKS SYSREF_SCRIPTS SYSREF_SEARCHES SYSREF_SERVER_EVENTS SYSREF_SERVER_EVENTS_HISTORY SYSREF_STANDARD_ROUTE_GROUPS SYSREF_STANDARD_ROUTES SYSREF_STATUSES SYSREF_SYSTEM_SETTINGS SYSREF_TASK_HISTORY SYSREF_TASK_KIND_GROUPS SYSREF_TASK_KINDS SYSREF_TASK_RIGHTS SYSREF_TASK_SIGNATURES SYSREF_TASKS SYSREF_UNITS SYSREF_USER_GROUPS SYSREF_USER_GROUPS_REFERENCE SYSREF_USER_SUBSTITUTION SYSREF_USERS SYSREF_USERS_REFERENCE SYSREF_VIEWERS SYSREF_WORKING_TIME_CALENDARS \",D=\"ACCESS_RIGHTS_TABLE_NAME EDMS_ACCESS_TABLE_NAME EDOC_TYPES_TABLE_NAME \",I=\"TEST_DEV_DB_NAME TEST_DEV_SYSTEM_CODE TEST_EDMS_DB_NAME TEST_EDMS_MAIN_CODE TEST_EDMS_MAIN_DB_NAME TEST_EDMS_SECOND_CODE TEST_EDMS_SECOND_DB_NAME TEST_EDMS_SYSTEM_CODE TEST_ISB5_MAIN_CODE TEST_ISB5_SECOND_CODE TEST_SQL_SERVER_2005_NAME TEST_SQL_SERVER_NAME \",M=\"ATTENTION_CAPTION cbsCommandLinks cbsDefault CONFIRMATION_CAPTION ERROR_CAPTION INFORMATION_CAPTION mrCancel mrOk \",L=\"EDOC_VERSION_ACTIVE_STAGE_CODE EDOC_VERSION_DESIGN_STAGE_CODE EDOC_VERSION_OBSOLETE_STAGE_CODE \",P=\"cpDataEnciphermentEnabled cpDigitalSignatureEnabled cpID cpIssuer cpPluginVersion cpSerial cpSubjectName cpSubjSimpleName cpValidFromDate cpValidToDate \",F=\"ISBL_SYNTAX NO_SYNTAX XML_SYNTAX \",B=\"WAIT_BLOCK_AFTER_FINISH_EVENT WAIT_BLOCK_BEFORE_START_EVENT WAIT_BLOCK_DEADLINE_PROPERTY WAIT_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY WAIT_BLOCK_NAME_PROPERTY WAIT_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY \",U=\"SYSRES_COMMON SYSRES_CONST SYSRES_MBFUNC SYSRES_SBDATA SYSRES_SBGUI SYSRES_SBINTF SYSRES_SBREFDSC SYSRES_SQLERRORS SYSRES_SYSCOMP \",$=r+a+o+s+l+c+u+d+p+h+f+_+m+g+b+v+E+y+S+C+T+x+w+O+N+R+k+A+D+I+M+L+P+F+B+U,j=\"atUser atGroup atRole \",G=\"aemEnabledAlways aemDisabledAlways aemEnabledOnBrowse aemEnabledOnEdit aemDisabledOnBrowseEmpty \",q=\"apBegin apEnd \",H=\"alLeft alRight \",V=\"asmNever asmNoButCustomize asmAsLastTime asmYesButCustomize asmAlways \",z=\"cirCommon cirRevoked \",Y=\"ctSignature ctEncode ctSignatureEncode \",W=\"clbUnchecked clbChecked clbGrayed \",K=\"ceISB ceAlways ceNever \",Q=\"ctDocument ctReference ctScript ctUnknown ctReport ctDialog ctFunction ctFolder ctEDocument ctTask ctJob ctNotice ctControlJob \",X=\"cfInternal cfDisplay \",Z=\"ciUnspecified ciWrite ciRead \",J=\"ckFolder ckEDocument ckTask ckJob ckComponentToken ckAny ckReference ckScript ckReport ckDialog \",ee=\"ctISBLEditor ctBevel ctButton ctCheckListBox ctComboBox ctComboEdit ctGrid ctDBCheckBox ctDBComboBox ctDBEdit ctDBEllipsis ctDBMemo ctDBNavigator ctDBRadioGroup ctDBStatusLabel ctEdit ctGroupBox ctInplaceHint ctMemo ctPanel ctListBox ctRadioButton ctRichEdit ctTabSheet ctWebBrowser ctImage ctHyperLink ctLabel ctDBMultiEllipsis ctRibbon ctRichView ctInnerPanel ctPanelGroup ctBitButton \",te=\"cctDate cctInteger cctNumeric cctPick cctReference cctString cctText \",ne=\"cltInternal cltPrimary cltGUI \",ie=\"dseBeforeOpen dseAfterOpen dseBeforeClose dseAfterClose dseOnValidDelete dseBeforeDelete dseAfterDelete dseAfterDeleteOutOfTransaction dseOnDeleteError dseBeforeInsert dseAfterInsert dseOnValidUpdate dseBeforeUpdate dseOnUpdateRatifiedRecord dseAfterUpdate dseAfterUpdateOutOfTransaction dseOnUpdateError dseAfterScroll dseOnOpenRecord dseOnCloseRecord dseBeforeCancel dseAfterCancel dseOnUpdateDeadlockError dseBeforeDetailUpdate dseOnPrepareUpdate dseOnAnyRequisiteChange \",re=\"dssEdit dssInsert dssBrowse dssInActive \",ae=\"dftDate dftShortDate dftDateTime dftTimeStamp \",oe=\"dotDays dotHours dotMinutes dotSeconds \",se=\"dtkndLocal dtkndUTC \",le=\"arNone arView arEdit arFull \",ce=\"ddaView ddaEdit \",ue=\"emLock emEdit emSign emExportWithLock emImportWithUnlock emChangeVersionNote emOpenForModify emChangeLifeStage emDelete emCreateVersion emImport emUnlockExportedWithLock emStart emAbort emReInit emMarkAsReaded emMarkAsUnreaded emPerform emAccept emResume emChangeRights emEditRoute emEditObserver emRecoveryFromLocalCopy emChangeWorkAccessType emChangeEncodeTypeToCertificate emChangeEncodeTypeToPassword emChangeEncodeTypeToNone emChangeEncodeTypeToCertificatePassword emChangeStandardRoute emGetText emOpenForView emMoveToStorage emCreateObject emChangeVersionHidden emDeleteVersion emChangeLifeCycleStage emApprovingSign emExport emContinue emLockFromEdit emUnLockForEdit emLockForServer emUnlockFromServer emDelegateAccessRights emReEncode \",de=\"ecotFile ecotProcess \",pe=\"eaGet eaCopy eaCreate eaCreateStandardRoute \",he=\"edltAll edltNothing edltQuery \",fe=\"essmText essmCard \",_e=\"esvtLast esvtLastActive esvtSpecified \",me=\"edsfExecutive edsfArchive \",ge=\"edstSQLServer edstFile \",be=\"edvstNone edvstEDocumentVersionCopy edvstFile edvstTemplate edvstScannedFile \",ve=\"vsDefault vsDesign vsActive vsObsolete \",Ee=\"etNone etCertificate etPassword etCertificatePassword \",ye=\"ecException ecWarning ecInformation \",Se=\"estAll estApprovingOnly \",Ce=\"evtLast evtLastActive evtQuery \",Te=\"fdtString fdtNumeric fdtInteger fdtDate fdtText fdtUnknown fdtWideString fdtLargeInteger \",xe=\"ftInbox ftOutbox ftFavorites ftCommonFolder ftUserFolder ftComponents ftQuickLaunch ftShortcuts ftSearch \",we=\"grhAuto grhX1 grhX2 grhX3 \",Oe=\"hltText hltRTF hltHTML \",Ne=\"iffBMP iffJPEG iffMultiPageTIFF iffSinglePageTIFF iffTIFF iffPNG \",Re=\"im8bGrayscale im24bRGB im1bMonochrome \",ke=\"itBMP itJPEG itWMF itPNG \",Ae=\"ikhInformation ikhWarning ikhError ikhNoIcon \",De=\"icUnknown icScript icFunction icIntegratedReport icAnalyticReport icDataSetEventHandler icActionHandler icFormEventHandler icLookUpEventHandler icRequisiteChangeEventHandler icBeforeSearchEventHandler icRoleCalculation icSelectRouteEventHandler icBlockPropertyCalculation icBlockQueryParamsEventHandler icChangeSearchResultEventHandler icBlockEventHandler icSubTaskInitEventHandler icEDocDataSetEventHandler icEDocLookUpEventHandler icEDocActionHandler icEDocFormEventHandler icEDocRequisiteChangeEventHandler icStructuredConversionRule icStructuredConversionEventBefore icStructuredConversionEventAfter icWizardEventHandler icWizardFinishEventHandler icWizardStepEventHandler icWizardStepFinishEventHandler icWizardActionEnableEventHandler icWizardActionExecuteEventHandler icCreateJobsHandler icCreateNoticesHandler icBeforeLookUpEventHandler icAfterLookUpEventHandler icTaskAbortEventHandler icWorkflowBlockActionHandler icDialogDataSetEventHandler icDialogActionHandler icDialogLookUpEventHandler icDialogRequisiteChangeEventHandler icDialogFormEventHandler icDialogValidCloseEventHandler icBlockFormEventHandler icTaskFormEventHandler icReferenceMethod icEDocMethod icDialogMethod icProcessMessageHandler \",Ie=\"isShow isHide isByUserSettings \",Me=\"jkJob jkNotice jkControlJob \",Le=\"jtInner jtLeft jtRight jtFull jtCross \",Pe=\"lbpAbove lbpBelow lbpLeft lbpRight \",Fe=\"eltPerConnection eltPerUser \",Be=\"sfcUndefined sfcBlack sfcGreen sfcRed sfcBlue sfcOrange sfcLilac \",Ue=\"sfsItalic sfsStrikeout sfsNormal \",$e=\"ldctStandardRoute ldctWizard ldctScript ldctFunction ldctRouteBlock ldctIntegratedReport ldctAnalyticReport ldctReferenceType ldctEDocumentType ldctDialog ldctServerEvents \",je=\"mrcrtNone mrcrtUser mrcrtMaximal mrcrtCustom \",Ge=\"vtEqual vtGreaterOrEqual vtLessOrEqual vtRange \",qe=\"rdYesterday rdToday rdTomorrow rdThisWeek rdThisMonth rdThisYear rdNextMonth rdNextWeek rdLastWeek rdLastMonth \",He=\"rdWindow rdFile rdPrinter \",Ve=\"rdtString rdtNumeric rdtInteger rdtDate rdtReference rdtAccount rdtText rdtPick rdtUnknown rdtLargeInteger rdtDocument \",ze=\"reOnChange reOnChangeValues \",Ye=\"ttGlobal ttLocal ttUser ttSystem \",We=\"ssmBrowse ssmSelect ssmMultiSelect ssmBrowseModal \",Ke=\"smSelect smLike smCard \",Qe=\"stNone stAuthenticating stApproving \",Xe=\"sctString sctStream \",Ze=\"sstAnsiSort sstNaturalSort \",Je=\"svtEqual svtContain \",et=\"soatString soatNumeric soatInteger soatDatetime soatReferenceRecord soatText soatPick soatBoolean soatEDocument soatAccount soatIntegerCollection soatNumericCollection soatStringCollection soatPickCollection soatDatetimeCollection soatBooleanCollection soatReferenceRecordCollection soatEDocumentCollection soatAccountCollection soatContents soatUnknown \",tt=\"tarAbortByUser tarAbortByWorkflowException \",nt=\"tvtAllWords tvtExactPhrase tvtAnyWord \",it=\"usNone usCompleted usRedSquare usBlueSquare usYellowSquare usGreenSquare usOrangeSquare usPurpleSquare usFollowUp \",rt=\"utUnknown utUser utDeveloper utAdministrator utSystemDeveloper utDisconnected \",at=\"btAnd btDetailAnd btOr btNotOr btOnly \",ot=\"vmView vmSelect vmNavigation \",st=\"vsmSingle vsmMultiple vsmMultipleCheck vsmNoSelection \",lt=\"wfatPrevious wfatNext wfatCancel wfatFinish \",ct=\"wfepUndefined wfepText3 wfepText6 wfepText9 wfepSpinEdit wfepDropDown wfepRadioGroup wfepFlag wfepText12 wfepText15 wfepText18 wfepText21 wfepText24 wfepText27 wfepText30 wfepRadioGroupColumn1 wfepRadioGroupColumn2 wfepRadioGroupColumn3 \",ut=\"wfetQueryParameter wfetText wfetDelimiter wfetLabel \",dt=\"wptString wptInteger wptNumeric wptBoolean wptDateTime wptPick wptText wptUser wptUserList wptEDocumentInfo wptEDocumentInfoList wptReferenceRecordInfo wptReferenceRecordInfoList wptFolderInfo wptTaskInfo wptContents wptFileName wptDate \",pt=\"wsrComplete wsrGoNext wsrGoPrevious wsrCustom wsrCancel wsrGoFinal \",ht=\"wstForm wstEDocument wstTaskCard wstReferenceRecordCard wstFinal \",ft=\"waAll waPerformers waManual \",_t=\"wsbStart wsbFinish wsbNotice wsbStep wsbDecision wsbWait wsbMonitor wsbScript wsbConnector wsbSubTask wsbLifeCycleStage wsbPause \",mt=\"wdtInteger wdtFloat wdtString wdtPick wdtDateTime wdtBoolean wdtTask wdtJob wdtFolder wdtEDocument wdtReferenceRecord wdtUser wdtGroup wdtRole wdtIntegerCollection wdtFloatCollection wdtStringCollection wdtPickCollection wdtDateTimeCollection wdtBooleanCollection wdtTaskCollection wdtJobCollection wdtFolderCollection wdtEDocumentCollection wdtReferenceRecordCollection wdtUserCollection wdtGroupCollection wdtRoleCollection wdtContents wdtUserList wdtSearchDescription wdtDeadLine wdtPickSet wdtAccountCollection \",gt=\"wiLow wiNormal wiHigh \",bt=\"wrtSoft wrtHard \",vt=\"wsInit wsRunning wsDone wsControlled wsAborted wsContinued \",Et=\"wtmFull wtmFromCurrent wtmOnlyCurrent \",yt=j+G+q+H+V+z+Y+W+K+Q+X+Z+J+ee+te+ne+ie+re+ae+oe+se+le+ce+ue+de+pe+he+fe+_e+me+ge+be+ve+Ee+ye+Se+Ce+Te+xe+we+Oe+Ne+Re+ke+Ae+De+Ie+Me+Le+Pe+Fe+Be+Ue+$e+je+Ge+qe+He+Ve+ze+Ye+We+Ke+Qe+Xe+Ze+Je+et+tt+nt+it+rt+at+ot+st+lt+ct+ut+dt+pt+ht+ft+_t+mt+gt+bt+vt+Et,St=\"AddSubString AdjustLineBreaks AmountInWords Analysis ArrayDimCount ArrayHighBound ArrayLowBound ArrayOf ArrayReDim Assert Assigned BeginOfMonth BeginOfPeriod BuildProfilingOperationAnalysis CallProcedure CanReadFile CArrayElement CDataSetRequisite ChangeDate ChangeReferenceDataset Char CharPos CheckParam CheckParamValue CompareStrings ConstantExists ControlState ConvertDateStr Copy CopyFile CreateArray CreateCachedReference CreateConnection CreateDialog CreateDualListDialog CreateEditor CreateException CreateFile CreateFolderDialog CreateInputDialog CreateLinkFile CreateList CreateLock CreateMemoryDataSet CreateObject CreateOpenDialog CreateProgress CreateQuery CreateReference CreateReport CreateSaveDialog CreateScript CreateSQLPivotFunction CreateStringList CreateTreeListSelectDialog CSelectSQL CSQL CSubString CurrentUserID CurrentUserName CurrentVersion DataSetLocateEx DateDiff DateTimeDiff DateToStr DayOfWeek DeleteFile DirectoryExists DisableCheckAccessRights DisableCheckFullShowingRestriction DisableMassTaskSendingRestrictions DropTable DupeString EditText EnableCheckAccessRights EnableCheckFullShowingRestriction EnableMassTaskSendingRestrictions EndOfMonth EndOfPeriod ExceptionExists ExceptionsOff ExceptionsOn Execute ExecuteProcess Exit ExpandEnvironmentVariables ExtractFileDrive ExtractFileExt ExtractFileName ExtractFilePath ExtractParams FileExists FileSize FindFile FindSubString FirmContext ForceDirectories Format FormatDate FormatNumeric FormatSQLDate FormatString FreeException GetComponent GetComponentLaunchParam GetConstant GetLastException GetReferenceRecord GetRefTypeByRefID GetTableID GetTempFolder IfThen In IndexOf InputDialog InputDialogEx InteractiveMode IsFileLocked IsGraphicFile IsNumeric Length LoadString LoadStringFmt LocalTimeToUTC LowerCase Max MessageBox MessageBoxEx MimeDecodeBinary MimeDecodeString MimeEncodeBinary MimeEncodeString Min MoneyInWords MoveFile NewID Now OpenFile Ord Precision Raise ReadCertificateFromFile ReadFile ReferenceCodeByID ReferenceNumber ReferenceRequisiteMode ReferenceRequisiteValue RegionDateSettings RegionNumberSettings RegionTimeSettings RegRead RegWrite RenameFile Replace Round SelectServerCode SelectSQL ServerDateTime SetConstant SetManagedFolderFieldsState ShowConstantsInputDialog ShowMessage Sleep Split SQL SQL2XLSTAB SQLProfilingSendReport StrToDate SubString SubStringCount SystemSetting Time TimeDiff Today Transliterate Trim UpperCase UserStatus UTCToLocalTime ValidateXML VarIsClear VarIsEmpty VarIsNull WorkTimeDiff WriteFile WriteFileEx WriteObjectHistory Анализ БазаДанных БлокЕсть БлокЕстьРасш БлокИнфо БлокСнять БлокСнятьРасш БлокУстановить Ввод ВводМеню ВедС ВедСпр ВерхняяГраницаМассива ВнешПрогр Восст ВременнаяПапка Время ВыборSQL ВыбратьЗапись ВыделитьСтр Вызвать Выполнить ВыпПрогр ГрафическийФайл ГруппаДополнительно ДатаВремяСерв ДеньНедели ДиалогДаНет ДлинаСтр ДобПодстр ЕПусто ЕслиТо ЕЧисло ЗамПодстр ЗаписьСправочника ЗначПоляСпр ИДТипСпр ИзвлечьДиск ИзвлечьИмяФайла ИзвлечьПуть ИзвлечьРасширение ИзмДат ИзменитьРазмерМассива ИзмеренийМассива ИмяОрг ИмяПоляСпр Индекс ИндикаторЗакрыть ИндикаторОткрыть ИндикаторШаг ИнтерактивныйРежим ИтогТблСпр КодВидВедСпр КодВидСпрПоИД КодПоAnalit КодСимвола КодСпр КолПодстр КолПроп КонМес Конст КонстЕсть КонстЗнач КонТран КопироватьФайл КопияСтр КПериод КСтрТблСпр Макс МаксСтрТблСпр Массив Меню МенюРасш Мин НаборДанныхНайтиРасш НаимВидСпр НаимПоAnalit НаимСпр НастроитьПереводыСтрок НачМес НачТран НижняяГраницаМассива НомерСпр НПериод Окно Окр Окружение ОтлИнфДобавить ОтлИнфУдалить Отчет ОтчетАнал ОтчетИнт ПапкаСуществует Пауза ПВыборSQL ПереименоватьФайл Переменные ПереместитьФайл Подстр ПоискПодстр ПоискСтр ПолучитьИДТаблицы ПользовательДополнительно ПользовательИД ПользовательИмя ПользовательСтатус Прервать ПроверитьПараметр ПроверитьПараметрЗнач ПроверитьУсловие РазбСтр РазнВремя РазнДат РазнДатаВремя РазнРабВремя РегУстВрем РегУстДат РегУстЧсл РедТекст РеестрЗапись РеестрСписокИменПарам РеестрЧтение РеквСпр РеквСпрПр Сегодня Сейчас Сервер СерверПроцессИД СертификатФайлСчитать СжПроб Символ СистемаДиректумКод СистемаИнформация СистемаКод Содержит СоединениеЗакрыть СоединениеОткрыть СоздатьДиалог СоздатьДиалогВыбораИзДвухСписков СоздатьДиалогВыбораПапки СоздатьДиалогОткрытияФайла СоздатьДиалогСохраненияФайла СоздатьЗапрос СоздатьИндикатор СоздатьИсключение СоздатьКэшированныйСправочник СоздатьМассив СоздатьНаборДанных СоздатьОбъект СоздатьОтчет СоздатьПапку СоздатьРедактор СоздатьСоединение СоздатьСписок СоздатьСписокСтрок СоздатьСправочник СоздатьСценарий СоздСпр СостСпр Сохр СохрСпр СписокСистем Спр Справочник СпрБлокЕсть СпрБлокСнять СпрБлокСнятьРасш СпрБлокУстановить СпрИзмНабДан СпрКод СпрНомер СпрОбновить СпрОткрыть СпрОтменить СпрПарам СпрПолеЗнач СпрПолеИмя СпрРекв СпрРеквВведЗн СпрРеквНовые СпрРеквПр СпрРеквПредЗн СпрРеквРежим СпрРеквТипТекст СпрСоздать СпрСост СпрСохранить СпрТблИтог СпрТблСтр СпрТблСтрКол СпрТблСтрМакс СпрТблСтрМин СпрТблСтрПред СпрТблСтрСлед СпрТблСтрСозд СпрТблСтрУд СпрТекПредст СпрУдалить СравнитьСтр СтрВерхРегистр СтрНижнРегистр СтрТблСпр СумПроп Сценарий СценарийПарам ТекВерсия ТекОрг Точн Тран Транслитерация УдалитьТаблицу УдалитьФайл УдСпр УдСтрТблСпр Уст УстановкиКонстант ФайлАтрибутСчитать ФайлАтрибутУстановить ФайлВремя ФайлВремяУстановить ФайлВыбрать ФайлЗанят ФайлЗаписать ФайлИскать ФайлКопировать ФайлМожноЧитать ФайлОткрыть ФайлПереименовать ФайлПерекодировать ФайлПереместить ФайлПросмотреть ФайлРазмер ФайлСоздать ФайлСсылкаСоздать ФайлСуществует ФайлСчитать ФайлУдалить ФмтSQLДат ФмтДат ФмтСтр ФмтЧсл Формат ЦМассивЭлемент ЦНаборДанныхРеквизит ЦПодстр \",Ct=\"AltState Application CallType ComponentTokens CreatedJobs CreatedNotices ControlState DialogResult Dialogs EDocuments EDocumentVersionSource Folders GlobalIDs Job Jobs InputValue LookUpReference LookUpRequisiteNames LookUpSearch Object ParentComponent Processes References Requisite ReportName Reports Result Scripts Searches SelectedAttachments SelectedItems SelectMode Sender ServerEvents ServiceFactory ShiftState SubTask SystemDialogs Tasks Wizard Wizards Work ВызовСпособ ИмяОтчета РеквЗнач \",Tt=\"IApplication IAccessRights IAccountRepository IAccountSelectionRestrictions IAction IActionList IAdministrationHistoryDescription IAnchors IApplication IArchiveInfo IAttachment IAttachmentList ICheckListBox ICheckPointedList IColumn IComponent IComponentDescription IComponentToken IComponentTokenFactory IComponentTokenInfo ICompRecordInfo IConnection IContents IControl IControlJob IControlJobInfo IControlList ICrypto ICrypto2 ICustomJob ICustomJobInfo ICustomListBox ICustomObjectWizardStep ICustomWork ICustomWorkInfo IDataSet IDataSetAccessInfo IDataSigner IDateCriterion IDateRequisite IDateRequisiteDescription IDateValue IDeaAccessRights IDeaObjectInfo IDevelopmentComponentLock IDialog IDialogFactory IDialogPickRequisiteItems IDialogsFactory IDICSFactory IDocRequisite IDocumentInfo IDualListDialog IECertificate IECertificateInfo IECertificates IEditControl IEditorForm IEdmsExplorer IEdmsObject IEdmsObjectDescription IEdmsObjectFactory IEdmsObjectInfo IEDocument IEDocumentAccessRights IEDocumentDescription IEDocumentEditor IEDocumentFactory IEDocumentInfo IEDocumentStorage IEDocumentVersion IEDocumentVersionListDialog IEDocumentVersionSource IEDocumentWizardStep IEDocVerSignature IEDocVersionState IEnabledMode IEncodeProvider IEncrypter IEvent IEventList IException IExternalEvents IExternalHandler IFactory IField IFileDialog IFolder IFolderDescription IFolderDialog IFolderFactory IFolderInfo IForEach IForm IFormTitle IFormWizardStep IGlobalIDFactory IGlobalIDInfo IGrid IHasher IHistoryDescription IHyperLinkControl IImageButton IImageControl IInnerPanel IInplaceHint IIntegerCriterion IIntegerList IIntegerRequisite IIntegerValue IISBLEditorForm IJob IJobDescription IJobFactory IJobForm IJobInfo ILabelControl ILargeIntegerCriterion ILargeIntegerRequisite ILargeIntegerValue ILicenseInfo ILifeCycleStage IList IListBox ILocalIDInfo ILocalization ILock IMemoryDataSet IMessagingFactory IMetadataRepository INotice INoticeInfo INumericCriterion INumericRequisite INumericValue IObject IObjectDescription IObjectImporter IObjectInfo IObserver IPanelGroup IPickCriterion IPickProperty IPickRequisite IPickRequisiteDescription IPickRequisiteItem IPickRequisiteItems IPickValue IPrivilege IPrivilegeList IProcess IProcessFactory IProcessMessage IProgress IProperty IPropertyChangeEvent IQuery IReference IReferenceCriterion IReferenceEnabledMode IReferenceFactory IReferenceHistoryDescription IReferenceInfo IReferenceRecordCardWizardStep IReferenceRequisiteDescription IReferencesFactory IReferenceValue IRefRequisite IReport IReportFactory IRequisite IRequisiteDescription IRequisiteDescriptionList IRequisiteFactory IRichEdit IRouteStep IRule IRuleList ISchemeBlock IScript IScriptFactory ISearchCriteria ISearchCriterion ISearchDescription ISearchFactory ISearchFolderInfo ISearchForObjectDescription ISearchResultRestrictions ISecuredContext ISelectDialog IServerEvent IServerEventFactory IServiceDialog IServiceFactory ISignature ISignProvider ISignProvider2 ISignProvider3 ISimpleCriterion IStringCriterion IStringList IStringRequisite IStringRequisiteDescription IStringValue ISystemDialogsFactory ISystemInfo ITabSheet ITask ITaskAbortReasonInfo ITaskCardWizardStep ITaskDescription ITaskFactory ITaskInfo ITaskRoute ITextCriterion ITextRequisite ITextValue ITreeListSelectDialog IUser IUserList IValue IView IWebBrowserControl IWizard IWizardAction IWizardFactory IWizardFormElement IWizardParam IWizardPickParam IWizardReferenceParam IWizardStep IWorkAccessRights IWorkDescription IWorkflowAskableParam IWorkflowAskableParams IWorkflowBlock IWorkflowBlockResult IWorkflowEnabledMode IWorkflowParam IWorkflowPickParam IWorkflowReferenceParam IWorkState IWorkTreeCustomNode IWorkTreeJobNode IWorkTreeTaskNode IXMLEditorForm SBCrypto \",xt=$+yt,wt=Ct,Ot=\"null true false nil \",Nt={className:\"number\",begin:e.NUMBER_RE,relevance:0},Rt={className:\"string\",variants:[{begin:'\"',end:'\"'},{begin:\"'\",end:\"'\"}]},kt={className:\"doctag\",begin:\"\\\\b(?:TODO|DONE|BEGIN|END|STUB|CHG|FIXME|NOTE|BUG|XXX)\\\\b\",relevance:0},At={className:\"comment\",begin:\"//\",end:\"$\",relevance:0,contains:[e.PHRASAL_WORDS_MODE,kt]},Dt={className:\"comment\",begin:\"/\\\\*\",end:\"\\\\*/\",relevance:0,contains:[e.PHRASAL_WORDS_MODE,kt]},It={variants:[At,Dt]},Mt={$pattern:t,keyword:i,built_in:xt,class:wt,literal:Ot},Lt={begin:\"\\\\.\\\\s*\"+e.UNDERSCORE_IDENT_RE,keywords:Mt,relevance:0},Pt={className:\"type\",begin:\":[ \\\\t]*(\"+Tt.trim().replace(/\\s/g,\"|\")+\")\",end:\"[ \\\\t]*=\",excludeEnd:!0},Ft={className:\"variable\",keywords:Mt,begin:t,relevance:0,contains:[Pt,Lt]},Bt=n+\"\\\\(\",Ut={className:\"title\",keywords:{$pattern:t,built_in:St},begin:Bt,end:\"\\\\(\",returnBegin:!0,excludeEnd:!0},$t={className:\"function\",begin:Bt,end:\"\\\\)$\",returnBegin:!0,keywords:Mt,illegal:\"[\\\\[\\\\]\\\\|\\\\$\\\\?%,~#@]\",contains:[Ut,Lt,Ft,Rt,Nt,It]};return{name:\"ISBL\",aliases:[\"isbl\"],case_insensitive:!0,keywords:Mt,illegal:\"\\\\$|\\\\?|%|,|;$|~|#|@|</\",contains:[$t,Pt,Lt,Ft,Rt,Nt,It]}}e.exports=n},bb7e:function(e,t){function n(e){return{name:\"MEL\",keywords:\"int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg_to_rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRelEdPanel dynRelEditor dynamicLoad editAttrLimits editDisplayLayerGlobals editDisplayLayerMembers editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers editor editorTemplate effector emit emitter enableDevice encodeString endString endsWith env equivalent equivalentTol erf error eval evalDeferred evalEcho event exactWorldBoundingBox exclusiveLightCheckBox exec executeForEachObject exists exp expression expressionEditorListen extendCurve extendSurface extrude fcheck fclose feof fflush fgetline fgetword file fileBrowserDialog fileDialog fileExtension fileInfo filetest filletCurve filter filterCurve filterExpand filterStudioImport findAllIntersections findAnimCurves findKeyframe findMenuItem findRelatedSkinCluster finder firstParentOf fitBspline flexor floatEq floatField floatFieldGrp floatScrollBar floatSlider floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow fluidCacheInfo fluidEmitter fluidVoxelInfo flushUndo fmod fontDialog fopen formLayout format fprint frameLayout fread freeFormFillet frewind fromNativePath fwrite gamma gauss geometryConstraint getApplicationVersionAsFloat getAttr getClassification getDefaultBrush getFileList getFluidAttr getInputDeviceRange getMayaPanelTypes getModifiers getPanel getParticleAttr getPluginResource getenv getpid glRender glRenderEditor globalStitch gmatch goal gotoBindPose grabColor gradientControl gradientControlNoAttr graphDollyCtx graphSelectContext graphTrackCtx gravity grid gridLayout group groupObjectsByName HfAddAttractorToAS HfAssignAS HfBuildEqualMap HfBuildFurFiles HfBuildFurImages HfCancelAFR HfConnectASToHF HfCreateAttractor HfDeleteAS HfEditAS HfPerformCreateAS HfRemoveAttractorFromAS HfSelectAttached HfSelectAttractors HfUnAssignAS hardenPointCurve hardware hardwareRenderPanel headsUpDisplay headsUpMessage help helpLine hermite hide hilite hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection iconTextScrollList iconTextStaticLabel ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx ikSystem ikSystemInfo ikfkDisplayMethod illustratorCurves image imfPlugins inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar intSlider intSliderGrp interToUI internalVar intersect iprEngine isAnimCurve isConnected isDirty isParentOf isSameObject isTrue isValidObjectName isValidString isValidUiName isolateSelect itemFilter itemFilterAttr itemFilterRender itemFilterType joint jointCluster jointCtx jointDisplayScale jointLattice keyTangent keyframe keyframeOutliner keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats lassoContext lattice latticeDeformKeyCtx launch launchImageEditor layerButton layeredShaderPort layeredTexturePort layout layoutDialog lightList lightListEditor lightListPanel lightlink lineIntersection linearPrecision linstep listAnimatable listAttr listCameras listConnections listDeviceAttachments listHistory listInputDeviceAxes listInputDeviceButtons listInputDevices listMenuAnnotation listNodeTypes listPanelCategories listRelatives listSets listTransforms listUnselected listerEditor loadFluid loadNewShelf loadPlugin loadPluginLanguageResources loadPrefObjects localizedPanelLabel lockNode loft log longNameOf lookThru ls lsThroughFilter lsType lsUI Mayatomr mag makeIdentity makeLive makePaintable makeRoll makeSingleSurface makeTubeOn makebot manipMoveContext manipMoveLimitsCtx manipOptions manipRotateContext manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match max memory menu menuBarLayout menuEditor menuItem menuItemToShelf menuSet menuSetPref messageLine min minimizeApp mirrorJoint modelCurrentTimeCtx modelEditor modelPanel mouse movIn movOut move moveIKtoFK moveKeyCtx moveVertexAlongDirection multiProfileBirailSurface mute nParticle nameCommand nameField namespace namespaceInfo newPanelItems newton nodeCast nodeIconButton nodeOutliner nodePreset nodeType noise nonLinear normalConstraint normalize nurbsBoolean nurbsCopyUVSet nurbsCube nurbsEditUV nurbsPlane nurbsSelect nurbsSquare nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet nurbsViewDirectionVector objExists objectCenter objectLayer objectType objectTypeUI obsoleteProc oceanNurbsPreviewPlane offsetCurve offsetCurveOnSurface offsetSurface openGLExtension openMayaPref optionMenu optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel overrideModifier paintEffectsDisplay pairBlend palettePort paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension paramLocator parent parentConstraint particle particleExists particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose percent performanceOptions pfxstrokes pickWalk picture pixelMove planarSrf plane play playbackOptions playblast plugAttr plugNode pluginInfo pluginResourceUtil pointConstraint pointCurveConstraint pointLight pointMatrixMult pointOnCurve pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCacheMonitor polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet polyColorBlindData polyColorDel polyColorPerVertex polyColorSet polyCompare polyCone polyCopyUV polyCrease polyCreaseCtx polyCreateFacet polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler polyHelix polyInfo polyInstallAction polyLayoutUV polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV polyMoveVertex polyNormal polyNormalPerVertex polyNormalizeUV polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane polyPlatonicSolid polyPoke polyPrimitive polyPrism polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx polySeparate polySetToFaceNormal polySewEdge polyShortestPathCtx polySmooth polySoftEdge polySphere polySphericalProjection polySplit polySplitCtx polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge polySubdivideFacet polyToSubdiv polyTorus polyTransfer polyTriangulate polyUVSet polyUnite polyWedgeFace popen popupMenu pose pow preloadRefEd print progressBar progressWindow projFileViewer projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx propMove psdChannelOutliner psdEditTextureFile psdExport psdTextureFile putenv pwd python querySubdiv quit rad_to_deg radial radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort rand randomizeFollicles randstate rangeControl readTake rebuildCurve rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery refineSubdivSelectionList refresh refreshAE registerPluginResource rehash reloadImage removeJoint removeMultiInstance removePanelCategory rename renameAttr renameSelectionList renameUI render renderGlobalsNode renderInfo renderLayerButton renderLayerParent renderLayerPostProcess renderLayerUnparent renderManip renderPartition renderQualityNode renderSettings renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder reorderDeformers requires reroot resampleFluid resetAE resetPfxToPolyCamera resetTool resolutionNode retarget reverseCurve reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rootOf rot rotate rotationInterpolation roundConstantRadius rowColumnLayout rowLayout runTimeCommand runup sampleImage saveAllShelves saveAttrPreset saveFluid saveImage saveInitialState saveMenu savePrefObjects savePrefs saveShelf saveToolSettings scale scaleBrushBrightness scaleComponents scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx scriptEditorInfo scriptJob scriptNode scriptTable scriptToShelf scriptedPanel scriptedPanelType scrollField scrollLayout sculpt searchPathArray seed selLoadSettings select selectContext selectCurveCV selectKey selectKeyCtx selectKeyframeRegionCtx selectMode selectPref selectPriority selectType selectedNodes selectionConnection separator setAttr setAttrEnumResource setAttrMapping setAttrNiceNameResource setConstraintRestPosition setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx setEditor setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe setKeyframeBlendshapeTargetWts setMenuMode setNodeNiceNameResource setNodeTypeFlag setParent setParticleAttr setPfxToPolyCamera setPluginResource setProject setStampDensity setStartupMessage setState setToolTo setUITemplate setXformManip sets shadingConnection shadingGeometryRelCtx shadingLightRelCtx shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout shellField shortNameOf showHelp showHidden showManipCtx showSelectionInTitle showShadingGroupAttrEditor showWindow sign simplify sin singleProfileBirailSurface size sizeBytes skinCluster skinPercent smoothCurve smoothTangentSurface smoothstep snap2to2 snapKey snapMode snapTogetherCtx snapshot soft softMod softModCtx sort sound soundControl source spaceLocator sphere sphrand spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext stackTrace startString startsWith stitchAndExplodeShell stitchSurface stitchSurfacePoints strcmp stringArrayCatenate stringArrayContains stringArrayCount stringArrayInsertAtIndex stringArrayIntersector stringArrayRemove stringArrayRemoveAtIndex stringArrayRemoveDuplicates stringArrayRemoveExact stringArrayToString stringToStringArray strip stripPrefixFromName stroke subdAutoProjection subdCleanTopology subdCollapse subdDuplicateAndConnect subdEditUV subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror subdToBlind subdToPoly subdTransferUVsToCache subdiv subdivCrease subdivDisplaySmoothness substitute substituteAllString substituteGeometry substring surface surfaceSampler surfaceShaderList swatchDisplayPort switchTable symbolButton symbolCheckBox sysFile system tabLayout tan tangentConstraint texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx texSmudgeUVContext texWinToolCtx text textCurves textField textFieldButtonGrp textFieldGrp textManip textScrollList textToShelf textureDisplacePlane textureHairColor texturePlacementContext textureWindow threadCount threePointArcCtx timeControl timePort timerX toNativePath toggle toggleAxis toggleWindowVisibility tokenize tokenizeList tolerance tolower toolButton toolCollection toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx transferAttributes transformCompare transformLimits translator trim trunc truncateFluidCache truncateHairCache tumble tumbleCtx turbulence twoPointArcCtx uiRes uiTemplate unassignInputDevice undo undoInfo ungroup uniform unit unloadPlugin untangleUV untitledFileName untrim upAxis updateAE userCtx uvLink uvSnapshot validateShelfName vectorize view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn viewLookAt viewManip viewPlace viewSet visor volumeAxis vortex waitCursor warning webBrowser webBrowserPrefs whatIs window windowPref wire wireContext workspace wrinkle wrinkleContext writeTake xbmLangPathList xform\",illegal:\"</\",contains:[e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:\"string\",begin:\"`\",end:\"`\",contains:[e.BACKSLASH_ESCAPE]},{begin:/[$%@](\\^\\w\\b|#\\w+|[^\\s\\w{]|\\{\\w+\\}|\\w+)/},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]}}e.exports=n},bc3a:function(e,t,n){e.exports=n(\"cee4\")},bcaa:function(e,t,n){var i=n(\"cb7c\"),r=n(\"d3f4\"),a=n(\"a5b8\");e.exports=function(e,t){if(i(e),r(t)&&t.constructor===e)return t;var n=a.f(e),o=n.resolve;return o(t),n.promise}},bd88:function(e,t){const n=e=>({IMPORTANT:{className:\"meta\",begin:\"!important\"},HEXCOLOR:{className:\"number\",begin:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\"},ATTRIBUTE_SELECTOR_MODE:{className:\"selector-attr\",begin:/\\[/,end:/\\]/,illegal:\"$\",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}}),i=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"main\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],r=[\"any-hover\",\"any-pointer\",\"aspect-ratio\",\"color\",\"color-gamut\",\"color-index\",\"device-aspect-ratio\",\"device-height\",\"device-width\",\"display-mode\",\"forced-colors\",\"grid\",\"height\",\"hover\",\"inverted-colors\",\"monochrome\",\"orientation\",\"overflow-block\",\"overflow-inline\",\"pointer\",\"prefers-color-scheme\",\"prefers-contrast\",\"prefers-reduced-motion\",\"prefers-reduced-transparency\",\"resolution\",\"scan\",\"scripting\",\"update\",\"width\",\"min-width\",\"max-width\",\"min-height\",\"max-height\"],a=[\"active\",\"any-link\",\"blank\",\"checked\",\"current\",\"default\",\"defined\",\"dir\",\"disabled\",\"drop\",\"empty\",\"enabled\",\"first\",\"first-child\",\"first-of-type\",\"fullscreen\",\"future\",\"focus\",\"focus-visible\",\"focus-within\",\"has\",\"host\",\"host-context\",\"hover\",\"indeterminate\",\"in-range\",\"invalid\",\"is\",\"lang\",\"last-child\",\"last-of-type\",\"left\",\"link\",\"local-link\",\"not\",\"nth-child\",\"nth-col\",\"nth-last-child\",\"nth-last-col\",\"nth-last-of-type\",\"nth-of-type\",\"only-child\",\"only-of-type\",\"optional\",\"out-of-range\",\"past\",\"placeholder-shown\",\"read-only\",\"read-write\",\"required\",\"right\",\"root\",\"scope\",\"target\",\"target-within\",\"user-invalid\",\"valid\",\"visited\",\"where\"],o=[\"after\",\"backdrop\",\"before\",\"cue\",\"cue-region\",\"first-letter\",\"first-line\",\"grammar-error\",\"marker\",\"part\",\"placeholder\",\"selection\",\"slotted\",\"spelling-error\"],s=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-display\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-variation-settings\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"src\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"].reverse();function l(e){const t=n(e),l=\"and or not only\",c={className:\"variable\",begin:\"\\\\$\"+e.IDENT_RE},u=[\"charset\",\"css\",\"debug\",\"extend\",\"font-face\",\"for\",\"import\",\"include\",\"keyframes\",\"media\",\"mixin\",\"page\",\"warn\",\"while\"],d=\"(?=[.\\\\s\\\\n[:,(])\",p=[\"\\\\?\",\"(\\\\bReturn\\\\b)\",\"(\\\\bEnd\\\\b)\",\"(\\\\bend\\\\b)\",\"(\\\\bdef\\\\b)\",\";\",\"#\\\\s\",\"\\\\*\\\\s\",\"===\\\\s\",\"\\\\|\",\"%\"];return{name:\"Stylus\",aliases:[\"styl\"],case_insensitive:!1,keywords:\"if else for in\",illegal:\"(\"+p.join(\"|\")+\")\",contains:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t.HEXCOLOR,{begin:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"+d,className:\"selector-class\"},{begin:\"#[a-zA-Z][a-zA-Z0-9_-]*\"+d,className:\"selector-id\"},{begin:\"\\\\b(\"+i.join(\"|\")+\")\"+d,className:\"selector-tag\"},{className:\"selector-pseudo\",begin:\"&?:(\"+a.join(\"|\")+\")\"+d},{className:\"selector-pseudo\",begin:\"&?::(\"+o.join(\"|\")+\")\"+d},t.ATTRIBUTE_SELECTOR_MODE,{className:\"keyword\",begin:/@media/,starts:{end:/[{;}]/,keywords:{$pattern:/[a-z-]+/,keyword:l,attribute:r.join(\" \")},contains:[e.CSS_NUMBER_MODE]}},{className:\"keyword\",begin:\"@((-(o|moz|ms|webkit)-)?(\"+u.join(\"|\")+\"))\\\\b\"},c,e.CSS_NUMBER_MODE,{className:\"function\",begin:\"^[a-zA-Z][a-zA-Z0-9_-]*\\\\(.*\\\\)\",illegal:\"[\\\\n]\",returnBegin:!0,contains:[{className:\"title\",begin:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"},{className:\"params\",begin:/\\(/,end:/\\)/,contains:[t.HEXCOLOR,c,e.APOS_STRING_MODE,e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE]}]},{className:\"attribute\",begin:\"\\\\b(\"+s.join(\"|\")+\")\\\\b\",starts:{end:/;|$/,contains:[t.HEXCOLOR,c,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.CSS_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t.IMPORTANT],illegal:/\\./,relevance:0}}]}}e.exports=l},be13:function(e,t){e.exports=function(e){if(void 0==e)throw TypeError(\"Can't call method on  \"+e);return e}},bf0b:function(e,t,n){var i=n(\"355d\"),r=n(\"aebd\"),a=n(\"36c3\"),o=n(\"1bc3\"),s=n(\"07e3\"),l=n(\"794b\"),c=Object.getOwnPropertyDescriptor;t.f=n(\"8e60\")?c:function(e,t){if(e=a(e),t=o(t,!0),l)try{return c(e,t)}catch(n){}if(s(e,t))return r(!i.f.call(e,t),e[t])}},c01d:function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(e){const t=\"HTTP/(2|1\\\\.[01])\",n=/[A-Za-z][A-Za-z0-9-]*/,r=[{className:\"attribute\",begin:i(\"^\",n,\"(?=\\\\:\\\\s)\"),starts:{contains:[{className:\"punctuation\",begin:/: /,relevance:0,starts:{end:\"$\",relevance:0}}]}},{begin:\"\\\\n\\\\n\",starts:{subLanguage:[],endsWithParent:!0}}];return{name:\"HTTP\",aliases:[\"https\"],illegal:/\\S/,contains:[{begin:\"^(?=\"+t+\" \\\\d{3})\",end:/$/,contains:[{className:\"meta\",begin:t},{className:\"number\",begin:\"\\\\b\\\\d{3}\\\\b\"}],starts:{end:/\\b\\B/,illegal:/\\S/,contains:r}},{begin:\"(?=^[A-Z]+ (.*?) \"+t+\"$)\",end:/$/,contains:[{className:\"string\",begin:\" \",end:\" \",excludeBegin:!0,excludeEnd:!0},{className:\"meta\",begin:t},{className:\"keyword\",begin:\"[A-Z]+\"}],starts:{end:/\\b\\B/,illegal:/\\S/,contains:r}}]}}e.exports=r},c098:function(e,t,n){e.exports=n(\"d4af\")},c207:function(e,t){},c22d:function(e,t){function n(e){return{name:\"HSP\",case_insensitive:!0,keywords:{$pattern:/[\\w._]+/,keyword:\"goto gosub return break repeat loop continue wait await dim sdim foreach dimtype dup dupptr end stop newmod delmod mref run exgoto on mcall assert logmes newlab resume yield onexit onerror onkey onclick oncmd exist delete mkdir chdir dirlist bload bsave bcopy memfile if else poke wpoke lpoke getstr chdpm memexpand memcpy memset notesel noteadd notedel noteload notesave randomize noteunsel noteget split strrep setease button chgdisp exec dialog mmload mmplay mmstop mci pset pget syscolor mes print title pos circle cls font sysfont objsize picload color palcolor palette redraw width gsel gcopy gzoom gmode bmpsave hsvcolor getkey listbox chkbox combox input mesbox buffer screen bgscr mouse objsel groll line clrobj boxf objprm objmode stick grect grotate gsquare gradf objimage objskip objenable celload celdiv celput newcom querycom delcom cnvstow comres axobj winobj sendmsg comevent comevarg sarrayconv callfunc cnvwtos comevdisp libptr system hspstat hspver stat cnt err strsize looplev sublev iparam wparam lparam refstr refdval int rnd strlen length length2 length3 length4 vartype gettime peek wpeek lpeek varptr varuse noteinfo instr abs limit getease str strmid strf getpath strtrim sin cos tan atan sqrt double absf expf logf limitf powf geteasef mousex mousey mousew hwnd hinstance hdc ginfo objinfo dirinfo sysinfo thismod __hspver__ __hsp30__ __date__ __time__ __line__ __file__ _debug __hspdef__ and or xor not screen_normal screen_palette screen_hide screen_fixedsize screen_tool screen_frame gmode_gdi gmode_mem gmode_rgb0 gmode_alpha gmode_rgb0alpha gmode_add gmode_sub gmode_pixela ginfo_mx ginfo_my ginfo_act ginfo_sel ginfo_wx1 ginfo_wy1 ginfo_wx2 ginfo_wy2 ginfo_vx ginfo_vy ginfo_sizex ginfo_sizey ginfo_winx ginfo_winy ginfo_mesx ginfo_mesy ginfo_r ginfo_g ginfo_b ginfo_paluse ginfo_dispx ginfo_dispy ginfo_cx ginfo_cy ginfo_intid ginfo_newid ginfo_sx ginfo_sy objinfo_mode objinfo_bmscr objinfo_hwnd notemax notesize dir_cur dir_exe dir_win dir_sys dir_cmdline dir_desktop dir_mydoc dir_tv font_normal font_bold font_italic font_underline font_strikeout font_antialias objmode_normal objmode_guifont objmode_usefont gsquare_grad msgothic msmincho do until while wend for next _break _continue switch case default swbreak swend ddim ldim alloc m_pi rad2deg deg2rad ease_linear ease_quad_in ease_quad_out ease_quad_inout ease_cubic_in ease_cubic_out ease_cubic_inout ease_quartic_in ease_quartic_out ease_quartic_inout ease_bounce_in ease_bounce_out ease_bounce_inout ease_shake_in ease_shake_out ease_shake_inout ease_loop\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{className:\"string\",begin:/\\{\"/,end:/\"\\}/,contains:[e.BACKSLASH_ESCAPE]},e.COMMENT(\";\",\"$\",{relevance:0}),{className:\"meta\",begin:\"#\",end:\"$\",keywords:{\"meta-keyword\":\"addion cfunc cmd cmpopt comfunc const defcfunc deffunc define else endif enum epack func global if ifdef ifndef include modcfunc modfunc modinit modterm module pack packopt regcmd runtime undef usecom uselib\"},contains:[e.inherit(e.QUOTE_STRING_MODE,{className:\"meta-string\"}),e.NUMBER_MODE,e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:\"symbol\",begin:\"^\\\\*(\\\\w+|@)\"},e.NUMBER_MODE,e.C_NUMBER_MODE]}}e.exports=n},c284:function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=119)}({0:function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},119:function(e,t,n){\"use strict\";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"el-progress\",class:[\"el-progress--\"+e.type,e.status?\"is-\"+e.status:\"\",{\"el-progress--without-text\":!e.showText,\"el-progress--text-inside\":e.textInside}],attrs:{role:\"progressbar\",\"aria-valuenow\":e.percentage,\"aria-valuemin\":\"0\",\"aria-valuemax\":\"100\"}},[\"line\"===e.type?n(\"div\",{staticClass:\"el-progress-bar\"},[n(\"div\",{staticClass:\"el-progress-bar__outer\",style:{height:e.strokeWidth+\"px\"}},[n(\"div\",{staticClass:\"el-progress-bar__inner\",style:e.barStyle},[e.showText&&e.textInside?n(\"div\",{staticClass:\"el-progress-bar__innerText\"},[e._v(e._s(e.content))]):e._e()])])]):n(\"div\",{staticClass:\"el-progress-circle\",style:{height:e.width+\"px\",width:e.width+\"px\"}},[n(\"svg\",{attrs:{viewBox:\"0 0 100 100\"}},[n(\"path\",{staticClass:\"el-progress-circle__track\",style:e.trailPathStyle,attrs:{d:e.trackPath,stroke:\"#e5e9f2\",\"stroke-width\":e.relativeStrokeWidth,fill:\"none\"}}),n(\"path\",{staticClass:\"el-progress-circle__path\",style:e.circlePathStyle,attrs:{d:e.trackPath,stroke:e.stroke,fill:\"none\",\"stroke-linecap\":e.strokeLinecap,\"stroke-width\":e.percentage?e.relativeStrokeWidth:0}})])]),e.showText&&!e.textInside?n(\"div\",{staticClass:\"el-progress__text\",style:{fontSize:e.progressTextSize+\"px\"}},[e.status?n(\"i\",{class:e.iconClass}):[e._v(e._s(e.content))]],2):e._e()])},r=[];i._withStripped=!0;var a={name:\"ElProgress\",props:{type:{type:String,default:\"line\",validator:function(e){return[\"line\",\"circle\",\"dashboard\"].indexOf(e)>-1}},percentage:{type:Number,default:0,required:!0,validator:function(e){return e>=0&&e<=100}},status:{type:String,validator:function(e){return[\"success\",\"exception\",\"warning\"].indexOf(e)>-1}},strokeWidth:{type:Number,default:6},strokeLinecap:{type:String,default:\"round\"},textInside:{type:Boolean,default:!1},width:{type:Number,default:126},showText:{type:Boolean,default:!0},color:{type:[String,Array,Function],default:\"\"},format:Function},computed:{barStyle:function(){var e={};return e.width=this.percentage+\"%\",e.backgroundColor=this.getCurrentColor(this.percentage),e},relativeStrokeWidth:function(){return(this.strokeWidth/this.width*100).toFixed(1)},radius:function(){return\"circle\"===this.type||\"dashboard\"===this.type?parseInt(50-parseFloat(this.relativeStrokeWidth)/2,10):0},trackPath:function(){var e=this.radius,t=\"dashboard\"===this.type;return\"\\n        M 50 50\\n        m 0 \"+(t?\"\":\"-\")+e+\"\\n        a \"+e+\" \"+e+\" 0 1 1 0 \"+(t?\"-\":\"\")+2*e+\"\\n        a \"+e+\" \"+e+\" 0 1 1 0 \"+(t?\"\":\"-\")+2*e+\"\\n        \"},perimeter:function(){return 2*Math.PI*this.radius},rate:function(){return\"dashboard\"===this.type?.75:1},strokeDashoffset:function(){var e=-1*this.perimeter*(1-this.rate)/2;return e+\"px\"},trailPathStyle:function(){return{strokeDasharray:this.perimeter*this.rate+\"px, \"+this.perimeter+\"px\",strokeDashoffset:this.strokeDashoffset}},circlePathStyle:function(){return{strokeDasharray:this.perimeter*this.rate*(this.percentage/100)+\"px, \"+this.perimeter+\"px\",strokeDashoffset:this.strokeDashoffset,transition:\"stroke-dasharray 0.6s ease 0s, stroke 0.6s ease\"}},stroke:function(){var e=void 0;if(this.color)e=this.getCurrentColor(this.percentage);else switch(this.status){case\"success\":e=\"#13ce66\";break;case\"exception\":e=\"#ff4949\";break;case\"warning\":e=\"#e6a23c\";break;default:e=\"#20a0ff\"}return e},iconClass:function(){return\"warning\"===this.status?\"el-icon-warning\":\"line\"===this.type?\"success\"===this.status?\"el-icon-circle-check\":\"el-icon-circle-close\":\"success\"===this.status?\"el-icon-check\":\"el-icon-close\"},progressTextSize:function(){return\"line\"===this.type?12+.4*this.strokeWidth:.111111*this.width+2},content:function(){return\"function\"===typeof this.format?this.format(this.percentage)||\"\":this.percentage+\"%\"}},methods:{getCurrentColor:function(e){return\"function\"===typeof this.color?this.color(e):\"string\"===typeof this.color?this.color:this.getLevelColor(e)},getLevelColor:function(e){for(var t=this.getColorArray().sort((function(e,t){return e.percentage-t.percentage})),n=0;n<t.length;n++)if(t[n].percentage>e)return t[n].color;return t[t.length-1].color},getColorArray:function(){var e=this.color,t=100/e.length;return e.map((function(e,n){return\"string\"===typeof e?{color:e,percentage:(n+1)*t}:e}))}}},o=a,s=n(0),l=Object(s[\"a\"])(o,i,r,!1,null,null,null);l.options.__file=\"packages/progress/src/progress.vue\";var c=l.exports;c.install=function(e){e.component(c.name,c)};t[\"default\"]=c}})},c345:function(e,t,n){\"use strict\";var i=n(\"c532\"),r=[\"age\",\"authorization\",\"content-length\",\"content-type\",\"etag\",\"expires\",\"from\",\"host\",\"if-modified-since\",\"if-unmodified-since\",\"last-modified\",\"location\",\"max-forwards\",\"proxy-authorization\",\"referer\",\"retry-after\",\"user-agent\"];e.exports=function(e){var t,n,a,o={};return e?(i.forEach(e.split(\"\\n\"),(function(e){if(a=e.indexOf(\":\"),t=i.trim(e.substr(0,a)).toLowerCase(),n=i.trim(e.substr(a+1)),t){if(o[t]&&r.indexOf(t)>=0)return;o[t]=\"set-cookie\"===t?(o[t]?o[t]:[]).concat([n]):o[t]?o[t]+\", \"+n:n}})),o):o}},c366:function(e,t,n){var i=n(\"6821\"),r=n(\"9def\"),a=n(\"77f1\");e.exports=function(e){return function(t,n,o){var s,l=i(t),c=r(l.length),u=a(o,c);if(e&&n!=n){while(c>u)if(s=l[u++],s!=s)return!0}else for(;c>u;u++)if((e||u in l)&&l[u]===n)return e||u||0;return!e&&-1}}},c367:function(e,t,n){\"use strict\";var i=n(\"8436\"),r=n(\"50ed\"),a=n(\"481b\"),o=n(\"36c3\");e.exports=n(\"30f1\")(Array,\"Array\",(function(e,t){this._t=o(e),this._i=0,this._k=t}),(function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,r(1)):r(0,\"keys\"==t?n:\"values\"==t?e[n]:[n,e[n]])}),\"values\"),a.Arguments=a.Array,i(\"keys\"),i(\"values\"),i(\"entries\")},c3a1:function(e,t,n){var i=n(\"e6f3\"),r=n(\"1691\");e.exports=Object.keys||function(e){return i(e,r)}},c401:function(e,t,n){\"use strict\";var i=n(\"c532\");e.exports=function(e,t,n){return i.forEach(n,(function(n){e=n(e,t)})),e}},c532:function(e,t,n){\"use strict\";var i=n(\"1d2b\"),r=Object.prototype.toString;function a(e){return\"[object Array]\"===r.call(e)}function o(e){return\"undefined\"===typeof e}function s(e){return null!==e&&!o(e)&&null!==e.constructor&&!o(e.constructor)&&\"function\"===typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}function l(e){return\"[object ArrayBuffer]\"===r.call(e)}function c(e){return\"undefined\"!==typeof FormData&&e instanceof FormData}function u(e){var t;return t=\"undefined\"!==typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&e.buffer instanceof ArrayBuffer,t}function d(e){return\"string\"===typeof e}function p(e){return\"number\"===typeof e}function h(e){return null!==e&&\"object\"===typeof e}function f(e){return\"[object Date]\"===r.call(e)}function _(e){return\"[object File]\"===r.call(e)}function m(e){return\"[object Blob]\"===r.call(e)}function g(e){return\"[object Function]\"===r.call(e)}function b(e){return h(e)&&g(e.pipe)}function v(e){return\"undefined\"!==typeof URLSearchParams&&e instanceof URLSearchParams}function E(e){return e.replace(/^\\s*/,\"\").replace(/\\s*$/,\"\")}function y(){return(\"undefined\"===typeof navigator||\"ReactNative\"!==navigator.product&&\"NativeScript\"!==navigator.product&&\"NS\"!==navigator.product)&&(\"undefined\"!==typeof window&&\"undefined\"!==typeof document)}function S(e,t){if(null!==e&&\"undefined\"!==typeof e)if(\"object\"!==typeof e&&(e=[e]),a(e))for(var n=0,i=e.length;n<i;n++)t.call(null,e[n],n,e);else for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.call(null,e[r],r,e)}function C(){var e={};function t(t,n){\"object\"===typeof e[n]&&\"object\"===typeof t?e[n]=C(e[n],t):e[n]=t}for(var n=0,i=arguments.length;n<i;n++)S(arguments[n],t);return e}function T(){var e={};function t(t,n){\"object\"===typeof e[n]&&\"object\"===typeof t?e[n]=T(e[n],t):e[n]=\"object\"===typeof t?T({},t):t}for(var n=0,i=arguments.length;n<i;n++)S(arguments[n],t);return e}function x(e,t,n){return S(t,(function(t,r){e[r]=n&&\"function\"===typeof t?i(t,n):t})),e}e.exports={isArray:a,isArrayBuffer:l,isBuffer:s,isFormData:c,isArrayBufferView:u,isString:d,isNumber:p,isObject:h,isUndefined:o,isDate:f,isFile:_,isBlob:m,isFunction:g,isStream:b,isURLSearchParams:v,isStandardBrowserEnv:y,forEach:S,merge:C,deepMerge:T,extend:x,trim:E}},c56a:function(e,t,n){\"use strict\";t.__esModule=!0,t.default=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:300,i=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!e||!t)throw new Error(\"instance & callback is required\");var r=!1,a=function(){r||(r=!0,t&&t.apply(null,arguments))};i?e.$once(\"after-leave\",a):e.$on(\"after-leave\",a),setTimeout((function(){a()}),n+100)}},c69a:function(e,t,n){e.exports=!n(\"9e1e\")&&!n(\"79e5\")((function(){return 7!=Object.defineProperty(n(\"230e\")(\"div\"),\"a\",{get:function(){return 7}}).a}))},c8af:function(e,t,n){\"use strict\";var i=n(\"c532\");e.exports=function(e,t){i.forEach(e,(function(n,i){i!==t&&i.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[i])}))}},c8ba:function(e,t){var n;n=function(){return this}();try{n=n||new Function(\"return this\")()}catch(i){\"object\"===typeof window&&(n=window)}e.exports=n},c8e5:function(e,t){function n(e){const t=\"primitive rsc_template\",n=\"group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml\",i=\"property rsc_defaults op_defaults\",r=\"params meta operations op rule attributes utilization\",a=\"read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\\\\",o=\"number string\",s=\"Master Started Slave Stopped start promote demote stop monitor true false\";return{name:\"crmsh\",aliases:[\"crm\",\"pcmk\"],case_insensitive:!0,keywords:{keyword:r+\" \"+a+\" \"+o,literal:s},contains:[e.HASH_COMMENT_MODE,{beginKeywords:\"node\",starts:{end:\"\\\\s*([\\\\w_-]+:)?\",starts:{className:\"title\",end:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\"}}},{beginKeywords:t,starts:{className:\"title\",end:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\",starts:{end:\"\\\\s*@?[\\\\w_][\\\\w_\\\\.:-]*\"}}},{begin:\"\\\\b(\"+n.split(\" \").join(\"|\")+\")\\\\s+\",keywords:n,starts:{className:\"title\",end:\"[\\\\$\\\\w_][\\\\w_-]*\"}},{beginKeywords:i,starts:{className:\"title\",end:\"\\\\s*([\\\\w_-]+:)?\"}},e.QUOTE_STRING_MODE,{className:\"meta\",begin:\"(ocf|systemd|service|lsb):[\\\\w_:-]+\",relevance:0},{className:\"number\",begin:\"\\\\b\\\\d+(\\\\.\\\\d+)?(ms|s|h|m)?\",relevance:0},{className:\"literal\",begin:\"[-]?(infinity|inf)\",relevance:0},{className:\"attr\",begin:/([A-Za-z$_#][\\w_-]+)=/,relevance:0},{className:\"tag\",begin:\"</?\",end:\"/?>\",relevance:0}]}}e.exports=n},ca5a:function(e,t){var n=0,i=Math.random();e.exports=function(e){return\"Symbol(\".concat(void 0===e?\"\":e,\")_\",(++n+i).toString(36))}},cadf:function(e,t,n){\"use strict\";var i=n(\"9c6c\"),r=n(\"d53b\"),a=n(\"84f2\"),o=n(\"6821\");e.exports=n(\"01f9\")(Array,\"Array\",(function(e,t){this._t=o(e),this._i=0,this._k=t}),(function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,r(1)):r(0,\"keys\"==t?n:\"values\"==t?e[n]:[n,e[n]])}),\"values\"),a.Arguments=a.Array,i(\"keys\"),i(\"values\"),i(\"entries\")},cb7c:function(e,t,n){var i=n(\"d3f4\");e.exports=function(e){if(!i(e))throw TypeError(e+\" is not an object!\");return e}},ccb9:function(e,t,n){t.f=n(\"5168\")},ce10:function(e,t,n){var i=n(\"69a8\"),r=n(\"6821\"),a=n(\"c366\")(!1),o=n(\"613b\")(\"IE_PROTO\");e.exports=function(e,t){var n,s=r(e),l=0,c=[];for(n in s)n!=o&&i(s,n)&&c.push(n);while(t.length>l)i(s,n=t[l++])&&(~a(c,n)||c.push(n));return c}},cee4:function(e,t,n){\"use strict\";var i=n(\"c532\"),r=n(\"1d2b\"),a=n(\"0a06\"),o=n(\"4a7b\"),s=n(\"2444\");function l(e){var t=new a(e),n=r(a.prototype.request,t);return i.extend(n,a.prototype,t),i.extend(n,t),n}var c=l(s);c.Axios=a,c.create=function(e){return l(o(c.defaults,e))},c.Cancel=n(\"7a77\"),c.CancelToken=n(\"8df4\"),c.isCancel=n(\"2e67\"),c.all=function(e){return Promise.all(e)},c.spread=n(\"0df6\"),e.exports=c,e.exports.default=c},d010:function(e,t,n){\"use strict\";function i(e,t,n){this.$children.forEach((function(r){var a=r.$options.componentName;a===e?r.$emit.apply(r,[t].concat(n)):i.apply(r,[e,t].concat([n]))}))}t.__esModule=!0,t.default={methods:{dispatch:function(e,t,n){var i=this.$parent||this.$root,r=i.$options.componentName;while(i&&(!r||r!==e))i=i.$parent,i&&(r=i.$options.componentName);i&&i.$emit.apply(i,[t].concat(n))},broadcast:function(e,t,n){i.call(this,e,t,n)}}}},d233:function(e,t,n){\"use strict\";var i=Object.prototype.hasOwnProperty,r=Array.isArray,a=function(){for(var e=[],t=0;t<256;++t)e.push(\"%\"+((t<16?\"0\":\"\")+t.toString(16)).toUpperCase());return e}(),o=function(e){while(e.length>1){var t=e.pop(),n=t.obj[t.prop];if(r(n)){for(var i=[],a=0;a<n.length;++a)\"undefined\"!==typeof n[a]&&i.push(n[a]);t.obj[t.prop]=i}}},s=function(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},i=0;i<e.length;++i)\"undefined\"!==typeof e[i]&&(n[i]=e[i]);return n},l=function e(t,n,a){if(!n)return t;if(\"object\"!==typeof n){if(r(t))t.push(n);else{if(!t||\"object\"!==typeof t)return[t,n];(a&&(a.plainObjects||a.allowPrototypes)||!i.call(Object.prototype,n))&&(t[n]=!0)}return t}if(!t||\"object\"!==typeof t)return[t].concat(n);var o=t;return r(t)&&!r(n)&&(o=s(t,a)),r(t)&&r(n)?(n.forEach((function(n,r){if(i.call(t,r)){var o=t[r];o&&\"object\"===typeof o&&n&&\"object\"===typeof n?t[r]=e(o,n,a):t.push(n)}else t[r]=n})),t):Object.keys(n).reduce((function(t,r){var o=n[r];return i.call(t,r)?t[r]=e(t[r],o,a):t[r]=o,t}),o)},c=function(e,t){return Object.keys(t).reduce((function(e,n){return e[n]=t[n],e}),e)},u=function(e,t,n){var i=e.replace(/\\+/g,\" \");if(\"iso-8859-1\"===n)return i.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(i)}catch(r){return i}},d=function(e,t,n){if(0===e.length)return e;var i=\"string\"===typeof e?e:String(e);if(\"iso-8859-1\"===n)return escape(i).replace(/%u[0-9a-f]{4}/gi,(function(e){return\"%26%23\"+parseInt(e.slice(2),16)+\"%3B\"}));for(var r=\"\",o=0;o<i.length;++o){var s=i.charCodeAt(o);45===s||46===s||95===s||126===s||s>=48&&s<=57||s>=65&&s<=90||s>=97&&s<=122?r+=i.charAt(o):s<128?r+=a[s]:s<2048?r+=a[192|s>>6]+a[128|63&s]:s<55296||s>=57344?r+=a[224|s>>12]+a[128|s>>6&63]+a[128|63&s]:(o+=1,s=65536+((1023&s)<<10|1023&i.charCodeAt(o)),r+=a[240|s>>18]+a[128|s>>12&63]+a[128|s>>6&63]+a[128|63&s])}return r},p=function(e){for(var t=[{obj:{o:e},prop:\"o\"}],n=[],i=0;i<t.length;++i)for(var r=t[i],a=r.obj[r.prop],s=Object.keys(a),l=0;l<s.length;++l){var c=s[l],u=a[c];\"object\"===typeof u&&null!==u&&-1===n.indexOf(u)&&(t.push({obj:a,prop:c}),n.push(u))}return o(t),e},h=function(e){return\"[object RegExp]\"===Object.prototype.toString.call(e)},f=function(e){return!(!e||\"object\"!==typeof e)&&!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))},_=function(e,t){return[].concat(e,t)};e.exports={arrayToObject:s,assign:c,combine:_,compact:p,decode:u,encode:d,isBuffer:f,isRegExp:h,merge:l}},d248:function(e,t){function n(e){const t={begin:/\\|[A-Za-z]+:?/,keywords:{name:\"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone\"},contains:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE]};return{name:\"Django\",aliases:[\"jinja\"],case_insensitive:!0,subLanguage:\"xml\",contains:[e.COMMENT(/\\{%\\s*comment\\s*%\\}/,/\\{%\\s*endcomment\\s*%\\}/),e.COMMENT(/\\{#/,/#\\}/),{className:\"template-tag\",begin:/\\{%/,end:/%\\}/,contains:[{className:\"name\",begin:/\\w+/,keywords:{name:\"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim\"},starts:{endsWithParent:!0,keywords:\"in by as\",contains:[t],relevance:0}}]},{className:\"template-variable\",begin:/\\{\\{/,end:/\\}\\}/,contains:[t]}]}}e.exports=n},d397:function(e,t,n){\"use strict\";function i(e){return void 0!==e&&null!==e}function r(e){var t=/([(\\uAC00-\\uD7AF)|(\\u3130-\\u318F)])+/gi;return t.test(e)}t.__esModule=!0,t.isDef=i,t.isKorean=r},d3f4:function(e,t){e.exports=function(e){return\"object\"===typeof e?null!==e:\"function\"===typeof e}},d4af:function(e,t,n){\"use strict\";var i=n(\"8eb7\"),r=n(\"7b3e\"),a=10,o=40,s=800;function l(e){var t=0,n=0,i=0,r=0;return\"detail\"in e&&(n=e.detail),\"wheelDelta\"in e&&(n=-e.wheelDelta/120),\"wheelDeltaY\"in e&&(n=-e.wheelDeltaY/120),\"wheelDeltaX\"in e&&(t=-e.wheelDeltaX/120),\"axis\"in e&&e.axis===e.HORIZONTAL_AXIS&&(t=n,n=0),i=t*a,r=n*a,\"deltaY\"in e&&(r=e.deltaY),\"deltaX\"in e&&(i=e.deltaX),(i||r)&&e.deltaMode&&(1==e.deltaMode?(i*=o,r*=o):(i*=s,r*=s)),i&&!t&&(t=i<1?-1:1),r&&!n&&(n=r<1?-1:1),{spinX:t,spinY:n,pixelX:i,pixelY:r}}l.getEventType=function(){return i.firefox()?\"DOMMouseScroll\":r(\"wheel\")?\"wheel\":\"mousewheel\"},e.exports=l},d4b5:function(e,t){function n(e){return{name:\"Stata\",aliases:[\"do\",\"ado\"],case_insensitive:!0,keywords:\"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey bias binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 bubble bubbleplot ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d|0 datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e|0 ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error esize est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 forest forestplot form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate funnel funnelplot g|0 gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h|0 hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l|0 la lab labbe labbeplot labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m|0 ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize menl meqparse mer merg merge meta mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n|0 nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trimfill trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u|0 unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5\",contains:[{className:\"symbol\",begin:/`[a-zA-Z0-9_]+'/},{className:\"variable\",begin:/\\$\\{?[a-zA-Z0-9_]+\\}?/},{className:\"string\",variants:[{begin:'`\"[^\\r\\n]*?\"\\''},{begin:'\"[^\\r\\n\"]*\"'}]},{className:\"built_in\",variants:[{begin:\"\\\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\\\()\"}]},e.COMMENT(\"^[ \\t]*\\\\*.*$\",!1),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]}}e.exports=n},d53b:function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},d7d1:function(e,t,n){\"use strict\";var i;(function(r){var a={},o=/d{1,4}|M{1,4}|yy(?:yy)?|S{1,3}|Do|ZZ|([HhMsDm])\\1?|[aA]|\"[^\"]*\"|'[^']*'/g,s=\"\\\\d\\\\d?\",l=\"\\\\d{3}\",c=\"\\\\d{4}\",u=\"[^\\\\s]+\",d=/\\[([^]*?)\\]/gm,p=function(){};function h(e){return e.replace(/[|\\\\{()[^$+*?.-]/g,\"\\\\$&\")}function f(e,t){for(var n=[],i=0,r=e.length;i<r;i++)n.push(e[i].substr(0,t));return n}function _(e){return function(t,n,i){var r=i[e].indexOf(n.charAt(0).toUpperCase()+n.substr(1).toLowerCase());~r&&(t.month=r)}}function m(e,t){e=String(e),t=t||2;while(e.length<t)e=\"0\"+e;return e}var g=[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],b=[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],v=f(b,3),E=f(g,3);a.i18n={dayNamesShort:E,dayNames:g,monthNamesShort:v,monthNames:b,amPm:[\"am\",\"pm\"],DoFn:function(e){return e+[\"th\",\"st\",\"nd\",\"rd\"][e%10>3?0:(e-e%10!==10)*e%10]}};var y={D:function(e){return e.getDay()},DD:function(e){return m(e.getDay())},Do:function(e,t){return t.DoFn(e.getDate())},d:function(e){return e.getDate()},dd:function(e){return m(e.getDate())},ddd:function(e,t){return t.dayNamesShort[e.getDay()]},dddd:function(e,t){return t.dayNames[e.getDay()]},M:function(e){return e.getMonth()+1},MM:function(e){return m(e.getMonth()+1)},MMM:function(e,t){return t.monthNamesShort[e.getMonth()]},MMMM:function(e,t){return t.monthNames[e.getMonth()]},yy:function(e){return m(String(e.getFullYear()),4).substr(2)},yyyy:function(e){return m(e.getFullYear(),4)},h:function(e){return e.getHours()%12||12},hh:function(e){return m(e.getHours()%12||12)},H:function(e){return e.getHours()},HH:function(e){return m(e.getHours())},m:function(e){return e.getMinutes()},mm:function(e){return m(e.getMinutes())},s:function(e){return e.getSeconds()},ss:function(e){return m(e.getSeconds())},S:function(e){return Math.round(e.getMilliseconds()/100)},SS:function(e){return m(Math.round(e.getMilliseconds()/10),2)},SSS:function(e){return m(e.getMilliseconds(),3)},a:function(e,t){return e.getHours()<12?t.amPm[0]:t.amPm[1]},A:function(e,t){return e.getHours()<12?t.amPm[0].toUpperCase():t.amPm[1].toUpperCase()},ZZ:function(e){var t=e.getTimezoneOffset();return(t>0?\"-\":\"+\")+m(100*Math.floor(Math.abs(t)/60)+Math.abs(t)%60,4)}},S={d:[s,function(e,t){e.day=t}],Do:[s+u,function(e,t){e.day=parseInt(t,10)}],M:[s,function(e,t){e.month=t-1}],yy:[s,function(e,t){var n=new Date,i=+(\"\"+n.getFullYear()).substr(0,2);e.year=\"\"+(t>68?i-1:i)+t}],h:[s,function(e,t){e.hour=t}],m:[s,function(e,t){e.minute=t}],s:[s,function(e,t){e.second=t}],yyyy:[c,function(e,t){e.year=t}],S:[\"\\\\d\",function(e,t){e.millisecond=100*t}],SS:[\"\\\\d{2}\",function(e,t){e.millisecond=10*t}],SSS:[l,function(e,t){e.millisecond=t}],D:[s,p],ddd:[u,p],MMM:[u,_(\"monthNamesShort\")],MMMM:[u,_(\"monthNames\")],a:[u,function(e,t,n){var i=t.toLowerCase();i===n.amPm[0]?e.isPm=!1:i===n.amPm[1]&&(e.isPm=!0)}],ZZ:[\"[^\\\\s]*?[\\\\+\\\\-]\\\\d\\\\d:?\\\\d\\\\d|[^\\\\s]*?Z\",function(e,t){var n,i=(t+\"\").match(/([+-]|\\d\\d)/gi);i&&(n=60*i[1]+parseInt(i[2],10),e.timezoneOffset=\"+\"===i[0]?n:-n)}]};S.dd=S.d,S.dddd=S.ddd,S.DD=S.D,S.mm=S.m,S.hh=S.H=S.HH=S.h,S.MM=S.M,S.ss=S.s,S.A=S.a,a.masks={default:\"ddd MMM dd yyyy HH:mm:ss\",shortDate:\"M/D/yy\",mediumDate:\"MMM d, yyyy\",longDate:\"MMMM d, yyyy\",fullDate:\"dddd, MMMM d, yyyy\",shortTime:\"HH:mm\",mediumTime:\"HH:mm:ss\",longTime:\"HH:mm:ss.SSS\"},a.format=function(e,t,n){var i=n||a.i18n;if(\"number\"===typeof e&&(e=new Date(e)),\"[object Date]\"!==Object.prototype.toString.call(e)||isNaN(e.getTime()))throw new Error(\"Invalid Date in fecha.format\");t=a.masks[t]||t||a.masks[\"default\"];var r=[];return t=t.replace(d,(function(e,t){return r.push(t),\"@@@\"})),t=t.replace(o,(function(t){return t in y?y[t](e,i):t.slice(1,t.length-1)})),t.replace(/@@@/g,(function(){return r.shift()}))},a.parse=function(e,t,n){var i=n||a.i18n;if(\"string\"!==typeof t)throw new Error(\"Invalid format in fecha.parse\");if(t=a.masks[t]||t,e.length>1e3)return null;var r={},s=[],l=[];t=t.replace(d,(function(e,t){return l.push(t),\"@@@\"}));var c=h(t).replace(o,(function(e){if(S[e]){var t=S[e];return s.push(t[1]),\"(\"+t[0]+\")\"}return e}));c=c.replace(/@@@/g,(function(){return l.shift()}));var u=e.match(new RegExp(c,\"i\"));if(!u)return null;for(var p=1;p<u.length;p++)s[p-1](r,u[p],i);var f,_=new Date;return!0===r.isPm&&null!=r.hour&&12!==+r.hour?r.hour=+r.hour+12:!1===r.isPm&&12===+r.hour&&(r.hour=0),null!=r.timezoneOffset?(r.minute=+(r.minute||0)-+r.timezoneOffset,f=new Date(Date.UTC(r.year||_.getFullYear(),r.month||0,r.day||1,r.hour||0,r.minute||0,r.second||0,r.millisecond||0))):f=new Date(r.year||_.getFullYear(),r.month||0,r.day||1,r.hour||0,r.minute||0,r.second||0,r.millisecond||0),f},e.exports?e.exports=a:(i=function(){return a}.call(t,n,t,e),void 0===i||(e.exports=i))})()},d864:function(e,t,n){var i=n(\"79aa\");e.exports=function(e,t,n){if(i(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,i){return e.call(t,n,i)};case 3:return function(n,i,r){return e.call(t,n,i,r)}}return function(){return e.apply(t,arguments)}}},d8d6:function(e,t,n){n(\"1654\"),n(\"6c1c\"),e.exports=n(\"ccb9\").f(\"iterator\")},d8e8:function(e,t){e.exports=function(e){if(\"function\"!=typeof e)throw TypeError(e+\" is not a function!\");return e}},d925:function(e,t,n){\"use strict\";e.exports=function(e){return/^([a-z][a-z\\d\\+\\-\\.]*:)?\\/\\//i.test(e)}},d940:function(e,t,n){\"use strict\";t.__esModule=!0,t.validateRangeInOneMonth=t.extractTimeFormat=t.extractDateFormat=t.nextYear=t.prevYear=t.nextMonth=t.prevMonth=t.changeYearMonthAndClampDate=t.timeWithinRange=t.limitTimeRange=t.clearMilliseconds=t.clearTime=t.modifyWithTimeString=t.modifyTime=t.modifyDate=t.range=t.getRangeMinutes=t.getMonthDays=t.getPrevMonthLastDays=t.getRangeHours=t.getWeekNumber=t.getStartDateOfMonth=t.nextDate=t.prevDate=t.getFirstDayOfMonth=t.getDayCountOfYear=t.getDayCountOfMonth=t.parseDate=t.formatDate=t.isDateObject=t.isDate=t.toDate=t.getI18nSettings=void 0;var i=n(\"d7d1\"),r=o(i),a=n(\"4897\");function o(e){return e&&e.__esModule?e:{default:e}}var s=[\"sun\",\"mon\",\"tue\",\"wed\",\"thu\",\"fri\",\"sat\"],l=[\"jan\",\"feb\",\"mar\",\"apr\",\"may\",\"jun\",\"jul\",\"aug\",\"sep\",\"oct\",\"nov\",\"dec\"],c=function(e,t){for(var n=[],i=e;i<=t;i++)n.push(i);return n},u=t.getI18nSettings=function(){return{dayNamesShort:s.map((function(e){return(0,a.t)(\"el.datepicker.weeks.\"+e)})),dayNames:s.map((function(e){return(0,a.t)(\"el.datepicker.weeks.\"+e)})),monthNamesShort:l.map((function(e){return(0,a.t)(\"el.datepicker.months.\"+e)})),monthNames:l.map((function(e,t){return(0,a.t)(\"el.datepicker.month\"+(t+1))})),amPm:[\"am\",\"pm\"]}},d=t.toDate=function(e){return p(e)?new Date(e):null},p=t.isDate=function(e){return null!==e&&void 0!==e&&(!isNaN(new Date(e).getTime())&&!Array.isArray(e))},h=(t.isDateObject=function(e){return e instanceof Date},t.formatDate=function(e,t){return e=d(e),e?r.default.format(e,t||\"yyyy-MM-dd\",u()):\"\"},t.parseDate=function(e,t){return r.default.parse(e,t||\"yyyy-MM-dd\",u())}),f=t.getDayCountOfMonth=function(e,t){return 3===t||5===t||8===t||10===t?30:1===t?e%4===0&&e%100!==0||e%400===0?29:28:31},_=(t.getDayCountOfYear=function(e){var t=e%400===0||e%100!==0&&e%4===0;return t?366:365},t.getFirstDayOfMonth=function(e){var t=new Date(e.getTime());return t.setDate(1),t.getDay()},t.prevDate=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return new Date(e.getFullYear(),e.getMonth(),e.getDate()-t)});t.nextDate=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return new Date(e.getFullYear(),e.getMonth(),e.getDate()+t)},t.getStartDateOfMonth=function(e,t){var n=new Date(e,t,1),i=n.getDay();return _(n,0===i?7:i)},t.getWeekNumber=function(e){if(!p(e))return null;var t=new Date(e.getTime());t.setHours(0,0,0,0),t.setDate(t.getDate()+3-(t.getDay()+6)%7);var n=new Date(t.getFullYear(),0,4);return 1+Math.round(((t.getTime()-n.getTime())/864e5-3+(n.getDay()+6)%7)/7)},t.getRangeHours=function(e){var t=[],n=[];if((e||[]).forEach((function(e){var t=e.map((function(e){return e.getHours()}));n=n.concat(c(t[0],t[1]))})),n.length)for(var i=0;i<24;i++)t[i]=-1===n.indexOf(i);else for(var r=0;r<24;r++)t[r]=!1;return t},t.getPrevMonthLastDays=function(e,t){if(t<=0)return[];var n=new Date(e.getTime());n.setDate(0);var i=n.getDate();return g(t).map((function(e,n){return i-(t-n-1)}))},t.getMonthDays=function(e){var t=new Date(e.getFullYear(),e.getMonth()+1,0),n=t.getDate();return g(n).map((function(e,t){return t+1}))};function m(e,t,n,i){for(var r=t;r<n;r++)e[r]=i}t.getRangeMinutes=function(e,t){var n=new Array(60);return e.length>0?e.forEach((function(e){var i=e[0],r=e[1],a=i.getHours(),o=i.getMinutes(),s=r.getHours(),l=r.getMinutes();a===t&&s!==t?m(n,o,60,!0):a===t&&s===t?m(n,o,l+1,!0):a!==t&&s===t?m(n,0,l+1,!0):a<t&&s>t&&m(n,0,60,!0)})):m(n,0,60,!0),n};var g=t.range=function(e){return Array.apply(null,{length:e}).map((function(e,t){return t}))},b=t.modifyDate=function(e,t,n,i){return new Date(t,n,i,e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds())},v=t.modifyTime=function(e,t,n,i){return new Date(e.getFullYear(),e.getMonth(),e.getDate(),t,n,i,e.getMilliseconds())},E=(t.modifyWithTimeString=function(e,t){return null!=e&&t?(t=h(t,\"HH:mm:ss\"),v(e,t.getHours(),t.getMinutes(),t.getSeconds())):e},t.clearTime=function(e){return new Date(e.getFullYear(),e.getMonth(),e.getDate())},t.clearMilliseconds=function(e){return new Date(e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),0)},t.limitTimeRange=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"HH:mm:ss\";if(0===t.length)return e;var i=function(e){return r.default.parse(r.default.format(e,n),n)},a=i(e),o=t.map((function(e){return e.map(i)}));if(o.some((function(e){return a>=e[0]&&a<=e[1]})))return e;var s=o[0][0],l=o[0][0];o.forEach((function(e){s=new Date(Math.min(e[0],s)),l=new Date(Math.max(e[1],s))}));var c=a<s?s:l;return b(c,e.getFullYear(),e.getMonth(),e.getDate())}),y=(t.timeWithinRange=function(e,t,n){var i=E(e,t,n);return i.getTime()===e.getTime()},t.changeYearMonthAndClampDate=function(e,t,n){var i=Math.min(e.getDate(),f(t,n));return b(e,t,n,i)});t.prevMonth=function(e){var t=e.getFullYear(),n=e.getMonth();return 0===n?y(e,t-1,11):y(e,t,n-1)},t.nextMonth=function(e){var t=e.getFullYear(),n=e.getMonth();return 11===n?y(e,t+1,0):y(e,t,n+1)},t.prevYear=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,n=e.getFullYear(),i=e.getMonth();return y(e,n-t,i)},t.nextYear=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,n=e.getFullYear(),i=e.getMonth();return y(e,n+t,i)},t.extractDateFormat=function(e){return e.replace(/\\W?m{1,2}|\\W?ZZ/g,\"\").replace(/\\W?h{1,2}|\\W?s{1,3}|\\W?a/gi,\"\").trim()},t.extractTimeFormat=function(e){return e.replace(/\\W?D{1,2}|\\W?Do|\\W?d{1,4}|\\W?M{1,4}|\\W?y{2,4}/g,\"\").trim()},t.validateRangeInOneMonth=function(e,t){return e.getMonth()===t.getMonth()&&e.getFullYear()===t.getFullYear()}},d959:function(e,t){function n(e){const t=\"foreach do while for if from to step else on-error and or not in\",n=\"global local beep delay put len typeof pick log time set find environment terminal error execute parse resolve toarray tobool toid toip toip6 tonum tostr totime\",i=\"add remove enable disable set get print export edit find run debug error info warning\",r=\"true false yes no nothing nil null\",a=\"traffic-flow traffic-generator firewall scheduler aaa accounting address-list address align area bandwidth-server bfd bgp bridge client clock community config connection console customer default dhcp-client dhcp-server discovery dns e-mail ethernet filter firmware gps graphing group hardware health hotspot identity igmp-proxy incoming instance interface ip ipsec ipv6 irq l2tp-server lcd ldp logging mac-server mac-winbox mangle manual mirror mme mpls nat nd neighbor network note ntp ospf ospf-v3 ovpn-server page peer pim ping policy pool port ppp pppoe-client pptp-server prefix profile proposal proxy queue radius resource rip ripng route routing screen script security-profiles server service service-port settings shares smb sms sniffer snmp snooper socks sstp-server system tool tracking type upgrade upnp user-manager users user vlan secret vrrp watchdog web-access wireless pptp pppoe lan wan layer7-protocol lease simple raw\",o={className:\"variable\",variants:[{begin:/\\$[\\w\\d#@][\\w\\d_]*/},{begin:/\\$\\{(.*?)\\}/}]},s={className:\"string\",begin:/\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,o,{className:\"variable\",begin:/\\$\\(/,end:/\\)/,contains:[e.BACKSLASH_ESCAPE]}]},l={className:\"string\",begin:/'/,end:/'/};return{name:\"Microtik RouterOS script\",aliases:[\"routeros\",\"mikrotik\"],case_insensitive:!0,keywords:{$pattern:/:?[\\w-]+/,literal:r,keyword:t+\" :\"+t.split(\" \").join(\" :\")+\" :\"+n.split(\" \").join(\" :\")},contains:[{variants:[{begin:/\\/\\*/,end:/\\*\\//},{begin:/\\/\\//,end:/$/},{begin:/<\\//,end:/>/}],illegal:/./},e.COMMENT(\"^#\",\"$\"),s,l,o,{begin:/[\\w-]+=([^\\s{}[\\]()>]+)/,relevance:0,returnBegin:!0,contains:[{className:\"attribute\",begin:/[^=]+/},{begin:/=/,endsWithParent:!0,relevance:0,contains:[s,l,o,{className:\"literal\",begin:\"\\\\b(\"+r.split(\" \").join(\"|\")+\")\\\\b\"},{begin:/(\"[^\"]*\"|[^\\s{}[\\]]+)/}]}]},{className:\"number\",begin:/\\*[0-9a-fA-F]+/},{begin:\"\\\\b(\"+i.split(\" \").join(\"|\")+\")([\\\\s[(\\\\]|])\",returnBegin:!0,contains:[{className:\"builtin-name\",begin:/\\w+/}]},{className:\"built_in\",variants:[{begin:\"(\\\\.\\\\./|/|\\\\s)((\"+a.split(\" \").join(\"|\")+\");?\\\\s)+\"},{begin:/\\.\\./,relevance:0}]}]}}e.exports=n},d9f6:function(e,t,n){var i=n(\"e4ae\"),r=n(\"794b\"),a=n(\"1bc3\"),o=Object.defineProperty;t.f=n(\"8e60\")?Object.defineProperty:function(e,t,n){if(i(e),t=a(t,!0),i(n),r)try{return o(e,t,n)}catch(s){}if(\"get\"in n||\"set\"in n)throw TypeError(\"Accessors not supported!\");return\"value\"in n&&(e[t]=n.value),e}},dbcc:function(e,t){function n(e){var t={className:\"built_in\",begin:\"\\\\b(void|bool|int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|string|ref|array|double|float|auto|dictionary)\"},n={className:\"symbol\",begin:\"[a-zA-Z0-9_]+@\"},i={className:\"keyword\",begin:\"<\",end:\">\",contains:[t,n]};return t.contains=[i],n.contains=[i],{name:\"AngelScript\",aliases:[\"asc\"],keywords:\"for in|0 break continue while do|0 return if else case switch namespace is cast or and xor not get|0 in inout|10 out override set|0 private public const default|0 final shared external mixin|10 enum typedef funcdef this super import from interface abstract|0 try catch protected explicit property\",illegal:\"(^using\\\\s+[A-Za-z0-9_\\\\.]+;$|\\\\bfunction\\\\s*[^\\\\(])\",contains:[{className:\"string\",begin:\"'\",end:\"'\",illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE],relevance:0},{className:\"string\",begin:'\"\"\"',end:'\"\"\"'},{className:\"string\",begin:'\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE],relevance:0},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"string\",begin:\"^\\\\s*\\\\[\",end:\"\\\\]\"},{beginKeywords:\"interface namespace\",end:/\\{/,illegal:\"[;.\\\\-]\",contains:[{className:\"symbol\",begin:\"[a-zA-Z0-9_]+\"}]},{beginKeywords:\"class\",end:/\\{/,illegal:\"[;.\\\\-]\",contains:[{className:\"symbol\",begin:\"[a-zA-Z0-9_]+\",contains:[{begin:\"[:,]\\\\s*\",contains:[{className:\"symbol\",begin:\"[a-zA-Z0-9_]+\"}]}]}]},t,n,{className:\"literal\",begin:\"\\\\b(null|true|false)\"},{className:\"number\",relevance:0,begin:\"(-?)(\\\\b0[xXbBoOdD][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?f?|\\\\.\\\\d+f?)([eE][-+]?\\\\d+f?)?)\"}]}}e.exports=n},dbdb:function(e,t,n){var i=n(\"584a\"),r=n(\"e53d\"),a=\"__core-js_shared__\",o=r[a]||(r[a]={});(e.exports=function(e,t){return o[e]||(o[e]=void 0!==t?t:{})})(\"versions\",[]).push({version:i.version,mode:n(\"b8e3\")?\"pure\":\"global\",copyright:\"© 2020 Denis Pushkarev (zloirock.ru)\"})},dc41:function(e,t){function n(e){return{name:\"SML (Standard ML)\",aliases:[\"ml\"],keywords:{$pattern:\"[a-z_]\\\\w*!?\",keyword:\"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while\",built_in:\"array bool char exn int list option order real ref string substring vector unit word\",literal:\"true false NONE SOME LESS EQUAL GREATER nil\"},illegal:/\\/\\/|>>/,contains:[{className:\"literal\",begin:/\\[(\\|\\|)?\\]|\\(\\)/,relevance:0},e.COMMENT(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{contains:[\"self\"]}),{className:\"symbol\",begin:\"'[A-Za-z_](?!')[\\\\w']*\"},{className:\"type\",begin:\"`[A-Z][\\\\w']*\"},{className:\"type\",begin:\"\\\\b[A-Z][\\\\w']*\",relevance:0},{begin:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.APOS_STRING_MODE,{className:\"string\",relevance:0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),{className:\"number\",begin:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",relevance:0},{begin:/[-=]>/}]}}e.exports=n},dcbc:function(e,t,n){var i=n(\"2aba\");e.exports=function(e,t,n){for(var r in t)i(e,r,t[r],n);return e}},dcdc:function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=83)}({0:function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},4:function(e,t){e.exports=n(\"d010\")},83:function(e,t,n){\"use strict\";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"label\",{staticClass:\"el-checkbox\",class:[e.border&&e.checkboxSize?\"el-checkbox--\"+e.checkboxSize:\"\",{\"is-disabled\":e.isDisabled},{\"is-bordered\":e.border},{\"is-checked\":e.isChecked}],attrs:{id:e.id}},[n(\"span\",{staticClass:\"el-checkbox__input\",class:{\"is-disabled\":e.isDisabled,\"is-checked\":e.isChecked,\"is-indeterminate\":e.indeterminate,\"is-focus\":e.focus},attrs:{tabindex:!!e.indeterminate&&0,role:!!e.indeterminate&&\"checkbox\",\"aria-checked\":!!e.indeterminate&&\"mixed\"}},[n(\"span\",{staticClass:\"el-checkbox__inner\"}),e.trueLabel||e.falseLabel?n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.model,expression:\"model\"}],staticClass:\"el-checkbox__original\",attrs:{type:\"checkbox\",\"aria-hidden\":e.indeterminate?\"true\":\"false\",name:e.name,disabled:e.isDisabled,\"true-value\":e.trueLabel,\"false-value\":e.falseLabel},domProps:{checked:Array.isArray(e.model)?e._i(e.model,null)>-1:e._q(e.model,e.trueLabel)},on:{change:[function(t){var n=e.model,i=t.target,r=i.checked?e.trueLabel:e.falseLabel;if(Array.isArray(n)){var a=null,o=e._i(n,a);i.checked?o<0&&(e.model=n.concat([a])):o>-1&&(e.model=n.slice(0,o).concat(n.slice(o+1)))}else e.model=r},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}}):n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.model,expression:\"model\"}],staticClass:\"el-checkbox__original\",attrs:{type:\"checkbox\",\"aria-hidden\":e.indeterminate?\"true\":\"false\",disabled:e.isDisabled,name:e.name},domProps:{value:e.label,checked:Array.isArray(e.model)?e._i(e.model,e.label)>-1:e.model},on:{change:[function(t){var n=e.model,i=t.target,r=!!i.checked;if(Array.isArray(n)){var a=e.label,o=e._i(n,a);i.checked?o<0&&(e.model=n.concat([a])):o>-1&&(e.model=n.slice(0,o).concat(n.slice(o+1)))}else e.model=r},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}})]),e.$slots.default||e.label?n(\"span\",{staticClass:\"el-checkbox__label\"},[e._t(\"default\"),e.$slots.default?e._e():[e._v(e._s(e.label))]],2):e._e()])},r=[];i._withStripped=!0;var a=n(4),o=n.n(a),s={name:\"ElCheckbox\",mixins:[o.a],inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},componentName:\"ElCheckbox\",data:function(){return{selfModel:!1,focus:!1,isLimitExceeded:!1}},computed:{model:{get:function(){return this.isGroup?this.store:void 0!==this.value?this.value:this.selfModel},set:function(e){this.isGroup?(this.isLimitExceeded=!1,void 0!==this._checkboxGroup.min&&e.length<this._checkboxGroup.min&&(this.isLimitExceeded=!0),void 0!==this._checkboxGroup.max&&e.length>this._checkboxGroup.max&&(this.isLimitExceeded=!0),!1===this.isLimitExceeded&&this.dispatch(\"ElCheckboxGroup\",\"input\",[e])):(this.$emit(\"input\",e),this.selfModel=e)}},isChecked:function(){return\"[object Boolean]\"==={}.toString.call(this.model)?this.model:Array.isArray(this.model)?this.model.indexOf(this.label)>-1:null!==this.model&&void 0!==this.model?this.model===this.trueLabel:void 0},isGroup:function(){var e=this.$parent;while(e){if(\"ElCheckboxGroup\"===e.$options.componentName)return this._checkboxGroup=e,!0;e=e.$parent}return!1},store:function(){return this._checkboxGroup?this._checkboxGroup.value:this.value},isLimitDisabled:function(){var e=this._checkboxGroup,t=e.max,n=e.min;return!(!t&&!n)&&this.model.length>=t&&!this.isChecked||this.model.length<=n&&this.isChecked},isDisabled:function(){return this.isGroup?this._checkboxGroup.disabled||this.disabled||(this.elForm||{}).disabled||this.isLimitDisabled:this.disabled||(this.elForm||{}).disabled},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},checkboxSize:function(){var e=this.size||this._elFormItemSize||(this.$ELEMENT||{}).size;return this.isGroup&&this._checkboxGroup.checkboxGroupSize||e}},props:{value:{},label:{},indeterminate:Boolean,disabled:Boolean,checked:Boolean,name:String,trueLabel:[String,Number],falseLabel:[String,Number],id:String,controls:String,border:Boolean,size:String},methods:{addToStore:function(){Array.isArray(this.model)&&-1===this.model.indexOf(this.label)?this.model.push(this.label):this.model=this.trueLabel||!0},handleChange:function(e){var t=this;if(!this.isLimitExceeded){var n=void 0;n=e.target.checked?void 0===this.trueLabel||this.trueLabel:void 0!==this.falseLabel&&this.falseLabel,this.$emit(\"change\",n,e),this.$nextTick((function(){t.isGroup&&t.dispatch(\"ElCheckboxGroup\",\"change\",[t._checkboxGroup.value])}))}}},created:function(){this.checked&&this.addToStore()},mounted:function(){this.indeterminate&&this.$el.setAttribute(\"aria-controls\",this.controls)},watch:{value:function(e){this.dispatch(\"ElFormItem\",\"el.form.change\",e)}}},l=s,c=n(0),u=Object(c[\"a\"])(l,i,r,!1,null,null,null);u.options.__file=\"packages/checkbox/src/checkbox.vue\";var d=u.exports;d.install=function(e){e.component(d.name,d)};t[\"default\"]=d}})},de09:function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(...e){const t=\"(\"+e.map(e=>n(e)).join(\"|\")+\")\";return t}function a(e){const t=e.COMMENT(\"--\",\"$\"),n={className:\"string\",variants:[{begin:/'/,end:/'/,contains:[{begin:/''/}]}]},a={begin:/\"/,end:/\"/,contains:[{begin:/\"\"/}]},o=[\"true\",\"false\",\"unknown\"],s=[\"double precision\",\"large object\",\"with timezone\",\"without timezone\"],l=[\"bigint\",\"binary\",\"blob\",\"boolean\",\"char\",\"character\",\"clob\",\"date\",\"dec\",\"decfloat\",\"decimal\",\"float\",\"int\",\"integer\",\"interval\",\"nchar\",\"nclob\",\"national\",\"numeric\",\"real\",\"row\",\"smallint\",\"time\",\"timestamp\",\"varchar\",\"varying\",\"varbinary\"],c=[\"add\",\"asc\",\"collation\",\"desc\",\"final\",\"first\",\"last\",\"view\"],u=[\"abs\",\"acos\",\"all\",\"allocate\",\"alter\",\"and\",\"any\",\"are\",\"array\",\"array_agg\",\"array_max_cardinality\",\"as\",\"asensitive\",\"asin\",\"asymmetric\",\"at\",\"atan\",\"atomic\",\"authorization\",\"avg\",\"begin\",\"begin_frame\",\"begin_partition\",\"between\",\"bigint\",\"binary\",\"blob\",\"boolean\",\"both\",\"by\",\"call\",\"called\",\"cardinality\",\"cascaded\",\"case\",\"cast\",\"ceil\",\"ceiling\",\"char\",\"char_length\",\"character\",\"character_length\",\"check\",\"classifier\",\"clob\",\"close\",\"coalesce\",\"collate\",\"collect\",\"column\",\"commit\",\"condition\",\"connect\",\"constraint\",\"contains\",\"convert\",\"copy\",\"corr\",\"corresponding\",\"cos\",\"cosh\",\"count\",\"covar_pop\",\"covar_samp\",\"create\",\"cross\",\"cube\",\"cume_dist\",\"current\",\"current_catalog\",\"current_date\",\"current_default_transform_group\",\"current_path\",\"current_role\",\"current_row\",\"current_schema\",\"current_time\",\"current_timestamp\",\"current_path\",\"current_role\",\"current_transform_group_for_type\",\"current_user\",\"cursor\",\"cycle\",\"date\",\"day\",\"deallocate\",\"dec\",\"decimal\",\"decfloat\",\"declare\",\"default\",\"define\",\"delete\",\"dense_rank\",\"deref\",\"describe\",\"deterministic\",\"disconnect\",\"distinct\",\"double\",\"drop\",\"dynamic\",\"each\",\"element\",\"else\",\"empty\",\"end\",\"end_frame\",\"end_partition\",\"end-exec\",\"equals\",\"escape\",\"every\",\"except\",\"exec\",\"execute\",\"exists\",\"exp\",\"external\",\"extract\",\"false\",\"fetch\",\"filter\",\"first_value\",\"float\",\"floor\",\"for\",\"foreign\",\"frame_row\",\"free\",\"from\",\"full\",\"function\",\"fusion\",\"get\",\"global\",\"grant\",\"group\",\"grouping\",\"groups\",\"having\",\"hold\",\"hour\",\"identity\",\"in\",\"indicator\",\"initial\",\"inner\",\"inout\",\"insensitive\",\"insert\",\"int\",\"integer\",\"intersect\",\"intersection\",\"interval\",\"into\",\"is\",\"join\",\"json_array\",\"json_arrayagg\",\"json_exists\",\"json_object\",\"json_objectagg\",\"json_query\",\"json_table\",\"json_table_primitive\",\"json_value\",\"lag\",\"language\",\"large\",\"last_value\",\"lateral\",\"lead\",\"leading\",\"left\",\"like\",\"like_regex\",\"listagg\",\"ln\",\"local\",\"localtime\",\"localtimestamp\",\"log\",\"log10\",\"lower\",\"match\",\"match_number\",\"match_recognize\",\"matches\",\"max\",\"member\",\"merge\",\"method\",\"min\",\"minute\",\"mod\",\"modifies\",\"module\",\"month\",\"multiset\",\"national\",\"natural\",\"nchar\",\"nclob\",\"new\",\"no\",\"none\",\"normalize\",\"not\",\"nth_value\",\"ntile\",\"null\",\"nullif\",\"numeric\",\"octet_length\",\"occurrences_regex\",\"of\",\"offset\",\"old\",\"omit\",\"on\",\"one\",\"only\",\"open\",\"or\",\"order\",\"out\",\"outer\",\"over\",\"overlaps\",\"overlay\",\"parameter\",\"partition\",\"pattern\",\"per\",\"percent\",\"percent_rank\",\"percentile_cont\",\"percentile_disc\",\"period\",\"portion\",\"position\",\"position_regex\",\"power\",\"precedes\",\"precision\",\"prepare\",\"primary\",\"procedure\",\"ptf\",\"range\",\"rank\",\"reads\",\"real\",\"recursive\",\"ref\",\"references\",\"referencing\",\"regr_avgx\",\"regr_avgy\",\"regr_count\",\"regr_intercept\",\"regr_r2\",\"regr_slope\",\"regr_sxx\",\"regr_sxy\",\"regr_syy\",\"release\",\"result\",\"return\",\"returns\",\"revoke\",\"right\",\"rollback\",\"rollup\",\"row\",\"row_number\",\"rows\",\"running\",\"savepoint\",\"scope\",\"scroll\",\"search\",\"second\",\"seek\",\"select\",\"sensitive\",\"session_user\",\"set\",\"show\",\"similar\",\"sin\",\"sinh\",\"skip\",\"smallint\",\"some\",\"specific\",\"specifictype\",\"sql\",\"sqlexception\",\"sqlstate\",\"sqlwarning\",\"sqrt\",\"start\",\"static\",\"stddev_pop\",\"stddev_samp\",\"submultiset\",\"subset\",\"substring\",\"substring_regex\",\"succeeds\",\"sum\",\"symmetric\",\"system\",\"system_time\",\"system_user\",\"table\",\"tablesample\",\"tan\",\"tanh\",\"then\",\"time\",\"timestamp\",\"timezone_hour\",\"timezone_minute\",\"to\",\"trailing\",\"translate\",\"translate_regex\",\"translation\",\"treat\",\"trigger\",\"trim\",\"trim_array\",\"true\",\"truncate\",\"uescape\",\"union\",\"unique\",\"unknown\",\"unnest\",\"update   \",\"upper\",\"user\",\"using\",\"value\",\"values\",\"value_of\",\"var_pop\",\"var_samp\",\"varbinary\",\"varchar\",\"varying\",\"versioning\",\"when\",\"whenever\",\"where\",\"width_bucket\",\"window\",\"with\",\"within\",\"without\",\"year\"],d=[\"abs\",\"acos\",\"array_agg\",\"asin\",\"atan\",\"avg\",\"cast\",\"ceil\",\"ceiling\",\"coalesce\",\"corr\",\"cos\",\"cosh\",\"count\",\"covar_pop\",\"covar_samp\",\"cume_dist\",\"dense_rank\",\"deref\",\"element\",\"exp\",\"extract\",\"first_value\",\"floor\",\"json_array\",\"json_arrayagg\",\"json_exists\",\"json_object\",\"json_objectagg\",\"json_query\",\"json_table\",\"json_table_primitive\",\"json_value\",\"lag\",\"last_value\",\"lead\",\"listagg\",\"ln\",\"log\",\"log10\",\"lower\",\"max\",\"min\",\"mod\",\"nth_value\",\"ntile\",\"nullif\",\"percent_rank\",\"percentile_cont\",\"percentile_disc\",\"position\",\"position_regex\",\"power\",\"rank\",\"regr_avgx\",\"regr_avgy\",\"regr_count\",\"regr_intercept\",\"regr_r2\",\"regr_slope\",\"regr_sxx\",\"regr_sxy\",\"regr_syy\",\"row_number\",\"sin\",\"sinh\",\"sqrt\",\"stddev_pop\",\"stddev_samp\",\"substring\",\"substring_regex\",\"sum\",\"tan\",\"tanh\",\"translate\",\"translate_regex\",\"treat\",\"trim\",\"trim_array\",\"unnest\",\"upper\",\"value_of\",\"var_pop\",\"var_samp\",\"width_bucket\"],p=[\"current_catalog\",\"current_date\",\"current_default_transform_group\",\"current_path\",\"current_role\",\"current_schema\",\"current_transform_group_for_type\",\"current_user\",\"session_user\",\"system_time\",\"system_user\",\"current_time\",\"localtime\",\"current_timestamp\",\"localtimestamp\"],h=[\"create table\",\"insert into\",\"primary key\",\"foreign key\",\"not null\",\"alter table\",\"add constraint\",\"grouping sets\",\"on overflow\",\"character set\",\"respect nulls\",\"ignore nulls\",\"nulls first\",\"nulls last\",\"depth first\",\"breadth first\"],f=d,_=[...u,...c].filter(e=>!d.includes(e)),m={className:\"variable\",begin:/@[a-z0-9]+/},g={className:\"operator\",begin:/[-+*/=%^~]|&&?|\\|\\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0},b={begin:i(/\\b/,r(...f),/\\s*\\(/),keywords:{built_in:f}};function v(e,{exceptions:t,when:n}={}){const i=n;return t=t||[],e.map(e=>e.match(/\\|\\d+$/)||t.includes(e)?e:i(e)?e+\"|0\":e)}return{name:\"SQL\",case_insensitive:!0,illegal:/[{}]|<\\//,keywords:{$pattern:/\\b[\\w\\.]+/,keyword:v(_,{when:e=>e.length<3}),literal:o,type:l,built_in:p},contains:[{begin:r(...h),keywords:{$pattern:/[\\w\\.]+/,keyword:_.concat(h),literal:o,type:l}},{className:\"type\",begin:r(...s)},b,m,n,a,e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,g]}}e.exports=a},df06:function(e,t){function n(e){return{name:\"GLSL\",keywords:{keyword:\"break continue discard do else for if return while switch case default attribute binding buffer ccw centroid centroid varying coherent column_major const cw depth_any depth_greater depth_less depth_unchanged early_fragment_tests equal_spacing flat fractional_even_spacing fractional_odd_spacing highp in index inout invariant invocations isolines layout line_strip lines lines_adjacency local_size_x local_size_y local_size_z location lowp max_vertices mediump noperspective offset origin_upper_left out packed patch pixel_center_integer point_mode points precise precision quads r11f_g11f_b10f r16 r16_snorm r16f r16i r16ui r32f r32i r32ui r8 r8_snorm r8i r8ui readonly restrict rg16 rg16_snorm rg16f rg16i rg16ui rg32f rg32i rg32ui rg8 rg8_snorm rg8i rg8ui rgb10_a2 rgb10_a2ui rgba16 rgba16_snorm rgba16f rgba16i rgba16ui rgba32f rgba32i rgba32ui rgba8 rgba8_snorm rgba8i rgba8ui row_major sample shared smooth std140 std430 stream triangle_strip triangles triangles_adjacency uniform varying vertices volatile writeonly\",type:\"atomic_uint bool bvec2 bvec3 bvec4 dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 double dvec2 dvec3 dvec4 float iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray int isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow image1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D samplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 vec2 vec3 vec4 void\",built_in:\"gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxComputeAtomicCounterBuffers gl_MaxComputeAtomicCounters gl_MaxComputeImageUniforms gl_MaxComputeTextureImageUnits gl_MaxComputeUniformComponents gl_MaxComputeWorkGroupCount gl_MaxComputeWorkGroupSize gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentInputVectors gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexOutputVectors gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffset gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_GlobalInvocationID gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_LocalInvocationID gl_LocalInvocationIndex gl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_NumSamples gl_NumWorkGroups gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrix gl_TextureMatrixInverse gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_WorkGroupID gl_WorkGroupSize gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicAdd atomicAnd atomicCompSwap atomicCounter atomicCounterDecrement atomicCounterIncrement atomicExchange atomicMax atomicMin atomicOr atomicXor barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual groupMemoryBarrier imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageSize imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier memoryBarrierAtomicCounter memoryBarrierBuffer memoryBarrierImage memoryBarrierShared min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLevels textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow\",literal:\"true false\"},illegal:'\"',contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,{className:\"meta\",begin:\"#\",end:\"$\"}]}}e.exports=n},e05a:function(e,t){function n(e){return{name:\"PHP template\",subLanguage:\"xml\",contains:[{begin:/<\\?(php|=)?/,end:/\\?>/,subLanguage:\"php\",contains:[{begin:\"/\\\\*\",end:\"\\\\*/\",skip:!0},{begin:'b\"',end:'\"',skip:!0},{begin:\"b'\",end:\"'\",skip:!0},e.inherit(e.APOS_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0})]}]}}e.exports=n},e10f:function(e,t){function n(e){const t={$pattern:/[\\w\\$]+/,keyword:\"accept_on alias always always_comb always_ff always_latch and assert assign assume automatic before begin bind bins binsof bit break buf|0 bufif0 bufif1 byte case casex casez cell chandle checker class clocking cmos config const constraint context continue cover covergroup coverpoint cross deassign default defparam design disable dist do edge else end endcase endchecker endclass endclocking endconfig endfunction endgenerate endgroup endinterface endmodule endpackage endprimitive endprogram endproperty endspecify endsequence endtable endtask enum event eventually expect export extends extern final first_match for force foreach forever fork forkjoin function generate|5 genvar global highz0 highz1 if iff ifnone ignore_bins illegal_bins implements implies import incdir include initial inout input inside instance int integer interconnect interface intersect join join_any join_none large let liblist library local localparam logic longint macromodule matches medium modport module nand negedge nettype new nexttime nmos nor noshowcancelled not notif0 notif1 or output package packed parameter pmos posedge primitive priority program property protected pull0 pull1 pulldown pullup pulsestyle_ondetect pulsestyle_onevent pure rand randc randcase randsequence rcmos real realtime ref reg reject_on release repeat restrict return rnmos rpmos rtran rtranif0 rtranif1 s_always s_eventually s_nexttime s_until s_until_with scalared sequence shortint shortreal showcancelled signed small soft solve specify specparam static string strong strong0 strong1 struct super supply0 supply1 sync_accept_on sync_reject_on table tagged task this throughout time timeprecision timeunit tran tranif0 tranif1 tri tri0 tri1 triand trior trireg type typedef union unique unique0 unsigned until until_with untyped use uwire var vectored virtual void wait wait_order wand weak weak0 weak1 while wildcard wire with within wor xnor xor\",literal:\"null\",built_in:\"$finish $stop $exit $fatal $error $warning $info $realtime $time $printtimescale $bitstoreal $bitstoshortreal $itor $signed $cast $bits $stime $timeformat $realtobits $shortrealtobits $rtoi $unsigned $asserton $assertkill $assertpasson $assertfailon $assertnonvacuouson $assertoff $assertcontrol $assertpassoff $assertfailoff $assertvacuousoff $isunbounded $sampled $fell $changed $past_gclk $fell_gclk $changed_gclk $rising_gclk $steady_gclk $coverage_control $coverage_get $coverage_save $set_coverage_db_name $rose $stable $past $rose_gclk $stable_gclk $future_gclk $falling_gclk $changing_gclk $display $coverage_get_max $coverage_merge $get_coverage $load_coverage_db $typename $unpacked_dimensions $left $low $increment $clog2 $ln $log10 $exp $sqrt $pow $floor $ceil $sin $cos $tan $countbits $onehot $isunknown $fatal $warning $dimensions $right $high $size $asin $acos $atan $atan2 $hypot $sinh $cosh $tanh $asinh $acosh $atanh $countones $onehot0 $error $info $random $dist_chi_square $dist_erlang $dist_exponential $dist_normal $dist_poisson $dist_t $dist_uniform $q_initialize $q_remove $q_exam $async$and$array $async$nand$array $async$or$array $async$nor$array $sync$and$array $sync$nand$array $sync$or$array $sync$nor$array $q_add $q_full $psprintf $async$and$plane $async$nand$plane $async$or$plane $async$nor$plane $sync$and$plane $sync$nand$plane $sync$or$plane $sync$nor$plane $system $display $displayb $displayh $displayo $strobe $strobeb $strobeh $strobeo $write $readmemb $readmemh $writememh $value$plusargs $dumpvars $dumpon $dumplimit $dumpports $dumpportson $dumpportslimit $writeb $writeh $writeo $monitor $monitorb $monitorh $monitoro $writememb $dumpfile $dumpoff $dumpall $dumpflush $dumpportsoff $dumpportsall $dumpportsflush $fclose $fdisplay $fdisplayb $fdisplayh $fdisplayo $fstrobe $fstrobeb $fstrobeh $fstrobeo $swrite $swriteb $swriteh $swriteo $fscanf $fread $fseek $fflush $feof $fopen $fwrite $fwriteb $fwriteh $fwriteo $fmonitor $fmonitorb $fmonitorh $fmonitoro $sformat $sformatf $fgetc $ungetc $fgets $sscanf $rewind $ftell $ferror\"};return{name:\"Verilog\",aliases:[\"v\",\"sv\",\"svh\"],case_insensitive:!1,keywords:t,contains:[e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE,e.QUOTE_STRING_MODE,{className:\"number\",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:\"\\\\b((\\\\d+'(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)\"},{begin:\"\\\\B(('(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)\"},{begin:\"\\\\b([0-9_])+\",relevance:0}]},{className:\"variable\",variants:[{begin:\"#\\\\((?!parameter).+\\\\)\"},{begin:\"\\\\.\\\\w+\",relevance:0}]},{className:\"meta\",begin:\"`\",end:\"$\",keywords:{\"meta-keyword\":\"define __FILE__ __LINE__ begin_keywords celldefine default_nettype define else elsif end_keywords endcelldefine endif ifdef ifndef include line nounconnected_drive pragma resetall timescale unconnected_drive undef undefineall\"},relevance:0}]}}e.exports=n},e11e:function(e,t){e.exports=\"constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf\".split(\",\")},e2a7:function(e,t){function n(e){const t={className:\"variable\",begin:/\\b_+[a-zA-Z]\\w*/},n={className:\"title\",begin:/[a-zA-Z][a-zA-Z0-9]+_fnc_\\w*/},i={className:\"string\",variants:[{begin:'\"',end:'\"',contains:[{begin:'\"\"',relevance:0}]},{begin:\"'\",end:\"'\",contains:[{begin:\"''\",relevance:0}]}]},r={className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{\"meta-keyword\":\"define undef ifdef ifndef else endif include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(i,{className:\"meta-string\"}),{className:\"meta-string\",begin:/<[^\\n>]*>/,end:/$/,illegal:\"\\\\n\"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]};return{name:\"SQF\",aliases:[\"sqf\"],case_insensitive:!0,keywords:{keyword:\"case catch default do else exit exitWith for forEach from if private switch then throw to try waitUntil while with\",built_in:\"abs accTime acos action actionIDs actionKeys actionKeysImages actionKeysNames actionKeysNamesArray actionName actionParams activateAddons activatedAddons activateKey add3DENConnection add3DENEventHandler add3DENLayer addAction addBackpack addBackpackCargo addBackpackCargoGlobal addBackpackGlobal addCamShake addCuratorAddons addCuratorCameraArea addCuratorEditableObjects addCuratorEditingArea addCuratorPoints addEditorObject addEventHandler addForce addGoggles addGroupIcon addHandgunItem addHeadgear addItem addItemCargo addItemCargoGlobal addItemPool addItemToBackpack addItemToUniform addItemToVest addLiveStats addMagazine addMagazineAmmoCargo addMagazineCargo addMagazineCargoGlobal addMagazineGlobal addMagazinePool addMagazines addMagazineTurret addMenu addMenuItem addMissionEventHandler addMPEventHandler addMusicEventHandler addOwnedMine addPlayerScores addPrimaryWeaponItem addPublicVariableEventHandler addRating addResources addScore addScoreSide addSecondaryWeaponItem addSwitchableUnit addTeamMember addToRemainsCollector addTorque addUniform addVehicle addVest addWaypoint addWeapon addWeaponCargo addWeaponCargoGlobal addWeaponGlobal addWeaponItem addWeaponPool addWeaponTurret admin agent agents AGLToASL aimedAtTarget aimPos airDensityRTD airplaneThrottle airportSide AISFinishHeal alive all3DENEntities allAirports allControls allCurators allCutLayers allDead allDeadMen allDisplays allGroups allMapMarkers allMines allMissionObjects allow3DMode allowCrewInImmobile allowCuratorLogicIgnoreAreas allowDamage allowDammage allowFileOperations allowFleeing allowGetIn allowSprint allPlayers allSimpleObjects allSites allTurrets allUnits allUnitsUAV allVariables ammo ammoOnPylon and animate animateBay animateDoor animatePylon animateSource animationNames animationPhase animationSourcePhase animationState append apply armoryPoints arrayIntersect asin ASLToAGL ASLToATL assert assignAsCargo assignAsCargoIndex assignAsCommander assignAsDriver assignAsGunner assignAsTurret assignCurator assignedCargo assignedCommander assignedDriver assignedGunner assignedItems assignedTarget assignedTeam assignedVehicle assignedVehicleRole assignItem assignTeam assignToAirport atan atan2 atg ATLToASL attachedObject attachedObjects attachedTo attachObject attachTo attackEnabled backpack backpackCargo backpackContainer backpackItems backpackMagazines backpackSpaceFor behaviour benchmark binocular boundingBox boundingBoxReal boundingCenter breakOut breakTo briefingName buildingExit buildingPos buttonAction buttonSetAction cadetMode call callExtension camCommand camCommit camCommitPrepared camCommitted camConstuctionSetParams camCreate camDestroy cameraEffect cameraEffectEnableHUD cameraInterest cameraOn cameraView campaignConfigFile camPreload camPreloaded camPrepareBank camPrepareDir camPrepareDive camPrepareFocus camPrepareFov camPrepareFovRange camPreparePos camPrepareRelPos camPrepareTarget camSetBank camSetDir camSetDive camSetFocus camSetFov camSetFovRange camSetPos camSetRelPos camSetTarget camTarget camUseNVG canAdd canAddItemToBackpack canAddItemToUniform canAddItemToVest cancelSimpleTaskDestination canFire canMove canSlingLoad canStand canSuspend canTriggerDynamicSimulation canUnloadInCombat canVehicleCargo captive captiveNum cbChecked cbSetChecked ceil channelEnabled cheatsEnabled checkAIFeature checkVisibility className clearAllItemsFromBackpack clearBackpackCargo clearBackpackCargoGlobal clearGroupIcons clearItemCargo clearItemCargoGlobal clearItemPool clearMagazineCargo clearMagazineCargoGlobal clearMagazinePool clearOverlay clearRadio clearWeaponCargo clearWeaponCargoGlobal clearWeaponPool clientOwner closeDialog closeDisplay closeOverlay collapseObjectTree collect3DENHistory collectiveRTD combatMode commandArtilleryFire commandChat commander commandFire commandFollow commandFSM commandGetOut commandingMenu commandMove commandRadio commandStop commandSuppressiveFire commandTarget commandWatch comment commitOverlay compile compileFinal completedFSM composeText configClasses configFile configHierarchy configName configProperties configSourceAddonList configSourceMod configSourceModList confirmSensorTarget connectTerminalToUAV controlsGroupCtrl copyFromClipboard copyToClipboard copyWaypoints cos count countEnemy countFriendly countSide countType countUnknown create3DENComposition create3DENEntity createAgent createCenter createDialog createDiaryLink createDiaryRecord createDiarySubject createDisplay createGearDialog createGroup createGuardedPoint createLocation createMarker createMarkerLocal createMenu createMine createMissionDisplay createMPCampaignDisplay createSimpleObject createSimpleTask createSite createSoundSource createTask createTeam createTrigger createUnit createVehicle createVehicleCrew createVehicleLocal crew ctAddHeader ctAddRow ctClear ctCurSel ctData ctFindHeaderRows ctFindRowHeader ctHeaderControls ctHeaderCount ctRemoveHeaders ctRemoveRows ctrlActivate ctrlAddEventHandler ctrlAngle ctrlAutoScrollDelay ctrlAutoScrollRewind ctrlAutoScrollSpeed ctrlChecked ctrlClassName ctrlCommit ctrlCommitted ctrlCreate ctrlDelete ctrlEnable ctrlEnabled ctrlFade ctrlHTMLLoaded ctrlIDC ctrlIDD ctrlMapAnimAdd ctrlMapAnimClear ctrlMapAnimCommit ctrlMapAnimDone ctrlMapCursor ctrlMapMouseOver ctrlMapScale ctrlMapScreenToWorld ctrlMapWorldToScreen ctrlModel ctrlModelDirAndUp ctrlModelScale ctrlParent ctrlParentControlsGroup ctrlPosition ctrlRemoveAllEventHandlers ctrlRemoveEventHandler ctrlScale ctrlSetActiveColor ctrlSetAngle ctrlSetAutoScrollDelay ctrlSetAutoScrollRewind ctrlSetAutoScrollSpeed ctrlSetBackgroundColor ctrlSetChecked ctrlSetEventHandler ctrlSetFade ctrlSetFocus ctrlSetFont ctrlSetFontH1 ctrlSetFontH1B ctrlSetFontH2 ctrlSetFontH2B ctrlSetFontH3 ctrlSetFontH3B ctrlSetFontH4 ctrlSetFontH4B ctrlSetFontH5 ctrlSetFontH5B ctrlSetFontH6 ctrlSetFontH6B ctrlSetFontHeight ctrlSetFontHeightH1 ctrlSetFontHeightH2 ctrlSetFontHeightH3 ctrlSetFontHeightH4 ctrlSetFontHeightH5 ctrlSetFontHeightH6 ctrlSetFontHeightSecondary ctrlSetFontP ctrlSetFontPB ctrlSetFontSecondary ctrlSetForegroundColor ctrlSetModel ctrlSetModelDirAndUp ctrlSetModelScale ctrlSetPixelPrecision ctrlSetPosition ctrlSetScale ctrlSetStructuredText ctrlSetText ctrlSetTextColor ctrlSetTooltip ctrlSetTooltipColorBox ctrlSetTooltipColorShade ctrlSetTooltipColorText ctrlShow ctrlShown ctrlText ctrlTextHeight ctrlTextWidth ctrlType ctrlVisible ctRowControls ctRowCount ctSetCurSel ctSetData ctSetHeaderTemplate ctSetRowTemplate ctSetValue ctValue curatorAddons curatorCamera curatorCameraArea curatorCameraAreaCeiling curatorCoef curatorEditableObjects curatorEditingArea curatorEditingAreaType curatorMouseOver curatorPoints curatorRegisteredObjects curatorSelected curatorWaypointCost current3DENOperation currentChannel currentCommand currentMagazine currentMagazineDetail currentMagazineDetailTurret currentMagazineTurret currentMuzzle currentNamespace currentTask currentTasks currentThrowable currentVisionMode currentWaypoint currentWeapon currentWeaponMode currentWeaponTurret currentZeroing cursorObject cursorTarget customChat customRadio cutFadeOut cutObj cutRsc cutText damage date dateToNumber daytime deActivateKey debriefingText debugFSM debugLog deg delete3DENEntities deleteAt deleteCenter deleteCollection deleteEditorObject deleteGroup deleteGroupWhenEmpty deleteIdentity deleteLocation deleteMarker deleteMarkerLocal deleteRange deleteResources deleteSite deleteStatus deleteTeam deleteVehicle deleteVehicleCrew deleteWaypoint detach detectedMines diag_activeMissionFSMs diag_activeScripts diag_activeSQFScripts diag_activeSQSScripts diag_captureFrame diag_captureFrameToFile diag_captureSlowFrame diag_codePerformance diag_drawMode diag_enable diag_enabled diag_fps diag_fpsMin diag_frameNo diag_lightNewLoad diag_list diag_log diag_logSlowFrame diag_mergeConfigFile diag_recordTurretLimits diag_setLightNew diag_tickTime diag_toggle dialog diarySubjectExists didJIP didJIPOwner difficulty difficultyEnabled difficultyEnabledRTD difficultyOption direction directSay disableAI disableCollisionWith disableConversation disableDebriefingStats disableMapIndicators disableNVGEquipment disableRemoteSensors disableSerialization disableTIEquipment disableUAVConnectability disableUserInput displayAddEventHandler displayCtrl displayParent displayRemoveAllEventHandlers displayRemoveEventHandler displaySetEventHandler dissolveTeam distance distance2D distanceSqr distributionRegion do3DENAction doArtilleryFire doFire doFollow doFSM doGetOut doMove doorPhase doStop doSuppressiveFire doTarget doWatch drawArrow drawEllipse drawIcon drawIcon3D drawLine drawLine3D drawLink drawLocation drawPolygon drawRectangle drawTriangle driver drop dynamicSimulationDistance dynamicSimulationDistanceCoef dynamicSimulationEnabled dynamicSimulationSystemEnabled echo edit3DENMissionAttributes editObject editorSetEventHandler effectiveCommander emptyPositions enableAI enableAIFeature enableAimPrecision enableAttack enableAudioFeature enableAutoStartUpRTD enableAutoTrimRTD enableCamShake enableCaustics enableChannel enableCollisionWith enableCopilot enableDebriefingStats enableDiagLegend enableDynamicSimulation enableDynamicSimulationSystem enableEndDialog enableEngineArtillery enableEnvironment enableFatigue enableGunLights enableInfoPanelComponent enableIRLasers enableMimics enablePersonTurret enableRadio enableReload enableRopeAttach enableSatNormalOnDetail enableSaving enableSentences enableSimulation enableSimulationGlobal enableStamina enableTeamSwitch enableTraffic enableUAVConnectability enableUAVWaypoints enableVehicleCargo enableVehicleSensor enableWeaponDisassembly endLoadingScreen endMission engineOn enginesIsOnRTD enginesRpmRTD enginesTorqueRTD entities environmentEnabled estimatedEndServerTime estimatedTimeLeft evalObjectArgument everyBackpack everyContainer exec execEditorScript execFSM execVM exp expectedDestination exportJIPMessages eyeDirection eyePos face faction fadeMusic fadeRadio fadeSound fadeSpeech failMission fillWeaponsFromPool find findCover findDisplay findEditorObject findEmptyPosition findEmptyPositionReady findIf findNearestEnemy finishMissionInit finite fire fireAtTarget firstBackpack flag flagAnimationPhase flagOwner flagSide flagTexture fleeing floor flyInHeight flyInHeightASL fog fogForecast fogParams forceAddUniform forcedMap forceEnd forceFlagTexture forceFollowRoad forceMap forceRespawn forceSpeed forceWalk forceWeaponFire forceWeatherChange forEachMember forEachMemberAgent forEachMemberTeam forgetTarget format formation formationDirection formationLeader formationMembers formationPosition formationTask formatText formLeader freeLook fromEditor fuel fullCrew gearIDCAmmoCount gearSlotAmmoCount gearSlotData get3DENActionState get3DENAttribute get3DENCamera get3DENConnections get3DENEntity get3DENEntityID get3DENGrid get3DENIconsVisible get3DENLayerEntities get3DENLinesVisible get3DENMissionAttribute get3DENMouseOver get3DENSelected getAimingCoef getAllEnvSoundControllers getAllHitPointsDamage getAllOwnedMines getAllSoundControllers getAmmoCargo getAnimAimPrecision getAnimSpeedCoef getArray getArtilleryAmmo getArtilleryComputerSettings getArtilleryETA getAssignedCuratorLogic getAssignedCuratorUnit getBackpackCargo getBleedingRemaining getBurningValue getCameraViewDirection getCargoIndex getCenterOfMass getClientState getClientStateNumber getCompatiblePylonMagazines getConnectedUAV getContainerMaxLoad getCursorObjectParams getCustomAimCoef getDammage getDescription getDir getDirVisual getDLCAssetsUsage getDLCAssetsUsageByName getDLCs getEditorCamera getEditorMode getEditorObjectScope getElevationOffset getEnvSoundController getFatigue getForcedFlagTexture getFriend getFSMVariable getFuelCargo getGroupIcon getGroupIconParams getGroupIcons getHideFrom getHit getHitIndex getHitPointDamage getItemCargo getMagazineCargo getMarkerColor getMarkerPos getMarkerSize getMarkerType getMass getMissionConfig getMissionConfigValue getMissionDLCs getMissionLayerEntities getModelInfo getMousePosition getMusicPlayedTime getNumber getObjectArgument getObjectChildren getObjectDLC getObjectMaterials getObjectProxy getObjectTextures getObjectType getObjectViewDistance getOxygenRemaining getPersonUsedDLCs getPilotCameraDirection getPilotCameraPosition getPilotCameraRotation getPilotCameraTarget getPlateNumber getPlayerChannel getPlayerScores getPlayerUID getPos getPosASL getPosASLVisual getPosASLW getPosATL getPosATLVisual getPosVisual getPosWorld getPylonMagazines getRelDir getRelPos getRemoteSensorsDisabled getRepairCargo getResolution getShadowDistance getShotParents getSlingLoad getSoundController getSoundControllerResult getSpeed getStamina getStatValue getSuppression getTerrainGrid getTerrainHeightASL getText getTotalDLCUsageTime getUnitLoadout getUnitTrait getUserMFDText getUserMFDvalue getVariable getVehicleCargo getWeaponCargo getWeaponSway getWingsOrientationRTD getWingsPositionRTD getWPPos glanceAt globalChat globalRadio goggles goto group groupChat groupFromNetId groupIconSelectable groupIconsVisible groupId groupOwner groupRadio groupSelectedUnits groupSelectUnit gunner gusts halt handgunItems handgunMagazine handgunWeapon handsHit hasInterface hasPilotCamera hasWeapon hcAllGroups hcGroupParams hcLeader hcRemoveAllGroups hcRemoveGroup hcSelected hcSelectGroup hcSetGroup hcShowBar hcShownBar headgear hideBody hideObject hideObjectGlobal hideSelection hint hintC hintCadet hintSilent hmd hostMission htmlLoad HUDMovementLevels humidity image importAllGroups importance in inArea inAreaArray incapacitatedState inflame inflamed infoPanel infoPanelComponentEnabled infoPanelComponents infoPanels inGameUISetEventHandler inheritsFrom initAmbientLife inPolygon inputAction inRangeOfArtillery insertEditorObject intersect is3DEN is3DENMultiplayer isAbleToBreathe isAgent isArray isAutoHoverOn isAutonomous isAutotest isBleeding isBurning isClass isCollisionLightOn isCopilotEnabled isDamageAllowed isDedicated isDLCAvailable isEngineOn isEqualTo isEqualType isEqualTypeAll isEqualTypeAny isEqualTypeArray isEqualTypeParams isFilePatchingEnabled isFlashlightOn isFlatEmpty isForcedWalk isFormationLeader isGroupDeletedWhenEmpty isHidden isInRemainsCollector isInstructorFigureEnabled isIRLaserOn isKeyActive isKindOf isLaserOn isLightOn isLocalized isManualFire isMarkedForCollection isMultiplayer isMultiplayerSolo isNil isNull isNumber isObjectHidden isObjectRTD isOnRoad isPipEnabled isPlayer isRealTime isRemoteExecuted isRemoteExecutedJIP isServer isShowing3DIcons isSimpleObject isSprintAllowed isStaminaEnabled isSteamMission isStreamFriendlyUIEnabled isText isTouchingGround isTurnedOut isTutHintsEnabled isUAVConnectable isUAVConnected isUIContext isUniformAllowed isVehicleCargo isVehicleRadarOn isVehicleSensorEnabled isWalking isWeaponDeployed isWeaponRested itemCargo items itemsWithMagazines join joinAs joinAsSilent joinSilent joinString kbAddDatabase kbAddDatabaseTargets kbAddTopic kbHasTopic kbReact kbRemoveTopic kbTell kbWasSaid keyImage keyName knowsAbout land landAt landResult language laserTarget lbAdd lbClear lbColor lbColorRight lbCurSel lbData lbDelete lbIsSelected lbPicture lbPictureRight lbSelection lbSetColor lbSetColorRight lbSetCurSel lbSetData lbSetPicture lbSetPictureColor lbSetPictureColorDisabled lbSetPictureColorSelected lbSetPictureRight lbSetPictureRightColor lbSetPictureRightColorDisabled lbSetPictureRightColorSelected lbSetSelectColor lbSetSelectColorRight lbSetSelected lbSetText lbSetTextRight lbSetTooltip lbSetValue lbSize lbSort lbSortByValue lbText lbTextRight lbValue leader leaderboardDeInit leaderboardGetRows leaderboardInit leaderboardRequestRowsFriends leaderboardsRequestUploadScore leaderboardsRequestUploadScoreKeepBest leaderboardState leaveVehicle libraryCredits libraryDisclaimers lifeState lightAttachObject lightDetachObject lightIsOn lightnings limitSpeed linearConversion lineIntersects lineIntersectsObjs lineIntersectsSurfaces lineIntersectsWith linkItem list listObjects listRemoteTargets listVehicleSensors ln lnbAddArray lnbAddColumn lnbAddRow lnbClear lnbColor lnbCurSelRow lnbData lnbDeleteColumn lnbDeleteRow lnbGetColumnsPosition lnbPicture lnbSetColor lnbSetColumnsPos lnbSetCurSelRow lnbSetData lnbSetPicture lnbSetText lnbSetValue lnbSize lnbSort lnbSortByValue lnbText lnbValue load loadAbs loadBackpack loadFile loadGame loadIdentity loadMagazine loadOverlay loadStatus loadUniform loadVest local localize locationPosition lock lockCameraTo lockCargo lockDriver locked lockedCargo lockedDriver lockedTurret lockIdentity lockTurret lockWP log logEntities logNetwork logNetworkTerminate lookAt lookAtPos magazineCargo magazines magazinesAllTurrets magazinesAmmo magazinesAmmoCargo magazinesAmmoFull magazinesDetail magazinesDetailBackpack magazinesDetailUniform magazinesDetailVest magazinesTurret magazineTurretAmmo mapAnimAdd mapAnimClear mapAnimCommit mapAnimDone mapCenterOnCamera mapGridPosition markAsFinishedOnSteam markerAlpha markerBrush markerColor markerDir markerPos markerShape markerSize markerText markerType max members menuAction menuAdd menuChecked menuClear menuCollapse menuData menuDelete menuEnable menuEnabled menuExpand menuHover menuPicture menuSetAction menuSetCheck menuSetData menuSetPicture menuSetValue menuShortcut menuShortcutText menuSize menuSort menuText menuURL menuValue min mineActive mineDetectedBy missionConfigFile missionDifficulty missionName missionNamespace missionStart missionVersion mod modelToWorld modelToWorldVisual modelToWorldVisualWorld modelToWorldWorld modParams moonIntensity moonPhase morale move move3DENCamera moveInAny moveInCargo moveInCommander moveInDriver moveInGunner moveInTurret moveObjectToEnd moveOut moveTime moveTo moveToCompleted moveToFailed musicVolume name nameSound nearEntities nearestBuilding nearestLocation nearestLocations nearestLocationWithDubbing nearestObject nearestObjects nearestTerrainObjects nearObjects nearObjectsReady nearRoads nearSupplies nearTargets needReload netId netObjNull newOverlay nextMenuItemIndex nextWeatherChange nMenuItems not numberOfEnginesRTD numberToDate objectCurators objectFromNetId objectParent objStatus onBriefingGroup onBriefingNotes onBriefingPlan onBriefingTeamSwitch onCommandModeChanged onDoubleClick onEachFrame onGroupIconClick onGroupIconOverEnter onGroupIconOverLeave onHCGroupSelectionChanged onMapSingleClick onPlayerConnected onPlayerDisconnected onPreloadFinished onPreloadStarted onShowNewObject onTeamSwitch openCuratorInterface openDLCPage openMap openSteamApp openYoutubeVideo or orderGetIn overcast overcastForecast owner param params parseNumber parseSimpleArray parseText parsingNamespace particlesQuality pickWeaponPool pitch pixelGrid pixelGridBase pixelGridNoUIScale pixelH pixelW playableSlotsNumber playableUnits playAction playActionNow player playerRespawnTime playerSide playersNumber playGesture playMission playMove playMoveNow playMusic playScriptedMission playSound playSound3D position positionCameraToWorld posScreenToWorld posWorldToScreen ppEffectAdjust ppEffectCommit ppEffectCommitted ppEffectCreate ppEffectDestroy ppEffectEnable ppEffectEnabled ppEffectForceInNVG precision preloadCamera preloadObject preloadSound preloadTitleObj preloadTitleRsc preprocessFile preprocessFileLineNumbers primaryWeapon primaryWeaponItems primaryWeaponMagazine priority processDiaryLink productVersion profileName profileNamespace profileNameSteam progressLoadingScreen progressPosition progressSetPosition publicVariable publicVariableClient publicVariableServer pushBack pushBackUnique putWeaponPool queryItemsPool queryMagazinePool queryWeaponPool rad radioChannelAdd radioChannelCreate radioChannelRemove radioChannelSetCallSign radioChannelSetLabel radioVolume rain rainbow random rank rankId rating rectangular registeredTasks registerTask reload reloadEnabled remoteControl remoteExec remoteExecCall remoteExecutedOwner remove3DENConnection remove3DENEventHandler remove3DENLayer removeAction removeAll3DENEventHandlers removeAllActions removeAllAssignedItems removeAllContainers removeAllCuratorAddons removeAllCuratorCameraAreas removeAllCuratorEditingAreas removeAllEventHandlers removeAllHandgunItems removeAllItems removeAllItemsWithMagazines removeAllMissionEventHandlers removeAllMPEventHandlers removeAllMusicEventHandlers removeAllOwnedMines removeAllPrimaryWeaponItems removeAllWeapons removeBackpack removeBackpackGlobal removeCuratorAddons removeCuratorCameraArea removeCuratorEditableObjects removeCuratorEditingArea removeDrawIcon removeDrawLinks removeEventHandler removeFromRemainsCollector removeGoggles removeGroupIcon removeHandgunItem removeHeadgear removeItem removeItemFromBackpack removeItemFromUniform removeItemFromVest removeItems removeMagazine removeMagazineGlobal removeMagazines removeMagazinesTurret removeMagazineTurret removeMenuItem removeMissionEventHandler removeMPEventHandler removeMusicEventHandler removeOwnedMine removePrimaryWeaponItem removeSecondaryWeaponItem removeSimpleTask removeSwitchableUnit removeTeamMember removeUniform removeVest removeWeapon removeWeaponAttachmentCargo removeWeaponCargo removeWeaponGlobal removeWeaponTurret reportRemoteTarget requiredVersion resetCamShake resetSubgroupDirection resize resources respawnVehicle restartEditorCamera reveal revealMine reverse reversedMouseY roadAt roadsConnectedTo roleDescription ropeAttachedObjects ropeAttachedTo ropeAttachEnabled ropeAttachTo ropeCreate ropeCut ropeDestroy ropeDetach ropeEndPosition ropeLength ropes ropeUnwind ropeUnwound rotorsForcesRTD rotorsRpmRTD round runInitScript safeZoneH safeZoneW safeZoneWAbs safeZoneX safeZoneXAbs safeZoneY save3DENInventory saveGame saveIdentity saveJoysticks saveOverlay saveProfileNamespace saveStatus saveVar savingEnabled say say2D say3D scopeName score scoreSide screenshot screenToWorld scriptDone scriptName scudState secondaryWeapon secondaryWeaponItems secondaryWeaponMagazine select selectBestPlaces selectDiarySubject selectedEditorObjects selectEditorObject selectionNames selectionPosition selectLeader selectMax selectMin selectNoPlayer selectPlayer selectRandom selectRandomWeighted selectWeapon selectWeaponTurret sendAUMessage sendSimpleCommand sendTask sendTaskResult sendUDPMessage serverCommand serverCommandAvailable serverCommandExecutable serverName serverTime set set3DENAttribute set3DENAttributes set3DENGrid set3DENIconsVisible set3DENLayer set3DENLinesVisible set3DENLogicType set3DENMissionAttribute set3DENMissionAttributes set3DENModelsVisible set3DENObjectType set3DENSelected setAccTime setActualCollectiveRTD setAirplaneThrottle setAirportSide setAmmo setAmmoCargo setAmmoOnPylon setAnimSpeedCoef setAperture setApertureNew setArmoryPoints setAttributes setAutonomous setBehaviour setBleedingRemaining setBrakesRTD setCameraInterest setCamShakeDefParams setCamShakeParams setCamUseTI setCaptive setCenterOfMass setCollisionLight setCombatMode setCompassOscillation setConvoySeparation setCuratorCameraAreaCeiling setCuratorCoef setCuratorEditingAreaType setCuratorWaypointCost setCurrentChannel setCurrentTask setCurrentWaypoint setCustomAimCoef setCustomWeightRTD setDamage setDammage setDate setDebriefingText setDefaultCamera setDestination setDetailMapBlendPars setDir setDirection setDrawIcon setDriveOnPath setDropInterval setDynamicSimulationDistance setDynamicSimulationDistanceCoef setEditorMode setEditorObjectScope setEffectCondition setEngineRPMRTD setFace setFaceAnimation setFatigue setFeatureType setFlagAnimationPhase setFlagOwner setFlagSide setFlagTexture setFog setFormation setFormationTask setFormDir setFriend setFromEditor setFSMVariable setFuel setFuelCargo setGroupIcon setGroupIconParams setGroupIconsSelectable setGroupIconsVisible setGroupId setGroupIdGlobal setGroupOwner setGusts setHideBehind setHit setHitIndex setHitPointDamage setHorizonParallaxCoef setHUDMovementLevels setIdentity setImportance setInfoPanel setLeader setLightAmbient setLightAttenuation setLightBrightness setLightColor setLightDayLight setLightFlareMaxDistance setLightFlareSize setLightIntensity setLightnings setLightUseFlare setLocalWindParams setMagazineTurretAmmo setMarkerAlpha setMarkerAlphaLocal setMarkerBrush setMarkerBrushLocal setMarkerColor setMarkerColorLocal setMarkerDir setMarkerDirLocal setMarkerPos setMarkerPosLocal setMarkerShape setMarkerShapeLocal setMarkerSize setMarkerSizeLocal setMarkerText setMarkerTextLocal setMarkerType setMarkerTypeLocal setMass setMimic setMousePosition setMusicEffect setMusicEventHandler setName setNameSound setObjectArguments setObjectMaterial setObjectMaterialGlobal setObjectProxy setObjectTexture setObjectTextureGlobal setObjectViewDistance setOvercast setOwner setOxygenRemaining setParticleCircle setParticleClass setParticleFire setParticleParams setParticleRandom setPilotCameraDirection setPilotCameraRotation setPilotCameraTarget setPilotLight setPiPEffect setPitch setPlateNumber setPlayable setPlayerRespawnTime setPos setPosASL setPosASL2 setPosASLW setPosATL setPosition setPosWorld setPylonLoadOut setPylonsPriority setRadioMsg setRain setRainbow setRandomLip setRank setRectangular setRepairCargo setRotorBrakeRTD setShadowDistance setShotParents setSide setSimpleTaskAlwaysVisible setSimpleTaskCustomData setSimpleTaskDescription setSimpleTaskDestination setSimpleTaskTarget setSimpleTaskType setSimulWeatherLayers setSize setSkill setSlingLoad setSoundEffect setSpeaker setSpeech setSpeedMode setStamina setStaminaScheme setStatValue setSuppression setSystemOfUnits setTargetAge setTaskMarkerOffset setTaskResult setTaskState setTerrainGrid setText setTimeMultiplier setTitleEffect setTrafficDensity setTrafficDistance setTrafficGap setTrafficSpeed setTriggerActivation setTriggerArea setTriggerStatements setTriggerText setTriggerTimeout setTriggerType setType setUnconscious setUnitAbility setUnitLoadout setUnitPos setUnitPosWeak setUnitRank setUnitRecoilCoefficient setUnitTrait setUnloadInCombat setUserActionText setUserMFDText setUserMFDvalue setVariable setVectorDir setVectorDirAndUp setVectorUp setVehicleAmmo setVehicleAmmoDef setVehicleArmor setVehicleCargo setVehicleId setVehicleLock setVehiclePosition setVehicleRadar setVehicleReceiveRemoteTargets setVehicleReportOwnPosition setVehicleReportRemoteTargets setVehicleTIPars setVehicleVarName setVelocity setVelocityModelSpace setVelocityTransformation setViewDistance setVisibleIfTreeCollapsed setWantedRPMRTD setWaves setWaypointBehaviour setWaypointCombatMode setWaypointCompletionRadius setWaypointDescription setWaypointForceBehaviour setWaypointFormation setWaypointHousePosition setWaypointLoiterRadius setWaypointLoiterType setWaypointName setWaypointPosition setWaypointScript setWaypointSpeed setWaypointStatements setWaypointTimeout setWaypointType setWaypointVisible setWeaponReloadingTime setWind setWindDir setWindForce setWindStr setWingForceScaleRTD setWPPos show3DIcons showChat showCinemaBorder showCommandingMenu showCompass showCuratorCompass showGPS showHUD showLegend showMap shownArtilleryComputer shownChat shownCompass shownCuratorCompass showNewEditorObject shownGPS shownHUD shownMap shownPad shownRadio shownScoretable shownUAVFeed shownWarrant shownWatch showPad showRadio showScoretable showSubtitles showUAVFeed showWarrant showWatch showWaypoint showWaypoints side sideChat sideEnemy sideFriendly sideRadio simpleTasks simulationEnabled simulCloudDensity simulCloudOcclusion simulInClouds simulWeatherSync sin size sizeOf skill skillFinal skipTime sleep sliderPosition sliderRange sliderSetPosition sliderSetRange sliderSetSpeed sliderSpeed slingLoadAssistantShown soldierMagazines someAmmo sort soundVolume spawn speaker speed speedMode splitString sqrt squadParams stance startLoadingScreen step stop stopEngineRTD stopped str sunOrMoon supportInfo suppressFor surfaceIsWater surfaceNormal surfaceType swimInDepth switchableUnits switchAction switchCamera switchGesture switchLight switchMove synchronizedObjects synchronizedTriggers synchronizedWaypoints synchronizeObjectsAdd synchronizeObjectsRemove synchronizeTrigger synchronizeWaypoint systemChat systemOfUnits tan targetKnowledge targets targetsAggregate targetsQuery taskAlwaysVisible taskChildren taskCompleted taskCustomData taskDescription taskDestination taskHint taskMarkerOffset taskParent taskResult taskState taskType teamMember teamName teams teamSwitch teamSwitchEnabled teamType terminate terrainIntersect terrainIntersectASL terrainIntersectAtASL text textLog textLogFormat tg time timeMultiplier titleCut titleFadeOut titleObj titleRsc titleText toArray toFixed toLower toString toUpper triggerActivated triggerActivation triggerArea triggerAttachedVehicle triggerAttachObject triggerAttachVehicle triggerDynamicSimulation triggerStatements triggerText triggerTimeout triggerTimeoutCurrent triggerType turretLocal turretOwner turretUnit tvAdd tvClear tvCollapse tvCollapseAll tvCount tvCurSel tvData tvDelete tvExpand tvExpandAll tvPicture tvSetColor tvSetCurSel tvSetData tvSetPicture tvSetPictureColor tvSetPictureColorDisabled tvSetPictureColorSelected tvSetPictureRight tvSetPictureRightColor tvSetPictureRightColorDisabled tvSetPictureRightColorSelected tvSetText tvSetTooltip tvSetValue tvSort tvSortByValue tvText tvTooltip tvValue type typeName typeOf UAVControl uiNamespace uiSleep unassignCurator unassignItem unassignTeam unassignVehicle underwater uniform uniformContainer uniformItems uniformMagazines unitAddons unitAimPosition unitAimPositionVisual unitBackpack unitIsUAV unitPos unitReady unitRecoilCoefficient units unitsBelowHeight unlinkItem unlockAchievement unregisterTask updateDrawIcon updateMenuItem updateObjectTree useAISteeringComponent useAudioTimeForMoves userInputDisabled vectorAdd vectorCos vectorCrossProduct vectorDiff vectorDir vectorDirVisual vectorDistance vectorDistanceSqr vectorDotProduct vectorFromTo vectorMagnitude vectorMagnitudeSqr vectorModelToWorld vectorModelToWorldVisual vectorMultiply vectorNormalized vectorUp vectorUpVisual vectorWorldToModel vectorWorldToModelVisual vehicle vehicleCargoEnabled vehicleChat vehicleRadio vehicleReceiveRemoteTargets vehicleReportOwnPosition vehicleReportRemoteTargets vehicles vehicleVarName velocity velocityModelSpace verifySignature vest vestContainer vestItems vestMagazines viewDistance visibleCompass visibleGPS visibleMap visiblePosition visiblePositionASL visibleScoretable visibleWatch waves waypointAttachedObject waypointAttachedVehicle waypointAttachObject waypointAttachVehicle waypointBehaviour waypointCombatMode waypointCompletionRadius waypointDescription waypointForceBehaviour waypointFormation waypointHousePosition waypointLoiterRadius waypointLoiterType waypointName waypointPosition waypoints waypointScript waypointsEnabledUAV waypointShow waypointSpeed waypointStatements waypointTimeout waypointTimeoutCurrent waypointType waypointVisible weaponAccessories weaponAccessoriesCargo weaponCargo weaponDirection weaponInertia weaponLowered weapons weaponsItems weaponsItemsCargo weaponState weaponsTurret weightRTD WFSideText wind \",literal:\"blufor civilian configNull controlNull displayNull east endl false grpNull independent lineBreak locationNull nil objNull opfor pi resistance scriptNull sideAmbientLife sideEmpty sideLogic sideUnknown taskNull teamMemberNull true west\"},contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.NUMBER_MODE,t,n,i,r],illegal:/#|^\\$ /}}e.exports=n},e450:function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=114)}({0:function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},10:function(e,t){e.exports=n(\"f3ad\")},114:function(e,t,n){\"use strict\";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{class:[\"el-input-number\",e.inputNumberSize?\"el-input-number--\"+e.inputNumberSize:\"\",{\"is-disabled\":e.inputNumberDisabled},{\"is-without-controls\":!e.controls},{\"is-controls-right\":e.controlsAtRight}],on:{dragstart:function(e){e.preventDefault()}}},[e.controls?n(\"span\",{directives:[{name:\"repeat-click\",rawName:\"v-repeat-click\",value:e.decrease,expression:\"decrease\"}],staticClass:\"el-input-number__decrease\",class:{\"is-disabled\":e.minDisabled},attrs:{role:\"button\"},on:{keydown:function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.decrease(t)}}},[n(\"i\",{class:\"el-icon-\"+(e.controlsAtRight?\"arrow-down\":\"minus\")})]):e._e(),e.controls?n(\"span\",{directives:[{name:\"repeat-click\",rawName:\"v-repeat-click\",value:e.increase,expression:\"increase\"}],staticClass:\"el-input-number__increase\",class:{\"is-disabled\":e.maxDisabled},attrs:{role:\"button\"},on:{keydown:function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.increase(t)}}},[n(\"i\",{class:\"el-icon-\"+(e.controlsAtRight?\"arrow-up\":\"plus\")})]):e._e(),n(\"el-input\",{ref:\"input\",attrs:{value:e.displayValue,placeholder:e.placeholder,disabled:e.inputNumberDisabled,size:e.inputNumberSize,max:e.max,min:e.min,name:e.name,label:e.label},on:{blur:e.handleBlur,focus:e.handleFocus,input:e.handleInput,change:e.handleInputChange},nativeOn:{keydown:[function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"])?null:(t.preventDefault(),e.increase(t))},function(t){return!(\"button\"in t)&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"])?null:(t.preventDefault(),e.decrease(t))}]}})],1)},r=[];i._withStripped=!0;var a=n(10),o=n.n(a),s=n(22),l=n.n(s),c=n(30),u={name:\"ElInputNumber\",mixins:[l()(\"input\")],inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},directives:{repeatClick:c[\"a\"]},components:{ElInput:o.a},props:{step:{type:Number,default:1},stepStrictly:{type:Boolean,default:!1},max:{type:Number,default:1/0},min:{type:Number,default:-1/0},value:{},disabled:Boolean,size:String,controls:{type:Boolean,default:!0},controlsPosition:{type:String,default:\"\"},name:String,label:String,placeholder:String,precision:{type:Number,validator:function(e){return e>=0&&e===parseInt(e,10)}}},data:function(){return{currentValue:0,userInput:null}},watch:{value:{immediate:!0,handler:function(e){var t=void 0===e?e:Number(e);if(void 0!==t){if(isNaN(t))return;if(this.stepStrictly){var n=this.getPrecision(this.step),i=Math.pow(10,n);t=Math.round(t/this.step)*i*this.step/i}void 0!==this.precision&&(t=this.toPrecision(t,this.precision))}t>=this.max&&(t=this.max),t<=this.min&&(t=this.min),this.currentValue=t,this.userInput=null,this.$emit(\"input\",t)}}},computed:{minDisabled:function(){return this._decrease(this.value,this.step)<this.min},maxDisabled:function(){return this._increase(this.value,this.step)>this.max},numPrecision:function(){var e=this.value,t=this.step,n=this.getPrecision,i=this.precision,r=n(t);return void 0!==i?i:Math.max(n(e),r)},controlsAtRight:function(){return this.controls&&\"right\"===this.controlsPosition},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},inputNumberSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},inputNumberDisabled:function(){return this.disabled||!!(this.elForm||{}).disabled},displayValue:function(){if(null!==this.userInput)return this.userInput;var e=this.currentValue;if(\"number\"===typeof e){if(this.stepStrictly){var t=this.getPrecision(this.step),n=Math.pow(10,t);e=Math.round(e/this.step)*n*this.step/n}void 0!==this.precision&&(e=e.toFixed(this.precision))}return e}},methods:{toPrecision:function(e,t){return void 0===t&&(t=this.numPrecision),parseFloat(Math.round(e*Math.pow(10,t))/Math.pow(10,t))},getPrecision:function(e){if(void 0===e)return 0;var t=e.toString(),n=t.indexOf(\".\"),i=0;return-1!==n&&(i=t.length-n-1),i},_increase:function(e,t){if(\"number\"!==typeof e&&void 0!==e)return this.currentValue;var n=Math.pow(10,this.numPrecision);return this.toPrecision((n*e+n*t)/n)},_decrease:function(e,t){if(\"number\"!==typeof e&&void 0!==e)return this.currentValue;var n=Math.pow(10,this.numPrecision);return this.toPrecision((n*e-n*t)/n)},increase:function(){if(!this.inputNumberDisabled&&!this.maxDisabled){var e=this.value||0,t=this._increase(e,this.step);this.setCurrentValue(t)}},decrease:function(){if(!this.inputNumberDisabled&&!this.minDisabled){var e=this.value||0,t=this._decrease(e,this.step);this.setCurrentValue(t)}},handleBlur:function(e){this.$emit(\"blur\",e)},handleFocus:function(e){this.$emit(\"focus\",e)},setCurrentValue:function(e){var t=this.currentValue;\"number\"===typeof e&&void 0!==this.precision&&(e=this.toPrecision(e,this.precision)),e>=this.max&&(e=this.max),e<=this.min&&(e=this.min),t!==e&&(this.userInput=null,this.$emit(\"input\",e),this.$emit(\"change\",e,t),this.currentValue=e)},handleInput:function(e){this.userInput=e},handleInputChange:function(e){var t=\"\"===e?void 0:Number(e);isNaN(t)&&\"\"!==e||this.setCurrentValue(t),this.userInput=null},select:function(){this.$refs.input.select()}},mounted:function(){var e=this.$refs.input.$refs.input;e.setAttribute(\"role\",\"spinbutton\"),e.setAttribute(\"aria-valuemax\",this.max),e.setAttribute(\"aria-valuemin\",this.min),e.setAttribute(\"aria-valuenow\",this.currentValue),e.setAttribute(\"aria-disabled\",this.inputNumberDisabled)},updated:function(){if(this.$refs&&this.$refs.input){var e=this.$refs.input.$refs.input;e.setAttribute(\"aria-valuenow\",this.currentValue)}}},d=u,p=n(0),h=Object(p[\"a\"])(d,i,r,!1,null,null,null);h.options.__file=\"packages/input-number/src/input-number.vue\";var f=h.exports;f.install=function(e){e.component(f.name,f)};t[\"default\"]=f},2:function(e,t){e.exports=n(\"5924\")},22:function(e,t){e.exports=n(\"12f2\")},30:function(e,t,n){\"use strict\";var i=n(2);t[\"a\"]={bind:function(e,t,n){var r=null,a=void 0,o=function(){return n.context[t.expression].apply()},s=function(){Date.now()-a<100&&o(),clearInterval(r),r=null};Object(i[\"on\"])(e,\"mousedown\",(function(e){0===e.button&&(a=Date.now(),Object(i[\"once\"])(document,\"mouseup\",s),clearInterval(r),r=setInterval(o,100))}))}}}})},e452:function(e,t,n){\"use strict\";t.__esModule=!0;var i=i||{};i.Utils=i.Utils||{},i.Utils.focusFirstDescendant=function(e){for(var t=0;t<e.childNodes.length;t++){var n=e.childNodes[t];if(i.Utils.attemptFocus(n)||i.Utils.focusFirstDescendant(n))return!0}return!1},i.Utils.focusLastDescendant=function(e){for(var t=e.childNodes.length-1;t>=0;t--){var n=e.childNodes[t];if(i.Utils.attemptFocus(n)||i.Utils.focusLastDescendant(n))return!0}return!1},i.Utils.attemptFocus=function(e){if(!i.Utils.isFocusable(e))return!1;i.Utils.IgnoreUtilFocusChanges=!0;try{e.focus()}catch(t){}return i.Utils.IgnoreUtilFocusChanges=!1,document.activeElement===e},i.Utils.isFocusable=function(e){if(e.tabIndex>0||0===e.tabIndex&&null!==e.getAttribute(\"tabIndex\"))return!0;if(e.disabled)return!1;switch(e.nodeName){case\"A\":return!!e.href&&\"ignore\"!==e.rel;case\"INPUT\":return\"hidden\"!==e.type&&\"file\"!==e.type;case\"BUTTON\":case\"SELECT\":case\"TEXTAREA\":return!0;default:return!1}},i.Utils.triggerEvent=function(e,t){var n=void 0;n=/^mouse|click/.test(t)?\"MouseEvents\":/^key/.test(t)?\"KeyboardEvent\":\"HTMLEvents\";for(var i=document.createEvent(n),r=arguments.length,a=Array(r>2?r-2:0),o=2;o<r;o++)a[o-2]=arguments[o];return i.initEvent.apply(i,[t].concat(a)),e.dispatchEvent?e.dispatchEvent(i):e.fireEvent(\"on\"+t,i),e},i.Utils.keys={tab:9,enter:13,space:32,left:37,up:38,right:39,down:40,esc:27},t.default=i.Utils},e4ae:function(e,t,n){var i=n(\"f772\");e.exports=function(e){if(!i(e))throw TypeError(e+\" is not an object!\");return e}},e53d:function(e,t){var n=e.exports=\"undefined\"!=typeof window&&window.Math==Math?window:\"undefined\"!=typeof self&&self.Math==Math?self:Function(\"return this\")();\"number\"==typeof __g&&(__g=n)},e55c:function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(e){return a(\"(\",e,\")*\")}function r(e){return a(\"(\",e,\")?\")}function a(...e){const t=e.map(e=>n(e)).join(\"\");return t}function o(...e){const t=\"(\"+e.map(e=>n(e)).join(\"|\")+\")\";return t}function s(e){const t={\"builtin-name\":[\"action\",\"bindattr\",\"collection\",\"component\",\"concat\",\"debugger\",\"each\",\"each-in\",\"get\",\"hash\",\"if\",\"in\",\"input\",\"link-to\",\"loc\",\"log\",\"lookup\",\"mut\",\"outlet\",\"partial\",\"query-params\",\"render\",\"template\",\"textarea\",\"unbound\",\"unless\",\"view\",\"with\",\"yield\"]},n={literal:[\"true\",\"false\",\"undefined\",\"null\"]},s=/\"\"|\"[^\"]+\"/,l=/''|'[^']+'/,c=/\\[\\]|\\[[^\\]]+\\]/,u=/[^\\s!\"#%&'()*+,.\\/;<=>@\\[\\\\\\]^`{|}~]+/,d=/(\\.|\\/)/,p=o(s,l,c,u),h=a(r(/\\.|\\.\\/|\\//),p,i(a(d,p))),f=a(\"(\",c,\"|\",u,\")(?==)\"),_={begin:h,lexemes:/[\\w.\\/]+/},m=e.inherit(_,{keywords:n}),g={begin:/\\(/,end:/\\)/},b={className:\"attr\",begin:f,relevance:0,starts:{begin:/=/,end:/=/,starts:{contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,m,g]}}},v={begin:/as\\s+\\|/,keywords:{keyword:\"as\"},end:/\\|/,contains:[{begin:/\\w+/}]},E={contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,v,b,m,g],returnEnd:!0},y=e.inherit(_,{className:\"name\",keywords:t,starts:e.inherit(E,{end:/\\)/})});g.contains=[y];const S=e.inherit(_,{keywords:t,className:\"name\",starts:e.inherit(E,{end:/\\}\\}/})}),C=e.inherit(_,{keywords:t,className:\"name\"}),T=e.inherit(_,{className:\"name\",keywords:t,starts:e.inherit(E,{end:/\\}\\}/})}),x={begin:/\\\\\\{\\{/,skip:!0},w={begin:/\\\\\\\\(?=\\{\\{)/,skip:!0};return{name:\"Handlebars\",aliases:[\"hbs\",\"html.hbs\",\"html.handlebars\",\"htmlbars\"],case_insensitive:!0,subLanguage:\"xml\",contains:[x,w,e.COMMENT(/\\{\\{!--/,/--\\}\\}/),e.COMMENT(/\\{\\{!/,/\\}\\}/),{className:\"template-tag\",begin:/\\{\\{\\{\\{(?!\\/)/,end:/\\}\\}\\}\\}/,contains:[S],starts:{end:/\\{\\{\\{\\{\\//,returnEnd:!0,subLanguage:\"xml\"}},{className:\"template-tag\",begin:/\\{\\{\\{\\{\\//,end:/\\}\\}\\}\\}/,contains:[C]},{className:\"template-tag\",begin:/\\{\\{#/,end:/\\}\\}/,contains:[S]},{className:\"template-tag\",begin:/\\{\\{(?=else\\}\\})/,end:/\\}\\}/,keywords:\"else\"},{className:\"template-tag\",begin:/\\{\\{(?=else if)/,end:/\\}\\}/,keywords:\"else if\"},{className:\"template-tag\",begin:/\\{\\{\\//,end:/\\}\\}/,contains:[C]},{className:\"template-variable\",begin:/\\{\\{\\{/,end:/\\}\\}\\}/,contains:[T]},{className:\"template-variable\",begin:/\\{\\{/,end:/\\}\\}/,contains:[T]}]}}e.exports=s},e62d:function(e,t,n){\"use strict\";t.__esModule=!0,t.default=function(){if(r.default.prototype.$isServer)return 0;if(void 0!==o)return o;var e=document.createElement(\"div\");e.className=\"el-scrollbar__wrap\",e.style.visibility=\"hidden\",e.style.width=\"100px\",e.style.position=\"absolute\",e.style.top=\"-9999px\",document.body.appendChild(e);var t=e.offsetWidth;e.style.overflow=\"scroll\";var n=document.createElement(\"div\");n.style.width=\"100%\",e.appendChild(n);var i=n.offsetWidth;return e.parentNode.removeChild(e),o=t-i,o};var i=n(\"2b0e\"),r=a(i);function a(e){return e&&e.__esModule?e:{default:e}}var o=void 0},e683:function(e,t,n){\"use strict\";e.exports=function(e,t){return t?e.replace(/\\/+$/,\"\")+\"/\"+t.replace(/^\\/+/,\"\"):e}},e6ea:function(e,t){function n(e){const t={keyword:\"begin end if then else while do for break continue with until repeat exit and or xor not return mod div switch case default var globalvar enum #macro #region #endregion\",built_in:\"is_real is_string is_array is_undefined is_int32 is_int64 is_ptr is_vec3 is_vec4 is_matrix is_bool typeof variable_global_exists variable_global_get variable_global_set variable_instance_exists variable_instance_get variable_instance_set variable_instance_get_names array_length_1d array_length_2d array_height_2d array_equals array_create array_copy random random_range irandom irandom_range random_set_seed random_get_seed randomize randomise choose abs round floor ceil sign frac sqrt sqr exp ln log2 log10 sin cos tan arcsin arccos arctan arctan2 dsin dcos dtan darcsin darccos darctan darctan2 degtorad radtodeg power logn min max mean median clamp lerp dot_product dot_product_3d dot_product_normalised dot_product_3d_normalised dot_product_normalized dot_product_3d_normalized math_set_epsilon math_get_epsilon angle_difference point_distance_3d point_distance point_direction lengthdir_x lengthdir_y real string int64 ptr string_format chr ansi_char ord string_length string_byte_length string_pos string_copy string_char_at string_ord_at string_byte_at string_set_byte_at string_delete string_insert string_lower string_upper string_repeat string_letters string_digits string_lettersdigits string_replace string_replace_all string_count string_hash_to_newline clipboard_has_text clipboard_set_text clipboard_get_text date_current_datetime date_create_datetime date_valid_datetime date_inc_year date_inc_month date_inc_week date_inc_day date_inc_hour date_inc_minute date_inc_second date_get_year date_get_month date_get_week date_get_day date_get_hour date_get_minute date_get_second date_get_weekday date_get_day_of_year date_get_hour_of_year date_get_minute_of_year date_get_second_of_year date_year_span date_month_span date_week_span date_day_span date_hour_span date_minute_span date_second_span date_compare_datetime date_compare_date date_compare_time date_date_of date_time_of date_datetime_string date_date_string date_time_string date_days_in_month date_days_in_year date_leap_year date_is_today date_set_timezone date_get_timezone game_set_speed game_get_speed motion_set motion_add place_free place_empty place_meeting place_snapped move_random move_snap move_towards_point move_contact_solid move_contact_all move_outside_solid move_outside_all move_bounce_solid move_bounce_all move_wrap distance_to_point distance_to_object position_empty position_meeting path_start path_end mp_linear_step mp_potential_step mp_linear_step_object mp_potential_step_object mp_potential_settings mp_linear_path mp_potential_path mp_linear_path_object mp_potential_path_object mp_grid_create mp_grid_destroy mp_grid_clear_all mp_grid_clear_cell mp_grid_clear_rectangle mp_grid_add_cell mp_grid_get_cell mp_grid_add_rectangle mp_grid_add_instances mp_grid_path mp_grid_draw mp_grid_to_ds_grid collision_point collision_rectangle collision_circle collision_ellipse collision_line collision_point_list collision_rectangle_list collision_circle_list collision_ellipse_list collision_line_list instance_position_list instance_place_list point_in_rectangle point_in_triangle point_in_circle rectangle_in_rectangle rectangle_in_triangle rectangle_in_circle instance_find instance_exists instance_number instance_position instance_nearest instance_furthest instance_place instance_create_depth instance_create_layer instance_copy instance_change instance_destroy position_destroy position_change instance_id_get instance_deactivate_all instance_deactivate_object instance_deactivate_region instance_activate_all instance_activate_object instance_activate_region room_goto room_goto_previous room_goto_next room_previous room_next room_restart game_end game_restart game_load game_save game_save_buffer game_load_buffer event_perform event_user event_perform_object event_inherited show_debug_message show_debug_overlay debug_event debug_get_callstack alarm_get alarm_set font_texture_page_size keyboard_set_map keyboard_get_map keyboard_unset_map keyboard_check keyboard_check_pressed keyboard_check_released keyboard_check_direct keyboard_get_numlock keyboard_set_numlock keyboard_key_press keyboard_key_release keyboard_clear io_clear mouse_check_button mouse_check_button_pressed mouse_check_button_released mouse_wheel_up mouse_wheel_down mouse_clear draw_self draw_sprite draw_sprite_pos draw_sprite_ext draw_sprite_stretched draw_sprite_stretched_ext draw_sprite_tiled draw_sprite_tiled_ext draw_sprite_part draw_sprite_part_ext draw_sprite_general draw_clear draw_clear_alpha draw_point draw_line draw_line_width draw_rectangle draw_roundrect draw_roundrect_ext draw_triangle draw_circle draw_ellipse draw_set_circle_precision draw_arrow draw_button draw_path draw_healthbar draw_getpixel draw_getpixel_ext draw_set_colour draw_set_color draw_set_alpha draw_get_colour draw_get_color draw_get_alpha merge_colour make_colour_rgb make_colour_hsv colour_get_red colour_get_green colour_get_blue colour_get_hue colour_get_saturation colour_get_value merge_color make_color_rgb make_color_hsv color_get_red color_get_green color_get_blue color_get_hue color_get_saturation color_get_value merge_color screen_save screen_save_part draw_set_font draw_set_halign draw_set_valign draw_text draw_text_ext string_width string_height string_width_ext string_height_ext draw_text_transformed draw_text_ext_transformed draw_text_colour draw_text_ext_colour draw_text_transformed_colour draw_text_ext_transformed_colour draw_text_color draw_text_ext_color draw_text_transformed_color draw_text_ext_transformed_color draw_point_colour draw_line_colour draw_line_width_colour draw_rectangle_colour draw_roundrect_colour draw_roundrect_colour_ext draw_triangle_colour draw_circle_colour draw_ellipse_colour draw_point_color draw_line_color draw_line_width_color draw_rectangle_color draw_roundrect_color draw_roundrect_color_ext draw_triangle_color draw_circle_color draw_ellipse_color draw_primitive_begin draw_vertex draw_vertex_colour draw_vertex_color draw_primitive_end sprite_get_uvs font_get_uvs sprite_get_texture font_get_texture texture_get_width texture_get_height texture_get_uvs draw_primitive_begin_texture draw_vertex_texture draw_vertex_texture_colour draw_vertex_texture_color texture_global_scale surface_create surface_create_ext surface_resize surface_free surface_exists surface_get_width surface_get_height surface_get_texture surface_set_target surface_set_target_ext surface_reset_target surface_depth_disable surface_get_depth_disable draw_surface draw_surface_stretched draw_surface_tiled draw_surface_part draw_surface_ext draw_surface_stretched_ext draw_surface_tiled_ext draw_surface_part_ext draw_surface_general surface_getpixel surface_getpixel_ext surface_save surface_save_part surface_copy surface_copy_part application_surface_draw_enable application_get_position application_surface_enable application_surface_is_enabled display_get_width display_get_height display_get_orientation display_get_gui_width display_get_gui_height display_reset display_mouse_get_x display_mouse_get_y display_mouse_set display_set_ui_visibility window_set_fullscreen window_get_fullscreen window_set_caption window_set_min_width window_set_max_width window_set_min_height window_set_max_height window_get_visible_rects window_get_caption window_set_cursor window_get_cursor window_set_colour window_get_colour window_set_color window_get_color window_set_position window_set_size window_set_rectangle window_center window_get_x window_get_y window_get_width window_get_height window_mouse_get_x window_mouse_get_y window_mouse_set window_view_mouse_get_x window_view_mouse_get_y window_views_mouse_get_x window_views_mouse_get_y audio_listener_position audio_listener_velocity audio_listener_orientation audio_emitter_position audio_emitter_create audio_emitter_free audio_emitter_exists audio_emitter_pitch audio_emitter_velocity audio_emitter_falloff audio_emitter_gain audio_play_sound audio_play_sound_on audio_play_sound_at audio_stop_sound audio_resume_music audio_music_is_playing audio_resume_sound audio_pause_sound audio_pause_music audio_channel_num audio_sound_length audio_get_type audio_falloff_set_model audio_play_music audio_stop_music audio_master_gain audio_music_gain audio_sound_gain audio_sound_pitch audio_stop_all audio_resume_all audio_pause_all audio_is_playing audio_is_paused audio_exists audio_sound_set_track_position audio_sound_get_track_position audio_emitter_get_gain audio_emitter_get_pitch audio_emitter_get_x audio_emitter_get_y audio_emitter_get_z audio_emitter_get_vx audio_emitter_get_vy audio_emitter_get_vz audio_listener_set_position audio_listener_set_velocity audio_listener_set_orientation audio_listener_get_data audio_set_master_gain audio_get_master_gain audio_sound_get_gain audio_sound_get_pitch audio_get_name audio_sound_set_track_position audio_sound_get_track_position audio_create_stream audio_destroy_stream audio_create_sync_group audio_destroy_sync_group audio_play_in_sync_group audio_start_sync_group audio_stop_sync_group audio_pause_sync_group audio_resume_sync_group audio_sync_group_get_track_pos audio_sync_group_debug audio_sync_group_is_playing audio_debug audio_group_load audio_group_unload audio_group_is_loaded audio_group_load_progress audio_group_name audio_group_stop_all audio_group_set_gain audio_create_buffer_sound audio_free_buffer_sound audio_create_play_queue audio_free_play_queue audio_queue_sound audio_get_recorder_count audio_get_recorder_info audio_start_recording audio_stop_recording audio_sound_get_listener_mask audio_emitter_get_listener_mask audio_get_listener_mask audio_sound_set_listener_mask audio_emitter_set_listener_mask audio_set_listener_mask audio_get_listener_count audio_get_listener_info audio_system show_message show_message_async clickable_add clickable_add_ext clickable_change clickable_change_ext clickable_delete clickable_exists clickable_set_style show_question show_question_async get_integer get_string get_integer_async get_string_async get_login_async get_open_filename get_save_filename get_open_filename_ext get_save_filename_ext show_error highscore_clear highscore_add highscore_value highscore_name draw_highscore sprite_exists sprite_get_name sprite_get_number sprite_get_width sprite_get_height sprite_get_xoffset sprite_get_yoffset sprite_get_bbox_left sprite_get_bbox_right sprite_get_bbox_top sprite_get_bbox_bottom sprite_save sprite_save_strip sprite_set_cache_size sprite_set_cache_size_ext sprite_get_tpe sprite_prefetch sprite_prefetch_multi sprite_flush sprite_flush_multi sprite_set_speed sprite_get_speed_type sprite_get_speed font_exists font_get_name font_get_fontname font_get_bold font_get_italic font_get_first font_get_last font_get_size font_set_cache_size path_exists path_get_name path_get_length path_get_time path_get_kind path_get_closed path_get_precision path_get_number path_get_point_x path_get_point_y path_get_point_speed path_get_x path_get_y path_get_speed script_exists script_get_name timeline_add timeline_delete timeline_clear timeline_exists timeline_get_name timeline_moment_clear timeline_moment_add_script timeline_size timeline_max_moment object_exists object_get_name object_get_sprite object_get_solid object_get_visible object_get_persistent object_get_mask object_get_parent object_get_physics object_is_ancestor room_exists room_get_name sprite_set_offset sprite_duplicate sprite_assign sprite_merge sprite_add sprite_replace sprite_create_from_surface sprite_add_from_surface sprite_delete sprite_set_alpha_from_sprite sprite_collision_mask font_add_enable_aa font_add_get_enable_aa font_add font_add_sprite font_add_sprite_ext font_replace font_replace_sprite font_replace_sprite_ext font_delete path_set_kind path_set_closed path_set_precision path_add path_assign path_duplicate path_append path_delete path_add_point path_insert_point path_change_point path_delete_point path_clear_points path_reverse path_mirror path_flip path_rotate path_rescale path_shift script_execute object_set_sprite object_set_solid object_set_visible object_set_persistent object_set_mask room_set_width room_set_height room_set_persistent room_set_background_colour room_set_background_color room_set_view room_set_viewport room_get_viewport room_set_view_enabled room_add room_duplicate room_assign room_instance_add room_instance_clear room_get_camera room_set_camera asset_get_index asset_get_type file_text_open_from_string file_text_open_read file_text_open_write file_text_open_append file_text_close file_text_write_string file_text_write_real file_text_writeln file_text_read_string file_text_read_real file_text_readln file_text_eof file_text_eoln file_exists file_delete file_rename file_copy directory_exists directory_create directory_destroy file_find_first file_find_next file_find_close file_attributes filename_name filename_path filename_dir filename_drive filename_ext filename_change_ext file_bin_open file_bin_rewrite file_bin_close file_bin_position file_bin_size file_bin_seek file_bin_write_byte file_bin_read_byte parameter_count parameter_string environment_get_variable ini_open_from_string ini_open ini_close ini_read_string ini_read_real ini_write_string ini_write_real ini_key_exists ini_section_exists ini_key_delete ini_section_delete ds_set_precision ds_exists ds_stack_create ds_stack_destroy ds_stack_clear ds_stack_copy ds_stack_size ds_stack_empty ds_stack_push ds_stack_pop ds_stack_top ds_stack_write ds_stack_read ds_queue_create ds_queue_destroy ds_queue_clear ds_queue_copy ds_queue_size ds_queue_empty ds_queue_enqueue ds_queue_dequeue ds_queue_head ds_queue_tail ds_queue_write ds_queue_read ds_list_create ds_list_destroy ds_list_clear ds_list_copy ds_list_size ds_list_empty ds_list_add ds_list_insert ds_list_replace ds_list_delete ds_list_find_index ds_list_find_value ds_list_mark_as_list ds_list_mark_as_map ds_list_sort ds_list_shuffle ds_list_write ds_list_read ds_list_set ds_map_create ds_map_destroy ds_map_clear ds_map_copy ds_map_size ds_map_empty ds_map_add ds_map_add_list ds_map_add_map ds_map_replace ds_map_replace_map ds_map_replace_list ds_map_delete ds_map_exists ds_map_find_value ds_map_find_previous ds_map_find_next ds_map_find_first ds_map_find_last ds_map_write ds_map_read ds_map_secure_save ds_map_secure_load ds_map_secure_load_buffer ds_map_secure_save_buffer ds_map_set ds_priority_create ds_priority_destroy ds_priority_clear ds_priority_copy ds_priority_size ds_priority_empty ds_priority_add ds_priority_change_priority ds_priority_find_priority ds_priority_delete_value ds_priority_delete_min ds_priority_find_min ds_priority_delete_max ds_priority_find_max ds_priority_write ds_priority_read ds_grid_create ds_grid_destroy ds_grid_copy ds_grid_resize ds_grid_width ds_grid_height ds_grid_clear ds_grid_set ds_grid_add ds_grid_multiply ds_grid_set_region ds_grid_add_region ds_grid_multiply_region ds_grid_set_disk ds_grid_add_disk ds_grid_multiply_disk ds_grid_set_grid_region ds_grid_add_grid_region ds_grid_multiply_grid_region ds_grid_get ds_grid_get_sum ds_grid_get_max ds_grid_get_min ds_grid_get_mean ds_grid_get_disk_sum ds_grid_get_disk_min ds_grid_get_disk_max ds_grid_get_disk_mean ds_grid_value_exists ds_grid_value_x ds_grid_value_y ds_grid_value_disk_exists ds_grid_value_disk_x ds_grid_value_disk_y ds_grid_shuffle ds_grid_write ds_grid_read ds_grid_sort ds_grid_set ds_grid_get effect_create_below effect_create_above effect_clear part_type_create part_type_destroy part_type_exists part_type_clear part_type_shape part_type_sprite part_type_size part_type_scale part_type_orientation part_type_life part_type_step part_type_death part_type_speed part_type_direction part_type_gravity part_type_colour1 part_type_colour2 part_type_colour3 part_type_colour_mix part_type_colour_rgb part_type_colour_hsv part_type_color1 part_type_color2 part_type_color3 part_type_color_mix part_type_color_rgb part_type_color_hsv part_type_alpha1 part_type_alpha2 part_type_alpha3 part_type_blend part_system_create part_system_create_layer part_system_destroy part_system_exists part_system_clear part_system_draw_order part_system_depth part_system_position part_system_automatic_update part_system_automatic_draw part_system_update part_system_drawit part_system_get_layer part_system_layer part_particles_create part_particles_create_colour part_particles_create_color part_particles_clear part_particles_count part_emitter_create part_emitter_destroy part_emitter_destroy_all part_emitter_exists part_emitter_clear part_emitter_region part_emitter_burst part_emitter_stream external_call external_define external_free window_handle window_device matrix_get matrix_set matrix_build_identity matrix_build matrix_build_lookat matrix_build_projection_ortho matrix_build_projection_perspective matrix_build_projection_perspective_fov matrix_multiply matrix_transform_vertex matrix_stack_push matrix_stack_pop matrix_stack_multiply matrix_stack_set matrix_stack_clear matrix_stack_top matrix_stack_is_empty browser_input_capture os_get_config os_get_info os_get_language os_get_region os_lock_orientation display_get_dpi_x display_get_dpi_y display_set_gui_size display_set_gui_maximise display_set_gui_maximize device_mouse_dbclick_enable display_set_timing_method display_get_timing_method display_set_sleep_margin display_get_sleep_margin virtual_key_add virtual_key_hide virtual_key_delete virtual_key_show draw_enable_drawevent draw_enable_swf_aa draw_set_swf_aa_level draw_get_swf_aa_level draw_texture_flush draw_flush gpu_set_blendenable gpu_set_ztestenable gpu_set_zfunc gpu_set_zwriteenable gpu_set_lightingenable gpu_set_fog gpu_set_cullmode gpu_set_blendmode gpu_set_blendmode_ext gpu_set_blendmode_ext_sepalpha gpu_set_colorwriteenable gpu_set_colourwriteenable gpu_set_alphatestenable gpu_set_alphatestref gpu_set_alphatestfunc gpu_set_texfilter gpu_set_texfilter_ext gpu_set_texrepeat gpu_set_texrepeat_ext gpu_set_tex_filter gpu_set_tex_filter_ext gpu_set_tex_repeat gpu_set_tex_repeat_ext gpu_set_tex_mip_filter gpu_set_tex_mip_filter_ext gpu_set_tex_mip_bias gpu_set_tex_mip_bias_ext gpu_set_tex_min_mip gpu_set_tex_min_mip_ext gpu_set_tex_max_mip gpu_set_tex_max_mip_ext gpu_set_tex_max_aniso gpu_set_tex_max_aniso_ext gpu_set_tex_mip_enable gpu_set_tex_mip_enable_ext gpu_get_blendenable gpu_get_ztestenable gpu_get_zfunc gpu_get_zwriteenable gpu_get_lightingenable gpu_get_fog gpu_get_cullmode gpu_get_blendmode gpu_get_blendmode_ext gpu_get_blendmode_ext_sepalpha gpu_get_blendmode_src gpu_get_blendmode_dest gpu_get_blendmode_srcalpha gpu_get_blendmode_destalpha gpu_get_colorwriteenable gpu_get_colourwriteenable gpu_get_alphatestenable gpu_get_alphatestref gpu_get_alphatestfunc gpu_get_texfilter gpu_get_texfilter_ext gpu_get_texrepeat gpu_get_texrepeat_ext gpu_get_tex_filter gpu_get_tex_filter_ext gpu_get_tex_repeat gpu_get_tex_repeat_ext gpu_get_tex_mip_filter gpu_get_tex_mip_filter_ext gpu_get_tex_mip_bias gpu_get_tex_mip_bias_ext gpu_get_tex_min_mip gpu_get_tex_min_mip_ext gpu_get_tex_max_mip gpu_get_tex_max_mip_ext gpu_get_tex_max_aniso gpu_get_tex_max_aniso_ext gpu_get_tex_mip_enable gpu_get_tex_mip_enable_ext gpu_push_state gpu_pop_state gpu_get_state gpu_set_state draw_light_define_ambient draw_light_define_direction draw_light_define_point draw_light_enable draw_set_lighting draw_light_get_ambient draw_light_get draw_get_lighting shop_leave_rating url_get_domain url_open url_open_ext url_open_full get_timer achievement_login achievement_logout achievement_post achievement_increment achievement_post_score achievement_available achievement_show_achievements achievement_show_leaderboards achievement_load_friends achievement_load_leaderboard achievement_send_challenge achievement_load_progress achievement_reset achievement_login_status achievement_get_pic achievement_show_challenge_notifications achievement_get_challenges achievement_event achievement_show achievement_get_info cloud_file_save cloud_string_save cloud_synchronise ads_enable ads_disable ads_setup ads_engagement_launch ads_engagement_available ads_engagement_active ads_event ads_event_preload ads_set_reward_callback ads_get_display_height ads_get_display_width ads_move ads_interstitial_available ads_interstitial_display device_get_tilt_x device_get_tilt_y device_get_tilt_z device_is_keypad_open device_mouse_check_button device_mouse_check_button_pressed device_mouse_check_button_released device_mouse_x device_mouse_y device_mouse_raw_x device_mouse_raw_y device_mouse_x_to_gui device_mouse_y_to_gui iap_activate iap_status iap_enumerate_products iap_restore_all iap_acquire iap_consume iap_product_details iap_purchase_details facebook_init facebook_login facebook_status facebook_graph_request facebook_dialog facebook_logout facebook_launch_offerwall facebook_post_message facebook_send_invite facebook_user_id facebook_accesstoken facebook_check_permission facebook_request_read_permissions facebook_request_publish_permissions gamepad_is_supported gamepad_get_device_count gamepad_is_connected gamepad_get_description gamepad_get_button_threshold gamepad_set_button_threshold gamepad_get_axis_deadzone gamepad_set_axis_deadzone gamepad_button_count gamepad_button_check gamepad_button_check_pressed gamepad_button_check_released gamepad_button_value gamepad_axis_count gamepad_axis_value gamepad_set_vibration gamepad_set_colour gamepad_set_color os_is_paused window_has_focus code_is_compiled http_get http_get_file http_post_string http_request json_encode json_decode zip_unzip load_csv base64_encode base64_decode md5_string_unicode md5_string_utf8 md5_file os_is_network_connected sha1_string_unicode sha1_string_utf8 sha1_file os_powersave_enable analytics_event analytics_event_ext win8_livetile_tile_notification win8_livetile_tile_clear win8_livetile_badge_notification win8_livetile_badge_clear win8_livetile_queue_enable win8_secondarytile_pin win8_secondarytile_badge_notification win8_secondarytile_delete win8_livetile_notification_begin win8_livetile_notification_secondary_begin win8_livetile_notification_expiry win8_livetile_notification_tag win8_livetile_notification_text_add win8_livetile_notification_image_add win8_livetile_notification_end win8_appbar_enable win8_appbar_add_element win8_appbar_remove_element win8_settingscharm_add_entry win8_settingscharm_add_html_entry win8_settingscharm_add_xaml_entry win8_settingscharm_set_xaml_property win8_settingscharm_get_xaml_property win8_settingscharm_remove_entry win8_share_image win8_share_screenshot win8_share_file win8_share_url win8_share_text win8_search_enable win8_search_disable win8_search_add_suggestions win8_device_touchscreen_available win8_license_initialize_sandbox win8_license_trial_version winphone_license_trial_version winphone_tile_title winphone_tile_count winphone_tile_back_title winphone_tile_back_content winphone_tile_back_content_wide winphone_tile_front_image winphone_tile_front_image_small winphone_tile_front_image_wide winphone_tile_back_image winphone_tile_back_image_wide winphone_tile_background_colour winphone_tile_background_color winphone_tile_icon_image winphone_tile_small_icon_image winphone_tile_wide_content winphone_tile_cycle_images winphone_tile_small_background_image physics_world_create physics_world_gravity physics_world_update_speed physics_world_update_iterations physics_world_draw_debug physics_pause_enable physics_fixture_create physics_fixture_set_kinematic physics_fixture_set_density physics_fixture_set_awake physics_fixture_set_restitution physics_fixture_set_friction physics_fixture_set_collision_group physics_fixture_set_sensor physics_fixture_set_linear_damping physics_fixture_set_angular_damping physics_fixture_set_circle_shape physics_fixture_set_box_shape physics_fixture_set_edge_shape physics_fixture_set_polygon_shape physics_fixture_set_chain_shape physics_fixture_add_point physics_fixture_bind physics_fixture_bind_ext physics_fixture_delete physics_apply_force physics_apply_impulse physics_apply_angular_impulse physics_apply_local_force physics_apply_local_impulse physics_apply_torque physics_mass_properties physics_draw_debug physics_test_overlap physics_remove_fixture physics_set_friction physics_set_density physics_set_restitution physics_get_friction physics_get_density physics_get_restitution physics_joint_distance_create physics_joint_rope_create physics_joint_revolute_create physics_joint_prismatic_create physics_joint_pulley_create physics_joint_wheel_create physics_joint_weld_create physics_joint_friction_create physics_joint_gear_create physics_joint_enable_motor physics_joint_get_value physics_joint_set_value physics_joint_delete physics_particle_create physics_particle_delete physics_particle_delete_region_circle physics_particle_delete_region_box physics_particle_delete_region_poly physics_particle_set_flags physics_particle_set_category_flags physics_particle_draw physics_particle_draw_ext physics_particle_count physics_particle_get_data physics_particle_get_data_particle physics_particle_group_begin physics_particle_group_circle physics_particle_group_box physics_particle_group_polygon physics_particle_group_add_point physics_particle_group_end physics_particle_group_join physics_particle_group_delete physics_particle_group_count physics_particle_group_get_data physics_particle_group_get_mass physics_particle_group_get_inertia physics_particle_group_get_centre_x physics_particle_group_get_centre_y physics_particle_group_get_vel_x physics_particle_group_get_vel_y physics_particle_group_get_ang_vel physics_particle_group_get_x physics_particle_group_get_y physics_particle_group_get_angle physics_particle_set_group_flags physics_particle_get_group_flags physics_particle_get_max_count physics_particle_get_radius physics_particle_get_density physics_particle_get_damping physics_particle_get_gravity_scale physics_particle_set_max_count physics_particle_set_radius physics_particle_set_density physics_particle_set_damping physics_particle_set_gravity_scale network_create_socket network_create_socket_ext network_create_server network_create_server_raw network_connect network_connect_raw network_send_packet network_send_raw network_send_broadcast network_send_udp network_send_udp_raw network_set_timeout network_set_config network_resolve network_destroy buffer_create buffer_write buffer_read buffer_seek buffer_get_surface buffer_set_surface buffer_delete buffer_exists buffer_get_type buffer_get_alignment buffer_poke buffer_peek buffer_save buffer_save_ext buffer_load buffer_load_ext buffer_load_partial buffer_copy buffer_fill buffer_get_size buffer_tell buffer_resize buffer_md5 buffer_sha1 buffer_base64_encode buffer_base64_decode buffer_base64_decode_ext buffer_sizeof buffer_get_address buffer_create_from_vertex_buffer buffer_create_from_vertex_buffer_ext buffer_copy_from_vertex_buffer buffer_async_group_begin buffer_async_group_option buffer_async_group_end buffer_load_async buffer_save_async gml_release_mode gml_pragma steam_activate_overlay steam_is_overlay_enabled steam_is_overlay_activated steam_get_persona_name steam_initialised steam_is_cloud_enabled_for_app steam_is_cloud_enabled_for_account steam_file_persisted steam_get_quota_total steam_get_quota_free steam_file_write steam_file_write_file steam_file_read steam_file_delete steam_file_exists steam_file_size steam_file_share steam_is_screenshot_requested steam_send_screenshot steam_is_user_logged_on steam_get_user_steam_id steam_user_owns_dlc steam_user_installed_dlc steam_set_achievement steam_get_achievement steam_clear_achievement steam_set_stat_int steam_set_stat_float steam_set_stat_avg_rate steam_get_stat_int steam_get_stat_float steam_get_stat_avg_rate steam_reset_all_stats steam_reset_all_stats_achievements steam_stats_ready steam_create_leaderboard steam_upload_score steam_upload_score_ext steam_download_scores_around_user steam_download_scores steam_download_friends_scores steam_upload_score_buffer steam_upload_score_buffer_ext steam_current_game_language steam_available_languages steam_activate_overlay_browser steam_activate_overlay_user steam_activate_overlay_store steam_get_user_persona_name steam_get_app_id steam_get_user_account_id steam_ugc_download steam_ugc_create_item steam_ugc_start_item_update steam_ugc_set_item_title steam_ugc_set_item_description steam_ugc_set_item_visibility steam_ugc_set_item_tags steam_ugc_set_item_content steam_ugc_set_item_preview steam_ugc_submit_item_update steam_ugc_get_item_update_progress steam_ugc_subscribe_item steam_ugc_unsubscribe_item steam_ugc_num_subscribed_items steam_ugc_get_subscribed_items steam_ugc_get_item_install_info steam_ugc_get_item_update_info steam_ugc_request_item_details steam_ugc_create_query_user steam_ugc_create_query_user_ex steam_ugc_create_query_all steam_ugc_create_query_all_ex steam_ugc_query_set_cloud_filename_filter steam_ugc_query_set_match_any_tag steam_ugc_query_set_search_text steam_ugc_query_set_ranked_by_trend_days steam_ugc_query_add_required_tag steam_ugc_query_add_excluded_tag steam_ugc_query_set_return_long_description steam_ugc_query_set_return_total_only steam_ugc_query_set_allow_cached_response steam_ugc_send_query shader_set shader_get_name shader_reset shader_current shader_is_compiled shader_get_sampler_index shader_get_uniform shader_set_uniform_i shader_set_uniform_i_array shader_set_uniform_f shader_set_uniform_f_array shader_set_uniform_matrix shader_set_uniform_matrix_array shader_enable_corner_id texture_set_stage texture_get_texel_width texture_get_texel_height shaders_are_supported vertex_format_begin vertex_format_end vertex_format_delete vertex_format_add_position vertex_format_add_position_3d vertex_format_add_colour vertex_format_add_color vertex_format_add_normal vertex_format_add_texcoord vertex_format_add_textcoord vertex_format_add_custom vertex_create_buffer vertex_create_buffer_ext vertex_delete_buffer vertex_begin vertex_end vertex_position vertex_position_3d vertex_colour vertex_color vertex_argb vertex_texcoord vertex_normal vertex_float1 vertex_float2 vertex_float3 vertex_float4 vertex_ubyte4 vertex_submit vertex_freeze vertex_get_number vertex_get_buffer_size vertex_create_buffer_from_buffer vertex_create_buffer_from_buffer_ext push_local_notification push_get_first_local_notification push_get_next_local_notification push_cancel_local_notification skeleton_animation_set skeleton_animation_get skeleton_animation_mix skeleton_animation_set_ext skeleton_animation_get_ext skeleton_animation_get_duration skeleton_animation_get_frames skeleton_animation_clear skeleton_skin_set skeleton_skin_get skeleton_attachment_set skeleton_attachment_get skeleton_attachment_create skeleton_collision_draw_set skeleton_bone_data_get skeleton_bone_data_set skeleton_bone_state_get skeleton_bone_state_set skeleton_get_minmax skeleton_get_num_bounds skeleton_get_bounds skeleton_animation_get_frame skeleton_animation_set_frame draw_skeleton draw_skeleton_time draw_skeleton_instance draw_skeleton_collision skeleton_animation_list skeleton_skin_list skeleton_slot_data layer_get_id layer_get_id_at_depth layer_get_depth layer_create layer_destroy layer_destroy_instances layer_add_instance layer_has_instance layer_set_visible layer_get_visible layer_exists layer_x layer_y layer_get_x layer_get_y layer_hspeed layer_vspeed layer_get_hspeed layer_get_vspeed layer_script_begin layer_script_end layer_shader layer_get_script_begin layer_get_script_end layer_get_shader layer_set_target_room layer_get_target_room layer_reset_target_room layer_get_all layer_get_all_elements layer_get_name layer_depth layer_get_element_layer layer_get_element_type layer_element_move layer_force_draw_depth layer_is_draw_depth_forced layer_get_forced_depth layer_background_get_id layer_background_exists layer_background_create layer_background_destroy layer_background_visible layer_background_change layer_background_sprite layer_background_htiled layer_background_vtiled layer_background_stretch layer_background_yscale layer_background_xscale layer_background_blend layer_background_alpha layer_background_index layer_background_speed layer_background_get_visible layer_background_get_sprite layer_background_get_htiled layer_background_get_vtiled layer_background_get_stretch layer_background_get_yscale layer_background_get_xscale layer_background_get_blend layer_background_get_alpha layer_background_get_index layer_background_get_speed layer_sprite_get_id layer_sprite_exists layer_sprite_create layer_sprite_destroy layer_sprite_change layer_sprite_index layer_sprite_speed layer_sprite_xscale layer_sprite_yscale layer_sprite_angle layer_sprite_blend layer_sprite_alpha layer_sprite_x layer_sprite_y layer_sprite_get_sprite layer_sprite_get_index layer_sprite_get_speed layer_sprite_get_xscale layer_sprite_get_yscale layer_sprite_get_angle layer_sprite_get_blend layer_sprite_get_alpha layer_sprite_get_x layer_sprite_get_y layer_tilemap_get_id layer_tilemap_exists layer_tilemap_create layer_tilemap_destroy tilemap_tileset tilemap_x tilemap_y tilemap_set tilemap_set_at_pixel tilemap_get_tileset tilemap_get_tile_width tilemap_get_tile_height tilemap_get_width tilemap_get_height tilemap_get_x tilemap_get_y tilemap_get tilemap_get_at_pixel tilemap_get_cell_x_at_pixel tilemap_get_cell_y_at_pixel tilemap_clear draw_tilemap draw_tile tilemap_set_global_mask tilemap_get_global_mask tilemap_set_mask tilemap_get_mask tilemap_get_frame tile_set_empty tile_set_index tile_set_flip tile_set_mirror tile_set_rotate tile_get_empty tile_get_index tile_get_flip tile_get_mirror tile_get_rotate layer_tile_exists layer_tile_create layer_tile_destroy layer_tile_change layer_tile_xscale layer_tile_yscale layer_tile_blend layer_tile_alpha layer_tile_x layer_tile_y layer_tile_region layer_tile_visible layer_tile_get_sprite layer_tile_get_xscale layer_tile_get_yscale layer_tile_get_blend layer_tile_get_alpha layer_tile_get_x layer_tile_get_y layer_tile_get_region layer_tile_get_visible layer_instance_get_instance instance_activate_layer instance_deactivate_layer camera_create camera_create_view camera_destroy camera_apply camera_get_active camera_get_default camera_set_default camera_set_view_mat camera_set_proj_mat camera_set_update_script camera_set_begin_script camera_set_end_script camera_set_view_pos camera_set_view_size camera_set_view_speed camera_set_view_border camera_set_view_angle camera_set_view_target camera_get_view_mat camera_get_proj_mat camera_get_update_script camera_get_begin_script camera_get_end_script camera_get_view_x camera_get_view_y camera_get_view_width camera_get_view_height camera_get_view_speed_x camera_get_view_speed_y camera_get_view_border_x camera_get_view_border_y camera_get_view_angle camera_get_view_target view_get_camera view_get_visible view_get_xport view_get_yport view_get_wport view_get_hport view_get_surface_id view_set_camera view_set_visible view_set_xport view_set_yport view_set_wport view_set_hport view_set_surface_id gesture_drag_time gesture_drag_distance gesture_flick_speed gesture_double_tap_time gesture_double_tap_distance gesture_pinch_distance gesture_pinch_angle_towards gesture_pinch_angle_away gesture_rotate_time gesture_rotate_angle gesture_tap_count gesture_get_drag_time gesture_get_drag_distance gesture_get_flick_speed gesture_get_double_tap_time gesture_get_double_tap_distance gesture_get_pinch_distance gesture_get_pinch_angle_towards gesture_get_pinch_angle_away gesture_get_rotate_time gesture_get_rotate_angle gesture_get_tap_count keyboard_virtual_show keyboard_virtual_hide keyboard_virtual_status keyboard_virtual_height\",literal:\"self other all noone global local undefined pointer_invalid pointer_null path_action_stop path_action_restart path_action_continue path_action_reverse true false pi GM_build_date GM_version GM_runtime_version  timezone_local timezone_utc gamespeed_fps gamespeed_microseconds  ev_create ev_destroy ev_step ev_alarm ev_keyboard ev_mouse ev_collision ev_other ev_draw ev_draw_begin ev_draw_end ev_draw_pre ev_draw_post ev_keypress ev_keyrelease ev_trigger ev_left_button ev_right_button ev_middle_button ev_no_button ev_left_press ev_right_press ev_middle_press ev_left_release ev_right_release ev_middle_release ev_mouse_enter ev_mouse_leave ev_mouse_wheel_up ev_mouse_wheel_down ev_global_left_button ev_global_right_button ev_global_middle_button ev_global_left_press ev_global_right_press ev_global_middle_press ev_global_left_release ev_global_right_release ev_global_middle_release ev_joystick1_left ev_joystick1_right ev_joystick1_up ev_joystick1_down ev_joystick1_button1 ev_joystick1_button2 ev_joystick1_button3 ev_joystick1_button4 ev_joystick1_button5 ev_joystick1_button6 ev_joystick1_button7 ev_joystick1_button8 ev_joystick2_left ev_joystick2_right ev_joystick2_up ev_joystick2_down ev_joystick2_button1 ev_joystick2_button2 ev_joystick2_button3 ev_joystick2_button4 ev_joystick2_button5 ev_joystick2_button6 ev_joystick2_button7 ev_joystick2_button8 ev_outside ev_boundary ev_game_start ev_game_end ev_room_start ev_room_end ev_no_more_lives ev_animation_end ev_end_of_path ev_no_more_health ev_close_button ev_user0 ev_user1 ev_user2 ev_user3 ev_user4 ev_user5 ev_user6 ev_user7 ev_user8 ev_user9 ev_user10 ev_user11 ev_user12 ev_user13 ev_user14 ev_user15 ev_step_normal ev_step_begin ev_step_end ev_gui ev_gui_begin ev_gui_end ev_cleanup ev_gesture ev_gesture_tap ev_gesture_double_tap ev_gesture_drag_start ev_gesture_dragging ev_gesture_drag_end ev_gesture_flick ev_gesture_pinch_start ev_gesture_pinch_in ev_gesture_pinch_out ev_gesture_pinch_end ev_gesture_rotate_start ev_gesture_rotating ev_gesture_rotate_end ev_global_gesture_tap ev_global_gesture_double_tap ev_global_gesture_drag_start ev_global_gesture_dragging ev_global_gesture_drag_end ev_global_gesture_flick ev_global_gesture_pinch_start ev_global_gesture_pinch_in ev_global_gesture_pinch_out ev_global_gesture_pinch_end ev_global_gesture_rotate_start ev_global_gesture_rotating ev_global_gesture_rotate_end vk_nokey vk_anykey vk_enter vk_return vk_shift vk_control vk_alt vk_escape vk_space vk_backspace vk_tab vk_pause vk_printscreen vk_left vk_right vk_up vk_down vk_home vk_end vk_delete vk_insert vk_pageup vk_pagedown vk_f1 vk_f2 vk_f3 vk_f4 vk_f5 vk_f6 vk_f7 vk_f8 vk_f9 vk_f10 vk_f11 vk_f12 vk_numpad0 vk_numpad1 vk_numpad2 vk_numpad3 vk_numpad4 vk_numpad5 vk_numpad6 vk_numpad7 vk_numpad8 vk_numpad9 vk_divide vk_multiply vk_subtract vk_add vk_decimal vk_lshift vk_lcontrol vk_lalt vk_rshift vk_rcontrol vk_ralt  mb_any mb_none mb_left mb_right mb_middle c_aqua c_black c_blue c_dkgray c_fuchsia c_gray c_green c_lime c_ltgray c_maroon c_navy c_olive c_purple c_red c_silver c_teal c_white c_yellow c_orange fa_left fa_center fa_right fa_top fa_middle fa_bottom pr_pointlist pr_linelist pr_linestrip pr_trianglelist pr_trianglestrip pr_trianglefan bm_complex bm_normal bm_add bm_max bm_subtract bm_zero bm_one bm_src_colour bm_inv_src_colour bm_src_color bm_inv_src_color bm_src_alpha bm_inv_src_alpha bm_dest_alpha bm_inv_dest_alpha bm_dest_colour bm_inv_dest_colour bm_dest_color bm_inv_dest_color bm_src_alpha_sat tf_point tf_linear tf_anisotropic mip_off mip_on mip_markedonly audio_falloff_none audio_falloff_inverse_distance audio_falloff_inverse_distance_clamped audio_falloff_linear_distance audio_falloff_linear_distance_clamped audio_falloff_exponent_distance audio_falloff_exponent_distance_clamped audio_old_system audio_new_system audio_mono audio_stereo audio_3d cr_default cr_none cr_arrow cr_cross cr_beam cr_size_nesw cr_size_ns cr_size_nwse cr_size_we cr_uparrow cr_hourglass cr_drag cr_appstart cr_handpoint cr_size_all spritespeed_framespersecond spritespeed_framespergameframe asset_object asset_unknown asset_sprite asset_sound asset_room asset_path asset_script asset_font asset_timeline asset_tiles asset_shader fa_readonly fa_hidden fa_sysfile fa_volumeid fa_directory fa_archive  ds_type_map ds_type_list ds_type_stack ds_type_queue ds_type_grid ds_type_priority ef_explosion ef_ring ef_ellipse ef_firework ef_smoke ef_smokeup ef_star ef_spark ef_flare ef_cloud ef_rain ef_snow pt_shape_pixel pt_shape_disk pt_shape_square pt_shape_line pt_shape_star pt_shape_circle pt_shape_ring pt_shape_sphere pt_shape_flare pt_shape_spark pt_shape_explosion pt_shape_cloud pt_shape_smoke pt_shape_snow ps_distr_linear ps_distr_gaussian ps_distr_invgaussian ps_shape_rectangle ps_shape_ellipse ps_shape_diamond ps_shape_line ty_real ty_string dll_cdecl dll_stdcall matrix_view matrix_projection matrix_world os_win32 os_windows os_macosx os_ios os_android os_symbian os_linux os_unknown os_winphone os_tizen os_win8native os_wiiu os_3ds  os_psvita os_bb10 os_ps4 os_xboxone os_ps3 os_xbox360 os_uwp os_tvos os_switch browser_not_a_browser browser_unknown browser_ie browser_firefox browser_chrome browser_safari browser_safari_mobile browser_opera browser_tizen browser_edge browser_windows_store browser_ie_mobile  device_ios_unknown device_ios_iphone device_ios_iphone_retina device_ios_ipad device_ios_ipad_retina device_ios_iphone5 device_ios_iphone6 device_ios_iphone6plus device_emulator device_tablet display_landscape display_landscape_flipped display_portrait display_portrait_flipped tm_sleep tm_countvsyncs of_challenge_win of_challen ge_lose of_challenge_tie leaderboard_type_number leaderboard_type_time_mins_secs cmpfunc_never cmpfunc_less cmpfunc_equal cmpfunc_lessequal cmpfunc_greater cmpfunc_notequal cmpfunc_greaterequal cmpfunc_always cull_noculling cull_clockwise cull_counterclockwise lighttype_dir lighttype_point iap_ev_storeload iap_ev_product iap_ev_purchase iap_ev_consume iap_ev_restore iap_storeload_ok iap_storeload_failed iap_status_uninitialised iap_status_unavailable iap_status_loading iap_status_available iap_status_processing iap_status_restoring iap_failed iap_unavailable iap_available iap_purchased iap_canceled iap_refunded fb_login_default fb_login_fallback_to_webview fb_login_no_fallback_to_webview fb_login_forcing_webview fb_login_use_system_account fb_login_forcing_safari  phy_joint_anchor_1_x phy_joint_anchor_1_y phy_joint_anchor_2_x phy_joint_anchor_2_y phy_joint_reaction_force_x phy_joint_reaction_force_y phy_joint_reaction_torque phy_joint_motor_speed phy_joint_angle phy_joint_motor_torque phy_joint_max_motor_torque phy_joint_translation phy_joint_speed phy_joint_motor_force phy_joint_max_motor_force phy_joint_length_1 phy_joint_length_2 phy_joint_damping_ratio phy_joint_frequency phy_joint_lower_angle_limit phy_joint_upper_angle_limit phy_joint_angle_limits phy_joint_max_length phy_joint_max_torque phy_joint_max_force phy_debug_render_aabb phy_debug_render_collision_pairs phy_debug_render_coms phy_debug_render_core_shapes phy_debug_render_joints phy_debug_render_obb phy_debug_render_shapes  phy_particle_flag_water phy_particle_flag_zombie phy_particle_flag_wall phy_particle_flag_spring phy_particle_flag_elastic phy_particle_flag_viscous phy_particle_flag_powder phy_particle_flag_tensile phy_particle_flag_colourmixing phy_particle_flag_colormixing phy_particle_group_flag_solid phy_particle_group_flag_rigid phy_particle_data_flag_typeflags phy_particle_data_flag_position phy_particle_data_flag_velocity phy_particle_data_flag_colour phy_particle_data_flag_color phy_particle_data_flag_category  achievement_our_info achievement_friends_info achievement_leaderboard_info achievement_achievement_info achievement_filter_all_players achievement_filter_friends_only achievement_filter_favorites_only achievement_type_achievement_challenge achievement_type_score_challenge achievement_pic_loaded  achievement_show_ui achievement_show_profile achievement_show_leaderboard achievement_show_achievement achievement_show_bank achievement_show_friend_picker achievement_show_purchase_prompt network_socket_tcp network_socket_udp network_socket_bluetooth network_type_connect network_type_disconnect network_type_data network_type_non_blocking_connect network_config_connect_timeout network_config_use_non_blocking_socket network_config_enable_reliable_udp network_config_disable_reliable_udp buffer_fixed buffer_grow buffer_wrap buffer_fast buffer_vbuffer buffer_network buffer_u8 buffer_s8 buffer_u16 buffer_s16 buffer_u32 buffer_s32 buffer_u64 buffer_f16 buffer_f32 buffer_f64 buffer_bool buffer_text buffer_string buffer_surface_copy buffer_seek_start buffer_seek_relative buffer_seek_end buffer_generalerror buffer_outofspace buffer_outofbounds buffer_invalidtype  text_type button_type input_type ANSI_CHARSET DEFAULT_CHARSET EASTEUROPE_CHARSET RUSSIAN_CHARSET SYMBOL_CHARSET SHIFTJIS_CHARSET HANGEUL_CHARSET GB2312_CHARSET CHINESEBIG5_CHARSET JOHAB_CHARSET HEBREW_CHARSET ARABIC_CHARSET GREEK_CHARSET TURKISH_CHARSET VIETNAMESE_CHARSET THAI_CHARSET MAC_CHARSET BALTIC_CHARSET OEM_CHARSET  gp_face1 gp_face2 gp_face3 gp_face4 gp_shoulderl gp_shoulderr gp_shoulderlb gp_shoulderrb gp_select gp_start gp_stickl gp_stickr gp_padu gp_padd gp_padl gp_padr gp_axislh gp_axislv gp_axisrh gp_axisrv ov_friends ov_community ov_players ov_settings ov_gamegroup ov_achievements lb_sort_none lb_sort_ascending lb_sort_descending lb_disp_none lb_disp_numeric lb_disp_time_sec lb_disp_time_ms ugc_result_success ugc_filetype_community ugc_filetype_microtrans ugc_visibility_public ugc_visibility_friends_only ugc_visibility_private ugc_query_RankedByVote ugc_query_RankedByPublicationDate ugc_query_AcceptedForGameRankedByAcceptanceDate ugc_query_RankedByTrend ugc_query_FavoritedByFriendsRankedByPublicationDate ugc_query_CreatedByFriendsRankedByPublicationDate ugc_query_RankedByNumTimesReported ugc_query_CreatedByFollowedUsersRankedByPublicationDate ugc_query_NotYetRated ugc_query_RankedByTotalVotesAsc ugc_query_RankedByVotesUp ugc_query_RankedByTextSearch ugc_sortorder_CreationOrderDesc ugc_sortorder_CreationOrderAsc ugc_sortorder_TitleAsc ugc_sortorder_LastUpdatedDesc ugc_sortorder_SubscriptionDateDesc ugc_sortorder_VoteScoreDesc ugc_sortorder_ForModeration ugc_list_Published ugc_list_VotedOn ugc_list_VotedUp ugc_list_VotedDown ugc_list_WillVoteLater ugc_list_Favorited ugc_list_Subscribed ugc_list_UsedOrPlayed ugc_list_Followed ugc_match_Items ugc_match_Items_Mtx ugc_match_Items_ReadyToUse ugc_match_Collections ugc_match_Artwork ugc_match_Videos ugc_match_Screenshots ugc_match_AllGuides ugc_match_WebGuides ugc_match_IntegratedGuides ugc_match_UsableInGame ugc_match_ControllerBindings  vertex_usage_position vertex_usage_colour vertex_usage_color vertex_usage_normal vertex_usage_texcoord vertex_usage_textcoord vertex_usage_blendweight vertex_usage_blendindices vertex_usage_psize vertex_usage_tangent vertex_usage_binormal vertex_usage_fog vertex_usage_depth vertex_usage_sample vertex_type_float1 vertex_type_float2 vertex_type_float3 vertex_type_float4 vertex_type_colour vertex_type_color vertex_type_ubyte4 layerelementtype_undefined layerelementtype_background layerelementtype_instance layerelementtype_oldtilemap layerelementtype_sprite layerelementtype_tilemap layerelementtype_particlesystem layerelementtype_tile tile_rotate tile_flip tile_mirror tile_index_mask kbv_type_default kbv_type_ascii kbv_type_url kbv_type_email kbv_type_numbers kbv_type_phone kbv_type_phone_name kbv_returnkey_default kbv_returnkey_go kbv_returnkey_google kbv_returnkey_join kbv_returnkey_next kbv_returnkey_route kbv_returnkey_search kbv_returnkey_send kbv_returnkey_yahoo kbv_returnkey_done kbv_returnkey_continue kbv_returnkey_emergency kbv_autocapitalize_none kbv_autocapitalize_words kbv_autocapitalize_sentences kbv_autocapitalize_characters\",symbol:\"argument_relative argument argument0 argument1 argument2 argument3 argument4 argument5 argument6 argument7 argument8 argument9 argument10 argument11 argument12 argument13 argument14 argument15 argument_count x|0 y|0 xprevious yprevious xstart ystart hspeed vspeed direction speed friction gravity gravity_direction path_index path_position path_positionprevious path_speed path_scale path_orientation path_endaction object_index id solid persistent mask_index instance_count instance_id room_speed fps fps_real current_time current_year current_month current_day current_weekday current_hour current_minute current_second alarm timeline_index timeline_position timeline_speed timeline_running timeline_loop room room_first room_last room_width room_height room_caption room_persistent score lives health show_score show_lives show_health caption_score caption_lives caption_health event_type event_number event_object event_action application_surface gamemaker_pro gamemaker_registered gamemaker_version error_occurred error_last debug_mode keyboard_key keyboard_lastkey keyboard_lastchar keyboard_string mouse_x mouse_y mouse_button mouse_lastbutton cursor_sprite visible sprite_index sprite_width sprite_height sprite_xoffset sprite_yoffset image_number image_index image_speed depth image_xscale image_yscale image_angle image_alpha image_blend bbox_left bbox_right bbox_top bbox_bottom layer background_colour  background_showcolour background_color background_showcolor view_enabled view_current view_visible view_xview view_yview view_wview view_hview view_xport view_yport view_wport view_hport view_angle view_hborder view_vborder view_hspeed view_vspeed view_object view_surface_id view_camera game_id game_display_name game_project_name game_save_id working_directory temp_directory program_directory browser_width browser_height os_type os_device os_browser os_version display_aa async_load delta_time webgl_enabled event_data iap_data phy_rotation phy_position_x phy_position_y phy_angular_velocity phy_linear_velocity_x phy_linear_velocity_y phy_speed_x phy_speed_y phy_speed phy_angular_damping phy_linear_damping phy_bullet phy_fixed_rotation phy_active phy_mass phy_inertia phy_com_x phy_com_y phy_dynamic phy_kinematic phy_sleeping phy_collision_points phy_collision_x phy_collision_y phy_col_normal_x phy_col_normal_y phy_position_xprevious phy_position_yprevious\"};return{name:\"GML\",aliases:[\"gml\",\"GML\"],case_insensitive:!1,keywords:t,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE]}}e.exports=n},e6f3:function(e,t,n){var i=n(\"07e3\"),r=n(\"36c3\"),a=n(\"5b4e\")(!1),o=n(\"5559\")(\"IE_PROTO\");e.exports=function(e,t){var n,s=r(e),l=0,c=[];for(n in s)n!=o&&i(s,n)&&c.push(n);while(t.length>l)i(s,n=t[l++])&&(~a(c,n)||c.push(n));return c}},e772:function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=53)}({0:function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},3:function(e,t){e.exports=n(\"8122\")},34:function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"li\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.visible,expression:\"visible\"}],staticClass:\"el-select-dropdown__item\",class:{selected:e.itemSelected,\"is-disabled\":e.disabled||e.groupDisabled||e.limitReached,hover:e.hover},on:{mouseenter:e.hoverItem,click:function(t){return t.stopPropagation(),e.selectOptionClick(t)}}},[e._t(\"default\",[n(\"span\",[e._v(e._s(e.currentLabel))])])],2)},r=[];i._withStripped=!0;var a=n(4),o=n.n(a),s=n(3),l=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},c={mixins:[o.a],name:\"ElOption\",componentName:\"ElOption\",inject:[\"select\"],props:{value:{required:!0},label:[String,Number],created:Boolean,disabled:{type:Boolean,default:!1}},data:function(){return{index:-1,groupDisabled:!1,visible:!0,hitState:!1,hover:!1}},computed:{isObject:function(){return\"[object object]\"===Object.prototype.toString.call(this.value).toLowerCase()},currentLabel:function(){return this.label||(this.isObject?\"\":this.value)},currentValue:function(){return this.value||this.label||\"\"},itemSelected:function(){return this.select.multiple?this.contains(this.select.value,this.value):this.isEqual(this.value,this.select.value)},limitReached:function(){return!!this.select.multiple&&(!this.itemSelected&&(this.select.value||[]).length>=this.select.multipleLimit&&this.select.multipleLimit>0)}},watch:{currentLabel:function(){this.created||this.select.remote||this.dispatch(\"ElSelect\",\"setSelected\")},value:function(e,t){var n=this.select,i=n.remote,r=n.valueKey;if(!this.created&&!i){if(r&&\"object\"===(\"undefined\"===typeof e?\"undefined\":l(e))&&\"object\"===(\"undefined\"===typeof t?\"undefined\":l(t))&&e[r]===t[r])return;this.dispatch(\"ElSelect\",\"setSelected\")}}},methods:{isEqual:function(e,t){if(this.isObject){var n=this.select.valueKey;return Object(s[\"getValueByPath\"])(e,n)===Object(s[\"getValueByPath\"])(t,n)}return e===t},contains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1];if(this.isObject){var n=this.select.valueKey;return e&&e.some((function(e){return Object(s[\"getValueByPath\"])(e,n)===Object(s[\"getValueByPath\"])(t,n)}))}return e&&e.indexOf(t)>-1},handleGroupDisabled:function(e){this.groupDisabled=e},hoverItem:function(){this.disabled||this.groupDisabled||(this.select.hoverIndex=this.select.options.indexOf(this))},selectOptionClick:function(){!0!==this.disabled&&!0!==this.groupDisabled&&this.dispatch(\"ElSelect\",\"handleOptionClick\",[this,!0])},queryChange:function(e){this.visible=new RegExp(Object(s[\"escapeRegexpString\"])(e),\"i\").test(this.currentLabel)||this.created,this.visible||this.select.filteredOptionsCount--}},created:function(){this.select.options.push(this),this.select.cachedOptions.push(this),this.select.optionsCount++,this.select.filteredOptionsCount++,this.$on(\"queryChange\",this.queryChange),this.$on(\"handleGroupDisabled\",this.handleGroupDisabled)},beforeDestroy:function(){var e=this.select,t=e.selected,n=e.multiple,i=n?t:[t],r=this.select.cachedOptions.indexOf(this),a=i.indexOf(this);r>-1&&a<0&&this.select.cachedOptions.splice(r,1),this.select.onOptionDestroy(this.select.options.indexOf(this))}},u=c,d=n(0),p=Object(d[\"a\"])(u,i,r,!1,null,null,null);p.options.__file=\"packages/select/src/option.vue\";t[\"a\"]=p.exports},4:function(e,t){e.exports=n(\"d010\")},53:function(e,t,n){\"use strict\";n.r(t);var i=n(34);i[\"a\"].install=function(e){e.component(i[\"a\"].name,i[\"a\"])},t[\"default\"]=i[\"a\"]}})},e974:function(e,t,n){\"use strict\";t.__esModule=!0;var i=n(\"2b0e\"),r=o(i),a=n(\"5128\");function o(e){return e&&e.__esModule?e:{default:e}}var s=r.default.prototype.$isServer?function(){}:n(\"6167\"),l=function(e){return e.stopPropagation()};t.default={props:{transformOrigin:{type:[Boolean,String],default:!0},placement:{type:String,default:\"bottom\"},boundariesPadding:{type:Number,default:5},reference:{},popper:{},offset:{default:0},value:Boolean,visibleArrow:Boolean,arrowOffset:{type:Number,default:35},appendToBody:{type:Boolean,default:!0},popperOptions:{type:Object,default:function(){return{gpuAcceleration:!1}}}},data:function(){return{showPopper:!1,currentPlacement:\"\"}},watch:{value:{immediate:!0,handler:function(e){this.showPopper=e,this.$emit(\"input\",e)}},showPopper:function(e){this.disabled||(e?this.updatePopper():this.destroyPopper(),this.$emit(\"input\",e))}},methods:{createPopper:function(){var e=this;if(!this.$isServer&&(this.currentPlacement=this.currentPlacement||this.placement,/^(top|bottom|left|right)(-start|-end)?$/g.test(this.currentPlacement))){var t=this.popperOptions,n=this.popperElm=this.popperElm||this.popper||this.$refs.popper,i=this.referenceElm=this.referenceElm||this.reference||this.$refs.reference;!i&&this.$slots.reference&&this.$slots.reference[0]&&(i=this.referenceElm=this.$slots.reference[0].elm),n&&i&&(this.visibleArrow&&this.appendArrow(n),this.appendToBody&&document.body.appendChild(this.popperElm),this.popperJS&&this.popperJS.destroy&&this.popperJS.destroy(),t.placement=this.currentPlacement,t.offset=this.offset,t.arrowOffset=this.arrowOffset,this.popperJS=new s(i,n,t),this.popperJS.onCreate((function(t){e.$emit(\"created\",e),e.resetTransformOrigin(),e.$nextTick(e.updatePopper)})),\"function\"===typeof t.onUpdate&&this.popperJS.onUpdate(t.onUpdate),this.popperJS._popper.style.zIndex=a.PopupManager.nextZIndex(),this.popperElm.addEventListener(\"click\",l))}},updatePopper:function(){var e=this.popperJS;e?(e.update(),e._popper&&(e._popper.style.zIndex=a.PopupManager.nextZIndex())):this.createPopper()},doDestroy:function(e){!this.popperJS||this.showPopper&&!e||(this.popperJS.destroy(),this.popperJS=null)},destroyPopper:function(){this.popperJS&&this.resetTransformOrigin()},resetTransformOrigin:function(){if(this.transformOrigin){var e={top:\"bottom\",bottom:\"top\",left:\"right\",right:\"left\"},t=this.popperJS._popper.getAttribute(\"x-placement\").split(\"-\")[0],n=e[t];this.popperJS._popper.style.transformOrigin=\"string\"===typeof this.transformOrigin?this.transformOrigin:[\"top\",\"bottom\"].indexOf(t)>-1?\"center \"+n:n+\" center\"}},appendArrow:function(e){var t=void 0;if(!this.appended){for(var n in this.appended=!0,e.attributes)if(/^_v-/.test(e.attributes[n].name)){t=e.attributes[n].name;break}var i=document.createElement(\"div\");t&&i.setAttribute(t,\"\"),i.setAttribute(\"x-arrow\",\"\"),i.className=\"popper__arrow\",e.appendChild(i)}}},beforeDestroy:function(){this.doDestroy(!0),this.popperElm&&this.popperElm.parentNode===document.body&&(this.popperElm.removeEventListener(\"click\",l),document.body.removeChild(this.popperElm))},deactivated:function(){this.$options.beforeDestroy[0].call(this)}}},e990:function(e,t){function n(e){function t(e){return e.map((function(e){return e.split(\"\").map((function(e){return\"\\\\\"+e})).join(\"\")})).join(\"|\")}const n=\"~?[a-z$_][0-9a-zA-Z$_]*\",i=\"`?[A-Z$_][0-9a-zA-Z$_]*\",r=\"'?[a-z$_][0-9a-z$_]*\",a=\"\\\\s*:\\\\s*[a-z$_][0-9a-z$_]*(\\\\(\\\\s*(\"+r+\"\\\\s*(,\"+r+\"\\\\s*)*)?\\\\))?\",o=n+\"(\"+a+\"){0,2}\",s=\"(\"+t([\"||\",\"++\",\"**\",\"+.\",\"*\",\"/\",\"*.\",\"/.\",\"...\"])+\"|\\\\|>|&&|==|===)\",l=\"\\\\s+\"+s+\"\\\\s+\",c={keyword:\"and as asr assert begin class constraint do done downto else end exception external for fun function functor if in include inherit initializer land lazy let lor lsl lsr lxor match method mod module mutable new nonrec object of open or private rec sig struct then to try type val virtual when while with\",built_in:\"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 ref string unit \",literal:\"true false\"},u=\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",d={className:\"number\",relevance:0,variants:[{begin:u},{begin:\"\\\\(-\"+u+\"\\\\)\"}]},p={className:\"operator\",relevance:0,begin:s},h=[{className:\"identifier\",relevance:0,begin:n},p,d],f=[e.QUOTE_STRING_MODE,p,{className:\"module\",begin:\"\\\\b\"+i,returnBegin:!0,end:\".\",contains:[{className:\"identifier\",begin:i,relevance:0}]}],_=[{className:\"module\",begin:\"\\\\b\"+i,returnBegin:!0,end:\".\",relevance:0,contains:[{className:\"identifier\",begin:i,relevance:0}]}],m={begin:n,end:\"(,|\\\\n|\\\\))\",relevance:0,contains:[p,{className:\"typing\",begin:\":\",end:\"(,|\\\\n)\",returnBegin:!0,relevance:0,contains:_}]},g={className:\"function\",relevance:0,keywords:c,variants:[{begin:\"\\\\s(\\\\(\\\\.?.*?\\\\)|\"+n+\")\\\\s*=>\",end:\"\\\\s*=>\",returnBegin:!0,relevance:0,contains:[{className:\"params\",variants:[{begin:n},{begin:o},{begin:/\\(\\s*\\)/}]}]},{begin:\"\\\\s\\\\(\\\\.?[^;\\\\|]*\\\\)\\\\s*=>\",end:\"\\\\s=>\",returnBegin:!0,relevance:0,contains:[{className:\"params\",relevance:0,variants:[m]}]},{begin:\"\\\\(\\\\.\\\\s\"+n+\"\\\\)\\\\s*=>\"}]};f.push(g);const b={className:\"constructor\",begin:i+\"\\\\(\",end:\"\\\\)\",illegal:\"\\\\n\",keywords:c,contains:[e.QUOTE_STRING_MODE,p,{className:\"params\",begin:\"\\\\b\"+n}]},v={className:\"pattern-match\",begin:\"\\\\|\",returnBegin:!0,keywords:c,end:\"=>\",relevance:0,contains:[b,p,{relevance:0,className:\"constructor\",begin:i}]},E={className:\"module-access\",keywords:c,returnBegin:!0,variants:[{begin:\"\\\\b(\"+i+\"\\\\.)+\"+n},{begin:\"\\\\b(\"+i+\"\\\\.)+\\\\(\",end:\"\\\\)\",returnBegin:!0,contains:[g,{begin:\"\\\\(\",end:\"\\\\)\",skip:!0}].concat(f)},{begin:\"\\\\b(\"+i+\"\\\\.)+\\\\{\",end:/\\}/}],contains:f};return _.push(E),{name:\"ReasonML\",aliases:[\"re\"],keywords:c,illegal:\"(:-|:=|\\\\$\\\\{|\\\\+=)\",contains:[e.COMMENT(\"/\\\\*\",\"\\\\*/\",{illegal:\"^(#,\\\\/\\\\/)\"}),{className:\"character\",begin:\"'(\\\\\\\\[^']+|[^'])'\",illegal:\"\\\\n\",relevance:0},e.QUOTE_STRING_MODE,{className:\"literal\",begin:\"\\\\(\\\\)\",relevance:0},{className:\"literal\",begin:\"\\\\[\\\\|\",end:\"\\\\|\\\\]\",relevance:0,contains:h},{className:\"literal\",begin:\"\\\\[\",end:\"\\\\]\",relevance:0,contains:h},b,{className:\"operator\",begin:l,illegal:\"--\\x3e\",relevance:0},d,e.C_LINE_COMMENT_MODE,v,g,{className:\"module-def\",begin:\"\\\\bmodule\\\\s+\"+n+\"\\\\s+\"+i+\"\\\\s+=\\\\s+\\\\{\",end:/\\}/,returnBegin:!0,keywords:c,relevance:0,contains:[{className:\"module\",relevance:0,begin:i},{begin:/\\{/,end:/\\}/,skip:!0}].concat(f)},E]}}e.exports=n},ea4d:function(e,t){function n(e){const t=[e.C_NUMBER_MODE,{className:\"string\",begin:\"'|\\\"\",end:\"'|\\\"\",contains:[e.BACKSLASH_ESCAPE,{begin:\"''\"}]}];return{name:\"Scilab\",aliases:[\"sci\"],keywords:{$pattern:/%?\\w+/,keyword:\"abort break case clear catch continue do elseif else endfunction end for function global if pause return resume select try then while\",literal:\"%f %F %t %T %pi %eps %inf %nan %e %i %z %s\",built_in:\"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp error exec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isempty isinfisnan isvector lasterror length load linspace list listfiles log10 log2 log max min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand real round sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tan type typename warning zeros matrix\"},illegal:'(\"|#|/\\\\*|\\\\s+/\\\\w+)',contains:[{className:\"function\",beginKeywords:\"function\",end:\"$\",contains:[e.UNDERSCORE_TITLE_MODE,{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\"}]},{begin:\"[a-zA-Z_][a-zA-Z_0-9]*[\\\\.']+\",relevance:0},{begin:\"\\\\[\",end:\"\\\\][\\\\.']*\",relevance:0,contains:t},e.COMMENT(\"//\",\"$\")].concat(t)}}e.exports=n},eaab:function(e,t){function n(e){return{name:\"CMake\",aliases:[\"cmake.in\"],case_insensitive:!0,keywords:{keyword:\"break cmake_host_system_information cmake_minimum_required cmake_parse_arguments cmake_policy configure_file continue elseif else endforeach endfunction endif endmacro endwhile execute_process file find_file find_library find_package find_path find_program foreach function get_cmake_property get_directory_property get_filename_component get_property if include include_guard list macro mark_as_advanced math message option return separate_arguments set_directory_properties set_property set site_name string unset variable_watch while add_compile_definitions add_compile_options add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_link_options add_subdirectory add_test aux_source_directory build_command create_test_sourcelist define_property enable_language enable_testing export fltk_wrap_ui get_source_file_property get_target_property get_test_property include_directories include_external_msproject include_regular_expression install link_directories link_libraries load_cache project qt_wrap_cpp qt_wrap_ui remove_definitions set_source_files_properties set_target_properties set_tests_properties source_group target_compile_definitions target_compile_features target_compile_options target_include_directories target_link_directories target_link_libraries target_link_options target_sources try_compile try_run ctest_build ctest_configure ctest_coverage ctest_empty_binary_directory ctest_memcheck ctest_read_custom_files ctest_run_script ctest_sleep ctest_start ctest_submit ctest_test ctest_update ctest_upload build_name exec_program export_library_dependencies install_files install_programs install_targets load_command make_directory output_required_files remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or not command policy target test exists is_newer_than is_directory is_symlink is_absolute matches less greater equal less_equal greater_equal strless strgreater strequal strless_equal strgreater_equal version_less version_greater version_equal version_less_equal version_greater_equal in_list defined\"},contains:[{className:\"variable\",begin:/\\$\\{/,end:/\\}/},e.HASH_COMMENT_MODE,e.QUOTE_STRING_MODE,e.NUMBER_MODE]}}e.exports=n},ebd6:function(e,t,n){var i=n(\"cb7c\"),r=n(\"d8e8\"),a=n(\"2b4c\")(\"species\");e.exports=function(e,t){var n,o=i(e).constructor;return void 0===o||void 0==(n=i(o)[a])?t:r(n)}},ebfd:function(e,t,n){var i=n(\"62a0\")(\"meta\"),r=n(\"f772\"),a=n(\"07e3\"),o=n(\"d9f6\").f,s=0,l=Object.isExtensible||function(){return!0},c=!n(\"294c\")((function(){return l(Object.preventExtensions({}))})),u=function(e){o(e,i,{value:{i:\"O\"+ ++s,w:{}}})},d=function(e,t){if(!r(e))return\"symbol\"==typeof e?e:(\"string\"==typeof e?\"S\":\"P\")+e;if(!a(e,i)){if(!l(e))return\"F\";if(!t)return\"E\";u(e)}return e[i].i},p=function(e,t){if(!a(e,i)){if(!l(e))return!0;if(!t)return!1;u(e)}return e[i].w},h=function(e){return c&&f.NEED&&l(e)&&!a(e,i)&&u(e),e},f=e.exports={KEY:i,NEED:!1,fastKey:d,getWeak:p,onFreeze:h}},ecfe:function(e,t){function n(e){const t=\"\\\\[=*\\\\[\",n=\"\\\\]=*\\\\]\",i={begin:t,end:n,contains:[\"self\"]},r=[e.COMMENT(\"--(?!\"+t+\")\",\"$\"),e.COMMENT(\"--\"+t,n,{contains:[i],relevance:10})];return{name:\"Lua\",keywords:{$pattern:e.UNDERSCORE_IDENT_RE,literal:\"true false nil\",keyword:\"and break do else elseif end for goto if in local not or repeat return then until while\",built_in:\"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove\"},contains:r.concat([{className:\"function\",beginKeywords:\"function\",end:\"\\\\)\",contains:[e.inherit(e.TITLE_MODE,{begin:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),{className:\"params\",begin:\"\\\\(\",endsWithParent:!0,contains:r}].concat(r)},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:\"string\",begin:t,end:n,contains:[i],relevance:5}])}}e.exports=n},ee6c:function(e,t){function n(e){return{name:\"OCaml\",aliases:[\"ml\"],keywords:{$pattern:\"[a-z_]\\\\w*!?\",keyword:\"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value\",built_in:\"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref\",literal:\"true false\"},illegal:/\\/\\/|>>/,contains:[{className:\"literal\",begin:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\",relevance:0},e.COMMENT(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{contains:[\"self\"]}),{className:\"symbol\",begin:\"'[A-Za-z_](?!')[\\\\w']*\"},{className:\"type\",begin:\"`[A-Z][\\\\w']*\"},{className:\"type\",begin:\"\\\\b[A-Z][\\\\w']*\",relevance:0},{begin:\"[a-z_]\\\\w*'[\\\\w']*\",relevance:0},e.inherit(e.APOS_STRING_MODE,{className:\"string\",relevance:0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null}),{className:\"number\",begin:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",relevance:0},{begin:/->/}]}}e.exports=n},ee8c:function(e,t){const n=e=>({IMPORTANT:{className:\"meta\",begin:\"!important\"},HEXCOLOR:{className:\"number\",begin:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\"},ATTRIBUTE_SELECTOR_MODE:{className:\"selector-attr\",begin:/\\[/,end:/\\]/,illegal:\"$\",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}}),i=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"main\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],r=[\"any-hover\",\"any-pointer\",\"aspect-ratio\",\"color\",\"color-gamut\",\"color-index\",\"device-aspect-ratio\",\"device-height\",\"device-width\",\"display-mode\",\"forced-colors\",\"grid\",\"height\",\"hover\",\"inverted-colors\",\"monochrome\",\"orientation\",\"overflow-block\",\"overflow-inline\",\"pointer\",\"prefers-color-scheme\",\"prefers-contrast\",\"prefers-reduced-motion\",\"prefers-reduced-transparency\",\"resolution\",\"scan\",\"scripting\",\"update\",\"width\",\"min-width\",\"max-width\",\"min-height\",\"max-height\"],a=[\"active\",\"any-link\",\"blank\",\"checked\",\"current\",\"default\",\"defined\",\"dir\",\"disabled\",\"drop\",\"empty\",\"enabled\",\"first\",\"first-child\",\"first-of-type\",\"fullscreen\",\"future\",\"focus\",\"focus-visible\",\"focus-within\",\"has\",\"host\",\"host-context\",\"hover\",\"indeterminate\",\"in-range\",\"invalid\",\"is\",\"lang\",\"last-child\",\"last-of-type\",\"left\",\"link\",\"local-link\",\"not\",\"nth-child\",\"nth-col\",\"nth-last-child\",\"nth-last-col\",\"nth-last-of-type\",\"nth-of-type\",\"only-child\",\"only-of-type\",\"optional\",\"out-of-range\",\"past\",\"placeholder-shown\",\"read-only\",\"read-write\",\"required\",\"right\",\"root\",\"scope\",\"target\",\"target-within\",\"user-invalid\",\"valid\",\"visited\",\"where\"],o=[\"after\",\"backdrop\",\"before\",\"cue\",\"cue-region\",\"first-letter\",\"first-line\",\"grammar-error\",\"marker\",\"part\",\"placeholder\",\"selection\",\"slotted\",\"spelling-error\"],s=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-display\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-variation-settings\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"src\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"].reverse();function l(e){return e?\"string\"===typeof e?e:e.source:null}function c(e){return u(\"(?=\",e,\")\")}function u(...e){const t=e.map(e=>l(e)).join(\"\");return t}function d(e){const t=n(e),l={className:\"built_in\",begin:/[\\w-]+(?=\\()/},u={begin:/-(webkit|moz|ms|o)-(?=[a-z])/},d=\"and or not only\",p=/@-?\\w[\\w]*(-\\w+)*/,h=\"[a-zA-Z-][a-zA-Z0-9_-]*\",f=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:\"CSS\",case_insensitive:!0,illegal:/[=|'\\$]/,keywords:{keyframePosition:\"from to\"},classNameAliases:{keyframePosition:\"selector-tag\"},contains:[e.C_BLOCK_COMMENT_MODE,u,e.CSS_NUMBER_MODE,{className:\"selector-id\",begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:\"selector-class\",begin:\"\\\\.\"+h,relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:\"selector-pseudo\",variants:[{begin:\":(\"+a.join(\"|\")+\")\"},{begin:\"::(\"+o.join(\"|\")+\")\"}]},{className:\"attribute\",begin:\"\\\\b(\"+s.join(\"|\")+\")\\\\b\"},{begin:\":\",end:\"[;}]\",contains:[t.HEXCOLOR,t.IMPORTANT,e.CSS_NUMBER_MODE,...f,{begin:/(url|data-uri)\\(/,end:/\\)/,relevance:0,keywords:{built_in:\"url data-uri\"},contains:[{className:\"string\",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},l]},{begin:c(/@/),end:\"[{;]\",relevance:0,illegal:/:/,contains:[{className:\"keyword\",begin:p},{begin:/\\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:d,attribute:r.join(\" \")},contains:[{begin:/[a-z-]+(?=:)/,className:\"attribute\"},...f,e.CSS_NUMBER_MODE]}]},{className:\"selector-tag\",begin:\"\\\\b(\"+i.join(\"|\")+\")\\\\b\"}]}}e.exports=d},eedf:function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=97)}({0:function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},97:function(e,t,n){\"use strict\";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"button\",{staticClass:\"el-button\",class:[e.type?\"el-button--\"+e.type:\"\",e.buttonSize?\"el-button--\"+e.buttonSize:\"\",{\"is-disabled\":e.buttonDisabled,\"is-loading\":e.loading,\"is-plain\":e.plain,\"is-round\":e.round,\"is-circle\":e.circle}],attrs:{disabled:e.buttonDisabled||e.loading,autofocus:e.autofocus,type:e.nativeType},on:{click:e.handleClick}},[e.loading?n(\"i\",{staticClass:\"el-icon-loading\"}):e._e(),e.icon&&!e.loading?n(\"i\",{class:e.icon}):e._e(),e.$slots.default?n(\"span\",[e._t(\"default\")],2):e._e()])},r=[];i._withStripped=!0;var a={name:\"ElButton\",inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},props:{type:{type:String,default:\"default\"},size:String,icon:{type:String,default:\"\"},nativeType:{type:String,default:\"button\"},loading:Boolean,disabled:Boolean,plain:Boolean,autofocus:Boolean,round:Boolean,circle:Boolean},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},buttonSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},buttonDisabled:function(){return this.disabled||(this.elForm||{}).disabled}},methods:{handleClick:function(e){this.$emit(\"click\",e)}}},o=a,s=n(0),l=Object(s[\"a\"])(o,i,r,!1,null,null,null);l.options.__file=\"packages/button/src/button.vue\";var c=l.exports;c.install=function(e){e.component(c.name,c)};t[\"default\"]=c}})},ef7a:function(e,t){const n=[\"AASTriangle\",\"AbelianGroup\",\"Abort\",\"AbortKernels\",\"AbortProtect\",\"AbortScheduledTask\",\"Above\",\"Abs\",\"AbsArg\",\"AbsArgPlot\",\"Absolute\",\"AbsoluteCorrelation\",\"AbsoluteCorrelationFunction\",\"AbsoluteCurrentValue\",\"AbsoluteDashing\",\"AbsoluteFileName\",\"AbsoluteOptions\",\"AbsolutePointSize\",\"AbsoluteThickness\",\"AbsoluteTime\",\"AbsoluteTiming\",\"AcceptanceThreshold\",\"AccountingForm\",\"Accumulate\",\"Accuracy\",\"AccuracyGoal\",\"ActionDelay\",\"ActionMenu\",\"ActionMenuBox\",\"ActionMenuBoxOptions\",\"Activate\",\"Active\",\"ActiveClassification\",\"ActiveClassificationObject\",\"ActiveItem\",\"ActivePrediction\",\"ActivePredictionObject\",\"ActiveStyle\",\"AcyclicGraphQ\",\"AddOnHelpPath\",\"AddSides\",\"AddTo\",\"AddToSearchIndex\",\"AddUsers\",\"AdjacencyGraph\",\"AdjacencyList\",\"AdjacencyMatrix\",\"AdjacentMeshCells\",\"AdjustmentBox\",\"AdjustmentBoxOptions\",\"AdjustTimeSeriesForecast\",\"AdministrativeDivisionData\",\"AffineHalfSpace\",\"AffineSpace\",\"AffineStateSpaceModel\",\"AffineTransform\",\"After\",\"AggregatedEntityClass\",\"AggregationLayer\",\"AircraftData\",\"AirportData\",\"AirPressureData\",\"AirTemperatureData\",\"AiryAi\",\"AiryAiPrime\",\"AiryAiZero\",\"AiryBi\",\"AiryBiPrime\",\"AiryBiZero\",\"AlgebraicIntegerQ\",\"AlgebraicNumber\",\"AlgebraicNumberDenominator\",\"AlgebraicNumberNorm\",\"AlgebraicNumberPolynomial\",\"AlgebraicNumberTrace\",\"AlgebraicRules\",\"AlgebraicRulesData\",\"Algebraics\",\"AlgebraicUnitQ\",\"Alignment\",\"AlignmentMarker\",\"AlignmentPoint\",\"All\",\"AllowAdultContent\",\"AllowedCloudExtraParameters\",\"AllowedCloudParameterExtensions\",\"AllowedDimensions\",\"AllowedFrequencyRange\",\"AllowedHeads\",\"AllowGroupClose\",\"AllowIncomplete\",\"AllowInlineCells\",\"AllowKernelInitialization\",\"AllowLooseGrammar\",\"AllowReverseGroupClose\",\"AllowScriptLevelChange\",\"AllowVersionUpdate\",\"AllTrue\",\"Alphabet\",\"AlphabeticOrder\",\"AlphabeticSort\",\"AlphaChannel\",\"AlternateImage\",\"AlternatingFactorial\",\"AlternatingGroup\",\"AlternativeHypothesis\",\"Alternatives\",\"AltitudeMethod\",\"AmbientLight\",\"AmbiguityFunction\",\"AmbiguityList\",\"Analytic\",\"AnatomyData\",\"AnatomyForm\",\"AnatomyPlot3D\",\"AnatomySkinStyle\",\"AnatomyStyling\",\"AnchoredSearch\",\"And\",\"AndersonDarlingTest\",\"AngerJ\",\"AngleBisector\",\"AngleBracket\",\"AnglePath\",\"AnglePath3D\",\"AngleVector\",\"AngularGauge\",\"Animate\",\"AnimationCycleOffset\",\"AnimationCycleRepetitions\",\"AnimationDirection\",\"AnimationDisplayTime\",\"AnimationRate\",\"AnimationRepetitions\",\"AnimationRunning\",\"AnimationRunTime\",\"AnimationTimeIndex\",\"Animator\",\"AnimatorBox\",\"AnimatorBoxOptions\",\"AnimatorElements\",\"Annotate\",\"Annotation\",\"AnnotationDelete\",\"AnnotationKeys\",\"AnnotationRules\",\"AnnotationValue\",\"Annuity\",\"AnnuityDue\",\"Annulus\",\"AnomalyDetection\",\"AnomalyDetector\",\"AnomalyDetectorFunction\",\"Anonymous\",\"Antialiasing\",\"AntihermitianMatrixQ\",\"Antisymmetric\",\"AntisymmetricMatrixQ\",\"Antonyms\",\"AnyOrder\",\"AnySubset\",\"AnyTrue\",\"Apart\",\"ApartSquareFree\",\"APIFunction\",\"Appearance\",\"AppearanceElements\",\"AppearanceRules\",\"AppellF1\",\"Append\",\"AppendCheck\",\"AppendLayer\",\"AppendTo\",\"Apply\",\"ApplySides\",\"ArcCos\",\"ArcCosh\",\"ArcCot\",\"ArcCoth\",\"ArcCsc\",\"ArcCsch\",\"ArcCurvature\",\"ARCHProcess\",\"ArcLength\",\"ArcSec\",\"ArcSech\",\"ArcSin\",\"ArcSinDistribution\",\"ArcSinh\",\"ArcTan\",\"ArcTanh\",\"Area\",\"Arg\",\"ArgMax\",\"ArgMin\",\"ArgumentCountQ\",\"ARIMAProcess\",\"ArithmeticGeometricMean\",\"ARMAProcess\",\"Around\",\"AroundReplace\",\"ARProcess\",\"Array\",\"ArrayComponents\",\"ArrayDepth\",\"ArrayFilter\",\"ArrayFlatten\",\"ArrayMesh\",\"ArrayPad\",\"ArrayPlot\",\"ArrayQ\",\"ArrayResample\",\"ArrayReshape\",\"ArrayRules\",\"Arrays\",\"Arrow\",\"Arrow3DBox\",\"ArrowBox\",\"Arrowheads\",\"ASATriangle\",\"Ask\",\"AskAppend\",\"AskConfirm\",\"AskDisplay\",\"AskedQ\",\"AskedValue\",\"AskFunction\",\"AskState\",\"AskTemplateDisplay\",\"AspectRatio\",\"AspectRatioFixed\",\"Assert\",\"AssociateTo\",\"Association\",\"AssociationFormat\",\"AssociationMap\",\"AssociationQ\",\"AssociationThread\",\"AssumeDeterministic\",\"Assuming\",\"Assumptions\",\"AstronomicalData\",\"Asymptotic\",\"AsymptoticDSolveValue\",\"AsymptoticEqual\",\"AsymptoticEquivalent\",\"AsymptoticGreater\",\"AsymptoticGreaterEqual\",\"AsymptoticIntegrate\",\"AsymptoticLess\",\"AsymptoticLessEqual\",\"AsymptoticOutputTracker\",\"AsymptoticProduct\",\"AsymptoticRSolveValue\",\"AsymptoticSolve\",\"AsymptoticSum\",\"Asynchronous\",\"AsynchronousTaskObject\",\"AsynchronousTasks\",\"Atom\",\"AtomCoordinates\",\"AtomCount\",\"AtomDiagramCoordinates\",\"AtomList\",\"AtomQ\",\"AttentionLayer\",\"Attributes\",\"Audio\",\"AudioAmplify\",\"AudioAnnotate\",\"AudioAnnotationLookup\",\"AudioBlockMap\",\"AudioCapture\",\"AudioChannelAssignment\",\"AudioChannelCombine\",\"AudioChannelMix\",\"AudioChannels\",\"AudioChannelSeparate\",\"AudioData\",\"AudioDelay\",\"AudioDelete\",\"AudioDevice\",\"AudioDistance\",\"AudioEncoding\",\"AudioFade\",\"AudioFrequencyShift\",\"AudioGenerator\",\"AudioIdentify\",\"AudioInputDevice\",\"AudioInsert\",\"AudioInstanceQ\",\"AudioIntervals\",\"AudioJoin\",\"AudioLabel\",\"AudioLength\",\"AudioLocalMeasurements\",\"AudioLooping\",\"AudioLoudness\",\"AudioMeasurements\",\"AudioNormalize\",\"AudioOutputDevice\",\"AudioOverlay\",\"AudioPad\",\"AudioPan\",\"AudioPartition\",\"AudioPause\",\"AudioPitchShift\",\"AudioPlay\",\"AudioPlot\",\"AudioQ\",\"AudioRecord\",\"AudioReplace\",\"AudioResample\",\"AudioReverb\",\"AudioReverse\",\"AudioSampleRate\",\"AudioSpectralMap\",\"AudioSpectralTransformation\",\"AudioSplit\",\"AudioStop\",\"AudioStream\",\"AudioStreams\",\"AudioTimeStretch\",\"AudioTracks\",\"AudioTrim\",\"AudioType\",\"AugmentedPolyhedron\",\"AugmentedSymmetricPolynomial\",\"Authenticate\",\"Authentication\",\"AuthenticationDialog\",\"AutoAction\",\"Autocomplete\",\"AutocompletionFunction\",\"AutoCopy\",\"AutocorrelationTest\",\"AutoDelete\",\"AutoEvaluateEvents\",\"AutoGeneratedPackage\",\"AutoIndent\",\"AutoIndentSpacings\",\"AutoItalicWords\",\"AutoloadPath\",\"AutoMatch\",\"Automatic\",\"AutomaticImageSize\",\"AutoMultiplicationSymbol\",\"AutoNumberFormatting\",\"AutoOpenNotebooks\",\"AutoOpenPalettes\",\"AutoQuoteCharacters\",\"AutoRefreshed\",\"AutoRemove\",\"AutorunSequencing\",\"AutoScaling\",\"AutoScroll\",\"AutoSpacing\",\"AutoStyleOptions\",\"AutoStyleWords\",\"AutoSubmitting\",\"Axes\",\"AxesEdge\",\"AxesLabel\",\"AxesOrigin\",\"AxesStyle\",\"AxiomaticTheory\",\"Axis\",\"BabyMonsterGroupB\",\"Back\",\"Background\",\"BackgroundAppearance\",\"BackgroundTasksSettings\",\"Backslash\",\"Backsubstitution\",\"Backward\",\"Ball\",\"Band\",\"BandpassFilter\",\"BandstopFilter\",\"BarabasiAlbertGraphDistribution\",\"BarChart\",\"BarChart3D\",\"BarcodeImage\",\"BarcodeRecognize\",\"BaringhausHenzeTest\",\"BarLegend\",\"BarlowProschanImportance\",\"BarnesG\",\"BarOrigin\",\"BarSpacing\",\"BartlettHannWindow\",\"BartlettWindow\",\"BaseDecode\",\"BaseEncode\",\"BaseForm\",\"Baseline\",\"BaselinePosition\",\"BaseStyle\",\"BasicRecurrentLayer\",\"BatchNormalizationLayer\",\"BatchSize\",\"BatesDistribution\",\"BattleLemarieWavelet\",\"BayesianMaximization\",\"BayesianMaximizationObject\",\"BayesianMinimization\",\"BayesianMinimizationObject\",\"Because\",\"BeckmannDistribution\",\"Beep\",\"Before\",\"Begin\",\"BeginDialogPacket\",\"BeginFrontEndInteractionPacket\",\"BeginPackage\",\"BellB\",\"BellY\",\"Below\",\"BenfordDistribution\",\"BeniniDistribution\",\"BenktanderGibratDistribution\",\"BenktanderWeibullDistribution\",\"BernoulliB\",\"BernoulliDistribution\",\"BernoulliGraphDistribution\",\"BernoulliProcess\",\"BernsteinBasis\",\"BesselFilterModel\",\"BesselI\",\"BesselJ\",\"BesselJZero\",\"BesselK\",\"BesselY\",\"BesselYZero\",\"Beta\",\"BetaBinomialDistribution\",\"BetaDistribution\",\"BetaNegativeBinomialDistribution\",\"BetaPrimeDistribution\",\"BetaRegularized\",\"Between\",\"BetweennessCentrality\",\"BeveledPolyhedron\",\"BezierCurve\",\"BezierCurve3DBox\",\"BezierCurve3DBoxOptions\",\"BezierCurveBox\",\"BezierCurveBoxOptions\",\"BezierFunction\",\"BilateralFilter\",\"Binarize\",\"BinaryDeserialize\",\"BinaryDistance\",\"BinaryFormat\",\"BinaryImageQ\",\"BinaryRead\",\"BinaryReadList\",\"BinarySerialize\",\"BinaryWrite\",\"BinCounts\",\"BinLists\",\"Binomial\",\"BinomialDistribution\",\"BinomialProcess\",\"BinormalDistribution\",\"BiorthogonalSplineWavelet\",\"BipartiteGraphQ\",\"BiquadraticFilterModel\",\"BirnbaumImportance\",\"BirnbaumSaundersDistribution\",\"BitAnd\",\"BitClear\",\"BitGet\",\"BitLength\",\"BitNot\",\"BitOr\",\"BitSet\",\"BitShiftLeft\",\"BitShiftRight\",\"BitXor\",\"BiweightLocation\",\"BiweightMidvariance\",\"Black\",\"BlackmanHarrisWindow\",\"BlackmanNuttallWindow\",\"BlackmanWindow\",\"Blank\",\"BlankForm\",\"BlankNullSequence\",\"BlankSequence\",\"Blend\",\"Block\",\"BlockchainAddressData\",\"BlockchainBase\",\"BlockchainBlockData\",\"BlockchainContractValue\",\"BlockchainData\",\"BlockchainGet\",\"BlockchainKeyEncode\",\"BlockchainPut\",\"BlockchainTokenData\",\"BlockchainTransaction\",\"BlockchainTransactionData\",\"BlockchainTransactionSign\",\"BlockchainTransactionSubmit\",\"BlockMap\",\"BlockRandom\",\"BlomqvistBeta\",\"BlomqvistBetaTest\",\"Blue\",\"Blur\",\"BodePlot\",\"BohmanWindow\",\"Bold\",\"Bond\",\"BondCount\",\"BondList\",\"BondQ\",\"Bookmarks\",\"Boole\",\"BooleanConsecutiveFunction\",\"BooleanConvert\",\"BooleanCountingFunction\",\"BooleanFunction\",\"BooleanGraph\",\"BooleanMaxterms\",\"BooleanMinimize\",\"BooleanMinterms\",\"BooleanQ\",\"BooleanRegion\",\"Booleans\",\"BooleanStrings\",\"BooleanTable\",\"BooleanVariables\",\"BorderDimensions\",\"BorelTannerDistribution\",\"Bottom\",\"BottomHatTransform\",\"BoundaryDiscretizeGraphics\",\"BoundaryDiscretizeRegion\",\"BoundaryMesh\",\"BoundaryMeshRegion\",\"BoundaryMeshRegionQ\",\"BoundaryStyle\",\"BoundedRegionQ\",\"BoundingRegion\",\"Bounds\",\"Box\",\"BoxBaselineShift\",\"BoxData\",\"BoxDimensions\",\"Boxed\",\"Boxes\",\"BoxForm\",\"BoxFormFormatTypes\",\"BoxFrame\",\"BoxID\",\"BoxMargins\",\"BoxMatrix\",\"BoxObject\",\"BoxRatios\",\"BoxRotation\",\"BoxRotationPoint\",\"BoxStyle\",\"BoxWhiskerChart\",\"Bra\",\"BracketingBar\",\"BraKet\",\"BrayCurtisDistance\",\"BreadthFirstScan\",\"Break\",\"BridgeData\",\"BrightnessEqualize\",\"BroadcastStationData\",\"Brown\",\"BrownForsytheTest\",\"BrownianBridgeProcess\",\"BrowserCategory\",\"BSplineBasis\",\"BSplineCurve\",\"BSplineCurve3DBox\",\"BSplineCurve3DBoxOptions\",\"BSplineCurveBox\",\"BSplineCurveBoxOptions\",\"BSplineFunction\",\"BSplineSurface\",\"BSplineSurface3DBox\",\"BSplineSurface3DBoxOptions\",\"BubbleChart\",\"BubbleChart3D\",\"BubbleScale\",\"BubbleSizes\",\"BuildingData\",\"BulletGauge\",\"BusinessDayQ\",\"ButterflyGraph\",\"ButterworthFilterModel\",\"Button\",\"ButtonBar\",\"ButtonBox\",\"ButtonBoxOptions\",\"ButtonCell\",\"ButtonContents\",\"ButtonData\",\"ButtonEvaluator\",\"ButtonExpandable\",\"ButtonFrame\",\"ButtonFunction\",\"ButtonMargins\",\"ButtonMinHeight\",\"ButtonNote\",\"ButtonNotebook\",\"ButtonSource\",\"ButtonStyle\",\"ButtonStyleMenuListing\",\"Byte\",\"ByteArray\",\"ByteArrayFormat\",\"ByteArrayQ\",\"ByteArrayToString\",\"ByteCount\",\"ByteOrdering\",\"C\",\"CachedValue\",\"CacheGraphics\",\"CachePersistence\",\"CalendarConvert\",\"CalendarData\",\"CalendarType\",\"Callout\",\"CalloutMarker\",\"CalloutStyle\",\"CallPacket\",\"CanberraDistance\",\"Cancel\",\"CancelButton\",\"CandlestickChart\",\"CanonicalGraph\",\"CanonicalizePolygon\",\"CanonicalizePolyhedron\",\"CanonicalName\",\"CanonicalWarpingCorrespondence\",\"CanonicalWarpingDistance\",\"CantorMesh\",\"CantorStaircase\",\"Cap\",\"CapForm\",\"CapitalDifferentialD\",\"Capitalize\",\"CapsuleShape\",\"CaptureRunning\",\"CardinalBSplineBasis\",\"CarlemanLinearize\",\"CarmichaelLambda\",\"CaseOrdering\",\"Cases\",\"CaseSensitive\",\"Cashflow\",\"Casoratian\",\"Catalan\",\"CatalanNumber\",\"Catch\",\"CategoricalDistribution\",\"Catenate\",\"CatenateLayer\",\"CauchyDistribution\",\"CauchyWindow\",\"CayleyGraph\",\"CDF\",\"CDFDeploy\",\"CDFInformation\",\"CDFWavelet\",\"Ceiling\",\"CelestialSystem\",\"Cell\",\"CellAutoOverwrite\",\"CellBaseline\",\"CellBoundingBox\",\"CellBracketOptions\",\"CellChangeTimes\",\"CellContents\",\"CellContext\",\"CellDingbat\",\"CellDynamicExpression\",\"CellEditDuplicate\",\"CellElementsBoundingBox\",\"CellElementSpacings\",\"CellEpilog\",\"CellEvaluationDuplicate\",\"CellEvaluationFunction\",\"CellEvaluationLanguage\",\"CellEventActions\",\"CellFrame\",\"CellFrameColor\",\"CellFrameLabelMargins\",\"CellFrameLabels\",\"CellFrameMargins\",\"CellGroup\",\"CellGroupData\",\"CellGrouping\",\"CellGroupingRules\",\"CellHorizontalScrolling\",\"CellID\",\"CellLabel\",\"CellLabelAutoDelete\",\"CellLabelMargins\",\"CellLabelPositioning\",\"CellLabelStyle\",\"CellLabelTemplate\",\"CellMargins\",\"CellObject\",\"CellOpen\",\"CellPrint\",\"CellProlog\",\"Cells\",\"CellSize\",\"CellStyle\",\"CellTags\",\"CellularAutomaton\",\"CensoredDistribution\",\"Censoring\",\"Center\",\"CenterArray\",\"CenterDot\",\"CentralFeature\",\"CentralMoment\",\"CentralMomentGeneratingFunction\",\"Cepstrogram\",\"CepstrogramArray\",\"CepstrumArray\",\"CForm\",\"ChampernowneNumber\",\"ChangeOptions\",\"ChannelBase\",\"ChannelBrokerAction\",\"ChannelDatabin\",\"ChannelHistoryLength\",\"ChannelListen\",\"ChannelListener\",\"ChannelListeners\",\"ChannelListenerWait\",\"ChannelObject\",\"ChannelPreSendFunction\",\"ChannelReceiverFunction\",\"ChannelSend\",\"ChannelSubscribers\",\"ChanVeseBinarize\",\"Character\",\"CharacterCounts\",\"CharacterEncoding\",\"CharacterEncodingsPath\",\"CharacteristicFunction\",\"CharacteristicPolynomial\",\"CharacterName\",\"CharacterNormalize\",\"CharacterRange\",\"Characters\",\"ChartBaseStyle\",\"ChartElementData\",\"ChartElementDataFunction\",\"ChartElementFunction\",\"ChartElements\",\"ChartLabels\",\"ChartLayout\",\"ChartLegends\",\"ChartStyle\",\"Chebyshev1FilterModel\",\"Chebyshev2FilterModel\",\"ChebyshevDistance\",\"ChebyshevT\",\"ChebyshevU\",\"Check\",\"CheckAbort\",\"CheckAll\",\"Checkbox\",\"CheckboxBar\",\"CheckboxBox\",\"CheckboxBoxOptions\",\"ChemicalData\",\"ChessboardDistance\",\"ChiDistribution\",\"ChineseRemainder\",\"ChiSquareDistribution\",\"ChoiceButtons\",\"ChoiceDialog\",\"CholeskyDecomposition\",\"Chop\",\"ChromaticityPlot\",\"ChromaticityPlot3D\",\"ChromaticPolynomial\",\"Circle\",\"CircleBox\",\"CircleDot\",\"CircleMinus\",\"CirclePlus\",\"CirclePoints\",\"CircleThrough\",\"CircleTimes\",\"CirculantGraph\",\"CircularOrthogonalMatrixDistribution\",\"CircularQuaternionMatrixDistribution\",\"CircularRealMatrixDistribution\",\"CircularSymplecticMatrixDistribution\",\"CircularUnitaryMatrixDistribution\",\"Circumsphere\",\"CityData\",\"ClassifierFunction\",\"ClassifierInformation\",\"ClassifierMeasurements\",\"ClassifierMeasurementsObject\",\"Classify\",\"ClassPriors\",\"Clear\",\"ClearAll\",\"ClearAttributes\",\"ClearCookies\",\"ClearPermissions\",\"ClearSystemCache\",\"ClebschGordan\",\"ClickPane\",\"Clip\",\"ClipboardNotebook\",\"ClipFill\",\"ClippingStyle\",\"ClipPlanes\",\"ClipPlanesStyle\",\"ClipRange\",\"Clock\",\"ClockGauge\",\"ClockwiseContourIntegral\",\"Close\",\"Closed\",\"CloseKernels\",\"ClosenessCentrality\",\"Closing\",\"ClosingAutoSave\",\"ClosingEvent\",\"ClosingSaveDialog\",\"CloudAccountData\",\"CloudBase\",\"CloudConnect\",\"CloudConnections\",\"CloudDeploy\",\"CloudDirectory\",\"CloudDisconnect\",\"CloudEvaluate\",\"CloudExport\",\"CloudExpression\",\"CloudExpressions\",\"CloudFunction\",\"CloudGet\",\"CloudImport\",\"CloudLoggingData\",\"CloudObject\",\"CloudObjectInformation\",\"CloudObjectInformationData\",\"CloudObjectNameFormat\",\"CloudObjects\",\"CloudObjectURLType\",\"CloudPublish\",\"CloudPut\",\"CloudRenderingMethod\",\"CloudSave\",\"CloudShare\",\"CloudSubmit\",\"CloudSymbol\",\"CloudUnshare\",\"CloudUserID\",\"ClusterClassify\",\"ClusterDissimilarityFunction\",\"ClusteringComponents\",\"ClusteringTree\",\"CMYKColor\",\"Coarse\",\"CodeAssistOptions\",\"Coefficient\",\"CoefficientArrays\",\"CoefficientDomain\",\"CoefficientList\",\"CoefficientRules\",\"CoifletWavelet\",\"Collect\",\"Colon\",\"ColonForm\",\"ColorBalance\",\"ColorCombine\",\"ColorConvert\",\"ColorCoverage\",\"ColorData\",\"ColorDataFunction\",\"ColorDetect\",\"ColorDistance\",\"ColorFunction\",\"ColorFunctionScaling\",\"Colorize\",\"ColorNegate\",\"ColorOutput\",\"ColorProfileData\",\"ColorQ\",\"ColorQuantize\",\"ColorReplace\",\"ColorRules\",\"ColorSelectorSettings\",\"ColorSeparate\",\"ColorSetter\",\"ColorSetterBox\",\"ColorSetterBoxOptions\",\"ColorSlider\",\"ColorsNear\",\"ColorSpace\",\"ColorToneMapping\",\"Column\",\"ColumnAlignments\",\"ColumnBackgrounds\",\"ColumnForm\",\"ColumnLines\",\"ColumnsEqual\",\"ColumnSpacings\",\"ColumnWidths\",\"CombinedEntityClass\",\"CombinerFunction\",\"CometData\",\"CommonDefaultFormatTypes\",\"Commonest\",\"CommonestFilter\",\"CommonName\",\"CommonUnits\",\"CommunityBoundaryStyle\",\"CommunityGraphPlot\",\"CommunityLabels\",\"CommunityRegionStyle\",\"CompanyData\",\"CompatibleUnitQ\",\"CompilationOptions\",\"CompilationTarget\",\"Compile\",\"Compiled\",\"CompiledCodeFunction\",\"CompiledFunction\",\"CompilerOptions\",\"Complement\",\"ComplementedEntityClass\",\"CompleteGraph\",\"CompleteGraphQ\",\"CompleteKaryTree\",\"CompletionsListPacket\",\"Complex\",\"ComplexContourPlot\",\"Complexes\",\"ComplexExpand\",\"ComplexInfinity\",\"ComplexityFunction\",\"ComplexListPlot\",\"ComplexPlot\",\"ComplexPlot3D\",\"ComplexRegionPlot\",\"ComplexStreamPlot\",\"ComplexVectorPlot\",\"ComponentMeasurements\",\"ComponentwiseContextMenu\",\"Compose\",\"ComposeList\",\"ComposeSeries\",\"CompositeQ\",\"Composition\",\"CompoundElement\",\"CompoundExpression\",\"CompoundPoissonDistribution\",\"CompoundPoissonProcess\",\"CompoundRenewalProcess\",\"Compress\",\"CompressedData\",\"CompressionLevel\",\"ComputeUncertainty\",\"Condition\",\"ConditionalExpression\",\"Conditioned\",\"Cone\",\"ConeBox\",\"ConfidenceLevel\",\"ConfidenceRange\",\"ConfidenceTransform\",\"ConfigurationPath\",\"ConformAudio\",\"ConformImages\",\"Congruent\",\"ConicHullRegion\",\"ConicHullRegion3DBox\",\"ConicHullRegionBox\",\"ConicOptimization\",\"Conjugate\",\"ConjugateTranspose\",\"Conjunction\",\"Connect\",\"ConnectedComponents\",\"ConnectedGraphComponents\",\"ConnectedGraphQ\",\"ConnectedMeshComponents\",\"ConnectedMoleculeComponents\",\"ConnectedMoleculeQ\",\"ConnectionSettings\",\"ConnectLibraryCallbackFunction\",\"ConnectSystemModelComponents\",\"ConnesWindow\",\"ConoverTest\",\"ConsoleMessage\",\"ConsoleMessagePacket\",\"Constant\",\"ConstantArray\",\"ConstantArrayLayer\",\"ConstantImage\",\"ConstantPlusLayer\",\"ConstantRegionQ\",\"Constants\",\"ConstantTimesLayer\",\"ConstellationData\",\"ConstrainedMax\",\"ConstrainedMin\",\"Construct\",\"Containing\",\"ContainsAll\",\"ContainsAny\",\"ContainsExactly\",\"ContainsNone\",\"ContainsOnly\",\"ContentFieldOptions\",\"ContentLocationFunction\",\"ContentObject\",\"ContentPadding\",\"ContentsBoundingBox\",\"ContentSelectable\",\"ContentSize\",\"Context\",\"ContextMenu\",\"Contexts\",\"ContextToFileName\",\"Continuation\",\"Continue\",\"ContinuedFraction\",\"ContinuedFractionK\",\"ContinuousAction\",\"ContinuousMarkovProcess\",\"ContinuousTask\",\"ContinuousTimeModelQ\",\"ContinuousWaveletData\",\"ContinuousWaveletTransform\",\"ContourDetect\",\"ContourGraphics\",\"ContourIntegral\",\"ContourLabels\",\"ContourLines\",\"ContourPlot\",\"ContourPlot3D\",\"Contours\",\"ContourShading\",\"ContourSmoothing\",\"ContourStyle\",\"ContraharmonicMean\",\"ContrastiveLossLayer\",\"Control\",\"ControlActive\",\"ControlAlignment\",\"ControlGroupContentsBox\",\"ControllabilityGramian\",\"ControllabilityMatrix\",\"ControllableDecomposition\",\"ControllableModelQ\",\"ControllerDuration\",\"ControllerInformation\",\"ControllerInformationData\",\"ControllerLinking\",\"ControllerManipulate\",\"ControllerMethod\",\"ControllerPath\",\"ControllerState\",\"ControlPlacement\",\"ControlsRendering\",\"ControlType\",\"Convergents\",\"ConversionOptions\",\"ConversionRules\",\"ConvertToBitmapPacket\",\"ConvertToPostScript\",\"ConvertToPostScriptPacket\",\"ConvexHullMesh\",\"ConvexPolygonQ\",\"ConvexPolyhedronQ\",\"ConvolutionLayer\",\"Convolve\",\"ConwayGroupCo1\",\"ConwayGroupCo2\",\"ConwayGroupCo3\",\"CookieFunction\",\"Cookies\",\"CoordinateBoundingBox\",\"CoordinateBoundingBoxArray\",\"CoordinateBounds\",\"CoordinateBoundsArray\",\"CoordinateChartData\",\"CoordinatesToolOptions\",\"CoordinateTransform\",\"CoordinateTransformData\",\"CoprimeQ\",\"Coproduct\",\"CopulaDistribution\",\"Copyable\",\"CopyDatabin\",\"CopyDirectory\",\"CopyFile\",\"CopyTag\",\"CopyToClipboard\",\"CornerFilter\",\"CornerNeighbors\",\"Correlation\",\"CorrelationDistance\",\"CorrelationFunction\",\"CorrelationTest\",\"Cos\",\"Cosh\",\"CoshIntegral\",\"CosineDistance\",\"CosineWindow\",\"CosIntegral\",\"Cot\",\"Coth\",\"Count\",\"CountDistinct\",\"CountDistinctBy\",\"CounterAssignments\",\"CounterBox\",\"CounterBoxOptions\",\"CounterClockwiseContourIntegral\",\"CounterEvaluator\",\"CounterFunction\",\"CounterIncrements\",\"CounterStyle\",\"CounterStyleMenuListing\",\"CountRoots\",\"CountryData\",\"Counts\",\"CountsBy\",\"Covariance\",\"CovarianceEstimatorFunction\",\"CovarianceFunction\",\"CoxianDistribution\",\"CoxIngersollRossProcess\",\"CoxModel\",\"CoxModelFit\",\"CramerVonMisesTest\",\"CreateArchive\",\"CreateCellID\",\"CreateChannel\",\"CreateCloudExpression\",\"CreateDatabin\",\"CreateDataStructure\",\"CreateDataSystemModel\",\"CreateDialog\",\"CreateDirectory\",\"CreateDocument\",\"CreateFile\",\"CreateIntermediateDirectories\",\"CreateManagedLibraryExpression\",\"CreateNotebook\",\"CreatePacletArchive\",\"CreatePalette\",\"CreatePalettePacket\",\"CreatePermissionsGroup\",\"CreateScheduledTask\",\"CreateSearchIndex\",\"CreateSystemModel\",\"CreateTemporary\",\"CreateUUID\",\"CreateWindow\",\"CriterionFunction\",\"CriticalityFailureImportance\",\"CriticalitySuccessImportance\",\"CriticalSection\",\"Cross\",\"CrossEntropyLossLayer\",\"CrossingCount\",\"CrossingDetect\",\"CrossingPolygon\",\"CrossMatrix\",\"Csc\",\"Csch\",\"CTCLossLayer\",\"Cube\",\"CubeRoot\",\"Cubics\",\"Cuboid\",\"CuboidBox\",\"Cumulant\",\"CumulantGeneratingFunction\",\"Cup\",\"CupCap\",\"Curl\",\"CurlyDoubleQuote\",\"CurlyQuote\",\"CurrencyConvert\",\"CurrentDate\",\"CurrentImage\",\"CurrentlySpeakingPacket\",\"CurrentNotebookImage\",\"CurrentScreenImage\",\"CurrentValue\",\"Curry\",\"CurryApplied\",\"CurvatureFlowFilter\",\"CurveClosed\",\"Cyan\",\"CycleGraph\",\"CycleIndexPolynomial\",\"Cycles\",\"CyclicGroup\",\"Cyclotomic\",\"Cylinder\",\"CylinderBox\",\"CylindricalDecomposition\",\"D\",\"DagumDistribution\",\"DamData\",\"DamerauLevenshteinDistance\",\"DampingFactor\",\"Darker\",\"Dashed\",\"Dashing\",\"DatabaseConnect\",\"DatabaseDisconnect\",\"DatabaseReference\",\"Databin\",\"DatabinAdd\",\"DatabinRemove\",\"Databins\",\"DatabinUpload\",\"DataCompression\",\"DataDistribution\",\"DataRange\",\"DataReversed\",\"Dataset\",\"DatasetDisplayPanel\",\"DataStructure\",\"DataStructureQ\",\"Date\",\"DateBounds\",\"Dated\",\"DateDelimiters\",\"DateDifference\",\"DatedUnit\",\"DateFormat\",\"DateFunction\",\"DateHistogram\",\"DateInterval\",\"DateList\",\"DateListLogPlot\",\"DateListPlot\",\"DateListStepPlot\",\"DateObject\",\"DateObjectQ\",\"DateOverlapsQ\",\"DatePattern\",\"DatePlus\",\"DateRange\",\"DateReduction\",\"DateString\",\"DateTicksFormat\",\"DateValue\",\"DateWithinQ\",\"DaubechiesWavelet\",\"DavisDistribution\",\"DawsonF\",\"DayCount\",\"DayCountConvention\",\"DayHemisphere\",\"DaylightQ\",\"DayMatchQ\",\"DayName\",\"DayNightTerminator\",\"DayPlus\",\"DayRange\",\"DayRound\",\"DeBruijnGraph\",\"DeBruijnSequence\",\"Debug\",\"DebugTag\",\"Decapitalize\",\"Decimal\",\"DecimalForm\",\"DeclareKnownSymbols\",\"DeclarePackage\",\"Decompose\",\"DeconvolutionLayer\",\"Decrement\",\"Decrypt\",\"DecryptFile\",\"DedekindEta\",\"DeepSpaceProbeData\",\"Default\",\"DefaultAxesStyle\",\"DefaultBaseStyle\",\"DefaultBoxStyle\",\"DefaultButton\",\"DefaultColor\",\"DefaultControlPlacement\",\"DefaultDuplicateCellStyle\",\"DefaultDuration\",\"DefaultElement\",\"DefaultFaceGridsStyle\",\"DefaultFieldHintStyle\",\"DefaultFont\",\"DefaultFontProperties\",\"DefaultFormatType\",\"DefaultFormatTypeForStyle\",\"DefaultFrameStyle\",\"DefaultFrameTicksStyle\",\"DefaultGridLinesStyle\",\"DefaultInlineFormatType\",\"DefaultInputFormatType\",\"DefaultLabelStyle\",\"DefaultMenuStyle\",\"DefaultNaturalLanguage\",\"DefaultNewCellStyle\",\"DefaultNewInlineCellStyle\",\"DefaultNotebook\",\"DefaultOptions\",\"DefaultOutputFormatType\",\"DefaultPrintPrecision\",\"DefaultStyle\",\"DefaultStyleDefinitions\",\"DefaultTextFormatType\",\"DefaultTextInlineFormatType\",\"DefaultTicksStyle\",\"DefaultTooltipStyle\",\"DefaultValue\",\"DefaultValues\",\"Defer\",\"DefineExternal\",\"DefineInputStreamMethod\",\"DefineOutputStreamMethod\",\"DefineResourceFunction\",\"Definition\",\"Degree\",\"DegreeCentrality\",\"DegreeGraphDistribution\",\"DegreeLexicographic\",\"DegreeReverseLexicographic\",\"DEigensystem\",\"DEigenvalues\",\"Deinitialization\",\"Del\",\"DelaunayMesh\",\"Delayed\",\"Deletable\",\"Delete\",\"DeleteAnomalies\",\"DeleteBorderComponents\",\"DeleteCases\",\"DeleteChannel\",\"DeleteCloudExpression\",\"DeleteContents\",\"DeleteDirectory\",\"DeleteDuplicates\",\"DeleteDuplicatesBy\",\"DeleteFile\",\"DeleteMissing\",\"DeleteObject\",\"DeletePermissionsKey\",\"DeleteSearchIndex\",\"DeleteSmallComponents\",\"DeleteStopwords\",\"DeleteWithContents\",\"DeletionWarning\",\"DelimitedArray\",\"DelimitedSequence\",\"Delimiter\",\"DelimiterFlashTime\",\"DelimiterMatching\",\"Delimiters\",\"DeliveryFunction\",\"Dendrogram\",\"Denominator\",\"DensityGraphics\",\"DensityHistogram\",\"DensityPlot\",\"DensityPlot3D\",\"DependentVariables\",\"Deploy\",\"Deployed\",\"Depth\",\"DepthFirstScan\",\"Derivative\",\"DerivativeFilter\",\"DerivedKey\",\"DescriptorStateSpace\",\"DesignMatrix\",\"DestroyAfterEvaluation\",\"Det\",\"DeviceClose\",\"DeviceConfigure\",\"DeviceExecute\",\"DeviceExecuteAsynchronous\",\"DeviceObject\",\"DeviceOpen\",\"DeviceOpenQ\",\"DeviceRead\",\"DeviceReadBuffer\",\"DeviceReadLatest\",\"DeviceReadList\",\"DeviceReadTimeSeries\",\"Devices\",\"DeviceStreams\",\"DeviceWrite\",\"DeviceWriteBuffer\",\"DGaussianWavelet\",\"DiacriticalPositioning\",\"Diagonal\",\"DiagonalizableMatrixQ\",\"DiagonalMatrix\",\"DiagonalMatrixQ\",\"Dialog\",\"DialogIndent\",\"DialogInput\",\"DialogLevel\",\"DialogNotebook\",\"DialogProlog\",\"DialogReturn\",\"DialogSymbols\",\"Diamond\",\"DiamondMatrix\",\"DiceDissimilarity\",\"DictionaryLookup\",\"DictionaryWordQ\",\"DifferenceDelta\",\"DifferenceOrder\",\"DifferenceQuotient\",\"DifferenceRoot\",\"DifferenceRootReduce\",\"Differences\",\"DifferentialD\",\"DifferentialRoot\",\"DifferentialRootReduce\",\"DifferentiatorFilter\",\"DigitalSignature\",\"DigitBlock\",\"DigitBlockMinimum\",\"DigitCharacter\",\"DigitCount\",\"DigitQ\",\"DihedralAngle\",\"DihedralGroup\",\"Dilation\",\"DimensionalCombinations\",\"DimensionalMeshComponents\",\"DimensionReduce\",\"DimensionReducerFunction\",\"DimensionReduction\",\"Dimensions\",\"DiracComb\",\"DiracDelta\",\"DirectedEdge\",\"DirectedEdges\",\"DirectedGraph\",\"DirectedGraphQ\",\"DirectedInfinity\",\"Direction\",\"Directive\",\"Directory\",\"DirectoryName\",\"DirectoryQ\",\"DirectoryStack\",\"DirichletBeta\",\"DirichletCharacter\",\"DirichletCondition\",\"DirichletConvolve\",\"DirichletDistribution\",\"DirichletEta\",\"DirichletL\",\"DirichletLambda\",\"DirichletTransform\",\"DirichletWindow\",\"DisableConsolePrintPacket\",\"DisableFormatting\",\"DiscreteAsymptotic\",\"DiscreteChirpZTransform\",\"DiscreteConvolve\",\"DiscreteDelta\",\"DiscreteHadamardTransform\",\"DiscreteIndicator\",\"DiscreteLimit\",\"DiscreteLQEstimatorGains\",\"DiscreteLQRegulatorGains\",\"DiscreteLyapunovSolve\",\"DiscreteMarkovProcess\",\"DiscreteMaxLimit\",\"DiscreteMinLimit\",\"DiscretePlot\",\"DiscretePlot3D\",\"DiscreteRatio\",\"DiscreteRiccatiSolve\",\"DiscreteShift\",\"DiscreteTimeModelQ\",\"DiscreteUniformDistribution\",\"DiscreteVariables\",\"DiscreteWaveletData\",\"DiscreteWaveletPacketTransform\",\"DiscreteWaveletTransform\",\"DiscretizeGraphics\",\"DiscretizeRegion\",\"Discriminant\",\"DisjointQ\",\"Disjunction\",\"Disk\",\"DiskBox\",\"DiskMatrix\",\"DiskSegment\",\"Dispatch\",\"DispatchQ\",\"DispersionEstimatorFunction\",\"Display\",\"DisplayAllSteps\",\"DisplayEndPacket\",\"DisplayFlushImagePacket\",\"DisplayForm\",\"DisplayFunction\",\"DisplayPacket\",\"DisplayRules\",\"DisplaySetSizePacket\",\"DisplayString\",\"DisplayTemporary\",\"DisplayWith\",\"DisplayWithRef\",\"DisplayWithVariable\",\"DistanceFunction\",\"DistanceMatrix\",\"DistanceTransform\",\"Distribute\",\"Distributed\",\"DistributedContexts\",\"DistributeDefinitions\",\"DistributionChart\",\"DistributionDomain\",\"DistributionFitTest\",\"DistributionParameterAssumptions\",\"DistributionParameterQ\",\"Dithering\",\"Div\",\"Divergence\",\"Divide\",\"DivideBy\",\"Dividers\",\"DivideSides\",\"Divisible\",\"Divisors\",\"DivisorSigma\",\"DivisorSum\",\"DMSList\",\"DMSString\",\"Do\",\"DockedCells\",\"DocumentGenerator\",\"DocumentGeneratorInformation\",\"DocumentGeneratorInformationData\",\"DocumentGenerators\",\"DocumentNotebook\",\"DocumentWeightingRules\",\"Dodecahedron\",\"DomainRegistrationInformation\",\"DominantColors\",\"DOSTextFormat\",\"Dot\",\"DotDashed\",\"DotEqual\",\"DotLayer\",\"DotPlusLayer\",\"Dotted\",\"DoubleBracketingBar\",\"DoubleContourIntegral\",\"DoubleDownArrow\",\"DoubleLeftArrow\",\"DoubleLeftRightArrow\",\"DoubleLeftTee\",\"DoubleLongLeftArrow\",\"DoubleLongLeftRightArrow\",\"DoubleLongRightArrow\",\"DoubleRightArrow\",\"DoubleRightTee\",\"DoubleUpArrow\",\"DoubleUpDownArrow\",\"DoubleVerticalBar\",\"DoublyInfinite\",\"Down\",\"DownArrow\",\"DownArrowBar\",\"DownArrowUpArrow\",\"DownLeftRightVector\",\"DownLeftTeeVector\",\"DownLeftVector\",\"DownLeftVectorBar\",\"DownRightTeeVector\",\"DownRightVector\",\"DownRightVectorBar\",\"Downsample\",\"DownTee\",\"DownTeeArrow\",\"DownValues\",\"DragAndDrop\",\"DrawEdges\",\"DrawFrontFaces\",\"DrawHighlighted\",\"Drop\",\"DropoutLayer\",\"DSolve\",\"DSolveValue\",\"Dt\",\"DualLinearProgramming\",\"DualPolyhedron\",\"DualSystemsModel\",\"DumpGet\",\"DumpSave\",\"DuplicateFreeQ\",\"Duration\",\"Dynamic\",\"DynamicBox\",\"DynamicBoxOptions\",\"DynamicEvaluationTimeout\",\"DynamicGeoGraphics\",\"DynamicImage\",\"DynamicLocation\",\"DynamicModule\",\"DynamicModuleBox\",\"DynamicModuleBoxOptions\",\"DynamicModuleParent\",\"DynamicModuleValues\",\"DynamicName\",\"DynamicNamespace\",\"DynamicReference\",\"DynamicSetting\",\"DynamicUpdating\",\"DynamicWrapper\",\"DynamicWrapperBox\",\"DynamicWrapperBoxOptions\",\"E\",\"EarthImpactData\",\"EarthquakeData\",\"EccentricityCentrality\",\"Echo\",\"EchoFunction\",\"EclipseType\",\"EdgeAdd\",\"EdgeBetweennessCentrality\",\"EdgeCapacity\",\"EdgeCapForm\",\"EdgeColor\",\"EdgeConnectivity\",\"EdgeContract\",\"EdgeCost\",\"EdgeCount\",\"EdgeCoverQ\",\"EdgeCycleMatrix\",\"EdgeDashing\",\"EdgeDelete\",\"EdgeDetect\",\"EdgeForm\",\"EdgeIndex\",\"EdgeJoinForm\",\"EdgeLabeling\",\"EdgeLabels\",\"EdgeLabelStyle\",\"EdgeList\",\"EdgeOpacity\",\"EdgeQ\",\"EdgeRenderingFunction\",\"EdgeRules\",\"EdgeShapeFunction\",\"EdgeStyle\",\"EdgeTaggedGraph\",\"EdgeTaggedGraphQ\",\"EdgeTags\",\"EdgeThickness\",\"EdgeWeight\",\"EdgeWeightedGraphQ\",\"Editable\",\"EditButtonSettings\",\"EditCellTagsSettings\",\"EditDistance\",\"EffectiveInterest\",\"Eigensystem\",\"Eigenvalues\",\"EigenvectorCentrality\",\"Eigenvectors\",\"Element\",\"ElementData\",\"ElementwiseLayer\",\"ElidedForms\",\"Eliminate\",\"EliminationOrder\",\"Ellipsoid\",\"EllipticE\",\"EllipticExp\",\"EllipticExpPrime\",\"EllipticF\",\"EllipticFilterModel\",\"EllipticK\",\"EllipticLog\",\"EllipticNomeQ\",\"EllipticPi\",\"EllipticReducedHalfPeriods\",\"EllipticTheta\",\"EllipticThetaPrime\",\"EmbedCode\",\"EmbeddedHTML\",\"EmbeddedService\",\"EmbeddingLayer\",\"EmbeddingObject\",\"EmitSound\",\"EmphasizeSyntaxErrors\",\"EmpiricalDistribution\",\"Empty\",\"EmptyGraphQ\",\"EmptyRegion\",\"EnableConsolePrintPacket\",\"Enabled\",\"Encode\",\"Encrypt\",\"EncryptedObject\",\"EncryptFile\",\"End\",\"EndAdd\",\"EndDialogPacket\",\"EndFrontEndInteractionPacket\",\"EndOfBuffer\",\"EndOfFile\",\"EndOfLine\",\"EndOfString\",\"EndPackage\",\"EngineEnvironment\",\"EngineeringForm\",\"Enter\",\"EnterExpressionPacket\",\"EnterTextPacket\",\"Entity\",\"EntityClass\",\"EntityClassList\",\"EntityCopies\",\"EntityFunction\",\"EntityGroup\",\"EntityInstance\",\"EntityList\",\"EntityPrefetch\",\"EntityProperties\",\"EntityProperty\",\"EntityPropertyClass\",\"EntityRegister\",\"EntityStore\",\"EntityStores\",\"EntityTypeName\",\"EntityUnregister\",\"EntityValue\",\"Entropy\",\"EntropyFilter\",\"Environment\",\"Epilog\",\"EpilogFunction\",\"Equal\",\"EqualColumns\",\"EqualRows\",\"EqualTilde\",\"EqualTo\",\"EquatedTo\",\"Equilibrium\",\"EquirippleFilterKernel\",\"Equivalent\",\"Erf\",\"Erfc\",\"Erfi\",\"ErlangB\",\"ErlangC\",\"ErlangDistribution\",\"Erosion\",\"ErrorBox\",\"ErrorBoxOptions\",\"ErrorNorm\",\"ErrorPacket\",\"ErrorsDialogSettings\",\"EscapeRadius\",\"EstimatedBackground\",\"EstimatedDistribution\",\"EstimatedProcess\",\"EstimatorGains\",\"EstimatorRegulator\",\"EuclideanDistance\",\"EulerAngles\",\"EulerCharacteristic\",\"EulerE\",\"EulerGamma\",\"EulerianGraphQ\",\"EulerMatrix\",\"EulerPhi\",\"Evaluatable\",\"Evaluate\",\"Evaluated\",\"EvaluatePacket\",\"EvaluateScheduledTask\",\"EvaluationBox\",\"EvaluationCell\",\"EvaluationCompletionAction\",\"EvaluationData\",\"EvaluationElements\",\"EvaluationEnvironment\",\"EvaluationMode\",\"EvaluationMonitor\",\"EvaluationNotebook\",\"EvaluationObject\",\"EvaluationOrder\",\"Evaluator\",\"EvaluatorNames\",\"EvenQ\",\"EventData\",\"EventEvaluator\",\"EventHandler\",\"EventHandlerTag\",\"EventLabels\",\"EventSeries\",\"ExactBlackmanWindow\",\"ExactNumberQ\",\"ExactRootIsolation\",\"ExampleData\",\"Except\",\"ExcludedForms\",\"ExcludedLines\",\"ExcludedPhysicalQuantities\",\"ExcludePods\",\"Exclusions\",\"ExclusionsStyle\",\"Exists\",\"Exit\",\"ExitDialog\",\"ExoplanetData\",\"Exp\",\"Expand\",\"ExpandAll\",\"ExpandDenominator\",\"ExpandFileName\",\"ExpandNumerator\",\"Expectation\",\"ExpectationE\",\"ExpectedValue\",\"ExpGammaDistribution\",\"ExpIntegralE\",\"ExpIntegralEi\",\"ExpirationDate\",\"Exponent\",\"ExponentFunction\",\"ExponentialDistribution\",\"ExponentialFamily\",\"ExponentialGeneratingFunction\",\"ExponentialMovingAverage\",\"ExponentialPowerDistribution\",\"ExponentPosition\",\"ExponentStep\",\"Export\",\"ExportAutoReplacements\",\"ExportByteArray\",\"ExportForm\",\"ExportPacket\",\"ExportString\",\"Expression\",\"ExpressionCell\",\"ExpressionGraph\",\"ExpressionPacket\",\"ExpressionUUID\",\"ExpToTrig\",\"ExtendedEntityClass\",\"ExtendedGCD\",\"Extension\",\"ExtentElementFunction\",\"ExtentMarkers\",\"ExtentSize\",\"ExternalBundle\",\"ExternalCall\",\"ExternalDataCharacterEncoding\",\"ExternalEvaluate\",\"ExternalFunction\",\"ExternalFunctionName\",\"ExternalIdentifier\",\"ExternalObject\",\"ExternalOptions\",\"ExternalSessionObject\",\"ExternalSessions\",\"ExternalStorageBase\",\"ExternalStorageDownload\",\"ExternalStorageGet\",\"ExternalStorageObject\",\"ExternalStoragePut\",\"ExternalStorageUpload\",\"ExternalTypeSignature\",\"ExternalValue\",\"Extract\",\"ExtractArchive\",\"ExtractLayer\",\"ExtractPacletArchive\",\"ExtremeValueDistribution\",\"FaceAlign\",\"FaceForm\",\"FaceGrids\",\"FaceGridsStyle\",\"FacialFeatures\",\"Factor\",\"FactorComplete\",\"Factorial\",\"Factorial2\",\"FactorialMoment\",\"FactorialMomentGeneratingFunction\",\"FactorialPower\",\"FactorInteger\",\"FactorList\",\"FactorSquareFree\",\"FactorSquareFreeList\",\"FactorTerms\",\"FactorTermsList\",\"Fail\",\"Failure\",\"FailureAction\",\"FailureDistribution\",\"FailureQ\",\"False\",\"FareySequence\",\"FARIMAProcess\",\"FeatureDistance\",\"FeatureExtract\",\"FeatureExtraction\",\"FeatureExtractor\",\"FeatureExtractorFunction\",\"FeatureNames\",\"FeatureNearest\",\"FeatureSpacePlot\",\"FeatureSpacePlot3D\",\"FeatureTypes\",\"FEDisableConsolePrintPacket\",\"FeedbackLinearize\",\"FeedbackSector\",\"FeedbackSectorStyle\",\"FeedbackType\",\"FEEnableConsolePrintPacket\",\"FetalGrowthData\",\"Fibonacci\",\"Fibonorial\",\"FieldCompletionFunction\",\"FieldHint\",\"FieldHintStyle\",\"FieldMasked\",\"FieldSize\",\"File\",\"FileBaseName\",\"FileByteCount\",\"FileConvert\",\"FileDate\",\"FileExistsQ\",\"FileExtension\",\"FileFormat\",\"FileHandler\",\"FileHash\",\"FileInformation\",\"FileName\",\"FileNameDepth\",\"FileNameDialogSettings\",\"FileNameDrop\",\"FileNameForms\",\"FileNameJoin\",\"FileNames\",\"FileNameSetter\",\"FileNameSplit\",\"FileNameTake\",\"FilePrint\",\"FileSize\",\"FileSystemMap\",\"FileSystemScan\",\"FileTemplate\",\"FileTemplateApply\",\"FileType\",\"FilledCurve\",\"FilledCurveBox\",\"FilledCurveBoxOptions\",\"Filling\",\"FillingStyle\",\"FillingTransform\",\"FilteredEntityClass\",\"FilterRules\",\"FinancialBond\",\"FinancialData\",\"FinancialDerivative\",\"FinancialIndicator\",\"Find\",\"FindAnomalies\",\"FindArgMax\",\"FindArgMin\",\"FindChannels\",\"FindClique\",\"FindClusters\",\"FindCookies\",\"FindCurvePath\",\"FindCycle\",\"FindDevices\",\"FindDistribution\",\"FindDistributionParameters\",\"FindDivisions\",\"FindEdgeCover\",\"FindEdgeCut\",\"FindEdgeIndependentPaths\",\"FindEquationalProof\",\"FindEulerianCycle\",\"FindExternalEvaluators\",\"FindFaces\",\"FindFile\",\"FindFit\",\"FindFormula\",\"FindFundamentalCycles\",\"FindGeneratingFunction\",\"FindGeoLocation\",\"FindGeometricConjectures\",\"FindGeometricTransform\",\"FindGraphCommunities\",\"FindGraphIsomorphism\",\"FindGraphPartition\",\"FindHamiltonianCycle\",\"FindHamiltonianPath\",\"FindHiddenMarkovStates\",\"FindImageText\",\"FindIndependentEdgeSet\",\"FindIndependentVertexSet\",\"FindInstance\",\"FindIntegerNullVector\",\"FindKClan\",\"FindKClique\",\"FindKClub\",\"FindKPlex\",\"FindLibrary\",\"FindLinearRecurrence\",\"FindList\",\"FindMatchingColor\",\"FindMaximum\",\"FindMaximumCut\",\"FindMaximumFlow\",\"FindMaxValue\",\"FindMeshDefects\",\"FindMinimum\",\"FindMinimumCostFlow\",\"FindMinimumCut\",\"FindMinValue\",\"FindMoleculeSubstructure\",\"FindPath\",\"FindPeaks\",\"FindPermutation\",\"FindPostmanTour\",\"FindProcessParameters\",\"FindRepeat\",\"FindRoot\",\"FindSequenceFunction\",\"FindSettings\",\"FindShortestPath\",\"FindShortestTour\",\"FindSpanningTree\",\"FindSystemModelEquilibrium\",\"FindTextualAnswer\",\"FindThreshold\",\"FindTransientRepeat\",\"FindVertexCover\",\"FindVertexCut\",\"FindVertexIndependentPaths\",\"Fine\",\"FinishDynamic\",\"FiniteAbelianGroupCount\",\"FiniteGroupCount\",\"FiniteGroupData\",\"First\",\"FirstCase\",\"FirstPassageTimeDistribution\",\"FirstPosition\",\"FischerGroupFi22\",\"FischerGroupFi23\",\"FischerGroupFi24Prime\",\"FisherHypergeometricDistribution\",\"FisherRatioTest\",\"FisherZDistribution\",\"Fit\",\"FitAll\",\"FitRegularization\",\"FittedModel\",\"FixedOrder\",\"FixedPoint\",\"FixedPointList\",\"FlashSelection\",\"Flat\",\"Flatten\",\"FlattenAt\",\"FlattenLayer\",\"FlatTopWindow\",\"FlipView\",\"Floor\",\"FlowPolynomial\",\"FlushPrintOutputPacket\",\"Fold\",\"FoldList\",\"FoldPair\",\"FoldPairList\",\"FollowRedirects\",\"Font\",\"FontColor\",\"FontFamily\",\"FontForm\",\"FontName\",\"FontOpacity\",\"FontPostScriptName\",\"FontProperties\",\"FontReencoding\",\"FontSize\",\"FontSlant\",\"FontSubstitutions\",\"FontTracking\",\"FontVariations\",\"FontWeight\",\"For\",\"ForAll\",\"ForceVersionInstall\",\"Format\",\"FormatRules\",\"FormatType\",\"FormatTypeAutoConvert\",\"FormatValues\",\"FormBox\",\"FormBoxOptions\",\"FormControl\",\"FormFunction\",\"FormLayoutFunction\",\"FormObject\",\"FormPage\",\"FormTheme\",\"FormulaData\",\"FormulaLookup\",\"FortranForm\",\"Forward\",\"ForwardBackward\",\"Fourier\",\"FourierCoefficient\",\"FourierCosCoefficient\",\"FourierCosSeries\",\"FourierCosTransform\",\"FourierDCT\",\"FourierDCTFilter\",\"FourierDCTMatrix\",\"FourierDST\",\"FourierDSTMatrix\",\"FourierMatrix\",\"FourierParameters\",\"FourierSequenceTransform\",\"FourierSeries\",\"FourierSinCoefficient\",\"FourierSinSeries\",\"FourierSinTransform\",\"FourierTransform\",\"FourierTrigSeries\",\"FractionalBrownianMotionProcess\",\"FractionalGaussianNoiseProcess\",\"FractionalPart\",\"FractionBox\",\"FractionBoxOptions\",\"FractionLine\",\"Frame\",\"FrameBox\",\"FrameBoxOptions\",\"Framed\",\"FrameInset\",\"FrameLabel\",\"Frameless\",\"FrameMargins\",\"FrameRate\",\"FrameStyle\",\"FrameTicks\",\"FrameTicksStyle\",\"FRatioDistribution\",\"FrechetDistribution\",\"FreeQ\",\"FrenetSerretSystem\",\"FrequencySamplingFilterKernel\",\"FresnelC\",\"FresnelF\",\"FresnelG\",\"FresnelS\",\"Friday\",\"FrobeniusNumber\",\"FrobeniusSolve\",\"FromAbsoluteTime\",\"FromCharacterCode\",\"FromCoefficientRules\",\"FromContinuedFraction\",\"FromDate\",\"FromDigits\",\"FromDMS\",\"FromEntity\",\"FromJulianDate\",\"FromLetterNumber\",\"FromPolarCoordinates\",\"FromRomanNumeral\",\"FromSphericalCoordinates\",\"FromUnixTime\",\"Front\",\"FrontEndDynamicExpression\",\"FrontEndEventActions\",\"FrontEndExecute\",\"FrontEndObject\",\"FrontEndResource\",\"FrontEndResourceString\",\"FrontEndStackSize\",\"FrontEndToken\",\"FrontEndTokenExecute\",\"FrontEndValueCache\",\"FrontEndVersion\",\"FrontFaceColor\",\"FrontFaceOpacity\",\"Full\",\"FullAxes\",\"FullDefinition\",\"FullForm\",\"FullGraphics\",\"FullInformationOutputRegulator\",\"FullOptions\",\"FullRegion\",\"FullSimplify\",\"Function\",\"FunctionCompile\",\"FunctionCompileExport\",\"FunctionCompileExportByteArray\",\"FunctionCompileExportLibrary\",\"FunctionCompileExportString\",\"FunctionDomain\",\"FunctionExpand\",\"FunctionInterpolation\",\"FunctionPeriod\",\"FunctionRange\",\"FunctionSpace\",\"FussellVeselyImportance\",\"GaborFilter\",\"GaborMatrix\",\"GaborWavelet\",\"GainMargins\",\"GainPhaseMargins\",\"GalaxyData\",\"GalleryView\",\"Gamma\",\"GammaDistribution\",\"GammaRegularized\",\"GapPenalty\",\"GARCHProcess\",\"GatedRecurrentLayer\",\"Gather\",\"GatherBy\",\"GaugeFaceElementFunction\",\"GaugeFaceStyle\",\"GaugeFrameElementFunction\",\"GaugeFrameSize\",\"GaugeFrameStyle\",\"GaugeLabels\",\"GaugeMarkers\",\"GaugeStyle\",\"GaussianFilter\",\"GaussianIntegers\",\"GaussianMatrix\",\"GaussianOrthogonalMatrixDistribution\",\"GaussianSymplecticMatrixDistribution\",\"GaussianUnitaryMatrixDistribution\",\"GaussianWindow\",\"GCD\",\"GegenbauerC\",\"General\",\"GeneralizedLinearModelFit\",\"GenerateAsymmetricKeyPair\",\"GenerateConditions\",\"GeneratedCell\",\"GeneratedDocumentBinding\",\"GenerateDerivedKey\",\"GenerateDigitalSignature\",\"GenerateDocument\",\"GeneratedParameters\",\"GeneratedQuantityMagnitudes\",\"GenerateFileSignature\",\"GenerateHTTPResponse\",\"GenerateSecuredAuthenticationKey\",\"GenerateSymmetricKey\",\"GeneratingFunction\",\"GeneratorDescription\",\"GeneratorHistoryLength\",\"GeneratorOutputType\",\"Generic\",\"GenericCylindricalDecomposition\",\"GenomeData\",\"GenomeLookup\",\"GeoAntipode\",\"GeoArea\",\"GeoArraySize\",\"GeoBackground\",\"GeoBoundingBox\",\"GeoBounds\",\"GeoBoundsRegion\",\"GeoBubbleChart\",\"GeoCenter\",\"GeoCircle\",\"GeoContourPlot\",\"GeoDensityPlot\",\"GeodesicClosing\",\"GeodesicDilation\",\"GeodesicErosion\",\"GeodesicOpening\",\"GeoDestination\",\"GeodesyData\",\"GeoDirection\",\"GeoDisk\",\"GeoDisplacement\",\"GeoDistance\",\"GeoDistanceList\",\"GeoElevationData\",\"GeoEntities\",\"GeoGraphics\",\"GeogravityModelData\",\"GeoGridDirectionDifference\",\"GeoGridLines\",\"GeoGridLinesStyle\",\"GeoGridPosition\",\"GeoGridRange\",\"GeoGridRangePadding\",\"GeoGridUnitArea\",\"GeoGridUnitDistance\",\"GeoGridVector\",\"GeoGroup\",\"GeoHemisphere\",\"GeoHemisphereBoundary\",\"GeoHistogram\",\"GeoIdentify\",\"GeoImage\",\"GeoLabels\",\"GeoLength\",\"GeoListPlot\",\"GeoLocation\",\"GeologicalPeriodData\",\"GeomagneticModelData\",\"GeoMarker\",\"GeometricAssertion\",\"GeometricBrownianMotionProcess\",\"GeometricDistribution\",\"GeometricMean\",\"GeometricMeanFilter\",\"GeometricOptimization\",\"GeometricScene\",\"GeometricTransformation\",\"GeometricTransformation3DBox\",\"GeometricTransformation3DBoxOptions\",\"GeometricTransformationBox\",\"GeometricTransformationBoxOptions\",\"GeoModel\",\"GeoNearest\",\"GeoPath\",\"GeoPosition\",\"GeoPositionENU\",\"GeoPositionXYZ\",\"GeoProjection\",\"GeoProjectionData\",\"GeoRange\",\"GeoRangePadding\",\"GeoRegionValuePlot\",\"GeoResolution\",\"GeoScaleBar\",\"GeoServer\",\"GeoSmoothHistogram\",\"GeoStreamPlot\",\"GeoStyling\",\"GeoStylingImageFunction\",\"GeoVariant\",\"GeoVector\",\"GeoVectorENU\",\"GeoVectorPlot\",\"GeoVectorXYZ\",\"GeoVisibleRegion\",\"GeoVisibleRegionBoundary\",\"GeoWithinQ\",\"GeoZoomLevel\",\"GestureHandler\",\"GestureHandlerTag\",\"Get\",\"GetBoundingBoxSizePacket\",\"GetContext\",\"GetEnvironment\",\"GetFileName\",\"GetFrontEndOptionsDataPacket\",\"GetLinebreakInformationPacket\",\"GetMenusPacket\",\"GetPageBreakInformationPacket\",\"Glaisher\",\"GlobalClusteringCoefficient\",\"GlobalPreferences\",\"GlobalSession\",\"Glow\",\"GoldenAngle\",\"GoldenRatio\",\"GompertzMakehamDistribution\",\"GoochShading\",\"GoodmanKruskalGamma\",\"GoodmanKruskalGammaTest\",\"Goto\",\"Grad\",\"Gradient\",\"GradientFilter\",\"GradientOrientationFilter\",\"GrammarApply\",\"GrammarRules\",\"GrammarToken\",\"Graph\",\"Graph3D\",\"GraphAssortativity\",\"GraphAutomorphismGroup\",\"GraphCenter\",\"GraphComplement\",\"GraphData\",\"GraphDensity\",\"GraphDiameter\",\"GraphDifference\",\"GraphDisjointUnion\",\"GraphDistance\",\"GraphDistanceMatrix\",\"GraphElementData\",\"GraphEmbedding\",\"GraphHighlight\",\"GraphHighlightStyle\",\"GraphHub\",\"Graphics\",\"Graphics3D\",\"Graphics3DBox\",\"Graphics3DBoxOptions\",\"GraphicsArray\",\"GraphicsBaseline\",\"GraphicsBox\",\"GraphicsBoxOptions\",\"GraphicsColor\",\"GraphicsColumn\",\"GraphicsComplex\",\"GraphicsComplex3DBox\",\"GraphicsComplex3DBoxOptions\",\"GraphicsComplexBox\",\"GraphicsComplexBoxOptions\",\"GraphicsContents\",\"GraphicsData\",\"GraphicsGrid\",\"GraphicsGridBox\",\"GraphicsGroup\",\"GraphicsGroup3DBox\",\"GraphicsGroup3DBoxOptions\",\"GraphicsGroupBox\",\"GraphicsGroupBoxOptions\",\"GraphicsGrouping\",\"GraphicsHighlightColor\",\"GraphicsRow\",\"GraphicsSpacing\",\"GraphicsStyle\",\"GraphIntersection\",\"GraphLayout\",\"GraphLinkEfficiency\",\"GraphPeriphery\",\"GraphPlot\",\"GraphPlot3D\",\"GraphPower\",\"GraphPropertyDistribution\",\"GraphQ\",\"GraphRadius\",\"GraphReciprocity\",\"GraphRoot\",\"GraphStyle\",\"GraphUnion\",\"Gray\",\"GrayLevel\",\"Greater\",\"GreaterEqual\",\"GreaterEqualLess\",\"GreaterEqualThan\",\"GreaterFullEqual\",\"GreaterGreater\",\"GreaterLess\",\"GreaterSlantEqual\",\"GreaterThan\",\"GreaterTilde\",\"Green\",\"GreenFunction\",\"Grid\",\"GridBaseline\",\"GridBox\",\"GridBoxAlignment\",\"GridBoxBackground\",\"GridBoxDividers\",\"GridBoxFrame\",\"GridBoxItemSize\",\"GridBoxItemStyle\",\"GridBoxOptions\",\"GridBoxSpacings\",\"GridCreationSettings\",\"GridDefaultElement\",\"GridElementStyleOptions\",\"GridFrame\",\"GridFrameMargins\",\"GridGraph\",\"GridLines\",\"GridLinesStyle\",\"GroebnerBasis\",\"GroupActionBase\",\"GroupBy\",\"GroupCentralizer\",\"GroupElementFromWord\",\"GroupElementPosition\",\"GroupElementQ\",\"GroupElements\",\"GroupElementToWord\",\"GroupGenerators\",\"Groupings\",\"GroupMultiplicationTable\",\"GroupOrbits\",\"GroupOrder\",\"GroupPageBreakWithin\",\"GroupSetwiseStabilizer\",\"GroupStabilizer\",\"GroupStabilizerChain\",\"GroupTogetherGrouping\",\"GroupTogetherNestedGrouping\",\"GrowCutComponents\",\"Gudermannian\",\"GuidedFilter\",\"GumbelDistribution\",\"HaarWavelet\",\"HadamardMatrix\",\"HalfLine\",\"HalfNormalDistribution\",\"HalfPlane\",\"HalfSpace\",\"HalftoneShading\",\"HamiltonianGraphQ\",\"HammingDistance\",\"HammingWindow\",\"HandlerFunctions\",\"HandlerFunctionsKeys\",\"HankelH1\",\"HankelH2\",\"HankelMatrix\",\"HankelTransform\",\"HannPoissonWindow\",\"HannWindow\",\"HaradaNortonGroupHN\",\"HararyGraph\",\"HarmonicMean\",\"HarmonicMeanFilter\",\"HarmonicNumber\",\"Hash\",\"HatchFilling\",\"HatchShading\",\"Haversine\",\"HazardFunction\",\"Head\",\"HeadCompose\",\"HeaderAlignment\",\"HeaderBackground\",\"HeaderDisplayFunction\",\"HeaderLines\",\"HeaderSize\",\"HeaderStyle\",\"Heads\",\"HeavisideLambda\",\"HeavisidePi\",\"HeavisideTheta\",\"HeldGroupHe\",\"HeldPart\",\"HelpBrowserLookup\",\"HelpBrowserNotebook\",\"HelpBrowserSettings\",\"Here\",\"HermiteDecomposition\",\"HermiteH\",\"HermitianMatrixQ\",\"HessenbergDecomposition\",\"Hessian\",\"HeunB\",\"HeunBPrime\",\"HeunC\",\"HeunCPrime\",\"HeunD\",\"HeunDPrime\",\"HeunG\",\"HeunGPrime\",\"HeunT\",\"HeunTPrime\",\"HexadecimalCharacter\",\"Hexahedron\",\"HexahedronBox\",\"HexahedronBoxOptions\",\"HiddenItems\",\"HiddenMarkovProcess\",\"HiddenSurface\",\"Highlighted\",\"HighlightGraph\",\"HighlightImage\",\"HighlightMesh\",\"HighpassFilter\",\"HigmanSimsGroupHS\",\"HilbertCurve\",\"HilbertFilter\",\"HilbertMatrix\",\"Histogram\",\"Histogram3D\",\"HistogramDistribution\",\"HistogramList\",\"HistogramTransform\",\"HistogramTransformInterpolation\",\"HistoricalPeriodData\",\"HitMissTransform\",\"HITSCentrality\",\"HjorthDistribution\",\"HodgeDual\",\"HoeffdingD\",\"HoeffdingDTest\",\"Hold\",\"HoldAll\",\"HoldAllComplete\",\"HoldComplete\",\"HoldFirst\",\"HoldForm\",\"HoldPattern\",\"HoldRest\",\"HolidayCalendar\",\"HomeDirectory\",\"HomePage\",\"Horizontal\",\"HorizontalForm\",\"HorizontalGauge\",\"HorizontalScrollPosition\",\"HornerForm\",\"HostLookup\",\"HotellingTSquareDistribution\",\"HoytDistribution\",\"HTMLSave\",\"HTTPErrorResponse\",\"HTTPRedirect\",\"HTTPRequest\",\"HTTPRequestData\",\"HTTPResponse\",\"Hue\",\"HumanGrowthData\",\"HumpDownHump\",\"HumpEqual\",\"HurwitzLerchPhi\",\"HurwitzZeta\",\"HyperbolicDistribution\",\"HypercubeGraph\",\"HyperexponentialDistribution\",\"Hyperfactorial\",\"Hypergeometric0F1\",\"Hypergeometric0F1Regularized\",\"Hypergeometric1F1\",\"Hypergeometric1F1Regularized\",\"Hypergeometric2F1\",\"Hypergeometric2F1Regularized\",\"HypergeometricDistribution\",\"HypergeometricPFQ\",\"HypergeometricPFQRegularized\",\"HypergeometricU\",\"Hyperlink\",\"HyperlinkAction\",\"HyperlinkCreationSettings\",\"Hyperplane\",\"Hyphenation\",\"HyphenationOptions\",\"HypoexponentialDistribution\",\"HypothesisTestData\",\"I\",\"IconData\",\"Iconize\",\"IconizedObject\",\"IconRules\",\"Icosahedron\",\"Identity\",\"IdentityMatrix\",\"If\",\"IgnoreCase\",\"IgnoreDiacritics\",\"IgnorePunctuation\",\"IgnoreSpellCheck\",\"IgnoringInactive\",\"Im\",\"Image\",\"Image3D\",\"Image3DProjection\",\"Image3DSlices\",\"ImageAccumulate\",\"ImageAdd\",\"ImageAdjust\",\"ImageAlign\",\"ImageApply\",\"ImageApplyIndexed\",\"ImageAspectRatio\",\"ImageAssemble\",\"ImageAugmentationLayer\",\"ImageBoundingBoxes\",\"ImageCache\",\"ImageCacheValid\",\"ImageCapture\",\"ImageCaptureFunction\",\"ImageCases\",\"ImageChannels\",\"ImageClip\",\"ImageCollage\",\"ImageColorSpace\",\"ImageCompose\",\"ImageContainsQ\",\"ImageContents\",\"ImageConvolve\",\"ImageCooccurrence\",\"ImageCorners\",\"ImageCorrelate\",\"ImageCorrespondingPoints\",\"ImageCrop\",\"ImageData\",\"ImageDeconvolve\",\"ImageDemosaic\",\"ImageDifference\",\"ImageDimensions\",\"ImageDisplacements\",\"ImageDistance\",\"ImageEffect\",\"ImageExposureCombine\",\"ImageFeatureTrack\",\"ImageFileApply\",\"ImageFileFilter\",\"ImageFileScan\",\"ImageFilter\",\"ImageFocusCombine\",\"ImageForestingComponents\",\"ImageFormattingWidth\",\"ImageForwardTransformation\",\"ImageGraphics\",\"ImageHistogram\",\"ImageIdentify\",\"ImageInstanceQ\",\"ImageKeypoints\",\"ImageLabels\",\"ImageLegends\",\"ImageLevels\",\"ImageLines\",\"ImageMargins\",\"ImageMarker\",\"ImageMarkers\",\"ImageMeasurements\",\"ImageMesh\",\"ImageMultiply\",\"ImageOffset\",\"ImagePad\",\"ImagePadding\",\"ImagePartition\",\"ImagePeriodogram\",\"ImagePerspectiveTransformation\",\"ImagePosition\",\"ImagePreviewFunction\",\"ImagePyramid\",\"ImagePyramidApply\",\"ImageQ\",\"ImageRangeCache\",\"ImageRecolor\",\"ImageReflect\",\"ImageRegion\",\"ImageResize\",\"ImageResolution\",\"ImageRestyle\",\"ImageRotate\",\"ImageRotated\",\"ImageSaliencyFilter\",\"ImageScaled\",\"ImageScan\",\"ImageSize\",\"ImageSizeAction\",\"ImageSizeCache\",\"ImageSizeMultipliers\",\"ImageSizeRaw\",\"ImageSubtract\",\"ImageTake\",\"ImageTransformation\",\"ImageTrim\",\"ImageType\",\"ImageValue\",\"ImageValuePositions\",\"ImagingDevice\",\"ImplicitRegion\",\"Implies\",\"Import\",\"ImportAutoReplacements\",\"ImportByteArray\",\"ImportOptions\",\"ImportString\",\"ImprovementImportance\",\"In\",\"Inactivate\",\"Inactive\",\"IncidenceGraph\",\"IncidenceList\",\"IncidenceMatrix\",\"IncludeAromaticBonds\",\"IncludeConstantBasis\",\"IncludeDefinitions\",\"IncludeDirectories\",\"IncludeFileExtension\",\"IncludeGeneratorTasks\",\"IncludeHydrogens\",\"IncludeInflections\",\"IncludeMetaInformation\",\"IncludePods\",\"IncludeQuantities\",\"IncludeRelatedTables\",\"IncludeSingularTerm\",\"IncludeWindowTimes\",\"Increment\",\"IndefiniteMatrixQ\",\"Indent\",\"IndentingNewlineSpacings\",\"IndentMaxFraction\",\"IndependenceTest\",\"IndependentEdgeSetQ\",\"IndependentPhysicalQuantity\",\"IndependentUnit\",\"IndependentUnitDimension\",\"IndependentVertexSetQ\",\"Indeterminate\",\"IndeterminateThreshold\",\"IndexCreationOptions\",\"Indexed\",\"IndexEdgeTaggedGraph\",\"IndexGraph\",\"IndexTag\",\"Inequality\",\"InexactNumberQ\",\"InexactNumbers\",\"InfiniteFuture\",\"InfiniteLine\",\"InfinitePast\",\"InfinitePlane\",\"Infinity\",\"Infix\",\"InflationAdjust\",\"InflationMethod\",\"Information\",\"InformationData\",\"InformationDataGrid\",\"Inherited\",\"InheritScope\",\"InhomogeneousPoissonProcess\",\"InitialEvaluationHistory\",\"Initialization\",\"InitializationCell\",\"InitializationCellEvaluation\",\"InitializationCellWarning\",\"InitializationObjects\",\"InitializationValue\",\"Initialize\",\"InitialSeeding\",\"InlineCounterAssignments\",\"InlineCounterIncrements\",\"InlineRules\",\"Inner\",\"InnerPolygon\",\"InnerPolyhedron\",\"Inpaint\",\"Input\",\"InputAliases\",\"InputAssumptions\",\"InputAutoReplacements\",\"InputField\",\"InputFieldBox\",\"InputFieldBoxOptions\",\"InputForm\",\"InputGrouping\",\"InputNamePacket\",\"InputNotebook\",\"InputPacket\",\"InputSettings\",\"InputStream\",\"InputString\",\"InputStringPacket\",\"InputToBoxFormPacket\",\"Insert\",\"InsertionFunction\",\"InsertionPointObject\",\"InsertLinebreaks\",\"InsertResults\",\"Inset\",\"Inset3DBox\",\"Inset3DBoxOptions\",\"InsetBox\",\"InsetBoxOptions\",\"Insphere\",\"Install\",\"InstallService\",\"InstanceNormalizationLayer\",\"InString\",\"Integer\",\"IntegerDigits\",\"IntegerExponent\",\"IntegerLength\",\"IntegerName\",\"IntegerPart\",\"IntegerPartitions\",\"IntegerQ\",\"IntegerReverse\",\"Integers\",\"IntegerString\",\"Integral\",\"Integrate\",\"Interactive\",\"InteractiveTradingChart\",\"Interlaced\",\"Interleaving\",\"InternallyBalancedDecomposition\",\"InterpolatingFunction\",\"InterpolatingPolynomial\",\"Interpolation\",\"InterpolationOrder\",\"InterpolationPoints\",\"InterpolationPrecision\",\"Interpretation\",\"InterpretationBox\",\"InterpretationBoxOptions\",\"InterpretationFunction\",\"Interpreter\",\"InterpretTemplate\",\"InterquartileRange\",\"Interrupt\",\"InterruptSettings\",\"IntersectedEntityClass\",\"IntersectingQ\",\"Intersection\",\"Interval\",\"IntervalIntersection\",\"IntervalMarkers\",\"IntervalMarkersStyle\",\"IntervalMemberQ\",\"IntervalSlider\",\"IntervalUnion\",\"Into\",\"Inverse\",\"InverseBetaRegularized\",\"InverseCDF\",\"InverseChiSquareDistribution\",\"InverseContinuousWaveletTransform\",\"InverseDistanceTransform\",\"InverseEllipticNomeQ\",\"InverseErf\",\"InverseErfc\",\"InverseFourier\",\"InverseFourierCosTransform\",\"InverseFourierSequenceTransform\",\"InverseFourierSinTransform\",\"InverseFourierTransform\",\"InverseFunction\",\"InverseFunctions\",\"InverseGammaDistribution\",\"InverseGammaRegularized\",\"InverseGaussianDistribution\",\"InverseGudermannian\",\"InverseHankelTransform\",\"InverseHaversine\",\"InverseImagePyramid\",\"InverseJacobiCD\",\"InverseJacobiCN\",\"InverseJacobiCS\",\"InverseJacobiDC\",\"InverseJacobiDN\",\"InverseJacobiDS\",\"InverseJacobiNC\",\"InverseJacobiND\",\"InverseJacobiNS\",\"InverseJacobiSC\",\"InverseJacobiSD\",\"InverseJacobiSN\",\"InverseLaplaceTransform\",\"InverseMellinTransform\",\"InversePermutation\",\"InverseRadon\",\"InverseRadonTransform\",\"InverseSeries\",\"InverseShortTimeFourier\",\"InverseSpectrogram\",\"InverseSurvivalFunction\",\"InverseTransformedRegion\",\"InverseWaveletTransform\",\"InverseWeierstrassP\",\"InverseWishartMatrixDistribution\",\"InverseZTransform\",\"Invisible\",\"InvisibleApplication\",\"InvisibleTimes\",\"IPAddress\",\"IrreduciblePolynomialQ\",\"IslandData\",\"IsolatingInterval\",\"IsomorphicGraphQ\",\"IsotopeData\",\"Italic\",\"Item\",\"ItemAspectRatio\",\"ItemBox\",\"ItemBoxOptions\",\"ItemDisplayFunction\",\"ItemSize\",\"ItemStyle\",\"ItoProcess\",\"JaccardDissimilarity\",\"JacobiAmplitude\",\"Jacobian\",\"JacobiCD\",\"JacobiCN\",\"JacobiCS\",\"JacobiDC\",\"JacobiDN\",\"JacobiDS\",\"JacobiNC\",\"JacobiND\",\"JacobiNS\",\"JacobiP\",\"JacobiSC\",\"JacobiSD\",\"JacobiSN\",\"JacobiSymbol\",\"JacobiZeta\",\"JankoGroupJ1\",\"JankoGroupJ2\",\"JankoGroupJ3\",\"JankoGroupJ4\",\"JarqueBeraALMTest\",\"JohnsonDistribution\",\"Join\",\"JoinAcross\",\"Joined\",\"JoinedCurve\",\"JoinedCurveBox\",\"JoinedCurveBoxOptions\",\"JoinForm\",\"JordanDecomposition\",\"JordanModelDecomposition\",\"JulianDate\",\"JuliaSetBoettcher\",\"JuliaSetIterationCount\",\"JuliaSetPlot\",\"JuliaSetPoints\",\"K\",\"KagiChart\",\"KaiserBesselWindow\",\"KaiserWindow\",\"KalmanEstimator\",\"KalmanFilter\",\"KarhunenLoeveDecomposition\",\"KaryTree\",\"KatzCentrality\",\"KCoreComponents\",\"KDistribution\",\"KEdgeConnectedComponents\",\"KEdgeConnectedGraphQ\",\"KeepExistingVersion\",\"KelvinBei\",\"KelvinBer\",\"KelvinKei\",\"KelvinKer\",\"KendallTau\",\"KendallTauTest\",\"KernelExecute\",\"KernelFunction\",\"KernelMixtureDistribution\",\"KernelObject\",\"Kernels\",\"Ket\",\"Key\",\"KeyCollisionFunction\",\"KeyComplement\",\"KeyDrop\",\"KeyDropFrom\",\"KeyExistsQ\",\"KeyFreeQ\",\"KeyIntersection\",\"KeyMap\",\"KeyMemberQ\",\"KeypointStrength\",\"Keys\",\"KeySelect\",\"KeySort\",\"KeySortBy\",\"KeyTake\",\"KeyUnion\",\"KeyValueMap\",\"KeyValuePattern\",\"Khinchin\",\"KillProcess\",\"KirchhoffGraph\",\"KirchhoffMatrix\",\"KleinInvariantJ\",\"KnapsackSolve\",\"KnightTourGraph\",\"KnotData\",\"KnownUnitQ\",\"KochCurve\",\"KolmogorovSmirnovTest\",\"KroneckerDelta\",\"KroneckerModelDecomposition\",\"KroneckerProduct\",\"KroneckerSymbol\",\"KuiperTest\",\"KumaraswamyDistribution\",\"Kurtosis\",\"KuwaharaFilter\",\"KVertexConnectedComponents\",\"KVertexConnectedGraphQ\",\"LABColor\",\"Label\",\"Labeled\",\"LabeledSlider\",\"LabelingFunction\",\"LabelingSize\",\"LabelStyle\",\"LabelVisibility\",\"LaguerreL\",\"LakeData\",\"LambdaComponents\",\"LambertW\",\"LaminaData\",\"LanczosWindow\",\"LandauDistribution\",\"Language\",\"LanguageCategory\",\"LanguageData\",\"LanguageIdentify\",\"LanguageOptions\",\"LaplaceDistribution\",\"LaplaceTransform\",\"Laplacian\",\"LaplacianFilter\",\"LaplacianGaussianFilter\",\"Large\",\"Larger\",\"Last\",\"Latitude\",\"LatitudeLongitude\",\"LatticeData\",\"LatticeReduce\",\"Launch\",\"LaunchKernels\",\"LayeredGraphPlot\",\"LayerSizeFunction\",\"LayoutInformation\",\"LCHColor\",\"LCM\",\"LeaderSize\",\"LeafCount\",\"LeapYearQ\",\"LearnDistribution\",\"LearnedDistribution\",\"LearningRate\",\"LearningRateMultipliers\",\"LeastSquares\",\"LeastSquaresFilterKernel\",\"Left\",\"LeftArrow\",\"LeftArrowBar\",\"LeftArrowRightArrow\",\"LeftDownTeeVector\",\"LeftDownVector\",\"LeftDownVectorBar\",\"LeftRightArrow\",\"LeftRightVector\",\"LeftTee\",\"LeftTeeArrow\",\"LeftTeeVector\",\"LeftTriangle\",\"LeftTriangleBar\",\"LeftTriangleEqual\",\"LeftUpDownVector\",\"LeftUpTeeVector\",\"LeftUpVector\",\"LeftUpVectorBar\",\"LeftVector\",\"LeftVectorBar\",\"LegendAppearance\",\"Legended\",\"LegendFunction\",\"LegendLabel\",\"LegendLayout\",\"LegendMargins\",\"LegendMarkers\",\"LegendMarkerSize\",\"LegendreP\",\"LegendreQ\",\"LegendreType\",\"Length\",\"LengthWhile\",\"LerchPhi\",\"Less\",\"LessEqual\",\"LessEqualGreater\",\"LessEqualThan\",\"LessFullEqual\",\"LessGreater\",\"LessLess\",\"LessSlantEqual\",\"LessThan\",\"LessTilde\",\"LetterCharacter\",\"LetterCounts\",\"LetterNumber\",\"LetterQ\",\"Level\",\"LeveneTest\",\"LeviCivitaTensor\",\"LevyDistribution\",\"Lexicographic\",\"LibraryDataType\",\"LibraryFunction\",\"LibraryFunctionError\",\"LibraryFunctionInformation\",\"LibraryFunctionLoad\",\"LibraryFunctionUnload\",\"LibraryLoad\",\"LibraryUnload\",\"LicenseID\",\"LiftingFilterData\",\"LiftingWaveletTransform\",\"LightBlue\",\"LightBrown\",\"LightCyan\",\"Lighter\",\"LightGray\",\"LightGreen\",\"Lighting\",\"LightingAngle\",\"LightMagenta\",\"LightOrange\",\"LightPink\",\"LightPurple\",\"LightRed\",\"LightSources\",\"LightYellow\",\"Likelihood\",\"Limit\",\"LimitsPositioning\",\"LimitsPositioningTokens\",\"LindleyDistribution\",\"Line\",\"Line3DBox\",\"Line3DBoxOptions\",\"LinearFilter\",\"LinearFractionalOptimization\",\"LinearFractionalTransform\",\"LinearGradientImage\",\"LinearizingTransformationData\",\"LinearLayer\",\"LinearModelFit\",\"LinearOffsetFunction\",\"LinearOptimization\",\"LinearProgramming\",\"LinearRecurrence\",\"LinearSolve\",\"LinearSolveFunction\",\"LineBox\",\"LineBoxOptions\",\"LineBreak\",\"LinebreakAdjustments\",\"LineBreakChart\",\"LinebreakSemicolonWeighting\",\"LineBreakWithin\",\"LineColor\",\"LineGraph\",\"LineIndent\",\"LineIndentMaxFraction\",\"LineIntegralConvolutionPlot\",\"LineIntegralConvolutionScale\",\"LineLegend\",\"LineOpacity\",\"LineSpacing\",\"LineWrapParts\",\"LinkActivate\",\"LinkClose\",\"LinkConnect\",\"LinkConnectedQ\",\"LinkCreate\",\"LinkError\",\"LinkFlush\",\"LinkFunction\",\"LinkHost\",\"LinkInterrupt\",\"LinkLaunch\",\"LinkMode\",\"LinkObject\",\"LinkOpen\",\"LinkOptions\",\"LinkPatterns\",\"LinkProtocol\",\"LinkRankCentrality\",\"LinkRead\",\"LinkReadHeld\",\"LinkReadyQ\",\"Links\",\"LinkService\",\"LinkWrite\",\"LinkWriteHeld\",\"LiouvilleLambda\",\"List\",\"Listable\",\"ListAnimate\",\"ListContourPlot\",\"ListContourPlot3D\",\"ListConvolve\",\"ListCorrelate\",\"ListCurvePathPlot\",\"ListDeconvolve\",\"ListDensityPlot\",\"ListDensityPlot3D\",\"Listen\",\"ListFormat\",\"ListFourierSequenceTransform\",\"ListInterpolation\",\"ListLineIntegralConvolutionPlot\",\"ListLinePlot\",\"ListLogLinearPlot\",\"ListLogLogPlot\",\"ListLogPlot\",\"ListPicker\",\"ListPickerBox\",\"ListPickerBoxBackground\",\"ListPickerBoxOptions\",\"ListPlay\",\"ListPlot\",\"ListPlot3D\",\"ListPointPlot3D\",\"ListPolarPlot\",\"ListQ\",\"ListSliceContourPlot3D\",\"ListSliceDensityPlot3D\",\"ListSliceVectorPlot3D\",\"ListStepPlot\",\"ListStreamDensityPlot\",\"ListStreamPlot\",\"ListSurfacePlot3D\",\"ListVectorDensityPlot\",\"ListVectorPlot\",\"ListVectorPlot3D\",\"ListZTransform\",\"Literal\",\"LiteralSearch\",\"LocalAdaptiveBinarize\",\"LocalCache\",\"LocalClusteringCoefficient\",\"LocalizeDefinitions\",\"LocalizeVariables\",\"LocalObject\",\"LocalObjects\",\"LocalResponseNormalizationLayer\",\"LocalSubmit\",\"LocalSymbol\",\"LocalTime\",\"LocalTimeZone\",\"LocationEquivalenceTest\",\"LocationTest\",\"Locator\",\"LocatorAutoCreate\",\"LocatorBox\",\"LocatorBoxOptions\",\"LocatorCentering\",\"LocatorPane\",\"LocatorPaneBox\",\"LocatorPaneBoxOptions\",\"LocatorRegion\",\"Locked\",\"Log\",\"Log10\",\"Log2\",\"LogBarnesG\",\"LogGamma\",\"LogGammaDistribution\",\"LogicalExpand\",\"LogIntegral\",\"LogisticDistribution\",\"LogisticSigmoid\",\"LogitModelFit\",\"LogLikelihood\",\"LogLinearPlot\",\"LogLogisticDistribution\",\"LogLogPlot\",\"LogMultinormalDistribution\",\"LogNormalDistribution\",\"LogPlot\",\"LogRankTest\",\"LogSeriesDistribution\",\"LongEqual\",\"Longest\",\"LongestCommonSequence\",\"LongestCommonSequencePositions\",\"LongestCommonSubsequence\",\"LongestCommonSubsequencePositions\",\"LongestMatch\",\"LongestOrderedSequence\",\"LongForm\",\"Longitude\",\"LongLeftArrow\",\"LongLeftRightArrow\",\"LongRightArrow\",\"LongShortTermMemoryLayer\",\"Lookup\",\"Loopback\",\"LoopFreeGraphQ\",\"Looping\",\"LossFunction\",\"LowerCaseQ\",\"LowerLeftArrow\",\"LowerRightArrow\",\"LowerTriangularize\",\"LowerTriangularMatrixQ\",\"LowpassFilter\",\"LQEstimatorGains\",\"LQGRegulator\",\"LQOutputRegulatorGains\",\"LQRegulatorGains\",\"LUBackSubstitution\",\"LucasL\",\"LuccioSamiComponents\",\"LUDecomposition\",\"LunarEclipse\",\"LUVColor\",\"LyapunovSolve\",\"LyonsGroupLy\",\"MachineID\",\"MachineName\",\"MachineNumberQ\",\"MachinePrecision\",\"MacintoshSystemPageSetup\",\"Magenta\",\"Magnification\",\"Magnify\",\"MailAddressValidation\",\"MailExecute\",\"MailFolder\",\"MailItem\",\"MailReceiverFunction\",\"MailResponseFunction\",\"MailSearch\",\"MailServerConnect\",\"MailServerConnection\",\"MailSettings\",\"MainSolve\",\"MaintainDynamicCaches\",\"Majority\",\"MakeBoxes\",\"MakeExpression\",\"MakeRules\",\"ManagedLibraryExpressionID\",\"ManagedLibraryExpressionQ\",\"MandelbrotSetBoettcher\",\"MandelbrotSetDistance\",\"MandelbrotSetIterationCount\",\"MandelbrotSetMemberQ\",\"MandelbrotSetPlot\",\"MangoldtLambda\",\"ManhattanDistance\",\"Manipulate\",\"Manipulator\",\"MannedSpaceMissionData\",\"MannWhitneyTest\",\"MantissaExponent\",\"Manual\",\"Map\",\"MapAll\",\"MapAt\",\"MapIndexed\",\"MAProcess\",\"MapThread\",\"MarchenkoPasturDistribution\",\"MarcumQ\",\"MardiaCombinedTest\",\"MardiaKurtosisTest\",\"MardiaSkewnessTest\",\"MarginalDistribution\",\"MarkovProcessProperties\",\"Masking\",\"MatchingDissimilarity\",\"MatchLocalNameQ\",\"MatchLocalNames\",\"MatchQ\",\"Material\",\"MathematicalFunctionData\",\"MathematicaNotation\",\"MathieuC\",\"MathieuCharacteristicA\",\"MathieuCharacteristicB\",\"MathieuCharacteristicExponent\",\"MathieuCPrime\",\"MathieuGroupM11\",\"MathieuGroupM12\",\"MathieuGroupM22\",\"MathieuGroupM23\",\"MathieuGroupM24\",\"MathieuS\",\"MathieuSPrime\",\"MathMLForm\",\"MathMLText\",\"Matrices\",\"MatrixExp\",\"MatrixForm\",\"MatrixFunction\",\"MatrixLog\",\"MatrixNormalDistribution\",\"MatrixPlot\",\"MatrixPower\",\"MatrixPropertyDistribution\",\"MatrixQ\",\"MatrixRank\",\"MatrixTDistribution\",\"Max\",\"MaxBend\",\"MaxCellMeasure\",\"MaxColorDistance\",\"MaxDate\",\"MaxDetect\",\"MaxDuration\",\"MaxExtraBandwidths\",\"MaxExtraConditions\",\"MaxFeatureDisplacement\",\"MaxFeatures\",\"MaxFilter\",\"MaximalBy\",\"Maximize\",\"MaxItems\",\"MaxIterations\",\"MaxLimit\",\"MaxMemoryUsed\",\"MaxMixtureKernels\",\"MaxOverlapFraction\",\"MaxPlotPoints\",\"MaxPoints\",\"MaxRecursion\",\"MaxStableDistribution\",\"MaxStepFraction\",\"MaxSteps\",\"MaxStepSize\",\"MaxTrainingRounds\",\"MaxValue\",\"MaxwellDistribution\",\"MaxWordGap\",\"McLaughlinGroupMcL\",\"Mean\",\"MeanAbsoluteLossLayer\",\"MeanAround\",\"MeanClusteringCoefficient\",\"MeanDegreeConnectivity\",\"MeanDeviation\",\"MeanFilter\",\"MeanGraphDistance\",\"MeanNeighborDegree\",\"MeanShift\",\"MeanShiftFilter\",\"MeanSquaredLossLayer\",\"Median\",\"MedianDeviation\",\"MedianFilter\",\"MedicalTestData\",\"Medium\",\"MeijerG\",\"MeijerGReduce\",\"MeixnerDistribution\",\"MellinConvolve\",\"MellinTransform\",\"MemberQ\",\"MemoryAvailable\",\"MemoryConstrained\",\"MemoryConstraint\",\"MemoryInUse\",\"MengerMesh\",\"Menu\",\"MenuAppearance\",\"MenuCommandKey\",\"MenuEvaluator\",\"MenuItem\",\"MenuList\",\"MenuPacket\",\"MenuSortingValue\",\"MenuStyle\",\"MenuView\",\"Merge\",\"MergeDifferences\",\"MergingFunction\",\"MersennePrimeExponent\",\"MersennePrimeExponentQ\",\"Mesh\",\"MeshCellCentroid\",\"MeshCellCount\",\"MeshCellHighlight\",\"MeshCellIndex\",\"MeshCellLabel\",\"MeshCellMarker\",\"MeshCellMeasure\",\"MeshCellQuality\",\"MeshCells\",\"MeshCellShapeFunction\",\"MeshCellStyle\",\"MeshConnectivityGraph\",\"MeshCoordinates\",\"MeshFunctions\",\"MeshPrimitives\",\"MeshQualityGoal\",\"MeshRange\",\"MeshRefinementFunction\",\"MeshRegion\",\"MeshRegionQ\",\"MeshShading\",\"MeshStyle\",\"Message\",\"MessageDialog\",\"MessageList\",\"MessageName\",\"MessageObject\",\"MessageOptions\",\"MessagePacket\",\"Messages\",\"MessagesNotebook\",\"MetaCharacters\",\"MetaInformation\",\"MeteorShowerData\",\"Method\",\"MethodOptions\",\"MexicanHatWavelet\",\"MeyerWavelet\",\"Midpoint\",\"Min\",\"MinColorDistance\",\"MinDate\",\"MinDetect\",\"MineralData\",\"MinFilter\",\"MinimalBy\",\"MinimalPolynomial\",\"MinimalStateSpaceModel\",\"Minimize\",\"MinimumTimeIncrement\",\"MinIntervalSize\",\"MinkowskiQuestionMark\",\"MinLimit\",\"MinMax\",\"MinorPlanetData\",\"Minors\",\"MinRecursion\",\"MinSize\",\"MinStableDistribution\",\"Minus\",\"MinusPlus\",\"MinValue\",\"Missing\",\"MissingBehavior\",\"MissingDataMethod\",\"MissingDataRules\",\"MissingQ\",\"MissingString\",\"MissingStyle\",\"MissingValuePattern\",\"MittagLefflerE\",\"MixedFractionParts\",\"MixedGraphQ\",\"MixedMagnitude\",\"MixedRadix\",\"MixedRadixQuantity\",\"MixedUnit\",\"MixtureDistribution\",\"Mod\",\"Modal\",\"Mode\",\"Modular\",\"ModularInverse\",\"ModularLambda\",\"Module\",\"Modulus\",\"MoebiusMu\",\"Molecule\",\"MoleculeContainsQ\",\"MoleculeEquivalentQ\",\"MoleculeGraph\",\"MoleculeModify\",\"MoleculePattern\",\"MoleculePlot\",\"MoleculePlot3D\",\"MoleculeProperty\",\"MoleculeQ\",\"MoleculeRecognize\",\"MoleculeValue\",\"Moment\",\"Momentary\",\"MomentConvert\",\"MomentEvaluate\",\"MomentGeneratingFunction\",\"MomentOfInertia\",\"Monday\",\"Monitor\",\"MonomialList\",\"MonomialOrder\",\"MonsterGroupM\",\"MoonPhase\",\"MoonPosition\",\"MorletWavelet\",\"MorphologicalBinarize\",\"MorphologicalBranchPoints\",\"MorphologicalComponents\",\"MorphologicalEulerNumber\",\"MorphologicalGraph\",\"MorphologicalPerimeter\",\"MorphologicalTransform\",\"MortalityData\",\"Most\",\"MountainData\",\"MouseAnnotation\",\"MouseAppearance\",\"MouseAppearanceTag\",\"MouseButtons\",\"Mouseover\",\"MousePointerNote\",\"MousePosition\",\"MovieData\",\"MovingAverage\",\"MovingMap\",\"MovingMedian\",\"MoyalDistribution\",\"Multicolumn\",\"MultiedgeStyle\",\"MultigraphQ\",\"MultilaunchWarning\",\"MultiLetterItalics\",\"MultiLetterStyle\",\"MultilineFunction\",\"Multinomial\",\"MultinomialDistribution\",\"MultinormalDistribution\",\"MultiplicativeOrder\",\"Multiplicity\",\"MultiplySides\",\"Multiselection\",\"MultivariateHypergeometricDistribution\",\"MultivariatePoissonDistribution\",\"MultivariateTDistribution\",\"N\",\"NakagamiDistribution\",\"NameQ\",\"Names\",\"NamespaceBox\",\"NamespaceBoxOptions\",\"Nand\",\"NArgMax\",\"NArgMin\",\"NBernoulliB\",\"NBodySimulation\",\"NBodySimulationData\",\"NCache\",\"NDEigensystem\",\"NDEigenvalues\",\"NDSolve\",\"NDSolveValue\",\"Nearest\",\"NearestFunction\",\"NearestMeshCells\",\"NearestNeighborGraph\",\"NearestTo\",\"NebulaData\",\"NeedCurrentFrontEndPackagePacket\",\"NeedCurrentFrontEndSymbolsPacket\",\"NeedlemanWunschSimilarity\",\"Needs\",\"Negative\",\"NegativeBinomialDistribution\",\"NegativeDefiniteMatrixQ\",\"NegativeIntegers\",\"NegativeMultinomialDistribution\",\"NegativeRationals\",\"NegativeReals\",\"NegativeSemidefiniteMatrixQ\",\"NeighborhoodData\",\"NeighborhoodGraph\",\"Nest\",\"NestedGreaterGreater\",\"NestedLessLess\",\"NestedScriptRules\",\"NestGraph\",\"NestList\",\"NestWhile\",\"NestWhileList\",\"NetAppend\",\"NetBidirectionalOperator\",\"NetChain\",\"NetDecoder\",\"NetDelete\",\"NetDrop\",\"NetEncoder\",\"NetEvaluationMode\",\"NetExtract\",\"NetFlatten\",\"NetFoldOperator\",\"NetGANOperator\",\"NetGraph\",\"NetInformation\",\"NetInitialize\",\"NetInsert\",\"NetInsertSharedArrays\",\"NetJoin\",\"NetMapOperator\",\"NetMapThreadOperator\",\"NetMeasurements\",\"NetModel\",\"NetNestOperator\",\"NetPairEmbeddingOperator\",\"NetPort\",\"NetPortGradient\",\"NetPrepend\",\"NetRename\",\"NetReplace\",\"NetReplacePart\",\"NetSharedArray\",\"NetStateObject\",\"NetTake\",\"NetTrain\",\"NetTrainResultsObject\",\"NetworkPacketCapture\",\"NetworkPacketRecording\",\"NetworkPacketRecordingDuring\",\"NetworkPacketTrace\",\"NeumannValue\",\"NevilleThetaC\",\"NevilleThetaD\",\"NevilleThetaN\",\"NevilleThetaS\",\"NewPrimitiveStyle\",\"NExpectation\",\"Next\",\"NextCell\",\"NextDate\",\"NextPrime\",\"NextScheduledTaskTime\",\"NHoldAll\",\"NHoldFirst\",\"NHoldRest\",\"NicholsGridLines\",\"NicholsPlot\",\"NightHemisphere\",\"NIntegrate\",\"NMaximize\",\"NMaxValue\",\"NMinimize\",\"NMinValue\",\"NominalVariables\",\"NonAssociative\",\"NoncentralBetaDistribution\",\"NoncentralChiSquareDistribution\",\"NoncentralFRatioDistribution\",\"NoncentralStudentTDistribution\",\"NonCommutativeMultiply\",\"NonConstants\",\"NondimensionalizationTransform\",\"None\",\"NoneTrue\",\"NonlinearModelFit\",\"NonlinearStateSpaceModel\",\"NonlocalMeansFilter\",\"NonNegative\",\"NonNegativeIntegers\",\"NonNegativeRationals\",\"NonNegativeReals\",\"NonPositive\",\"NonPositiveIntegers\",\"NonPositiveRationals\",\"NonPositiveReals\",\"Nor\",\"NorlundB\",\"Norm\",\"Normal\",\"NormalDistribution\",\"NormalGrouping\",\"NormalizationLayer\",\"Normalize\",\"Normalized\",\"NormalizedSquaredEuclideanDistance\",\"NormalMatrixQ\",\"NormalsFunction\",\"NormFunction\",\"Not\",\"NotCongruent\",\"NotCupCap\",\"NotDoubleVerticalBar\",\"Notebook\",\"NotebookApply\",\"NotebookAutoSave\",\"NotebookClose\",\"NotebookConvertSettings\",\"NotebookCreate\",\"NotebookCreateReturnObject\",\"NotebookDefault\",\"NotebookDelete\",\"NotebookDirectory\",\"NotebookDynamicExpression\",\"NotebookEvaluate\",\"NotebookEventActions\",\"NotebookFileName\",\"NotebookFind\",\"NotebookFindReturnObject\",\"NotebookGet\",\"NotebookGetLayoutInformationPacket\",\"NotebookGetMisspellingsPacket\",\"NotebookImport\",\"NotebookInformation\",\"NotebookInterfaceObject\",\"NotebookLocate\",\"NotebookObject\",\"NotebookOpen\",\"NotebookOpenReturnObject\",\"NotebookPath\",\"NotebookPrint\",\"NotebookPut\",\"NotebookPutReturnObject\",\"NotebookRead\",\"NotebookResetGeneratedCells\",\"Notebooks\",\"NotebookSave\",\"NotebookSaveAs\",\"NotebookSelection\",\"NotebookSetupLayoutInformationPacket\",\"NotebooksMenu\",\"NotebookTemplate\",\"NotebookWrite\",\"NotElement\",\"NotEqualTilde\",\"NotExists\",\"NotGreater\",\"NotGreaterEqual\",\"NotGreaterFullEqual\",\"NotGreaterGreater\",\"NotGreaterLess\",\"NotGreaterSlantEqual\",\"NotGreaterTilde\",\"Nothing\",\"NotHumpDownHump\",\"NotHumpEqual\",\"NotificationFunction\",\"NotLeftTriangle\",\"NotLeftTriangleBar\",\"NotLeftTriangleEqual\",\"NotLess\",\"NotLessEqual\",\"NotLessFullEqual\",\"NotLessGreater\",\"NotLessLess\",\"NotLessSlantEqual\",\"NotLessTilde\",\"NotNestedGreaterGreater\",\"NotNestedLessLess\",\"NotPrecedes\",\"NotPrecedesEqual\",\"NotPrecedesSlantEqual\",\"NotPrecedesTilde\",\"NotReverseElement\",\"NotRightTriangle\",\"NotRightTriangleBar\",\"NotRightTriangleEqual\",\"NotSquareSubset\",\"NotSquareSubsetEqual\",\"NotSquareSuperset\",\"NotSquareSupersetEqual\",\"NotSubset\",\"NotSubsetEqual\",\"NotSucceeds\",\"NotSucceedsEqual\",\"NotSucceedsSlantEqual\",\"NotSucceedsTilde\",\"NotSuperset\",\"NotSupersetEqual\",\"NotTilde\",\"NotTildeEqual\",\"NotTildeFullEqual\",\"NotTildeTilde\",\"NotVerticalBar\",\"Now\",\"NoWhitespace\",\"NProbability\",\"NProduct\",\"NProductFactors\",\"NRoots\",\"NSolve\",\"NSum\",\"NSumTerms\",\"NuclearExplosionData\",\"NuclearReactorData\",\"Null\",\"NullRecords\",\"NullSpace\",\"NullWords\",\"Number\",\"NumberCompose\",\"NumberDecompose\",\"NumberExpand\",\"NumberFieldClassNumber\",\"NumberFieldDiscriminant\",\"NumberFieldFundamentalUnits\",\"NumberFieldIntegralBasis\",\"NumberFieldNormRepresentatives\",\"NumberFieldRegulator\",\"NumberFieldRootsOfUnity\",\"NumberFieldSignature\",\"NumberForm\",\"NumberFormat\",\"NumberLinePlot\",\"NumberMarks\",\"NumberMultiplier\",\"NumberPadding\",\"NumberPoint\",\"NumberQ\",\"NumberSeparator\",\"NumberSigns\",\"NumberString\",\"Numerator\",\"NumeratorDenominator\",\"NumericalOrder\",\"NumericalSort\",\"NumericArray\",\"NumericArrayQ\",\"NumericArrayType\",\"NumericFunction\",\"NumericQ\",\"NuttallWindow\",\"NValues\",\"NyquistGridLines\",\"NyquistPlot\",\"O\",\"ObservabilityGramian\",\"ObservabilityMatrix\",\"ObservableDecomposition\",\"ObservableModelQ\",\"OceanData\",\"Octahedron\",\"OddQ\",\"Off\",\"Offset\",\"OLEData\",\"On\",\"ONanGroupON\",\"Once\",\"OneIdentity\",\"Opacity\",\"OpacityFunction\",\"OpacityFunctionScaling\",\"Open\",\"OpenAppend\",\"Opener\",\"OpenerBox\",\"OpenerBoxOptions\",\"OpenerView\",\"OpenFunctionInspectorPacket\",\"Opening\",\"OpenRead\",\"OpenSpecialOptions\",\"OpenTemporary\",\"OpenWrite\",\"Operate\",\"OperatingSystem\",\"OperatorApplied\",\"OptimumFlowData\",\"Optional\",\"OptionalElement\",\"OptionInspectorSettings\",\"OptionQ\",\"Options\",\"OptionsPacket\",\"OptionsPattern\",\"OptionValue\",\"OptionValueBox\",\"OptionValueBoxOptions\",\"Or\",\"Orange\",\"Order\",\"OrderDistribution\",\"OrderedQ\",\"Ordering\",\"OrderingBy\",\"OrderingLayer\",\"Orderless\",\"OrderlessPatternSequence\",\"OrnsteinUhlenbeckProcess\",\"Orthogonalize\",\"OrthogonalMatrixQ\",\"Out\",\"Outer\",\"OuterPolygon\",\"OuterPolyhedron\",\"OutputAutoOverwrite\",\"OutputControllabilityMatrix\",\"OutputControllableModelQ\",\"OutputForm\",\"OutputFormData\",\"OutputGrouping\",\"OutputMathEditExpression\",\"OutputNamePacket\",\"OutputResponse\",\"OutputSizeLimit\",\"OutputStream\",\"Over\",\"OverBar\",\"OverDot\",\"Overflow\",\"OverHat\",\"Overlaps\",\"Overlay\",\"OverlayBox\",\"OverlayBoxOptions\",\"Overscript\",\"OverscriptBox\",\"OverscriptBoxOptions\",\"OverTilde\",\"OverVector\",\"OverwriteTarget\",\"OwenT\",\"OwnValues\",\"Package\",\"PackingMethod\",\"PackPaclet\",\"PacletDataRebuild\",\"PacletDirectoryAdd\",\"PacletDirectoryLoad\",\"PacletDirectoryRemove\",\"PacletDirectoryUnload\",\"PacletDisable\",\"PacletEnable\",\"PacletFind\",\"PacletFindRemote\",\"PacletInformation\",\"PacletInstall\",\"PacletInstallSubmit\",\"PacletNewerQ\",\"PacletObject\",\"PacletObjectQ\",\"PacletSite\",\"PacletSiteObject\",\"PacletSiteRegister\",\"PacletSites\",\"PacletSiteUnregister\",\"PacletSiteUpdate\",\"PacletUninstall\",\"PacletUpdate\",\"PaddedForm\",\"Padding\",\"PaddingLayer\",\"PaddingSize\",\"PadeApproximant\",\"PadLeft\",\"PadRight\",\"PageBreakAbove\",\"PageBreakBelow\",\"PageBreakWithin\",\"PageFooterLines\",\"PageFooters\",\"PageHeaderLines\",\"PageHeaders\",\"PageHeight\",\"PageRankCentrality\",\"PageTheme\",\"PageWidth\",\"Pagination\",\"PairedBarChart\",\"PairedHistogram\",\"PairedSmoothHistogram\",\"PairedTTest\",\"PairedZTest\",\"PaletteNotebook\",\"PalettePath\",\"PalindromeQ\",\"Pane\",\"PaneBox\",\"PaneBoxOptions\",\"Panel\",\"PanelBox\",\"PanelBoxOptions\",\"Paneled\",\"PaneSelector\",\"PaneSelectorBox\",\"PaneSelectorBoxOptions\",\"PaperWidth\",\"ParabolicCylinderD\",\"ParagraphIndent\",\"ParagraphSpacing\",\"ParallelArray\",\"ParallelCombine\",\"ParallelDo\",\"Parallelepiped\",\"ParallelEvaluate\",\"Parallelization\",\"Parallelize\",\"ParallelMap\",\"ParallelNeeds\",\"Parallelogram\",\"ParallelProduct\",\"ParallelSubmit\",\"ParallelSum\",\"ParallelTable\",\"ParallelTry\",\"Parameter\",\"ParameterEstimator\",\"ParameterMixtureDistribution\",\"ParameterVariables\",\"ParametricFunction\",\"ParametricNDSolve\",\"ParametricNDSolveValue\",\"ParametricPlot\",\"ParametricPlot3D\",\"ParametricRampLayer\",\"ParametricRegion\",\"ParentBox\",\"ParentCell\",\"ParentConnect\",\"ParentDirectory\",\"ParentForm\",\"Parenthesize\",\"ParentList\",\"ParentNotebook\",\"ParetoDistribution\",\"ParetoPickandsDistribution\",\"ParkData\",\"Part\",\"PartBehavior\",\"PartialCorrelationFunction\",\"PartialD\",\"ParticleAcceleratorData\",\"ParticleData\",\"Partition\",\"PartitionGranularity\",\"PartitionsP\",\"PartitionsQ\",\"PartLayer\",\"PartOfSpeech\",\"PartProtection\",\"ParzenWindow\",\"PascalDistribution\",\"PassEventsDown\",\"PassEventsUp\",\"Paste\",\"PasteAutoQuoteCharacters\",\"PasteBoxFormInlineCells\",\"PasteButton\",\"Path\",\"PathGraph\",\"PathGraphQ\",\"Pattern\",\"PatternFilling\",\"PatternSequence\",\"PatternTest\",\"PauliMatrix\",\"PaulWavelet\",\"Pause\",\"PausedTime\",\"PDF\",\"PeakDetect\",\"PeanoCurve\",\"PearsonChiSquareTest\",\"PearsonCorrelationTest\",\"PearsonDistribution\",\"PercentForm\",\"PerfectNumber\",\"PerfectNumberQ\",\"PerformanceGoal\",\"Perimeter\",\"PeriodicBoundaryCondition\",\"PeriodicInterpolation\",\"Periodogram\",\"PeriodogramArray\",\"Permanent\",\"Permissions\",\"PermissionsGroup\",\"PermissionsGroupMemberQ\",\"PermissionsGroups\",\"PermissionsKey\",\"PermissionsKeys\",\"PermutationCycles\",\"PermutationCyclesQ\",\"PermutationGroup\",\"PermutationLength\",\"PermutationList\",\"PermutationListQ\",\"PermutationMax\",\"PermutationMin\",\"PermutationOrder\",\"PermutationPower\",\"PermutationProduct\",\"PermutationReplace\",\"Permutations\",\"PermutationSupport\",\"Permute\",\"PeronaMalikFilter\",\"Perpendicular\",\"PerpendicularBisector\",\"PersistenceLocation\",\"PersistenceTime\",\"PersistentObject\",\"PersistentObjects\",\"PersistentValue\",\"PersonData\",\"PERTDistribution\",\"PetersenGraph\",\"PhaseMargins\",\"PhaseRange\",\"PhysicalSystemData\",\"Pi\",\"Pick\",\"PIDData\",\"PIDDerivativeFilter\",\"PIDFeedforward\",\"PIDTune\",\"Piecewise\",\"PiecewiseExpand\",\"PieChart\",\"PieChart3D\",\"PillaiTrace\",\"PillaiTraceTest\",\"PingTime\",\"Pink\",\"PitchRecognize\",\"Pivoting\",\"PixelConstrained\",\"PixelValue\",\"PixelValuePositions\",\"Placed\",\"Placeholder\",\"PlaceholderReplace\",\"Plain\",\"PlanarAngle\",\"PlanarGraph\",\"PlanarGraphQ\",\"PlanckRadiationLaw\",\"PlaneCurveData\",\"PlanetaryMoonData\",\"PlanetData\",\"PlantData\",\"Play\",\"PlayRange\",\"Plot\",\"Plot3D\",\"Plot3Matrix\",\"PlotDivision\",\"PlotJoined\",\"PlotLabel\",\"PlotLabels\",\"PlotLayout\",\"PlotLegends\",\"PlotMarkers\",\"PlotPoints\",\"PlotRange\",\"PlotRangeClipping\",\"PlotRangeClipPlanesStyle\",\"PlotRangePadding\",\"PlotRegion\",\"PlotStyle\",\"PlotTheme\",\"Pluralize\",\"Plus\",\"PlusMinus\",\"Pochhammer\",\"PodStates\",\"PodWidth\",\"Point\",\"Point3DBox\",\"Point3DBoxOptions\",\"PointBox\",\"PointBoxOptions\",\"PointFigureChart\",\"PointLegend\",\"PointSize\",\"PoissonConsulDistribution\",\"PoissonDistribution\",\"PoissonProcess\",\"PoissonWindow\",\"PolarAxes\",\"PolarAxesOrigin\",\"PolarGridLines\",\"PolarPlot\",\"PolarTicks\",\"PoleZeroMarkers\",\"PolyaAeppliDistribution\",\"PolyGamma\",\"Polygon\",\"Polygon3DBox\",\"Polygon3DBoxOptions\",\"PolygonalNumber\",\"PolygonAngle\",\"PolygonBox\",\"PolygonBoxOptions\",\"PolygonCoordinates\",\"PolygonDecomposition\",\"PolygonHoleScale\",\"PolygonIntersections\",\"PolygonScale\",\"Polyhedron\",\"PolyhedronAngle\",\"PolyhedronCoordinates\",\"PolyhedronData\",\"PolyhedronDecomposition\",\"PolyhedronGenus\",\"PolyLog\",\"PolynomialExtendedGCD\",\"PolynomialForm\",\"PolynomialGCD\",\"PolynomialLCM\",\"PolynomialMod\",\"PolynomialQ\",\"PolynomialQuotient\",\"PolynomialQuotientRemainder\",\"PolynomialReduce\",\"PolynomialRemainder\",\"Polynomials\",\"PoolingLayer\",\"PopupMenu\",\"PopupMenuBox\",\"PopupMenuBoxOptions\",\"PopupView\",\"PopupWindow\",\"Position\",\"PositionIndex\",\"Positive\",\"PositiveDefiniteMatrixQ\",\"PositiveIntegers\",\"PositiveRationals\",\"PositiveReals\",\"PositiveSemidefiniteMatrixQ\",\"PossibleZeroQ\",\"Postfix\",\"PostScript\",\"Power\",\"PowerDistribution\",\"PowerExpand\",\"PowerMod\",\"PowerModList\",\"PowerRange\",\"PowerSpectralDensity\",\"PowersRepresentations\",\"PowerSymmetricPolynomial\",\"Precedence\",\"PrecedenceForm\",\"Precedes\",\"PrecedesEqual\",\"PrecedesSlantEqual\",\"PrecedesTilde\",\"Precision\",\"PrecisionGoal\",\"PreDecrement\",\"Predict\",\"PredictionRoot\",\"PredictorFunction\",\"PredictorInformation\",\"PredictorMeasurements\",\"PredictorMeasurementsObject\",\"PreemptProtect\",\"PreferencesPath\",\"Prefix\",\"PreIncrement\",\"Prepend\",\"PrependLayer\",\"PrependTo\",\"PreprocessingRules\",\"PreserveColor\",\"PreserveImageOptions\",\"Previous\",\"PreviousCell\",\"PreviousDate\",\"PriceGraphDistribution\",\"PrimaryPlaceholder\",\"Prime\",\"PrimeNu\",\"PrimeOmega\",\"PrimePi\",\"PrimePowerQ\",\"PrimeQ\",\"Primes\",\"PrimeZetaP\",\"PrimitivePolynomialQ\",\"PrimitiveRoot\",\"PrimitiveRootList\",\"PrincipalComponents\",\"PrincipalValue\",\"Print\",\"PrintableASCIIQ\",\"PrintAction\",\"PrintForm\",\"PrintingCopies\",\"PrintingOptions\",\"PrintingPageRange\",\"PrintingStartingPageNumber\",\"PrintingStyleEnvironment\",\"Printout3D\",\"Printout3DPreviewer\",\"PrintPrecision\",\"PrintTemporary\",\"Prism\",\"PrismBox\",\"PrismBoxOptions\",\"PrivateCellOptions\",\"PrivateEvaluationOptions\",\"PrivateFontOptions\",\"PrivateFrontEndOptions\",\"PrivateKey\",\"PrivateNotebookOptions\",\"PrivatePaths\",\"Probability\",\"ProbabilityDistribution\",\"ProbabilityPlot\",\"ProbabilityPr\",\"ProbabilityScalePlot\",\"ProbitModelFit\",\"ProcessConnection\",\"ProcessDirectory\",\"ProcessEnvironment\",\"Processes\",\"ProcessEstimator\",\"ProcessInformation\",\"ProcessObject\",\"ProcessParameterAssumptions\",\"ProcessParameterQ\",\"ProcessStateDomain\",\"ProcessStatus\",\"ProcessTimeDomain\",\"Product\",\"ProductDistribution\",\"ProductLog\",\"ProgressIndicator\",\"ProgressIndicatorBox\",\"ProgressIndicatorBoxOptions\",\"Projection\",\"Prolog\",\"PromptForm\",\"ProofObject\",\"Properties\",\"Property\",\"PropertyList\",\"PropertyValue\",\"Proportion\",\"Proportional\",\"Protect\",\"Protected\",\"ProteinData\",\"Pruning\",\"PseudoInverse\",\"PsychrometricPropertyData\",\"PublicKey\",\"PublisherID\",\"PulsarData\",\"PunctuationCharacter\",\"Purple\",\"Put\",\"PutAppend\",\"Pyramid\",\"PyramidBox\",\"PyramidBoxOptions\",\"QBinomial\",\"QFactorial\",\"QGamma\",\"QHypergeometricPFQ\",\"QnDispersion\",\"QPochhammer\",\"QPolyGamma\",\"QRDecomposition\",\"QuadraticIrrationalQ\",\"QuadraticOptimization\",\"Quantile\",\"QuantilePlot\",\"Quantity\",\"QuantityArray\",\"QuantityDistribution\",\"QuantityForm\",\"QuantityMagnitude\",\"QuantityQ\",\"QuantityUnit\",\"QuantityVariable\",\"QuantityVariableCanonicalUnit\",\"QuantityVariableDimensions\",\"QuantityVariableIdentifier\",\"QuantityVariablePhysicalQuantity\",\"Quartics\",\"QuartileDeviation\",\"Quartiles\",\"QuartileSkewness\",\"Query\",\"QueueingNetworkProcess\",\"QueueingProcess\",\"QueueProperties\",\"Quiet\",\"Quit\",\"Quotient\",\"QuotientRemainder\",\"RadialGradientImage\",\"RadialityCentrality\",\"RadicalBox\",\"RadicalBoxOptions\",\"RadioButton\",\"RadioButtonBar\",\"RadioButtonBox\",\"RadioButtonBoxOptions\",\"Radon\",\"RadonTransform\",\"RamanujanTau\",\"RamanujanTauL\",\"RamanujanTauTheta\",\"RamanujanTauZ\",\"Ramp\",\"Random\",\"RandomChoice\",\"RandomColor\",\"RandomComplex\",\"RandomEntity\",\"RandomFunction\",\"RandomGeoPosition\",\"RandomGraph\",\"RandomImage\",\"RandomInstance\",\"RandomInteger\",\"RandomPermutation\",\"RandomPoint\",\"RandomPolygon\",\"RandomPolyhedron\",\"RandomPrime\",\"RandomReal\",\"RandomSample\",\"RandomSeed\",\"RandomSeeding\",\"RandomVariate\",\"RandomWalkProcess\",\"RandomWord\",\"Range\",\"RangeFilter\",\"RangeSpecification\",\"RankedMax\",\"RankedMin\",\"RarerProbability\",\"Raster\",\"Raster3D\",\"Raster3DBox\",\"Raster3DBoxOptions\",\"RasterArray\",\"RasterBox\",\"RasterBoxOptions\",\"Rasterize\",\"RasterSize\",\"Rational\",\"RationalFunctions\",\"Rationalize\",\"Rationals\",\"Ratios\",\"RawArray\",\"RawBoxes\",\"RawData\",\"RawMedium\",\"RayleighDistribution\",\"Re\",\"Read\",\"ReadByteArray\",\"ReadLine\",\"ReadList\",\"ReadProtected\",\"ReadString\",\"Real\",\"RealAbs\",\"RealBlockDiagonalForm\",\"RealDigits\",\"RealExponent\",\"Reals\",\"RealSign\",\"Reap\",\"RebuildPacletData\",\"RecognitionPrior\",\"RecognitionThreshold\",\"Record\",\"RecordLists\",\"RecordSeparators\",\"Rectangle\",\"RectangleBox\",\"RectangleBoxOptions\",\"RectangleChart\",\"RectangleChart3D\",\"RectangularRepeatingElement\",\"RecurrenceFilter\",\"RecurrenceTable\",\"RecurringDigitsForm\",\"Red\",\"Reduce\",\"RefBox\",\"ReferenceLineStyle\",\"ReferenceMarkers\",\"ReferenceMarkerStyle\",\"Refine\",\"ReflectionMatrix\",\"ReflectionTransform\",\"Refresh\",\"RefreshRate\",\"Region\",\"RegionBinarize\",\"RegionBoundary\",\"RegionBoundaryStyle\",\"RegionBounds\",\"RegionCentroid\",\"RegionDifference\",\"RegionDimension\",\"RegionDisjoint\",\"RegionDistance\",\"RegionDistanceFunction\",\"RegionEmbeddingDimension\",\"RegionEqual\",\"RegionFillingStyle\",\"RegionFunction\",\"RegionImage\",\"RegionIntersection\",\"RegionMeasure\",\"RegionMember\",\"RegionMemberFunction\",\"RegionMoment\",\"RegionNearest\",\"RegionNearestFunction\",\"RegionPlot\",\"RegionPlot3D\",\"RegionProduct\",\"RegionQ\",\"RegionResize\",\"RegionSize\",\"RegionSymmetricDifference\",\"RegionUnion\",\"RegionWithin\",\"RegisterExternalEvaluator\",\"RegularExpression\",\"Regularization\",\"RegularlySampledQ\",\"RegularPolygon\",\"ReIm\",\"ReImLabels\",\"ReImPlot\",\"ReImStyle\",\"Reinstall\",\"RelationalDatabase\",\"RelationGraph\",\"Release\",\"ReleaseHold\",\"ReliabilityDistribution\",\"ReliefImage\",\"ReliefPlot\",\"RemoteAuthorizationCaching\",\"RemoteConnect\",\"RemoteConnectionObject\",\"RemoteFile\",\"RemoteRun\",\"RemoteRunProcess\",\"Remove\",\"RemoveAlphaChannel\",\"RemoveAsynchronousTask\",\"RemoveAudioStream\",\"RemoveBackground\",\"RemoveChannelListener\",\"RemoveChannelSubscribers\",\"Removed\",\"RemoveDiacritics\",\"RemoveInputStreamMethod\",\"RemoveOutputStreamMethod\",\"RemoveProperty\",\"RemoveScheduledTask\",\"RemoveUsers\",\"RemoveVideoStream\",\"RenameDirectory\",\"RenameFile\",\"RenderAll\",\"RenderingOptions\",\"RenewalProcess\",\"RenkoChart\",\"RepairMesh\",\"Repeated\",\"RepeatedNull\",\"RepeatedString\",\"RepeatedTiming\",\"RepeatingElement\",\"Replace\",\"ReplaceAll\",\"ReplaceHeldPart\",\"ReplaceImageValue\",\"ReplaceList\",\"ReplacePart\",\"ReplacePixelValue\",\"ReplaceRepeated\",\"ReplicateLayer\",\"RequiredPhysicalQuantities\",\"Resampling\",\"ResamplingAlgorithmData\",\"ResamplingMethod\",\"Rescale\",\"RescalingTransform\",\"ResetDirectory\",\"ResetMenusPacket\",\"ResetScheduledTask\",\"ReshapeLayer\",\"Residue\",\"ResizeLayer\",\"Resolve\",\"ResourceAcquire\",\"ResourceData\",\"ResourceFunction\",\"ResourceObject\",\"ResourceRegister\",\"ResourceRemove\",\"ResourceSearch\",\"ResourceSubmissionObject\",\"ResourceSubmit\",\"ResourceSystemBase\",\"ResourceSystemPath\",\"ResourceUpdate\",\"ResourceVersion\",\"ResponseForm\",\"Rest\",\"RestartInterval\",\"Restricted\",\"Resultant\",\"ResumePacket\",\"Return\",\"ReturnEntersInput\",\"ReturnExpressionPacket\",\"ReturnInputFormPacket\",\"ReturnPacket\",\"ReturnReceiptFunction\",\"ReturnTextPacket\",\"Reverse\",\"ReverseApplied\",\"ReverseBiorthogonalSplineWavelet\",\"ReverseElement\",\"ReverseEquilibrium\",\"ReverseGraph\",\"ReverseSort\",\"ReverseSortBy\",\"ReverseUpEquilibrium\",\"RevolutionAxis\",\"RevolutionPlot3D\",\"RGBColor\",\"RiccatiSolve\",\"RiceDistribution\",\"RidgeFilter\",\"RiemannR\",\"RiemannSiegelTheta\",\"RiemannSiegelZ\",\"RiemannXi\",\"Riffle\",\"Right\",\"RightArrow\",\"RightArrowBar\",\"RightArrowLeftArrow\",\"RightComposition\",\"RightCosetRepresentative\",\"RightDownTeeVector\",\"RightDownVector\",\"RightDownVectorBar\",\"RightTee\",\"RightTeeArrow\",\"RightTeeVector\",\"RightTriangle\",\"RightTriangleBar\",\"RightTriangleEqual\",\"RightUpDownVector\",\"RightUpTeeVector\",\"RightUpVector\",\"RightUpVectorBar\",\"RightVector\",\"RightVectorBar\",\"RiskAchievementImportance\",\"RiskReductionImportance\",\"RogersTanimotoDissimilarity\",\"RollPitchYawAngles\",\"RollPitchYawMatrix\",\"RomanNumeral\",\"Root\",\"RootApproximant\",\"RootIntervals\",\"RootLocusPlot\",\"RootMeanSquare\",\"RootOfUnityQ\",\"RootReduce\",\"Roots\",\"RootSum\",\"Rotate\",\"RotateLabel\",\"RotateLeft\",\"RotateRight\",\"RotationAction\",\"RotationBox\",\"RotationBoxOptions\",\"RotationMatrix\",\"RotationTransform\",\"Round\",\"RoundImplies\",\"RoundingRadius\",\"Row\",\"RowAlignments\",\"RowBackgrounds\",\"RowBox\",\"RowHeights\",\"RowLines\",\"RowMinHeight\",\"RowReduce\",\"RowsEqual\",\"RowSpacings\",\"RSolve\",\"RSolveValue\",\"RudinShapiro\",\"RudvalisGroupRu\",\"Rule\",\"RuleCondition\",\"RuleDelayed\",\"RuleForm\",\"RulePlot\",\"RulerUnits\",\"Run\",\"RunProcess\",\"RunScheduledTask\",\"RunThrough\",\"RuntimeAttributes\",\"RuntimeOptions\",\"RussellRaoDissimilarity\",\"SameQ\",\"SameTest\",\"SameTestProperties\",\"SampledEntityClass\",\"SampleDepth\",\"SampledSoundFunction\",\"SampledSoundList\",\"SampleRate\",\"SamplingPeriod\",\"SARIMAProcess\",\"SARMAProcess\",\"SASTriangle\",\"SatelliteData\",\"SatisfiabilityCount\",\"SatisfiabilityInstances\",\"SatisfiableQ\",\"Saturday\",\"Save\",\"Saveable\",\"SaveAutoDelete\",\"SaveConnection\",\"SaveDefinitions\",\"SavitzkyGolayMatrix\",\"SawtoothWave\",\"Scale\",\"Scaled\",\"ScaleDivisions\",\"ScaledMousePosition\",\"ScaleOrigin\",\"ScalePadding\",\"ScaleRanges\",\"ScaleRangeStyle\",\"ScalingFunctions\",\"ScalingMatrix\",\"ScalingTransform\",\"Scan\",\"ScheduledTask\",\"ScheduledTaskActiveQ\",\"ScheduledTaskInformation\",\"ScheduledTaskInformationData\",\"ScheduledTaskObject\",\"ScheduledTasks\",\"SchurDecomposition\",\"ScientificForm\",\"ScientificNotationThreshold\",\"ScorerGi\",\"ScorerGiPrime\",\"ScorerHi\",\"ScorerHiPrime\",\"ScreenRectangle\",\"ScreenStyleEnvironment\",\"ScriptBaselineShifts\",\"ScriptForm\",\"ScriptLevel\",\"ScriptMinSize\",\"ScriptRules\",\"ScriptSizeMultipliers\",\"Scrollbars\",\"ScrollingOptions\",\"ScrollPosition\",\"SearchAdjustment\",\"SearchIndexObject\",\"SearchIndices\",\"SearchQueryString\",\"SearchResultObject\",\"Sec\",\"Sech\",\"SechDistribution\",\"SecondOrderConeOptimization\",\"SectionGrouping\",\"SectorChart\",\"SectorChart3D\",\"SectorOrigin\",\"SectorSpacing\",\"SecuredAuthenticationKey\",\"SecuredAuthenticationKeys\",\"SeedRandom\",\"Select\",\"Selectable\",\"SelectComponents\",\"SelectedCells\",\"SelectedNotebook\",\"SelectFirst\",\"Selection\",\"SelectionAnimate\",\"SelectionCell\",\"SelectionCellCreateCell\",\"SelectionCellDefaultStyle\",\"SelectionCellParentStyle\",\"SelectionCreateCell\",\"SelectionDebuggerTag\",\"SelectionDuplicateCell\",\"SelectionEvaluate\",\"SelectionEvaluateCreateCell\",\"SelectionMove\",\"SelectionPlaceholder\",\"SelectionSetStyle\",\"SelectWithContents\",\"SelfLoops\",\"SelfLoopStyle\",\"SemanticImport\",\"SemanticImportString\",\"SemanticInterpretation\",\"SemialgebraicComponentInstances\",\"SemidefiniteOptimization\",\"SendMail\",\"SendMessage\",\"Sequence\",\"SequenceAlignment\",\"SequenceAttentionLayer\",\"SequenceCases\",\"SequenceCount\",\"SequenceFold\",\"SequenceFoldList\",\"SequenceForm\",\"SequenceHold\",\"SequenceLastLayer\",\"SequenceMostLayer\",\"SequencePosition\",\"SequencePredict\",\"SequencePredictorFunction\",\"SequenceReplace\",\"SequenceRestLayer\",\"SequenceReverseLayer\",\"SequenceSplit\",\"Series\",\"SeriesCoefficient\",\"SeriesData\",\"SeriesTermGoal\",\"ServiceConnect\",\"ServiceDisconnect\",\"ServiceExecute\",\"ServiceObject\",\"ServiceRequest\",\"ServiceResponse\",\"ServiceSubmit\",\"SessionSubmit\",\"SessionTime\",\"Set\",\"SetAccuracy\",\"SetAlphaChannel\",\"SetAttributes\",\"Setbacks\",\"SetBoxFormNamesPacket\",\"SetCloudDirectory\",\"SetCookies\",\"SetDelayed\",\"SetDirectory\",\"SetEnvironment\",\"SetEvaluationNotebook\",\"SetFileDate\",\"SetFileLoadingContext\",\"SetNotebookStatusLine\",\"SetOptions\",\"SetOptionsPacket\",\"SetPermissions\",\"SetPrecision\",\"SetProperty\",\"SetSecuredAuthenticationKey\",\"SetSelectedNotebook\",\"SetSharedFunction\",\"SetSharedVariable\",\"SetSpeechParametersPacket\",\"SetStreamPosition\",\"SetSystemModel\",\"SetSystemOptions\",\"Setter\",\"SetterBar\",\"SetterBox\",\"SetterBoxOptions\",\"Setting\",\"SetUsers\",\"SetValue\",\"Shading\",\"Shallow\",\"ShannonWavelet\",\"ShapiroWilkTest\",\"Share\",\"SharingList\",\"Sharpen\",\"ShearingMatrix\",\"ShearingTransform\",\"ShellRegion\",\"ShenCastanMatrix\",\"ShiftedGompertzDistribution\",\"ShiftRegisterSequence\",\"Short\",\"ShortDownArrow\",\"Shortest\",\"ShortestMatch\",\"ShortestPathFunction\",\"ShortLeftArrow\",\"ShortRightArrow\",\"ShortTimeFourier\",\"ShortTimeFourierData\",\"ShortUpArrow\",\"Show\",\"ShowAutoConvert\",\"ShowAutoSpellCheck\",\"ShowAutoStyles\",\"ShowCellBracket\",\"ShowCellLabel\",\"ShowCellTags\",\"ShowClosedCellArea\",\"ShowCodeAssist\",\"ShowContents\",\"ShowControls\",\"ShowCursorTracker\",\"ShowGroupOpenCloseIcon\",\"ShowGroupOpener\",\"ShowInvisibleCharacters\",\"ShowPageBreaks\",\"ShowPredictiveInterface\",\"ShowSelection\",\"ShowShortBoxForm\",\"ShowSpecialCharacters\",\"ShowStringCharacters\",\"ShowSyntaxStyles\",\"ShrinkingDelay\",\"ShrinkWrapBoundingBox\",\"SiderealTime\",\"SiegelTheta\",\"SiegelTukeyTest\",\"SierpinskiCurve\",\"SierpinskiMesh\",\"Sign\",\"Signature\",\"SignedRankTest\",\"SignedRegionDistance\",\"SignificanceLevel\",\"SignPadding\",\"SignTest\",\"SimilarityRules\",\"SimpleGraph\",\"SimpleGraphQ\",\"SimplePolygonQ\",\"SimplePolyhedronQ\",\"Simplex\",\"Simplify\",\"Sin\",\"Sinc\",\"SinghMaddalaDistribution\",\"SingleEvaluation\",\"SingleLetterItalics\",\"SingleLetterStyle\",\"SingularValueDecomposition\",\"SingularValueList\",\"SingularValuePlot\",\"SingularValues\",\"Sinh\",\"SinhIntegral\",\"SinIntegral\",\"SixJSymbol\",\"Skeleton\",\"SkeletonTransform\",\"SkellamDistribution\",\"Skewness\",\"SkewNormalDistribution\",\"SkinStyle\",\"Skip\",\"SliceContourPlot3D\",\"SliceDensityPlot3D\",\"SliceDistribution\",\"SliceVectorPlot3D\",\"Slider\",\"Slider2D\",\"Slider2DBox\",\"Slider2DBoxOptions\",\"SliderBox\",\"SliderBoxOptions\",\"SlideView\",\"Slot\",\"SlotSequence\",\"Small\",\"SmallCircle\",\"Smaller\",\"SmithDecomposition\",\"SmithDelayCompensator\",\"SmithWatermanSimilarity\",\"SmoothDensityHistogram\",\"SmoothHistogram\",\"SmoothHistogram3D\",\"SmoothKernelDistribution\",\"SnDispersion\",\"Snippet\",\"SnubPolyhedron\",\"SocialMediaData\",\"Socket\",\"SocketConnect\",\"SocketListen\",\"SocketListener\",\"SocketObject\",\"SocketOpen\",\"SocketReadMessage\",\"SocketReadyQ\",\"Sockets\",\"SocketWaitAll\",\"SocketWaitNext\",\"SoftmaxLayer\",\"SokalSneathDissimilarity\",\"SolarEclipse\",\"SolarSystemFeatureData\",\"SolidAngle\",\"SolidData\",\"SolidRegionQ\",\"Solve\",\"SolveAlways\",\"SolveDelayed\",\"Sort\",\"SortBy\",\"SortedBy\",\"SortedEntityClass\",\"Sound\",\"SoundAndGraphics\",\"SoundNote\",\"SoundVolume\",\"SourceLink\",\"Sow\",\"Space\",\"SpaceCurveData\",\"SpaceForm\",\"Spacer\",\"Spacings\",\"Span\",\"SpanAdjustments\",\"SpanCharacterRounding\",\"SpanFromAbove\",\"SpanFromBoth\",\"SpanFromLeft\",\"SpanLineThickness\",\"SpanMaxSize\",\"SpanMinSize\",\"SpanningCharacters\",\"SpanSymmetric\",\"SparseArray\",\"SpatialGraphDistribution\",\"SpatialMedian\",\"SpatialTransformationLayer\",\"Speak\",\"SpeakerMatchQ\",\"SpeakTextPacket\",\"SpearmanRankTest\",\"SpearmanRho\",\"SpeciesData\",\"SpecificityGoal\",\"SpectralLineData\",\"Spectrogram\",\"SpectrogramArray\",\"Specularity\",\"SpeechCases\",\"SpeechInterpreter\",\"SpeechRecognize\",\"SpeechSynthesize\",\"SpellingCorrection\",\"SpellingCorrectionList\",\"SpellingDictionaries\",\"SpellingDictionariesPath\",\"SpellingOptions\",\"SpellingSuggestionsPacket\",\"Sphere\",\"SphereBox\",\"SpherePoints\",\"SphericalBesselJ\",\"SphericalBesselY\",\"SphericalHankelH1\",\"SphericalHankelH2\",\"SphericalHarmonicY\",\"SphericalPlot3D\",\"SphericalRegion\",\"SphericalShell\",\"SpheroidalEigenvalue\",\"SpheroidalJoiningFactor\",\"SpheroidalPS\",\"SpheroidalPSPrime\",\"SpheroidalQS\",\"SpheroidalQSPrime\",\"SpheroidalRadialFactor\",\"SpheroidalS1\",\"SpheroidalS1Prime\",\"SpheroidalS2\",\"SpheroidalS2Prime\",\"Splice\",\"SplicedDistribution\",\"SplineClosed\",\"SplineDegree\",\"SplineKnots\",\"SplineWeights\",\"Split\",\"SplitBy\",\"SpokenString\",\"Sqrt\",\"SqrtBox\",\"SqrtBoxOptions\",\"Square\",\"SquaredEuclideanDistance\",\"SquareFreeQ\",\"SquareIntersection\",\"SquareMatrixQ\",\"SquareRepeatingElement\",\"SquaresR\",\"SquareSubset\",\"SquareSubsetEqual\",\"SquareSuperset\",\"SquareSupersetEqual\",\"SquareUnion\",\"SquareWave\",\"SSSTriangle\",\"StabilityMargins\",\"StabilityMarginsStyle\",\"StableDistribution\",\"Stack\",\"StackBegin\",\"StackComplete\",\"StackedDateListPlot\",\"StackedListPlot\",\"StackInhibit\",\"StadiumShape\",\"StandardAtmosphereData\",\"StandardDeviation\",\"StandardDeviationFilter\",\"StandardForm\",\"Standardize\",\"Standardized\",\"StandardOceanData\",\"StandbyDistribution\",\"Star\",\"StarClusterData\",\"StarData\",\"StarGraph\",\"StartAsynchronousTask\",\"StartExternalSession\",\"StartingStepSize\",\"StartOfLine\",\"StartOfString\",\"StartProcess\",\"StartScheduledTask\",\"StartupSound\",\"StartWebSession\",\"StateDimensions\",\"StateFeedbackGains\",\"StateOutputEstimator\",\"StateResponse\",\"StateSpaceModel\",\"StateSpaceRealization\",\"StateSpaceTransform\",\"StateTransformationLinearize\",\"StationaryDistribution\",\"StationaryWaveletPacketTransform\",\"StationaryWaveletTransform\",\"StatusArea\",\"StatusCentrality\",\"StepMonitor\",\"StereochemistryElements\",\"StieltjesGamma\",\"StippleShading\",\"StirlingS1\",\"StirlingS2\",\"StopAsynchronousTask\",\"StoppingPowerData\",\"StopScheduledTask\",\"StrataVariables\",\"StratonovichProcess\",\"StreamColorFunction\",\"StreamColorFunctionScaling\",\"StreamDensityPlot\",\"StreamMarkers\",\"StreamPlot\",\"StreamPoints\",\"StreamPosition\",\"Streams\",\"StreamScale\",\"StreamStyle\",\"String\",\"StringBreak\",\"StringByteCount\",\"StringCases\",\"StringContainsQ\",\"StringCount\",\"StringDelete\",\"StringDrop\",\"StringEndsQ\",\"StringExpression\",\"StringExtract\",\"StringForm\",\"StringFormat\",\"StringFreeQ\",\"StringInsert\",\"StringJoin\",\"StringLength\",\"StringMatchQ\",\"StringPadLeft\",\"StringPadRight\",\"StringPart\",\"StringPartition\",\"StringPosition\",\"StringQ\",\"StringRepeat\",\"StringReplace\",\"StringReplaceList\",\"StringReplacePart\",\"StringReverse\",\"StringRiffle\",\"StringRotateLeft\",\"StringRotateRight\",\"StringSkeleton\",\"StringSplit\",\"StringStartsQ\",\"StringTake\",\"StringTemplate\",\"StringToByteArray\",\"StringToStream\",\"StringTrim\",\"StripBoxes\",\"StripOnInput\",\"StripWrapperBoxes\",\"StrokeForm\",\"StructuralImportance\",\"StructuredArray\",\"StructuredArrayHeadQ\",\"StructuredSelection\",\"StruveH\",\"StruveL\",\"Stub\",\"StudentTDistribution\",\"Style\",\"StyleBox\",\"StyleBoxAutoDelete\",\"StyleData\",\"StyleDefinitions\",\"StyleForm\",\"StyleHints\",\"StyleKeyMapping\",\"StyleMenuListing\",\"StyleNameDialogSettings\",\"StyleNames\",\"StylePrint\",\"StyleSheetPath\",\"Subdivide\",\"Subfactorial\",\"Subgraph\",\"SubMinus\",\"SubPlus\",\"SubresultantPolynomialRemainders\",\"SubresultantPolynomials\",\"Subresultants\",\"Subscript\",\"SubscriptBox\",\"SubscriptBoxOptions\",\"Subscripted\",\"Subsequences\",\"Subset\",\"SubsetCases\",\"SubsetCount\",\"SubsetEqual\",\"SubsetMap\",\"SubsetPosition\",\"SubsetQ\",\"SubsetReplace\",\"Subsets\",\"SubStar\",\"SubstitutionSystem\",\"Subsuperscript\",\"SubsuperscriptBox\",\"SubsuperscriptBoxOptions\",\"SubtitleEncoding\",\"SubtitleTracks\",\"Subtract\",\"SubtractFrom\",\"SubtractSides\",\"SubValues\",\"Succeeds\",\"SucceedsEqual\",\"SucceedsSlantEqual\",\"SucceedsTilde\",\"Success\",\"SuchThat\",\"Sum\",\"SumConvergence\",\"SummationLayer\",\"Sunday\",\"SunPosition\",\"Sunrise\",\"Sunset\",\"SuperDagger\",\"SuperMinus\",\"SupernovaData\",\"SuperPlus\",\"Superscript\",\"SuperscriptBox\",\"SuperscriptBoxOptions\",\"Superset\",\"SupersetEqual\",\"SuperStar\",\"Surd\",\"SurdForm\",\"SurfaceAppearance\",\"SurfaceArea\",\"SurfaceColor\",\"SurfaceData\",\"SurfaceGraphics\",\"SurvivalDistribution\",\"SurvivalFunction\",\"SurvivalModel\",\"SurvivalModelFit\",\"SuspendPacket\",\"SuzukiDistribution\",\"SuzukiGroupSuz\",\"SwatchLegend\",\"Switch\",\"Symbol\",\"SymbolName\",\"SymletWavelet\",\"Symmetric\",\"SymmetricGroup\",\"SymmetricKey\",\"SymmetricMatrixQ\",\"SymmetricPolynomial\",\"SymmetricReduction\",\"Symmetrize\",\"SymmetrizedArray\",\"SymmetrizedArrayRules\",\"SymmetrizedDependentComponents\",\"SymmetrizedIndependentComponents\",\"SymmetrizedReplacePart\",\"SynchronousInitialization\",\"SynchronousUpdating\",\"Synonyms\",\"Syntax\",\"SyntaxForm\",\"SyntaxInformation\",\"SyntaxLength\",\"SyntaxPacket\",\"SyntaxQ\",\"SynthesizeMissingValues\",\"SystemCredential\",\"SystemCredentialData\",\"SystemCredentialKey\",\"SystemCredentialKeys\",\"SystemCredentialStoreObject\",\"SystemDialogInput\",\"SystemException\",\"SystemGet\",\"SystemHelpPath\",\"SystemInformation\",\"SystemInformationData\",\"SystemInstall\",\"SystemModel\",\"SystemModeler\",\"SystemModelExamples\",\"SystemModelLinearize\",\"SystemModelParametricSimulate\",\"SystemModelPlot\",\"SystemModelProgressReporting\",\"SystemModelReliability\",\"SystemModels\",\"SystemModelSimulate\",\"SystemModelSimulateSensitivity\",\"SystemModelSimulationData\",\"SystemOpen\",\"SystemOptions\",\"SystemProcessData\",\"SystemProcesses\",\"SystemsConnectionsModel\",\"SystemsModelDelay\",\"SystemsModelDelayApproximate\",\"SystemsModelDelete\",\"SystemsModelDimensions\",\"SystemsModelExtract\",\"SystemsModelFeedbackConnect\",\"SystemsModelLabels\",\"SystemsModelLinearity\",\"SystemsModelMerge\",\"SystemsModelOrder\",\"SystemsModelParallelConnect\",\"SystemsModelSeriesConnect\",\"SystemsModelStateFeedbackConnect\",\"SystemsModelVectorRelativeOrders\",\"SystemStub\",\"SystemTest\",\"Tab\",\"TabFilling\",\"Table\",\"TableAlignments\",\"TableDepth\",\"TableDirections\",\"TableForm\",\"TableHeadings\",\"TableSpacing\",\"TableView\",\"TableViewBox\",\"TableViewBoxBackground\",\"TableViewBoxItemSize\",\"TableViewBoxOptions\",\"TabSpacings\",\"TabView\",\"TabViewBox\",\"TabViewBoxOptions\",\"TagBox\",\"TagBoxNote\",\"TagBoxOptions\",\"TaggingRules\",\"TagSet\",\"TagSetDelayed\",\"TagStyle\",\"TagUnset\",\"Take\",\"TakeDrop\",\"TakeLargest\",\"TakeLargestBy\",\"TakeList\",\"TakeSmallest\",\"TakeSmallestBy\",\"TakeWhile\",\"Tally\",\"Tan\",\"Tanh\",\"TargetDevice\",\"TargetFunctions\",\"TargetSystem\",\"TargetUnits\",\"TaskAbort\",\"TaskExecute\",\"TaskObject\",\"TaskRemove\",\"TaskResume\",\"Tasks\",\"TaskSuspend\",\"TaskWait\",\"TautologyQ\",\"TelegraphProcess\",\"TemplateApply\",\"TemplateArgBox\",\"TemplateBox\",\"TemplateBoxOptions\",\"TemplateEvaluate\",\"TemplateExpression\",\"TemplateIf\",\"TemplateObject\",\"TemplateSequence\",\"TemplateSlot\",\"TemplateSlotSequence\",\"TemplateUnevaluated\",\"TemplateVerbatim\",\"TemplateWith\",\"TemporalData\",\"TemporalRegularity\",\"Temporary\",\"TemporaryVariable\",\"TensorContract\",\"TensorDimensions\",\"TensorExpand\",\"TensorProduct\",\"TensorQ\",\"TensorRank\",\"TensorReduce\",\"TensorSymmetry\",\"TensorTranspose\",\"TensorWedge\",\"TestID\",\"TestReport\",\"TestReportObject\",\"TestResultObject\",\"Tetrahedron\",\"TetrahedronBox\",\"TetrahedronBoxOptions\",\"TeXForm\",\"TeXSave\",\"Text\",\"Text3DBox\",\"Text3DBoxOptions\",\"TextAlignment\",\"TextBand\",\"TextBoundingBox\",\"TextBox\",\"TextCases\",\"TextCell\",\"TextClipboardType\",\"TextContents\",\"TextData\",\"TextElement\",\"TextForm\",\"TextGrid\",\"TextJustification\",\"TextLine\",\"TextPacket\",\"TextParagraph\",\"TextPosition\",\"TextRecognize\",\"TextSearch\",\"TextSearchReport\",\"TextSentences\",\"TextString\",\"TextStructure\",\"TextStyle\",\"TextTranslation\",\"Texture\",\"TextureCoordinateFunction\",\"TextureCoordinateScaling\",\"TextWords\",\"Therefore\",\"ThermodynamicData\",\"ThermometerGauge\",\"Thick\",\"Thickness\",\"Thin\",\"Thinning\",\"ThisLink\",\"ThompsonGroupTh\",\"Thread\",\"ThreadingLayer\",\"ThreeJSymbol\",\"Threshold\",\"Through\",\"Throw\",\"ThueMorse\",\"Thumbnail\",\"Thursday\",\"Ticks\",\"TicksStyle\",\"TideData\",\"Tilde\",\"TildeEqual\",\"TildeFullEqual\",\"TildeTilde\",\"TimeConstrained\",\"TimeConstraint\",\"TimeDirection\",\"TimeFormat\",\"TimeGoal\",\"TimelinePlot\",\"TimeObject\",\"TimeObjectQ\",\"TimeRemaining\",\"Times\",\"TimesBy\",\"TimeSeries\",\"TimeSeriesAggregate\",\"TimeSeriesForecast\",\"TimeSeriesInsert\",\"TimeSeriesInvertibility\",\"TimeSeriesMap\",\"TimeSeriesMapThread\",\"TimeSeriesModel\",\"TimeSeriesModelFit\",\"TimeSeriesResample\",\"TimeSeriesRescale\",\"TimeSeriesShift\",\"TimeSeriesThread\",\"TimeSeriesWindow\",\"TimeUsed\",\"TimeValue\",\"TimeWarpingCorrespondence\",\"TimeWarpingDistance\",\"TimeZone\",\"TimeZoneConvert\",\"TimeZoneOffset\",\"Timing\",\"Tiny\",\"TitleGrouping\",\"TitsGroupT\",\"ToBoxes\",\"ToCharacterCode\",\"ToColor\",\"ToContinuousTimeModel\",\"ToDate\",\"Today\",\"ToDiscreteTimeModel\",\"ToEntity\",\"ToeplitzMatrix\",\"ToExpression\",\"ToFileName\",\"Together\",\"Toggle\",\"ToggleFalse\",\"Toggler\",\"TogglerBar\",\"TogglerBox\",\"TogglerBoxOptions\",\"ToHeldExpression\",\"ToInvertibleTimeSeries\",\"TokenWords\",\"Tolerance\",\"ToLowerCase\",\"Tomorrow\",\"ToNumberField\",\"TooBig\",\"Tooltip\",\"TooltipBox\",\"TooltipBoxOptions\",\"TooltipDelay\",\"TooltipStyle\",\"ToonShading\",\"Top\",\"TopHatTransform\",\"ToPolarCoordinates\",\"TopologicalSort\",\"ToRadicals\",\"ToRules\",\"ToSphericalCoordinates\",\"ToString\",\"Total\",\"TotalHeight\",\"TotalLayer\",\"TotalVariationFilter\",\"TotalWidth\",\"TouchPosition\",\"TouchscreenAutoZoom\",\"TouchscreenControlPlacement\",\"ToUpperCase\",\"Tr\",\"Trace\",\"TraceAbove\",\"TraceAction\",\"TraceBackward\",\"TraceDepth\",\"TraceDialog\",\"TraceForward\",\"TraceInternal\",\"TraceLevel\",\"TraceOff\",\"TraceOn\",\"TraceOriginal\",\"TracePrint\",\"TraceScan\",\"TrackedSymbols\",\"TrackingFunction\",\"TracyWidomDistribution\",\"TradingChart\",\"TraditionalForm\",\"TraditionalFunctionNotation\",\"TraditionalNotation\",\"TraditionalOrder\",\"TrainingProgressCheckpointing\",\"TrainingProgressFunction\",\"TrainingProgressMeasurements\",\"TrainingProgressReporting\",\"TrainingStoppingCriterion\",\"TrainingUpdateSchedule\",\"TransferFunctionCancel\",\"TransferFunctionExpand\",\"TransferFunctionFactor\",\"TransferFunctionModel\",\"TransferFunctionPoles\",\"TransferFunctionTransform\",\"TransferFunctionZeros\",\"TransformationClass\",\"TransformationFunction\",\"TransformationFunctions\",\"TransformationMatrix\",\"TransformedDistribution\",\"TransformedField\",\"TransformedProcess\",\"TransformedRegion\",\"TransitionDirection\",\"TransitionDuration\",\"TransitionEffect\",\"TransitiveClosureGraph\",\"TransitiveReductionGraph\",\"Translate\",\"TranslationOptions\",\"TranslationTransform\",\"Transliterate\",\"Transparent\",\"TransparentColor\",\"Transpose\",\"TransposeLayer\",\"TrapSelection\",\"TravelDirections\",\"TravelDirectionsData\",\"TravelDistance\",\"TravelDistanceList\",\"TravelMethod\",\"TravelTime\",\"TreeForm\",\"TreeGraph\",\"TreeGraphQ\",\"TreePlot\",\"TrendStyle\",\"Triangle\",\"TriangleCenter\",\"TriangleConstruct\",\"TriangleMeasurement\",\"TriangleWave\",\"TriangularDistribution\",\"TriangulateMesh\",\"Trig\",\"TrigExpand\",\"TrigFactor\",\"TrigFactorList\",\"Trigger\",\"TrigReduce\",\"TrigToExp\",\"TrimmedMean\",\"TrimmedVariance\",\"TropicalStormData\",\"True\",\"TrueQ\",\"TruncatedDistribution\",\"TruncatedPolyhedron\",\"TsallisQExponentialDistribution\",\"TsallisQGaussianDistribution\",\"TTest\",\"Tube\",\"TubeBezierCurveBox\",\"TubeBezierCurveBoxOptions\",\"TubeBox\",\"TubeBoxOptions\",\"TubeBSplineCurveBox\",\"TubeBSplineCurveBoxOptions\",\"Tuesday\",\"TukeyLambdaDistribution\",\"TukeyWindow\",\"TunnelData\",\"Tuples\",\"TuranGraph\",\"TuringMachine\",\"TuttePolynomial\",\"TwoWayRule\",\"Typed\",\"TypeSpecifier\",\"UnateQ\",\"Uncompress\",\"UnconstrainedParameters\",\"Undefined\",\"UnderBar\",\"Underflow\",\"Underlined\",\"Underoverscript\",\"UnderoverscriptBox\",\"UnderoverscriptBoxOptions\",\"Underscript\",\"UnderscriptBox\",\"UnderscriptBoxOptions\",\"UnderseaFeatureData\",\"UndirectedEdge\",\"UndirectedGraph\",\"UndirectedGraphQ\",\"UndoOptions\",\"UndoTrackedVariables\",\"Unequal\",\"UnequalTo\",\"Unevaluated\",\"UniformDistribution\",\"UniformGraphDistribution\",\"UniformPolyhedron\",\"UniformSumDistribution\",\"Uninstall\",\"Union\",\"UnionedEntityClass\",\"UnionPlus\",\"Unique\",\"UnitaryMatrixQ\",\"UnitBox\",\"UnitConvert\",\"UnitDimensions\",\"Unitize\",\"UnitRootTest\",\"UnitSimplify\",\"UnitStep\",\"UnitSystem\",\"UnitTriangle\",\"UnitVector\",\"UnitVectorLayer\",\"UnityDimensions\",\"UniverseModelData\",\"UniversityData\",\"UnixTime\",\"Unprotect\",\"UnregisterExternalEvaluator\",\"UnsameQ\",\"UnsavedVariables\",\"Unset\",\"UnsetShared\",\"UntrackedVariables\",\"Up\",\"UpArrow\",\"UpArrowBar\",\"UpArrowDownArrow\",\"Update\",\"UpdateDynamicObjects\",\"UpdateDynamicObjectsSynchronous\",\"UpdateInterval\",\"UpdatePacletSites\",\"UpdateSearchIndex\",\"UpDownArrow\",\"UpEquilibrium\",\"UpperCaseQ\",\"UpperLeftArrow\",\"UpperRightArrow\",\"UpperTriangularize\",\"UpperTriangularMatrixQ\",\"Upsample\",\"UpSet\",\"UpSetDelayed\",\"UpTee\",\"UpTeeArrow\",\"UpTo\",\"UpValues\",\"URL\",\"URLBuild\",\"URLDecode\",\"URLDispatcher\",\"URLDownload\",\"URLDownloadSubmit\",\"URLEncode\",\"URLExecute\",\"URLExpand\",\"URLFetch\",\"URLFetchAsynchronous\",\"URLParse\",\"URLQueryDecode\",\"URLQueryEncode\",\"URLRead\",\"URLResponseTime\",\"URLSave\",\"URLSaveAsynchronous\",\"URLShorten\",\"URLSubmit\",\"UseGraphicsRange\",\"UserDefinedWavelet\",\"Using\",\"UsingFrontEnd\",\"UtilityFunction\",\"V2Get\",\"ValenceErrorHandling\",\"ValidationLength\",\"ValidationSet\",\"Value\",\"ValueBox\",\"ValueBoxOptions\",\"ValueDimensions\",\"ValueForm\",\"ValuePreprocessingFunction\",\"ValueQ\",\"Values\",\"ValuesData\",\"Variables\",\"Variance\",\"VarianceEquivalenceTest\",\"VarianceEstimatorFunction\",\"VarianceGammaDistribution\",\"VarianceTest\",\"VectorAngle\",\"VectorAround\",\"VectorAspectRatio\",\"VectorColorFunction\",\"VectorColorFunctionScaling\",\"VectorDensityPlot\",\"VectorGlyphData\",\"VectorGreater\",\"VectorGreaterEqual\",\"VectorLess\",\"VectorLessEqual\",\"VectorMarkers\",\"VectorPlot\",\"VectorPlot3D\",\"VectorPoints\",\"VectorQ\",\"VectorRange\",\"Vectors\",\"VectorScale\",\"VectorScaling\",\"VectorSizes\",\"VectorStyle\",\"Vee\",\"Verbatim\",\"Verbose\",\"VerboseConvertToPostScriptPacket\",\"VerificationTest\",\"VerifyConvergence\",\"VerifyDerivedKey\",\"VerifyDigitalSignature\",\"VerifyFileSignature\",\"VerifyInterpretation\",\"VerifySecurityCertificates\",\"VerifySolutions\",\"VerifyTestAssumptions\",\"Version\",\"VersionedPreferences\",\"VersionNumber\",\"VertexAdd\",\"VertexCapacity\",\"VertexColors\",\"VertexComponent\",\"VertexConnectivity\",\"VertexContract\",\"VertexCoordinateRules\",\"VertexCoordinates\",\"VertexCorrelationSimilarity\",\"VertexCosineSimilarity\",\"VertexCount\",\"VertexCoverQ\",\"VertexDataCoordinates\",\"VertexDegree\",\"VertexDelete\",\"VertexDiceSimilarity\",\"VertexEccentricity\",\"VertexInComponent\",\"VertexInDegree\",\"VertexIndex\",\"VertexJaccardSimilarity\",\"VertexLabeling\",\"VertexLabels\",\"VertexLabelStyle\",\"VertexList\",\"VertexNormals\",\"VertexOutComponent\",\"VertexOutDegree\",\"VertexQ\",\"VertexRenderingFunction\",\"VertexReplace\",\"VertexShape\",\"VertexShapeFunction\",\"VertexSize\",\"VertexStyle\",\"VertexTextureCoordinates\",\"VertexWeight\",\"VertexWeightedGraphQ\",\"Vertical\",\"VerticalBar\",\"VerticalForm\",\"VerticalGauge\",\"VerticalSeparator\",\"VerticalSlider\",\"VerticalTilde\",\"Video\",\"VideoEncoding\",\"VideoExtractFrames\",\"VideoFrameList\",\"VideoFrameMap\",\"VideoPause\",\"VideoPlay\",\"VideoQ\",\"VideoStop\",\"VideoStream\",\"VideoStreams\",\"VideoTimeSeries\",\"VideoTracks\",\"VideoTrim\",\"ViewAngle\",\"ViewCenter\",\"ViewMatrix\",\"ViewPoint\",\"ViewPointSelectorSettings\",\"ViewPort\",\"ViewProjection\",\"ViewRange\",\"ViewVector\",\"ViewVertical\",\"VirtualGroupData\",\"Visible\",\"VisibleCell\",\"VoiceStyleData\",\"VoigtDistribution\",\"VolcanoData\",\"Volume\",\"VonMisesDistribution\",\"VoronoiMesh\",\"WaitAll\",\"WaitAsynchronousTask\",\"WaitNext\",\"WaitUntil\",\"WakebyDistribution\",\"WalleniusHypergeometricDistribution\",\"WaringYuleDistribution\",\"WarpingCorrespondence\",\"WarpingDistance\",\"WatershedComponents\",\"WatsonUSquareTest\",\"WattsStrogatzGraphDistribution\",\"WaveletBestBasis\",\"WaveletFilterCoefficients\",\"WaveletImagePlot\",\"WaveletListPlot\",\"WaveletMapIndexed\",\"WaveletMatrixPlot\",\"WaveletPhi\",\"WaveletPsi\",\"WaveletScale\",\"WaveletScalogram\",\"WaveletThreshold\",\"WeaklyConnectedComponents\",\"WeaklyConnectedGraphComponents\",\"WeaklyConnectedGraphQ\",\"WeakStationarity\",\"WeatherData\",\"WeatherForecastData\",\"WebAudioSearch\",\"WebElementObject\",\"WeberE\",\"WebExecute\",\"WebImage\",\"WebImageSearch\",\"WebSearch\",\"WebSessionObject\",\"WebSessions\",\"WebWindowObject\",\"Wedge\",\"Wednesday\",\"WeibullDistribution\",\"WeierstrassE1\",\"WeierstrassE2\",\"WeierstrassE3\",\"WeierstrassEta1\",\"WeierstrassEta2\",\"WeierstrassEta3\",\"WeierstrassHalfPeriods\",\"WeierstrassHalfPeriodW1\",\"WeierstrassHalfPeriodW2\",\"WeierstrassHalfPeriodW3\",\"WeierstrassInvariantG2\",\"WeierstrassInvariantG3\",\"WeierstrassInvariants\",\"WeierstrassP\",\"WeierstrassPPrime\",\"WeierstrassSigma\",\"WeierstrassZeta\",\"WeightedAdjacencyGraph\",\"WeightedAdjacencyMatrix\",\"WeightedData\",\"WeightedGraphQ\",\"Weights\",\"WelchWindow\",\"WheelGraph\",\"WhenEvent\",\"Which\",\"While\",\"White\",\"WhiteNoiseProcess\",\"WhitePoint\",\"Whitespace\",\"WhitespaceCharacter\",\"WhittakerM\",\"WhittakerW\",\"WienerFilter\",\"WienerProcess\",\"WignerD\",\"WignerSemicircleDistribution\",\"WikidataData\",\"WikidataSearch\",\"WikipediaData\",\"WikipediaSearch\",\"WilksW\",\"WilksWTest\",\"WindDirectionData\",\"WindingCount\",\"WindingPolygon\",\"WindowClickSelect\",\"WindowElements\",\"WindowFloating\",\"WindowFrame\",\"WindowFrameElements\",\"WindowMargins\",\"WindowMovable\",\"WindowOpacity\",\"WindowPersistentStyles\",\"WindowSelected\",\"WindowSize\",\"WindowStatusArea\",\"WindowTitle\",\"WindowToolbars\",\"WindowWidth\",\"WindSpeedData\",\"WindVectorData\",\"WinsorizedMean\",\"WinsorizedVariance\",\"WishartMatrixDistribution\",\"With\",\"WolframAlpha\",\"WolframAlphaDate\",\"WolframAlphaQuantity\",\"WolframAlphaResult\",\"WolframLanguageData\",\"Word\",\"WordBoundary\",\"WordCharacter\",\"WordCloud\",\"WordCount\",\"WordCounts\",\"WordData\",\"WordDefinition\",\"WordFrequency\",\"WordFrequencyData\",\"WordList\",\"WordOrientation\",\"WordSearch\",\"WordSelectionFunction\",\"WordSeparators\",\"WordSpacings\",\"WordStem\",\"WordTranslation\",\"WorkingPrecision\",\"WrapAround\",\"Write\",\"WriteLine\",\"WriteString\",\"Wronskian\",\"XMLElement\",\"XMLObject\",\"XMLTemplate\",\"Xnor\",\"Xor\",\"XYZColor\",\"Yellow\",\"Yesterday\",\"YuleDissimilarity\",\"ZernikeR\",\"ZeroSymmetric\",\"ZeroTest\",\"ZeroWidthTimes\",\"Zeta\",\"ZetaZero\",\"ZIPCodeData\",\"ZipfDistribution\",\"ZoomCenter\",\"ZoomFactor\",\"ZTest\",\"ZTransform\",\"$Aborted\",\"$ActivationGroupID\",\"$ActivationKey\",\"$ActivationUserRegistered\",\"$AddOnsDirectory\",\"$AllowDataUpdates\",\"$AllowExternalChannelFunctions\",\"$AllowInternet\",\"$AssertFunction\",\"$Assumptions\",\"$AsynchronousTask\",\"$AudioDecoders\",\"$AudioEncoders\",\"$AudioInputDevices\",\"$AudioOutputDevices\",\"$BaseDirectory\",\"$BasePacletsDirectory\",\"$BatchInput\",\"$BatchOutput\",\"$BlockchainBase\",\"$BoxForms\",\"$ByteOrdering\",\"$CacheBaseDirectory\",\"$Canceled\",\"$ChannelBase\",\"$CharacterEncoding\",\"$CharacterEncodings\",\"$CloudAccountName\",\"$CloudBase\",\"$CloudConnected\",\"$CloudConnection\",\"$CloudCreditsAvailable\",\"$CloudEvaluation\",\"$CloudExpressionBase\",\"$CloudObjectNameFormat\",\"$CloudObjectURLType\",\"$CloudRootDirectory\",\"$CloudSymbolBase\",\"$CloudUserID\",\"$CloudUserUUID\",\"$CloudVersion\",\"$CloudVersionNumber\",\"$CloudWolframEngineVersionNumber\",\"$CommandLine\",\"$CompilationTarget\",\"$ConditionHold\",\"$ConfiguredKernels\",\"$Context\",\"$ContextPath\",\"$ControlActiveSetting\",\"$Cookies\",\"$CookieStore\",\"$CreationDate\",\"$CurrentLink\",\"$CurrentTask\",\"$CurrentWebSession\",\"$DataStructures\",\"$DateStringFormat\",\"$DefaultAudioInputDevice\",\"$DefaultAudioOutputDevice\",\"$DefaultFont\",\"$DefaultFrontEnd\",\"$DefaultImagingDevice\",\"$DefaultLocalBase\",\"$DefaultMailbox\",\"$DefaultNetworkInterface\",\"$DefaultPath\",\"$DefaultProxyRules\",\"$DefaultSystemCredentialStore\",\"$Display\",\"$DisplayFunction\",\"$DistributedContexts\",\"$DynamicEvaluation\",\"$Echo\",\"$EmbedCodeEnvironments\",\"$EmbeddableServices\",\"$EntityStores\",\"$Epilog\",\"$EvaluationCloudBase\",\"$EvaluationCloudObject\",\"$EvaluationEnvironment\",\"$ExportFormats\",\"$ExternalIdentifierTypes\",\"$ExternalStorageBase\",\"$Failed\",\"$FinancialDataSource\",\"$FontFamilies\",\"$FormatType\",\"$FrontEnd\",\"$FrontEndSession\",\"$GeoEntityTypes\",\"$GeoLocation\",\"$GeoLocationCity\",\"$GeoLocationCountry\",\"$GeoLocationPrecision\",\"$GeoLocationSource\",\"$HistoryLength\",\"$HomeDirectory\",\"$HTMLExportRules\",\"$HTTPCookies\",\"$HTTPRequest\",\"$IgnoreEOF\",\"$ImageFormattingWidth\",\"$ImageResolution\",\"$ImagingDevice\",\"$ImagingDevices\",\"$ImportFormats\",\"$IncomingMailSettings\",\"$InitialDirectory\",\"$Initialization\",\"$InitializationContexts\",\"$Input\",\"$InputFileName\",\"$InputStreamMethods\",\"$Inspector\",\"$InstallationDate\",\"$InstallationDirectory\",\"$InterfaceEnvironment\",\"$InterpreterTypes\",\"$IterationLimit\",\"$KernelCount\",\"$KernelID\",\"$Language\",\"$LaunchDirectory\",\"$LibraryPath\",\"$LicenseExpirationDate\",\"$LicenseID\",\"$LicenseProcesses\",\"$LicenseServer\",\"$LicenseSubprocesses\",\"$LicenseType\",\"$Line\",\"$Linked\",\"$LinkSupported\",\"$LoadedFiles\",\"$LocalBase\",\"$LocalSymbolBase\",\"$MachineAddresses\",\"$MachineDomain\",\"$MachineDomains\",\"$MachineEpsilon\",\"$MachineID\",\"$MachineName\",\"$MachinePrecision\",\"$MachineType\",\"$MaxExtraPrecision\",\"$MaxLicenseProcesses\",\"$MaxLicenseSubprocesses\",\"$MaxMachineNumber\",\"$MaxNumber\",\"$MaxPiecewiseCases\",\"$MaxPrecision\",\"$MaxRootDegree\",\"$MessageGroups\",\"$MessageList\",\"$MessagePrePrint\",\"$Messages\",\"$MinMachineNumber\",\"$MinNumber\",\"$MinorReleaseNumber\",\"$MinPrecision\",\"$MobilePhone\",\"$ModuleNumber\",\"$NetworkConnected\",\"$NetworkInterfaces\",\"$NetworkLicense\",\"$NewMessage\",\"$NewSymbol\",\"$NotebookInlineStorageLimit\",\"$Notebooks\",\"$NoValue\",\"$NumberMarks\",\"$Off\",\"$OperatingSystem\",\"$Output\",\"$OutputForms\",\"$OutputSizeLimit\",\"$OutputStreamMethods\",\"$Packages\",\"$ParentLink\",\"$ParentProcessID\",\"$PasswordFile\",\"$PatchLevelID\",\"$Path\",\"$PathnameSeparator\",\"$PerformanceGoal\",\"$Permissions\",\"$PermissionsGroupBase\",\"$PersistenceBase\",\"$PersistencePath\",\"$PipeSupported\",\"$PlotTheme\",\"$Post\",\"$Pre\",\"$PreferencesDirectory\",\"$PreInitialization\",\"$PrePrint\",\"$PreRead\",\"$PrintForms\",\"$PrintLiteral\",\"$Printout3DPreviewer\",\"$ProcessID\",\"$ProcessorCount\",\"$ProcessorType\",\"$ProductInformation\",\"$ProgramName\",\"$PublisherID\",\"$RandomState\",\"$RecursionLimit\",\"$RegisteredDeviceClasses\",\"$RegisteredUserName\",\"$ReleaseNumber\",\"$RequesterAddress\",\"$RequesterWolframID\",\"$RequesterWolframUUID\",\"$RootDirectory\",\"$ScheduledTask\",\"$ScriptCommandLine\",\"$ScriptInputString\",\"$SecuredAuthenticationKeyTokens\",\"$ServiceCreditsAvailable\",\"$Services\",\"$SessionID\",\"$SetParentLink\",\"$SharedFunctions\",\"$SharedVariables\",\"$SoundDisplay\",\"$SoundDisplayFunction\",\"$SourceLink\",\"$SSHAuthentication\",\"$SubtitleDecoders\",\"$SubtitleEncoders\",\"$SummaryBoxDataSizeLimit\",\"$SuppressInputFormHeads\",\"$SynchronousEvaluation\",\"$SyntaxHandler\",\"$System\",\"$SystemCharacterEncoding\",\"$SystemCredentialStore\",\"$SystemID\",\"$SystemMemory\",\"$SystemShell\",\"$SystemTimeZone\",\"$SystemWordLength\",\"$TemplatePath\",\"$TemporaryDirectory\",\"$TemporaryPrefix\",\"$TestFileName\",\"$TextStyle\",\"$TimedOut\",\"$TimeUnit\",\"$TimeZone\",\"$TimeZoneEntity\",\"$TopDirectory\",\"$TraceOff\",\"$TraceOn\",\"$TracePattern\",\"$TracePostAction\",\"$TracePreAction\",\"$UnitSystem\",\"$Urgent\",\"$UserAddOnsDirectory\",\"$UserAgentLanguages\",\"$UserAgentMachine\",\"$UserAgentName\",\"$UserAgentOperatingSystem\",\"$UserAgentString\",\"$UserAgentVersion\",\"$UserBaseDirectory\",\"$UserBasePacletsDirectory\",\"$UserDocumentsDirectory\",\"$Username\",\"$UserName\",\"$UserURLBase\",\"$Version\",\"$VersionNumber\",\"$VideoDecoders\",\"$VideoEncoders\",\"$VoiceStyles\",\"$WolframDocumentsDirectory\",\"$WolframID\",\"$WolframUUID\"];function i(e){return e?\"string\"===typeof e?e:e.source:null}function r(e){return a(\"(\",e,\")?\")}function a(...e){const t=e.map(e=>i(e)).join(\"\");return t}function o(...e){const t=\"(\"+e.map(e=>i(e)).join(\"|\")+\")\";return t}function s(e){const t=/([2-9]|[1-2]\\d|[3][0-5])\\^\\^/,i=/(\\w*\\.\\w+|\\w+\\.\\w*|\\w+)/,s=/(\\d*\\.\\d+|\\d+\\.\\d*|\\d+)/,l=o(a(t,i),s),c=/``[+-]?(\\d*\\.\\d+|\\d+\\.\\d*|\\d+)/,u=/`([+-]?(\\d*\\.\\d+|\\d+\\.\\d*|\\d+))?/,d=o(c,u),p=/\\*\\^[+-]?\\d+/,h=a(l,r(d),r(p)),f={className:\"number\",relevance:0,begin:h},_=/[a-zA-Z$][a-zA-Z0-9$]*/,m=new Set(n),g={variants:[{className:\"builtin-symbol\",begin:_,\"on:begin\":(e,t)=>{m.has(e[0])||t.ignoreMatch()}},{className:\"symbol\",relevance:0,begin:_}]},b={className:\"named-character\",begin:/\\\\\\[[$a-zA-Z][$a-zA-Z0-9]+\\]/},v={className:\"operator\",relevance:0,begin:/[+\\-*/,;.:@~=><&|_`'^?!%]+/},E={className:\"pattern\",relevance:0,begin:/([a-zA-Z$][a-zA-Z0-9$]*)?_+([a-zA-Z$][a-zA-Z0-9$]*)?/},y={className:\"slot\",relevance:0,begin:/#[a-zA-Z$][a-zA-Z0-9$]*|#+[0-9]?/},S={className:\"brace\",relevance:0,begin:/[[\\](){}]/},C={className:\"message-name\",relevance:0,begin:a(\"::\",_)};return{name:\"Mathematica\",aliases:[\"mma\",\"wl\"],classNameAliases:{brace:\"punctuation\",pattern:\"type\",slot:\"type\",symbol:\"variable\",\"named-character\":\"variable\",\"builtin-symbol\":\"built_in\",\"message-name\":\"string\"},contains:[e.COMMENT(/\\(\\*/,/\\*\\)/,{contains:[\"self\"]}),E,y,C,g,b,e.QUOTE_STRING_MODE,f,v,S]}}e.exports=s},ef99:function(e,t){function n(e){const t=\"ByRef Case Const ContinueCase ContinueLoop Default Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With\",n=\"True False And Null Not Or\",i=\"Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringReverse StringRight StringSplit StringStripCR StringStripWS StringToASCIIArray StringToBinary StringTrimLeft StringTrimRight StringUpper Tan TCPAccept TCPCloseSocket TCPConnect TCPListen TCPNameToIP TCPRecv TCPSend TCPShutdown, UDPShutdown TCPStartup, UDPStartup TimerDiff TimerInit ToolTip TrayCreateItem TrayCreateMenu TrayGetMsg TrayItemDelete TrayItemGetHandle TrayItemGetState TrayItemGetText TrayItemSetOnEvent TrayItemSetState TrayItemSetText TraySetClick TraySetIcon TraySetOnEvent TraySetPauseIcon TraySetState TraySetToolTip TrayTip UBound UDPBind UDPCloseSocket UDPOpen UDPRecv UDPSend VarGetType WinActivate WinActive WinClose WinExists WinFlash WinGetCaretPos WinGetClassList WinGetClientSize WinGetHandle WinGetPos WinGetProcess WinGetState WinGetText WinGetTitle WinKill WinList WinMenuSelectItem WinMinimizeAll WinMinimizeAllUndo WinMove WinSetOnTop WinSetState WinSetTitle WinSetTrans WinWait\",r={variants:[e.COMMENT(\";\",\"$\",{relevance:0}),e.COMMENT(\"#cs\",\"#ce\"),e.COMMENT(\"#comments-start\",\"#comments-end\")]},a={begin:\"\\\\$[A-z0-9_]+\"},o={className:\"string\",variants:[{begin:/\"/,end:/\"/,contains:[{begin:/\"\"/,relevance:0}]},{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]}]},s={variants:[e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]},l={className:\"meta\",begin:\"#\",end:\"$\",keywords:{\"meta-keyword\":\"comments include include-once NoTrayIcon OnAutoItStartRegister pragma compile RequireAdmin\"},contains:[{begin:/\\\\\\n/,relevance:0},{beginKeywords:\"include\",keywords:{\"meta-keyword\":\"include\"},end:\"$\",contains:[o,{className:\"meta-string\",variants:[{begin:\"<\",end:\">\"},{begin:/\"/,end:/\"/,contains:[{begin:/\"\"/,relevance:0}]},{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]}]}]},o,r]},c={className:\"symbol\",begin:\"@[A-z0-9_]+\"},u={className:\"function\",beginKeywords:\"Func\",end:\"$\",illegal:\"\\\\$|\\\\[|%\",contains:[e.UNDERSCORE_TITLE_MODE,{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",contains:[a,o,s]}]};return{name:\"AutoIt\",case_insensitive:!0,illegal:/\\/\\*/,keywords:{keyword:t,built_in:i,literal:n},contains:[r,a,o,s,l,c,u]}}e.exports=n},f0aa:function(e,t){function n(e){const t={className:\"number\",begin:/[$%]\\d+/},n={className:\"number\",begin:/\\d+/},i={className:\"number\",begin:/\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?/},r={className:\"number\",begin:/:\\d{1,5}/};return{name:\"Apache config\",aliases:[\"apacheconf\"],case_insensitive:!0,contains:[e.HASH_COMMENT_MODE,{className:\"section\",begin:/<\\/?/,end:/>/,contains:[i,r,e.inherit(e.QUOTE_STRING_MODE,{relevance:0})]},{className:\"attribute\",begin:/\\w+/,relevance:0,keywords:{nomarkup:\"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername\"},starts:{end:/$/,relevance:0,keywords:{literal:\"on off all deny allow\"},contains:[{className:\"meta\",begin:/\\s\\[/,end:/\\]$/},{className:\"variable\",begin:/[\\$%]\\{/,end:/\\}/,contains:[\"self\",t]},i,n,e.QUOTE_STRING_MODE]}}],illegal:/\\S/}}e.exports=n},f0d9:function(e,t,n){\"use strict\";t.__esModule=!0,t.default={el:{colorpicker:{confirm:\"确定\",clear:\"清空\"},datepicker:{now:\"此刻\",today:\"今天\",cancel:\"取消\",clear:\"清空\",confirm:\"确定\",selectDate:\"选择日期\",selectTime:\"选择时间\",startDate:\"开始日期\",startTime:\"开始时间\",endDate:\"结束日期\",endTime:\"结束时间\",prevYear:\"前一年\",nextYear:\"后一年\",prevMonth:\"上个月\",nextMonth:\"下个月\",year:\"年\",month1:\"1 月\",month2:\"2 月\",month3:\"3 月\",month4:\"4 月\",month5:\"5 月\",month6:\"6 月\",month7:\"7 月\",month8:\"8 月\",month9:\"9 月\",month10:\"10 月\",month11:\"11 月\",month12:\"12 月\",weeks:{sun:\"日\",mon:\"一\",tue:\"二\",wed:\"三\",thu:\"四\",fri:\"五\",sat:\"六\"},months:{jan:\"一月\",feb:\"二月\",mar:\"三月\",apr:\"四月\",may:\"五月\",jun:\"六月\",jul:\"七月\",aug:\"八月\",sep:\"九月\",oct:\"十月\",nov:\"十一月\",dec:\"十二月\"}},select:{loading:\"加载中\",noMatch:\"无匹配数据\",noData:\"无数据\",placeholder:\"请选择\"},cascader:{noMatch:\"无匹配数据\",loading:\"加载中\",placeholder:\"请选择\",noData:\"暂无数据\"},pagination:{goto:\"前往\",pagesize:\"条/页\",total:\"共 {total} 条\",pageClassifier:\"页\"},messagebox:{title:\"提示\",confirm:\"确定\",cancel:\"取消\",error:\"输入的数据不合法!\"},upload:{deleteTip:\"按 delete 键可删除\",delete:\"删除\",preview:\"查看图片\",continue:\"继续上传\"},table:{emptyText:\"暂无数据\",confirmFilter:\"筛选\",resetFilter:\"重置\",clearFilter:\"全部\",sumText:\"合计\"},tree:{emptyText:\"暂无数据\"},transfer:{noMatch:\"无匹配数据\",noData:\"无数据\",titles:[\"列表 1\",\"列表 2\"],filterPlaceholder:\"请输入搜索内容\",noCheckedFormat:\"共 {total} 项\",hasCheckedFormat:\"已选 {checked}/{total} 项\"},image:{error:\"加载失败\"},pageHeader:{title:\"返回\"},popconfirm:{confirmButtonText:\"确定\",cancelButtonText:\"取消\"}}}},f0f8:function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(e){const t={},n={begin:/\\$\\{/,end:/\\}/,contains:[\"self\",{begin:/:-/,contains:[t]}]};Object.assign(t,{className:\"variable\",variants:[{begin:i(/\\$[\\w\\d#@][\\w\\d_]*/,\"(?![\\\\w\\\\d])(?![$])\")},n]});const r={className:\"subst\",begin:/\\$\\(/,end:/\\)/,contains:[e.BACKSLASH_ESCAPE]},a={begin:/<<-?\\s*(?=\\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\\w+)/,end:/(\\w+)/,className:\"string\"})]}},o={className:\"string\",begin:/\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,t,r]};r.contains.push(o);const s={className:\"\",begin:/\\\\\"/},l={className:\"string\",begin:/'/,end:/'/},c={begin:/\\$\\(\\(/,end:/\\)\\)/,contains:[{begin:/\\d+#[0-9a-f]+/,className:\"number\"},e.NUMBER_MODE,t]},u=[\"fish\",\"bash\",\"zsh\",\"sh\",\"csh\",\"ksh\",\"tcsh\",\"dash\",\"scsh\"],d=e.SHEBANG({binary:`(${u.join(\"|\")})`,relevance:10}),p={className:\"function\",begin:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\\w[\\w\\d_]*/})],relevance:0};return{name:\"Bash\",aliases:[\"sh\",\"zsh\"],keywords:{$pattern:/\\b[a-z._-]+\\b/,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\"},contains:[d,e.SHEBANG(),p,c,e.HASH_COMMENT_MODE,a,o,s,l,t]}}e.exports=r},f122:function(e,t){function n(e){return{name:\"Vala\",keywords:{keyword:\"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override virtual delegate if while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var\",built_in:\"DBus GLib CCode Gee Object Gtk Posix\",literal:\"false true null\"},contains:[{className:\"class\",beginKeywords:\"class interface namespace\",end:/\\{/,excludeEnd:!0,illegal:\"[^,:\\\\n\\\\s\\\\.]\",contains:[e.UNDERSCORE_TITLE_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:\"string\",begin:'\"\"\"',end:'\"\"\"',relevance:5},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,{className:\"meta\",begin:\"^#\",end:\"$\",relevance:2}]}}e.exports=n},f28c:function(e,t){var n,i,r=e.exports={};function a(){throw new Error(\"setTimeout has not been defined\")}function o(){throw new Error(\"clearTimeout has not been defined\")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}function l(e){if(i===clearTimeout)return clearTimeout(e);if((i===o||!i)&&clearTimeout)return i=clearTimeout,clearTimeout(e);try{return i(e)}catch(t){try{return i.call(null,e)}catch(t){return i.call(this,e)}}}(function(){try{n=\"function\"===typeof setTimeout?setTimeout:a}catch(e){n=a}try{i=\"function\"===typeof clearTimeout?clearTimeout:o}catch(e){i=o}})();var c,u=[],d=!1,p=-1;function h(){d&&c&&(d=!1,c.length?u=c.concat(u):p=-1,u.length&&f())}function f(){if(!d){var e=s(h);d=!0;var t=u.length;while(t){c=u,u=[];while(++p<t)c&&c[p].run();p=-1,t=u.length}c=null,d=!1,l(e)}}function _(e,t){this.fun=e,this.array=t}function m(){}r.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];u.push(new _(e,t)),1!==u.length||d||s(f)},_.prototype.run=function(){this.fun.apply(null,this.array)},r.title=\"browser\",r.browser=!0,r.env={},r.argv=[],r.version=\"\",r.versions={},r.on=m,r.addListener=m,r.once=m,r.off=m,r.removeListener=m,r.removeAllListeners=m,r.emit=m,r.prependListener=m,r.prependOnceListener=m,r.listeners=function(e){return[]},r.binding=function(e){throw new Error(\"process.binding is not supported\")},r.cwd=function(){return\"/\"},r.chdir=function(e){throw new Error(\"process.chdir is not supported\")},r.umask=function(){return 0}},f3ad:function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=76)}({0:function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},11:function(e,t){e.exports=n(\"2bb5\")},21:function(e,t){e.exports=n(\"d397\")},4:function(e,t){e.exports=n(\"d010\")},76:function(e,t,n){\"use strict\";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{class:[\"textarea\"===e.type?\"el-textarea\":\"el-input\",e.inputSize?\"el-input--\"+e.inputSize:\"\",{\"is-disabled\":e.inputDisabled,\"is-exceed\":e.inputExceed,\"el-input-group\":e.$slots.prepend||e.$slots.append,\"el-input-group--append\":e.$slots.append,\"el-input-group--prepend\":e.$slots.prepend,\"el-input--prefix\":e.$slots.prefix||e.prefixIcon,\"el-input--suffix\":e.$slots.suffix||e.suffixIcon||e.clearable||e.showPassword}],on:{mouseenter:function(t){e.hovering=!0},mouseleave:function(t){e.hovering=!1}}},[\"textarea\"!==e.type?[e.$slots.prepend?n(\"div\",{staticClass:\"el-input-group__prepend\"},[e._t(\"prepend\")],2):e._e(),\"textarea\"!==e.type?n(\"input\",e._b({ref:\"input\",staticClass:\"el-input__inner\",attrs:{tabindex:e.tabindex,type:e.showPassword?e.passwordVisible?\"text\":\"password\":e.type,disabled:e.inputDisabled,readonly:e.readonly,autocomplete:e.autoComplete||e.autocomplete,\"aria-label\":e.label},on:{compositionstart:e.handleCompositionStart,compositionupdate:e.handleCompositionUpdate,compositionend:e.handleCompositionEnd,input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur,change:e.handleChange}},\"input\",e.$attrs,!1)):e._e(),e.$slots.prefix||e.prefixIcon?n(\"span\",{staticClass:\"el-input__prefix\"},[e._t(\"prefix\"),e.prefixIcon?n(\"i\",{staticClass:\"el-input__icon\",class:e.prefixIcon}):e._e()],2):e._e(),e.getSuffixVisible()?n(\"span\",{staticClass:\"el-input__suffix\"},[n(\"span\",{staticClass:\"el-input__suffix-inner\"},[e.showClear&&e.showPwdVisible&&e.isWordLimitVisible?e._e():[e._t(\"suffix\"),e.suffixIcon?n(\"i\",{staticClass:\"el-input__icon\",class:e.suffixIcon}):e._e()],e.showClear?n(\"i\",{staticClass:\"el-input__icon el-icon-circle-close el-input__clear\",on:{mousedown:function(e){e.preventDefault()},click:e.clear}}):e._e(),e.showPwdVisible?n(\"i\",{staticClass:\"el-input__icon el-icon-view el-input__clear\",on:{click:e.handlePasswordVisible}}):e._e(),e.isWordLimitVisible?n(\"span\",{staticClass:\"el-input__count\"},[n(\"span\",{staticClass:\"el-input__count-inner\"},[e._v(\"\\n            \"+e._s(e.textLength)+\"/\"+e._s(e.upperLimit)+\"\\n          \")])]):e._e()],2),e.validateState?n(\"i\",{staticClass:\"el-input__icon\",class:[\"el-input__validateIcon\",e.validateIcon]}):e._e()]):e._e(),e.$slots.append?n(\"div\",{staticClass:\"el-input-group__append\"},[e._t(\"append\")],2):e._e()]:n(\"textarea\",e._b({ref:\"textarea\",staticClass:\"el-textarea__inner\",style:e.textareaStyle,attrs:{tabindex:e.tabindex,disabled:e.inputDisabled,readonly:e.readonly,autocomplete:e.autoComplete||e.autocomplete,\"aria-label\":e.label},on:{compositionstart:e.handleCompositionStart,compositionupdate:e.handleCompositionUpdate,compositionend:e.handleCompositionEnd,input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur,change:e.handleChange}},\"textarea\",e.$attrs,!1)),e.isWordLimitVisible&&\"textarea\"===e.type?n(\"span\",{staticClass:\"el-input__count\"},[e._v(e._s(e.textLength)+\"/\"+e._s(e.upperLimit))]):e._e()],2)},r=[];i._withStripped=!0;var a=n(4),o=n.n(a),s=n(11),l=n.n(s),c=void 0,u=\"\\n  height:0 !important;\\n  visibility:hidden !important;\\n  overflow:hidden !important;\\n  position:absolute !important;\\n  z-index:-1000 !important;\\n  top:0 !important;\\n  right:0 !important\\n\",d=[\"letter-spacing\",\"line-height\",\"padding-top\",\"padding-bottom\",\"font-family\",\"font-weight\",\"font-size\",\"text-rendering\",\"text-transform\",\"width\",\"text-indent\",\"padding-left\",\"padding-right\",\"border-width\",\"box-sizing\"];function p(e){var t=window.getComputedStyle(e),n=t.getPropertyValue(\"box-sizing\"),i=parseFloat(t.getPropertyValue(\"padding-bottom\"))+parseFloat(t.getPropertyValue(\"padding-top\")),r=parseFloat(t.getPropertyValue(\"border-bottom-width\"))+parseFloat(t.getPropertyValue(\"border-top-width\")),a=d.map((function(e){return e+\":\"+t.getPropertyValue(e)})).join(\";\");return{contextStyle:a,paddingSize:i,borderSize:r,boxSizing:n}}function h(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;c||(c=document.createElement(\"textarea\"),document.body.appendChild(c));var i=p(e),r=i.paddingSize,a=i.borderSize,o=i.boxSizing,s=i.contextStyle;c.setAttribute(\"style\",s+\";\"+u),c.value=e.value||e.placeholder||\"\";var l=c.scrollHeight,d={};\"border-box\"===o?l+=a:\"content-box\"===o&&(l-=r),c.value=\"\";var h=c.scrollHeight-r;if(null!==t){var f=h*t;\"border-box\"===o&&(f=f+r+a),l=Math.max(f,l),d.minHeight=f+\"px\"}if(null!==n){var _=h*n;\"border-box\"===o&&(_=_+r+a),l=Math.min(_,l)}return d.height=l+\"px\",c.parentNode&&c.parentNode.removeChild(c),c=null,d}var f=n(9),_=n.n(f),m=n(21),g={name:\"ElInput\",componentName:\"ElInput\",mixins:[o.a,l.a],inheritAttrs:!1,inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},data:function(){return{textareaCalcStyle:{},hovering:!1,focused:!1,isComposing:!1,passwordVisible:!1}},props:{value:[String,Number],size:String,resize:String,form:String,disabled:Boolean,readonly:Boolean,type:{type:String,default:\"text\"},autosize:{type:[Boolean,Object],default:!1},autocomplete:{type:String,default:\"off\"},autoComplete:{type:String,validator:function(e){return!0}},validateEvent:{type:Boolean,default:!0},suffixIcon:String,prefixIcon:String,label:String,clearable:{type:Boolean,default:!1},showPassword:{type:Boolean,default:!1},showWordLimit:{type:Boolean,default:!1},tabindex:String},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},validateState:function(){return this.elFormItem?this.elFormItem.validateState:\"\"},needStatusIcon:function(){return!!this.elForm&&this.elForm.statusIcon},validateIcon:function(){return{validating:\"el-icon-loading\",success:\"el-icon-circle-check\",error:\"el-icon-circle-close\"}[this.validateState]},textareaStyle:function(){return _()({},this.textareaCalcStyle,{resize:this.resize})},inputSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},inputDisabled:function(){return this.disabled||(this.elForm||{}).disabled},nativeInputValue:function(){return null===this.value||void 0===this.value?\"\":String(this.value)},showClear:function(){return this.clearable&&!this.inputDisabled&&!this.readonly&&this.nativeInputValue&&(this.focused||this.hovering)},showPwdVisible:function(){return this.showPassword&&!this.inputDisabled&&!this.readonly&&(!!this.nativeInputValue||this.focused)},isWordLimitVisible:function(){return this.showWordLimit&&this.$attrs.maxlength&&(\"text\"===this.type||\"textarea\"===this.type)&&!this.inputDisabled&&!this.readonly&&!this.showPassword},upperLimit:function(){return this.$attrs.maxlength},textLength:function(){return\"number\"===typeof this.value?String(this.value).length:(this.value||\"\").length},inputExceed:function(){return this.isWordLimitVisible&&this.textLength>this.upperLimit}},watch:{value:function(e){this.$nextTick(this.resizeTextarea),this.validateEvent&&this.dispatch(\"ElFormItem\",\"el.form.change\",[e])},nativeInputValue:function(){this.setNativeInputValue()},type:function(){var e=this;this.$nextTick((function(){e.setNativeInputValue(),e.resizeTextarea(),e.updateIconOffset()}))}},methods:{focus:function(){this.getInput().focus()},blur:function(){this.getInput().blur()},getMigratingConfig:function(){return{props:{icon:\"icon is removed, use suffix-icon / prefix-icon instead.\",\"on-icon-click\":\"on-icon-click is removed.\"},events:{click:\"click is removed.\"}}},handleBlur:function(e){this.focused=!1,this.$emit(\"blur\",e),this.validateEvent&&this.dispatch(\"ElFormItem\",\"el.form.blur\",[this.value])},select:function(){this.getInput().select()},resizeTextarea:function(){if(!this.$isServer){var e=this.autosize,t=this.type;if(\"textarea\"===t)if(e){var n=e.minRows,i=e.maxRows;this.textareaCalcStyle=h(this.$refs.textarea,n,i)}else this.textareaCalcStyle={minHeight:h(this.$refs.textarea).minHeight}}},setNativeInputValue:function(){var e=this.getInput();e&&e.value!==this.nativeInputValue&&(e.value=this.nativeInputValue)},handleFocus:function(e){this.focused=!0,this.$emit(\"focus\",e)},handleCompositionStart:function(){this.isComposing=!0},handleCompositionUpdate:function(e){var t=e.target.value,n=t[t.length-1]||\"\";this.isComposing=!Object(m[\"isKorean\"])(n)},handleCompositionEnd:function(e){this.isComposing&&(this.isComposing=!1,this.handleInput(e))},handleInput:function(e){this.isComposing||e.target.value!==this.nativeInputValue&&(this.$emit(\"input\",e.target.value),this.$nextTick(this.setNativeInputValue))},handleChange:function(e){this.$emit(\"change\",e.target.value)},calcIconOffset:function(e){var t=[].slice.call(this.$el.querySelectorAll(\".el-input__\"+e)||[]);if(t.length){for(var n=null,i=0;i<t.length;i++)if(t[i].parentNode===this.$el){n=t[i];break}if(n){var r={suffix:\"append\",prefix:\"prepend\"},a=r[e];this.$slots[a]?n.style.transform=\"translateX(\"+(\"suffix\"===e?\"-\":\"\")+this.$el.querySelector(\".el-input-group__\"+a).offsetWidth+\"px)\":n.removeAttribute(\"style\")}}},updateIconOffset:function(){this.calcIconOffset(\"prefix\"),this.calcIconOffset(\"suffix\")},clear:function(){this.$emit(\"input\",\"\"),this.$emit(\"change\",\"\"),this.$emit(\"clear\")},handlePasswordVisible:function(){this.passwordVisible=!this.passwordVisible,this.focus()},getInput:function(){return this.$refs.input||this.$refs.textarea},getSuffixVisible:function(){return this.$slots.suffix||this.suffixIcon||this.showClear||this.showPassword||this.isWordLimitVisible||this.validateState&&this.needStatusIcon}},created:function(){this.$on(\"inputSelect\",this.select)},mounted:function(){this.setNativeInputValue(),this.resizeTextarea(),this.updateIconOffset()},updated:function(){this.$nextTick(this.updateIconOffset)}},b=g,v=n(0),E=Object(v[\"a\"])(b,i,r,!1,null,null,null);E.options.__file=\"packages/input/src/input.vue\";var y=E.exports;y.install=function(e){e.component(y.name,y)};t[\"default\"]=y},9:function(e,t){e.exports=n(\"7f4d\")}})},f45a:function(e,t){function n(e){return{name:\"VBScript in HTML\",subLanguage:\"xml\",contains:[{begin:\"<%\",end:\"%>\",subLanguage:\"vbscript\"}]}}e.exports=n},f46e:function(e,t){function n(e){var t={className:\"params\",begin:\"\\\\(\",end:\"\\\\)\"},n=\"attribute block constant cycle date dump include max min parent random range source template_from_string\",i={beginKeywords:n,keywords:{name:n},relevance:0,contains:[t]},r={begin:/\\|[A-Za-z_]+:?/,keywords:\"abs batch capitalize column convert_encoding date date_modify default escape filter first format inky_to_html inline_css join json_encode keys last length lower map markdown merge nl2br number_format raw reduce replace reverse round slice sort spaceless split striptags title trim upper url_encode\",contains:[i]},a=\"apply autoescape block deprecated do embed extends filter flush for from if import include macro sandbox set use verbatim with\";return a=a+\" \"+a.split(\" \").map((function(e){return\"end\"+e})).join(\" \"),{name:\"Twig\",aliases:[\"craftcms\"],case_insensitive:!0,subLanguage:\"xml\",contains:[e.COMMENT(/\\{#/,/#\\}/),{className:\"template-tag\",begin:/\\{%/,end:/%\\}/,contains:[{className:\"name\",begin:/\\w+/,keywords:a,starts:{endsWithParent:!0,contains:[r,i],relevance:0}}]},{className:\"template-variable\",begin:/\\{\\{/,end:/\\}\\}/,contains:[\"self\",r,i]}]}}e.exports=n},f492:function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(e){return{name:\"Erlang REPL\",keywords:{built_in:\"spawn spawn_link self\",keyword:\"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor\"},contains:[{className:\"meta\",begin:\"^[0-9]+> \",relevance:10},e.COMMENT(\"%\",\"$\"),{className:\"number\",begin:\"\\\\b(\\\\d+(_\\\\d+)*#[a-fA-F0-9]+(_[a-fA-F0-9]+)*|\\\\d+(_\\\\d+)*(\\\\.\\\\d+(_\\\\d+)*)?([eE][-+]?\\\\d+)?)\",relevance:0},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{begin:i(/\\?(::)?/,/([A-Z]\\w*)/,/((::)[A-Z]\\w*)*/)},{begin:\"->\"},{begin:\"ok\"},{begin:\"!\"},{begin:\"(\\\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\\\b[a-z'][a-zA-Z0-9_']*)\",relevance:0},{begin:\"[A-Z][a-zA-Z0-9_']*\",relevance:0}]}}e.exports=r},f494:function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"/dist/\",n(n.s=116)}({0:function(e,t,n){\"use strict\";function i(e,t,n,i,r,a,o,s){var l,c=\"function\"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=n,c._compiled=!0),i&&(c.functional=!0),a&&(c._scopeId=\"data-v-\"+a),o?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:c}}n.d(t,\"a\",(function(){return i}))},116:function(e,t,n){\"use strict\";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"label\",{staticClass:\"el-radio\",class:[e.border&&e.radioSize?\"el-radio--\"+e.radioSize:\"\",{\"is-disabled\":e.isDisabled},{\"is-focus\":e.focus},{\"is-bordered\":e.border},{\"is-checked\":e.model===e.label}],attrs:{role:\"radio\",\"aria-checked\":e.model===e.label,\"aria-disabled\":e.isDisabled,tabindex:e.tabIndex},on:{keydown:function(t){if(!(\"button\"in t)&&e._k(t.keyCode,\"space\",32,t.key,[\" \",\"Spacebar\"]))return null;t.stopPropagation(),t.preventDefault(),e.model=e.isDisabled?e.model:e.label}}},[n(\"span\",{staticClass:\"el-radio__input\",class:{\"is-disabled\":e.isDisabled,\"is-checked\":e.model===e.label}},[n(\"span\",{staticClass:\"el-radio__inner\"}),n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.model,expression:\"model\"}],ref:\"radio\",staticClass:\"el-radio__original\",attrs:{type:\"radio\",\"aria-hidden\":\"true\",name:e.name,disabled:e.isDisabled,tabindex:\"-1\"},domProps:{value:e.label,checked:e._q(e.model,e.label)},on:{focus:function(t){e.focus=!0},blur:function(t){e.focus=!1},change:[function(t){e.model=e.label},e.handleChange]}})]),n(\"span\",{staticClass:\"el-radio__label\",on:{keydown:function(e){e.stopPropagation()}}},[e._t(\"default\"),e.$slots.default?e._e():[e._v(e._s(e.label))]],2)])},r=[];i._withStripped=!0;var a=n(4),o=n.n(a),s={name:\"ElRadio\",mixins:[o.a],inject:{elForm:{default:\"\"},elFormItem:{default:\"\"}},componentName:\"ElRadio\",props:{value:{},label:{},disabled:Boolean,name:String,border:Boolean,size:String},data:function(){return{focus:!1}},computed:{isGroup:function(){var e=this.$parent;while(e){if(\"ElRadioGroup\"===e.$options.componentName)return this._radioGroup=e,!0;e=e.$parent}return!1},model:{get:function(){return this.isGroup?this._radioGroup.value:this.value},set:function(e){this.isGroup?this.dispatch(\"ElRadioGroup\",\"input\",[e]):this.$emit(\"input\",e),this.$refs.radio&&(this.$refs.radio.checked=this.model===this.label)}},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},radioSize:function(){var e=this.size||this._elFormItemSize||(this.$ELEMENT||{}).size;return this.isGroup&&this._radioGroup.radioGroupSize||e},isDisabled:function(){return this.isGroup?this._radioGroup.disabled||this.disabled||(this.elForm||{}).disabled:this.disabled||(this.elForm||{}).disabled},tabIndex:function(){return this.isDisabled||this.isGroup&&this.model!==this.label?-1:0}},methods:{handleChange:function(){var e=this;this.$nextTick((function(){e.$emit(\"change\",e.model),e.isGroup&&e.dispatch(\"ElRadioGroup\",\"handleChange\",e.model)}))}}},l=s,c=n(0),u=Object(c[\"a\"])(l,i,r,!1,null,null,null);u.options.__file=\"packages/radio/src/radio.vue\";var d=u.exports;d.install=function(e){e.component(d.name,d)};t[\"default\"]=d},4:function(e,t){e.exports=n(\"d010\")}})},f4c8:function(e,t){function n(e){return{name:\"N1QL\",case_insensitive:!0,contains:[{beginKeywords:\"build create index delete drop explain infer|10 insert merge prepare select update upsert|10\",end:/;/,endsWithParent:!0,keywords:{keyword:\"all alter analyze and any array as asc begin between binary boolean break bucket build by call case cast cluster collate collection commit connect continue correlate cover create database dataset datastore declare decrement delete derived desc describe distinct do drop each element else end every except exclude execute exists explain fetch first flatten for force from function grant group gsi having if ignore ilike in include increment index infer inline inner insert intersect into is join key keys keyspace known last left let letting like limit lsm map mapping matched materialized merge minus namespace nest not number object offset on option or order outer over parse partition password path pool prepare primary private privilege procedure public raw realm reduce rename return returning revoke right role rollback satisfies schema select self semi set show some start statistics string system then to transaction trigger truncate under union unique unknown unnest unset update upsert use user using validate value valued values via view when where while with within work xor\",literal:\"true false null missing|5\",built_in:\"array_agg array_append array_concat array_contains array_count array_distinct array_ifnull array_length array_max array_min array_position array_prepend array_put array_range array_remove array_repeat array_replace array_reverse array_sort array_sum avg count max min sum greatest least ifmissing ifmissingornull ifnull missingif nullif ifinf ifnan ifnanorinf naninf neginfif posinfif clock_millis clock_str date_add_millis date_add_str date_diff_millis date_diff_str date_part_millis date_part_str date_trunc_millis date_trunc_str duration_to_str millis str_to_millis millis_to_str millis_to_utc millis_to_zone_name now_millis now_str str_to_duration str_to_utc str_to_zone_name decode_json encode_json encoded_size poly_length base64 base64_encode base64_decode meta uuid abs acos asin atan atan2 ceil cos degrees e exp ln log floor pi power radians random round sign sin sqrt tan trunc object_length object_names object_pairs object_inner_pairs object_values object_inner_values object_add object_put object_remove object_unwrap regexp_contains regexp_like regexp_position regexp_replace contains initcap length lower ltrim position repeat replace rtrim split substr title trim upper isarray isatom isboolean isnumber isobject isstring type toarray toatom toboolean tonumber toobject tostring\"},contains:[{className:\"string\",begin:\"'\",end:\"'\",contains:[e.BACKSLASH_ESCAPE]},{className:\"string\",begin:'\"',end:'\"',contains:[e.BACKSLASH_ESCAPE]},{className:\"symbol\",begin:\"`\",end:\"`\",contains:[e.BACKSLASH_ESCAPE],relevance:2},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE]},e.C_BLOCK_COMMENT_MODE]}}e.exports=n},f4da:function(e,t){function n(e){const t=\"if eq ne lt lte gt gte select default math sep\";return{name:\"Dust\",aliases:[\"dst\"],case_insensitive:!0,subLanguage:\"xml\",contains:[{className:\"template-tag\",begin:/\\{[#\\/]/,end:/\\}/,illegal:/;/,contains:[{className:\"name\",begin:/[a-zA-Z\\.-]+/,starts:{endsWithParent:!0,relevance:0,contains:[e.QUOTE_STRING_MODE]}}]},{className:\"template-variable\",begin:/\\{/,end:/\\}/,illegal:/;/,keywords:t}]}}e.exports=n},f50f:function(e,t){function n(e){const t=\"[a-zA-Z-_][^\\\\n{]+\\\\{\",n={className:\"attribute\",begin:/[a-zA-Z-_]+/,end:/\\s*:/,excludeEnd:!0,starts:{end:\";\",relevance:0,contains:[{className:\"variable\",begin:/\\.[a-zA-Z-_]+/},{className:\"keyword\",begin:/\\(optional\\)/}]}};return{name:\"Roboconf\",aliases:[\"graph\",\"instances\"],case_insensitive:!0,keywords:\"import\",contains:[{begin:\"^facet \"+t,end:/\\}/,keywords:\"facet\",contains:[n,e.HASH_COMMENT_MODE]},{begin:\"^\\\\s*instance of \"+t,end:/\\}/,keywords:\"name count channels instance-data instance-state instance of\",illegal:/\\S/,contains:[\"self\",n,e.HASH_COMMENT_MODE]},{begin:\"^\"+t,end:/\\}/,contains:[n,e.HASH_COMMENT_MODE]},e.HASH_COMMENT_MODE]}}e.exports=n},f54f:function(e,t){function n(e){const t={className:\"variable\",variants:[{begin:/\\$\\d+/},{begin:/\\$\\{/,end:/\\}/},{begin:/[$@]/+e.UNDERSCORE_IDENT_RE}]},n={endsWithParent:!0,keywords:{$pattern:\"[a-z/_]+\",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\"},relevance:0,illegal:\"=>\",contains:[e.HASH_COMMENT_MODE,{className:\"string\",contains:[e.BACKSLASH_ESCAPE,t],variants:[{begin:/\"/,end:/\"/},{begin:/'/,end:/'/}]},{begin:\"([a-z]+):/\",end:\"\\\\s\",endsWithParent:!0,excludeEnd:!0,contains:[t]},{className:\"regexp\",contains:[e.BACKSLASH_ESCAPE,t],variants:[{begin:\"\\\\s\\\\^\",end:\"\\\\s|\\\\{|;\",returnEnd:!0},{begin:\"~\\\\*?\\\\s+\",end:\"\\\\s|\\\\{|;\",returnEnd:!0},{begin:\"\\\\*(\\\\.[a-z\\\\-]+)+\"},{begin:\"([a-z\\\\-]+\\\\.)+\\\\*\"}]},{className:\"number\",begin:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{className:\"number\",begin:\"\\\\b\\\\d+[kKmMgGdshdwy]*\\\\b\",relevance:0},t]};return{name:\"Nginx config\",aliases:[\"nginxconf\"],contains:[e.HASH_COMMENT_MODE,{begin:e.UNDERSCORE_IDENT_RE+\"\\\\s+\\\\{\",returnBegin:!0,end:/\\{/,contains:[{className:\"section\",begin:e.UNDERSCORE_IDENT_RE}],relevance:0},{begin:e.UNDERSCORE_IDENT_RE+\"\\\\s\",end:\";|\\\\{\",returnBegin:!0,contains:[{className:\"attribute\",begin:e.UNDERSCORE_IDENT_RE,starts:n}],relevance:0}],illegal:\"[^\\\\s\\\\}]\"}}e.exports=n},f5cf:function(e,t){function n(e){return{name:\"Excel formulae\",aliases:[\"xlsx\",\"xls\"],case_insensitive:!0,keywords:{$pattern:/[a-zA-Z][\\w\\.]*/,built_in:\"ABS ACCRINT ACCRINTM ACOS ACOSH ACOT ACOTH AGGREGATE ADDRESS AMORDEGRC AMORLINC AND ARABIC AREAS ASC ASIN ASINH ATAN ATAN2 ATANH AVEDEV AVERAGE AVERAGEA AVERAGEIF AVERAGEIFS BAHTTEXT BASE BESSELI BESSELJ BESSELK BESSELY BETADIST BETA.DIST BETAINV BETA.INV BIN2DEC BIN2HEX BIN2OCT BINOMDIST BINOM.DIST BINOM.DIST.RANGE BINOM.INV BITAND BITLSHIFT BITOR BITRSHIFT BITXOR CALL CEILING CEILING.MATH CEILING.PRECISE CELL CHAR CHIDIST CHIINV CHITEST CHISQ.DIST CHISQ.DIST.RT CHISQ.INV CHISQ.INV.RT CHISQ.TEST CHOOSE CLEAN CODE COLUMN COLUMNS COMBIN COMBINA COMPLEX CONCAT CONCATENATE CONFIDENCE CONFIDENCE.NORM CONFIDENCE.T CONVERT CORREL COS COSH COT COTH COUNT COUNTA COUNTBLANK COUNTIF COUNTIFS COUPDAYBS COUPDAYS COUPDAYSNC COUPNCD COUPNUM COUPPCD COVAR COVARIANCE.P COVARIANCE.S CRITBINOM CSC CSCH CUBEKPIMEMBER CUBEMEMBER CUBEMEMBERPROPERTY CUBERANKEDMEMBER CUBESET CUBESETCOUNT CUBEVALUE CUMIPMT CUMPRINC DATE DATEDIF DATEVALUE DAVERAGE DAY DAYS DAYS360 DB DBCS DCOUNT DCOUNTA DDB DEC2BIN DEC2HEX DEC2OCT DECIMAL DEGREES DELTA DEVSQ DGET DISC DMAX DMIN DOLLAR DOLLARDE DOLLARFR DPRODUCT DSTDEV DSTDEVP DSUM DURATION DVAR DVARP EDATE EFFECT ENCODEURL EOMONTH ERF ERF.PRECISE ERFC ERFC.PRECISE ERROR.TYPE EUROCONVERT EVEN EXACT EXP EXPON.DIST EXPONDIST FACT FACTDOUBLE FALSE|0 F.DIST FDIST F.DIST.RT FILTERXML FIND FINDB F.INV F.INV.RT FINV FISHER FISHERINV FIXED FLOOR FLOOR.MATH FLOOR.PRECISE FORECAST FORECAST.ETS FORECAST.ETS.CONFINT FORECAST.ETS.SEASONALITY FORECAST.ETS.STAT FORECAST.LINEAR FORMULATEXT FREQUENCY F.TEST FTEST FV FVSCHEDULE GAMMA GAMMA.DIST GAMMADIST GAMMA.INV GAMMAINV GAMMALN GAMMALN.PRECISE GAUSS GCD GEOMEAN GESTEP GETPIVOTDATA GROWTH HARMEAN HEX2BIN HEX2DEC HEX2OCT HLOOKUP HOUR HYPERLINK HYPGEOM.DIST HYPGEOMDIST IF IFERROR IFNA IFS IMABS IMAGINARY IMARGUMENT IMCONJUGATE IMCOS IMCOSH IMCOT IMCSC IMCSCH IMDIV IMEXP IMLN IMLOG10 IMLOG2 IMPOWER IMPRODUCT IMREAL IMSEC IMSECH IMSIN IMSINH IMSQRT IMSUB IMSUM IMTAN INDEX INDIRECT INFO INT INTERCEPT INTRATE IPMT IRR ISBLANK ISERR ISERROR ISEVEN ISFORMULA ISLOGICAL ISNA ISNONTEXT ISNUMBER ISODD ISREF ISTEXT ISO.CEILING ISOWEEKNUM ISPMT JIS KURT LARGE LCM LEFT LEFTB LEN LENB LINEST LN LOG LOG10 LOGEST LOGINV LOGNORM.DIST LOGNORMDIST LOGNORM.INV LOOKUP LOWER MATCH MAX MAXA MAXIFS MDETERM MDURATION MEDIAN MID MIDBs MIN MINIFS MINA MINUTE MINVERSE MIRR MMULT MOD MODE MODE.MULT MODE.SNGL MONTH MROUND MULTINOMIAL MUNIT N NA NEGBINOM.DIST NEGBINOMDIST NETWORKDAYS NETWORKDAYS.INTL NOMINAL NORM.DIST NORMDIST NORMINV NORM.INV NORM.S.DIST NORMSDIST NORM.S.INV NORMSINV NOT NOW NPER NPV NUMBERVALUE OCT2BIN OCT2DEC OCT2HEX ODD ODDFPRICE ODDFYIELD ODDLPRICE ODDLYIELD OFFSET OR PDURATION PEARSON PERCENTILE.EXC PERCENTILE.INC PERCENTILE PERCENTRANK.EXC PERCENTRANK.INC PERCENTRANK PERMUT PERMUTATIONA PHI PHONETIC PI PMT POISSON.DIST POISSON POWER PPMT PRICE PRICEDISC PRICEMAT PROB PRODUCT PROPER PV QUARTILE QUARTILE.EXC QUARTILE.INC QUOTIENT RADIANS RAND RANDBETWEEN RANK.AVG RANK.EQ RANK RATE RECEIVED REGISTER.ID REPLACE REPLACEB REPT RIGHT RIGHTB ROMAN ROUND ROUNDDOWN ROUNDUP ROW ROWS RRI RSQ RTD SEARCH SEARCHB SEC SECH SECOND SERIESSUM SHEET SHEETS SIGN SIN SINH SKEW SKEW.P SLN SLOPE SMALL SQL.REQUEST SQRT SQRTPI STANDARDIZE STDEV STDEV.P STDEV.S STDEVA STDEVP STDEVPA STEYX SUBSTITUTE SUBTOTAL SUM SUMIF SUMIFS SUMPRODUCT SUMSQ SUMX2MY2 SUMX2PY2 SUMXMY2 SWITCH SYD T TAN TANH TBILLEQ TBILLPRICE TBILLYIELD T.DIST T.DIST.2T T.DIST.RT TDIST TEXT TEXTJOIN TIME TIMEVALUE T.INV T.INV.2T TINV TODAY TRANSPOSE TREND TRIM TRIMMEAN TRUE|0 TRUNC T.TEST TTEST TYPE UNICHAR UNICODE UPPER VALUE VAR VAR.P VAR.S VARA VARP VARPA VDB VLOOKUP WEBSERVICE WEEKDAY WEEKNUM WEIBULL WEIBULL.DIST WORKDAY WORKDAY.INTL XIRR XNPV XOR YEAR YEARFRAC YIELD YIELDDISC YIELDMAT Z.TEST ZTEST\"},contains:[{begin:/^=/,end:/[^=]/,returnEnd:!0,illegal:/=/,relevance:10},{className:\"symbol\",begin:/\\b[A-Z]{1,2}\\d+\\b/,end:/[^\\d]/,excludeEnd:!0,relevance:0},{className:\"symbol\",begin:/[A-Z]{0,2}\\d*:[A-Z]{0,2}\\d*/,relevance:0},e.BACKSLASH_ESCAPE,e.QUOTE_STRING_MODE,{className:\"number\",begin:e.NUMBER_RE+\"(%)?\",relevance:0},e.COMMENT(/\\bN\\(/,/\\)/,{excludeBegin:!0,excludeEnd:!0,illegal:/\\n/})]}}e.exports=n},f605:function(e,t){e.exports=function(e,t,n,i){if(!(e instanceof t)||void 0!==i&&i in e)throw TypeError(n+\": incorrect invocation!\");return e}},f6b4:function(e,t,n){\"use strict\";var i=n(\"c532\");function r(){this.handlers=[]}r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){i.forEach(this.handlers,(function(t){null!==t&&e(t)}))},e.exports=r},f71c:function(e,t){function n(e){var t=\"[A-Za-zА-Яа-яёЁ_][A-Za-zА-Яа-яёЁ_0-9]+\",n=\"далее \",i=\"возврат вызватьисключение выполнить для если и из или иначе иначеесли исключение каждого конецесли конецпопытки конеццикла не новый перейти перем по пока попытка прервать продолжить тогда цикл экспорт \",r=n+i,a=\"загрузитьизфайла \",o=\"вебклиент вместо внешнеесоединение клиент конецобласти мобильноеприложениеклиент мобильноеприложениесервер наклиенте наклиентенасервере наклиентенасерверебезконтекста насервере насерверебезконтекста область перед после сервер толстыйклиентобычноеприложение толстыйклиентуправляемоеприложение тонкийклиент \",s=a+o,l=\"разделительстраниц разделительстрок символтабуляции \",c=\"ansitooem oemtoansi ввестивидсубконто ввестиперечисление ввестипериод ввестиплансчетов выбранныйплансчетов датагод датамесяц датачисло заголовоксистемы значениевстроку значениеизстроки каталогиб каталогпользователя кодсимв конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лог лог10 максимальноеколичествосубконто названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найтиссылки началопериодаби началостандартногоинтервала начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода обработкаожидания основнойжурналрасчетов основнойплансчетов основнойязык очиститьокносообщений периодстр получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта префиксавтонумерации пропись пустоезначение разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо симв создатьобъект статусвозврата стрколичествострок сформироватьпозициюдокумента счетпокоду текущеевремя типзначения типзначениястр установитьтана установитьтапо фиксшаблон шаблон \",u=\"acos asin atan base64значение base64строка cos exp log log10 pow sin sqrt tan xmlзначение xmlстрока xmlтип xmlтипзнч активноеокно безопасныйрежим безопасныйрежимразделенияданных булево ввестидату ввестизначение ввестистроку ввестичисло возможностьчтенияxml вопрос восстановитьзначение врег выгрузитьжурналрегистрации выполнитьобработкуоповещения выполнитьпроверкуправдоступа вычислить год данныеформывзначение дата день деньгода деньнедели добавитьмесяц заблокироватьданныедляредактирования заблокироватьработупользователя завершитьработусистемы загрузитьвнешнююкомпоненту закрытьсправку записатьjson записатьxml записатьдатуjson записьжурналарегистрации заполнитьзначениясвойств запроситьразрешениепользователя запуститьприложение запуститьсистему зафиксироватьтранзакцию значениевданныеформы значениевстрокувнутр значениевфайл значениезаполнено значениеизстрокивнутр значениеизфайла изxmlтипа импортмоделиxdto имякомпьютера имяпользователя инициализироватьпредопределенныеданные информацияобошибке каталогбиблиотекимобильногоустройства каталогвременныхфайлов каталогдокументов каталогпрограммы кодироватьстроку кодлокализацииинформационнойбазы кодсимвола командасистемы конецгода конецдня конецквартала конецмесяца конецминуты конецнедели конецчаса конфигурациябазыданныхизмененадинамически конфигурацияизменена копироватьданныеформы копироватьфайл краткоепредставлениеошибки лев макс местноевремя месяц мин минута монопольныйрежим найти найтинедопустимыесимволыxml найтиокнопонавигационнойссылке найтипомеченныенаудаление найтипоссылкам найтифайлы началогода началодня началоквартала началомесяца началоминуты началонедели началочаса начатьзапросразрешенияпользователя начатьзапускприложения начатькопированиефайла начатьперемещениефайла начатьподключениевнешнейкомпоненты начатьподключениерасширенияработыскриптографией начатьподключениерасширенияработысфайлами начатьпоискфайлов начатьполучениекаталогавременныхфайлов начатьполучениекаталогадокументов начатьполучениерабочегокаталогаданныхпользователя начатьполучениефайлов начатьпомещениефайла начатьпомещениефайлов начатьсозданиедвоичныхданныхизфайла начатьсозданиекаталога начатьтранзакцию начатьудалениефайлов начатьустановкувнешнейкомпоненты начатьустановкурасширенияработыскриптографией начатьустановкурасширенияработысфайлами неделягода необходимостьзавершениясоединения номерсеансаинформационнойбазы номерсоединенияинформационнойбазы нрег нстр обновитьинтерфейс обновитьнумерациюобъектов обновитьповторноиспользуемыезначения обработкапрерыванияпользователя объединитьфайлы окр описаниеошибки оповестить оповеститьобизменении отключитьобработчикзапросанастроекклиенталицензирования отключитьобработчикожидания отключитьобработчикоповещения открытьзначение открытьиндекссправки открытьсодержаниесправки открытьсправку открытьформу открытьформумодально отменитьтранзакцию очиститьжурналрегистрации очиститьнастройкипользователя очиститьсообщения параметрыдоступа перейтипонавигационнойссылке переместитьфайл подключитьвнешнююкомпоненту подключитьобработчикзапросанастроекклиенталицензирования подключитьобработчикожидания подключитьобработчикоповещения подключитьрасширениеработыскриптографией подключитьрасширениеработысфайлами подробноепредставлениеошибки показатьвводдаты показатьвводзначения показатьвводстроки показатьвводчисла показатьвопрос показатьзначение показатьинформациюобошибке показатьнакарте показатьоповещениепользователя показатьпредупреждение полноеимяпользователя получитьcomобъект получитьxmlтип получитьадреспоместоположению получитьблокировкусеансов получитьвремязавершенияспящегосеанса получитьвремязасыпанияпассивногосеанса получитьвремяожиданияблокировкиданных получитьданныевыбора получитьдополнительныйпараметрклиенталицензирования получитьдопустимыекодылокализации получитьдопустимыечасовыепояса получитьзаголовокклиентскогоприложения получитьзаголовоксистемы получитьзначенияотборажурналарегистрации получитьидентификаторконфигурации получитьизвременногохранилища получитьимявременногофайла получитьимяклиенталицензирования получитьинформациюэкрановклиента получитьиспользованиежурналарегистрации получитьиспользованиесобытияжурналарегистрации получитькраткийзаголовокприложения получитьмакетоформления получитьмаскувсефайлы получитьмаскувсефайлыклиента получитьмаскувсефайлысервера получитьместоположениепоадресу получитьминимальнуюдлинупаролейпользователей получитьнавигационнуюссылку получитьнавигационнуюссылкуинформационнойбазы получитьобновлениеконфигурациибазыданных получитьобновлениепредопределенныхданныхинформационнойбазы получитьобщиймакет получитьобщуюформу получитьокна получитьоперативнуюотметкувремени получитьотключениебезопасногорежима получитьпараметрыфункциональныхопцийинтерфейса получитьполноеимяпредопределенногозначения получитьпредставлениянавигационныхссылок получитьпроверкусложностипаролейпользователей получитьразделительпути получитьразделительпутиклиента получитьразделительпутисервера получитьсеансыинформационнойбазы получитьскоростьклиентскогосоединения получитьсоединенияинформационнойбазы получитьсообщенияпользователю получитьсоответствиеобъектаиформы получитьсоставстандартногоинтерфейсаodata получитьструктурухранениябазыданных получитьтекущийсеансинформационнойбазы получитьфайл получитьфайлы получитьформу получитьфункциональнуюопцию получитьфункциональнуюопциюинтерфейса получитьчасовойпоясинформационнойбазы пользователиос поместитьвовременноехранилище поместитьфайл поместитьфайлы прав праводоступа предопределенноезначение представлениекодалокализации представлениепериода представлениеправа представлениеприложения представлениесобытияжурналарегистрации представлениечасовогопояса предупреждение прекратитьработусистемы привилегированныйрежим продолжитьвызов прочитатьjson прочитатьxml прочитатьдатуjson пустаястрока рабочийкаталогданныхпользователя разблокироватьданныедляредактирования разделитьфайл разорватьсоединениесвнешнимисточникомданных раскодироватьстроку рольдоступна секунда сигнал символ скопироватьжурналрегистрации смещениелетнеговремени смещениестандартноговремени соединитьбуферыдвоичныхданных создатькаталог создатьфабрикуxdto сокрл сокрлп сокрп сообщить состояние сохранитьзначение сохранитьнастройкипользователя сред стрдлина стрзаканчиваетсяна стрзаменить стрнайти стрначинаетсяс строка строкасоединенияинформационнойбазы стрполучитьстроку стрразделить стрсоединить стрсравнить стрчисловхождений стрчислострок стршаблон текущаядата текущаядатасеанса текущаяуниверсальнаядата текущаяуниверсальнаядатавмиллисекундах текущийвариантинтерфейсаклиентскогоприложения текущийвариантосновногошрифтаклиентскогоприложения текущийкодлокализации текущийрежимзапуска текущийязык текущийязыксистемы тип типзнч транзакцияактивна трег удалитьданныеинформационнойбазы удалитьизвременногохранилища удалитьобъекты удалитьфайлы универсальноевремя установитьбезопасныйрежим установитьбезопасныйрежимразделенияданных установитьблокировкусеансов установитьвнешнююкомпоненту установитьвремязавершенияспящегосеанса установитьвремязасыпанияпассивногосеанса установитьвремяожиданияблокировкиданных установитьзаголовокклиентскогоприложения установитьзаголовоксистемы установитьиспользованиежурналарегистрации установитьиспользованиесобытияжурналарегистрации установитькраткийзаголовокприложения установитьминимальнуюдлинупаролейпользователей установитьмонопольныйрежим установитьнастройкиклиенталицензирования установитьобновлениепредопределенныхданныхинформационнойбазы установитьотключениебезопасногорежима установитьпараметрыфункциональныхопцийинтерфейса установитьпривилегированныйрежим установитьпроверкусложностипаролейпользователей установитьрасширениеработыскриптографией установитьрасширениеработысфайлами установитьсоединениесвнешнимисточникомданных установитьсоответствиеобъектаиформы установитьсоставстандартногоинтерфейсаodata установитьчасовойпоясинформационнойбазы установитьчасовойпояссеанса формат цел час часовойпояс часовойпояссеанса число числопрописью этоадресвременногохранилища \",d=\"wsссылки библиотекакартинок библиотекамакетовоформлениякомпоновкиданных библиотекастилей бизнеспроцессы внешниеисточникиданных внешниеобработки внешниеотчеты встроенныепокупки главныйинтерфейс главныйстиль документы доставляемыеуведомления журналыдокументов задачи информацияобинтернетсоединении использованиерабочейдаты историяработыпользователя константы критерииотбора метаданные обработки отображениерекламы отправкадоставляемыхуведомлений отчеты панельзадачос параметрзапуска параметрысеанса перечисления планывидоврасчета планывидовхарактеристик планыобмена планысчетов полнотекстовыйпоиск пользователиинформационнойбазы последовательности проверкавстроенныхпокупок рабочаядата расширенияконфигурации регистрыбухгалтерии регистрынакопления регистрырасчета регистрысведений регламентныезадания сериализаторxdto справочники средствагеопозиционирования средствакриптографии средствамультимедиа средстваотображениярекламы средствапочты средствателефонии фабрикаxdto файловыепотоки фоновыезадания хранилищанастроек хранилищевариантовотчетов хранилищенастроекданныхформ хранилищеобщихнастроек хранилищепользовательскихнастроекдинамическихсписков хранилищепользовательскихнастроекотчетов хранилищесистемныхнастроек \",p=l+c+u+d,h=\"webцвета windowsцвета windowsшрифты библиотекакартинок рамкистиля символы цветастиля шрифтыстиля \",f=\"автоматическоесохранениеданныхформывнастройках автонумерациявформе автораздвижениесерий анимациядиаграммы вариантвыравниванияэлементовизаголовков вариантуправлениявысотойтаблицы вертикальнаяпрокруткаформы вертикальноеположение вертикальноеположениеэлемента видгруппыформы виддекорацииформы виддополненияэлементаформы видизмененияданных видкнопкиформы видпереключателя видподписейкдиаграмме видполяформы видфлажка влияниеразмеранапузырекдиаграммы горизонтальноеположение горизонтальноеположениеэлемента группировкаколонок группировкаподчиненныхэлементовформы группыиэлементы действиеперетаскивания дополнительныйрежимотображения допустимыедействияперетаскивания интервалмеждуэлементамиформы использованиевывода использованиеполосыпрокрутки используемоезначениеточкибиржевойдиаграммы историявыборапривводе источникзначенийоситочекдиаграммы источникзначенияразмерапузырькадиаграммы категориягруппыкоманд максимумсерий начальноеотображениедерева начальноеотображениесписка обновлениетекстаредактирования ориентациядендрограммы ориентациядиаграммы ориентацияметокдиаграммы ориентацияметоксводнойдиаграммы ориентацияэлементаформы отображениевдиаграмме отображениевлегендедиаграммы отображениегруппыкнопок отображениезаголовкашкалыдиаграммы отображениезначенийсводнойдиаграммы отображениезначенияизмерительнойдиаграммы отображениеинтерваладиаграммыганта отображениекнопки отображениекнопкивыбора отображениеобсужденийформы отображениеобычнойгруппы отображениеотрицательныхзначенийпузырьковойдиаграммы отображениепанелипоиска отображениеподсказки отображениепредупрежденияприредактировании отображениеразметкиполосырегулирования отображениестраницформы отображениетаблицы отображениетекстазначениядиаграммыганта отображениеуправленияобычнойгруппы отображениефигурыкнопки палитрацветовдиаграммы поведениеобычнойгруппы поддержкамасштабадендрограммы поддержкамасштабадиаграммыганта поддержкамасштабасводнойдиаграммы поисквтаблицепривводе положениезаголовкаэлементаформы положениекартинкикнопкиформы положениекартинкиэлементаграфическойсхемы положениекоманднойпанелиформы положениекоманднойпанелиэлементаформы положениеопорнойточкиотрисовки положениеподписейкдиаграмме положениеподписейшкалызначенийизмерительнойдиаграммы положениесостоянияпросмотра положениестрокипоиска положениетекстасоединительнойлинии положениеуправленияпоиском положениешкалывремени порядокотображенияточекгоризонтальнойгистограммы порядоксерийвлегендедиаграммы размеркартинки расположениезаголовкашкалыдиаграммы растягиваниеповертикалидиаграммыганта режимавтоотображениясостояния режимвводастроктаблицы режимвыборанезаполненного режимвыделениядаты режимвыделениястрокитаблицы режимвыделениятаблицы режимизмененияразмера режимизменениясвязанногозначения режимиспользованиядиалогапечати режимиспользованияпараметракоманды режиммасштабированияпросмотра режимосновногоокнаклиентскогоприложения режимоткрытияокнаформы режимотображениявыделения режимотображениягеографическойсхемы режимотображениязначенийсерии режимотрисовкисеткиграфическойсхемы режимполупрозрачностидиаграммы режимпробеловдиаграммы режимразмещениянастранице режимредактированияколонки режимсглаживаниядиаграммы режимсглаживанияиндикатора режимсписказадач сквозноевыравнивание сохранениеданныхформывнастройках способзаполнениятекстазаголовкашкалыдиаграммы способопределенияограничивающегозначениядиаграммы стандартнаягруппакоманд стандартноеоформление статусоповещенияпользователя стильстрелки типаппроксимациилиниитрендадиаграммы типдиаграммы типединицышкалывремени типимпортасерийслоягеографическойсхемы типлиниигеографическойсхемы типлиниидиаграммы типмаркерагеографическойсхемы типмаркерадиаграммы типобластиоформления типорганизацииисточникаданныхгеографическойсхемы типотображениясериислоягеографическойсхемы типотображенияточечногообъектагеографическойсхемы типотображенияшкалыэлементалегендыгеографическойсхемы типпоискаобъектовгеографическойсхемы типпроекциигеографическойсхемы типразмещенияизмерений типразмещенияреквизитовизмерений типрамкиэлементауправления типсводнойдиаграммы типсвязидиаграммыганта типсоединениязначенийпосериямдиаграммы типсоединенияточекдиаграммы типсоединительнойлинии типстороныэлементаграфическойсхемы типформыотчета типшкалырадарнойдиаграммы факторлиниитрендадиаграммы фигуракнопки фигурыграфическойсхемы фиксациявтаблице форматдняшкалывремени форматкартинки ширинаподчиненныхэлементовформы \",_=\"виддвижениябухгалтерии виддвижениянакопления видпериодарегистрарасчета видсчета видточкимаршрутабизнеспроцесса использованиеагрегатарегистранакопления использованиегруппиэлементов использованиережимапроведения использованиесреза периодичностьагрегатарегистранакопления режимавтовремя режимзаписидокумента режимпроведениядокумента \",m=\"авторегистрацияизменений допустимыйномерсообщения отправкаэлементаданных получениеэлементаданных \",g=\"использованиерасшифровкитабличногодокумента ориентациястраницы положениеитоговколоноксводнойтаблицы положениеитоговстроксводнойтаблицы положениетекстаотносительнокартинки расположениезаголовкагруппировкитабличногодокумента способчтениязначенийтабличногодокумента типдвустороннейпечати типзаполненияобластитабличногодокумента типкурсоровтабличногодокумента типлиниирисункатабличногодокумента типлинииячейкитабличногодокумента типнаправленияпереходатабличногодокумента типотображениявыделениятабличногодокумента типотображениялинийсводнойтаблицы типразмещениятекстатабличногодокумента типрисункатабличногодокумента типсмещениятабличногодокумента типузоратабличногодокумента типфайлатабличногодокумента точностьпечати чередованиерасположениястраниц \",b=\"отображениевремениэлементовпланировщика \",v=\"типфайлаформатированногодокумента \",E=\"обходрезультатазапроса типзаписизапроса \",y=\"видзаполнениярасшифровкипостроителяотчета типдобавленияпредставлений типизмеренияпостроителяотчета типразмещенияитогов \",S=\"доступкфайлу режимдиалогавыборафайла режимоткрытияфайла \",C=\"типизмеренияпостроителязапроса \",T=\"видданныханализа методкластеризации типединицыинтервалавременианализаданных типзаполнениятаблицырезультатаанализаданных типиспользованиячисловыхзначенийанализаданных типисточникаданныхпоискаассоциаций типколонкианализаданныхдереворешений типколонкианализаданныхкластеризация типколонкианализаданныхобщаястатистика типколонкианализаданныхпоискассоциаций типколонкианализаданныхпоискпоследовательностей типколонкимоделипрогноза типмерырасстоянияанализаданных типотсеченияправилассоциации типполяанализаданных типстандартизациианализаданных типупорядочиванияправилассоциациианализаданных типупорядочиванияшаблоновпоследовательностейанализаданных типупрощениядереварешений \",x=\"wsнаправлениепараметра вариантxpathxs вариантзаписидатыjson вариантпростоготипаxs видгруппымоделиxs видфасетаxdto действиепостроителяdom завершенностьпростоготипаxs завершенностьсоставноготипаxs завершенностьсхемыxs запрещенныеподстановкиxs исключениягруппподстановкиxs категорияиспользованияатрибутаxs категорияограниченияидентичностиxs категорияограниченияпространствименxs методнаследованияxs модельсодержимогоxs назначениетипаxml недопустимыеподстановкиxs обработкапробельныхсимволовxs обработкасодержимогоxs ограничениезначенияxs параметрыотбораузловdom переносстрокjson позициявдокументеdom пробельныесимволыxml типатрибутаxml типзначенияjson типканоническогоxml типкомпонентыxs типпроверкиxml типрезультатаdomxpath типузлаdom типузлаxml формаxml формапредставленияxs форматдатыjson экранированиесимволовjson \",w=\"видсравнениякомпоновкиданных действиеобработкирасшифровкикомпоновкиданных направлениесортировкикомпоновкиданных расположениевложенныхэлементоврезультатакомпоновкиданных расположениеитоговкомпоновкиданных расположениегруппировкикомпоновкиданных расположениеполейгруппировкикомпоновкиданных расположениеполякомпоновкиданных расположениереквизитовкомпоновкиданных расположениересурсовкомпоновкиданных типбухгалтерскогоостаткакомпоновкиданных типвыводатекстакомпоновкиданных типгруппировкикомпоновкиданных типгруппыэлементовотборакомпоновкиданных типдополненияпериодакомпоновкиданных типзаголовкаполейкомпоновкиданных типмакетагруппировкикомпоновкиданных типмакетаобластикомпоновкиданных типостаткакомпоновкиданных типпериодакомпоновкиданных типразмещениятекстакомпоновкиданных типсвязинаборовданныхкомпоновкиданных типэлементарезультатакомпоновкиданных расположениелегендыдиаграммыкомпоновкиданных типпримененияотборакомпоновкиданных режимотображенияэлементанастройкикомпоновкиданных режимотображениянастроеккомпоновкиданных состояниеэлементанастройкикомпоновкиданных способвосстановлениянастроеккомпоновкиданных режимкомпоновкирезультата использованиепараметракомпоновкиданных автопозицияресурсовкомпоновкиданных вариантиспользованиягруппировкикомпоновкиданных расположениересурсоввдиаграммекомпоновкиданных фиксациякомпоновкиданных использованиеусловногооформлениякомпоновкиданных \",O=\"важностьинтернетпочтовогосообщения обработкатекстаинтернетпочтовогосообщения способкодированияинтернетпочтовоговложения способкодированиянеasciiсимволовинтернетпочтовогосообщения типтекстапочтовогосообщения протоколинтернетпочты статусразборапочтовогосообщения \",N=\"режимтранзакциизаписижурналарегистрации статустранзакциизаписижурналарегистрации уровеньжурналарегистрации \",R=\"расположениехранилищасертификатовкриптографии режимвключениясертификатовкриптографии режимпроверкисертификатакриптографии типхранилищасертификатовкриптографии \",k=\"кодировкаименфайловвzipфайле методсжатияzip методшифрованияzip режимвосстановленияпутейфайловzip режимобработкиподкаталоговzip режимсохраненияпутейzip уровеньсжатияzip \",A=\"звуковоеоповещение направлениепереходакстроке позициявпотоке порядокбайтов режимблокировкиданных режимуправленияблокировкойданных сервисвстроенныхпокупок состояниефоновогозадания типподписчикадоставляемыхуведомлений уровеньиспользованиязащищенногосоединенияftp \",D=\"направлениепорядкасхемызапроса типдополненияпериодамисхемызапроса типконтрольнойточкисхемызапроса типобъединениясхемызапроса типпараметрадоступнойтаблицысхемызапроса типсоединениясхемызапроса \",I=\"httpметод автоиспользованиеобщегореквизита автопрефиксномеразадачи вариантвстроенногоязыка видиерархии видрегистранакопления видтаблицывнешнегоисточникаданных записьдвиженийприпроведении заполнениепоследовательностей индексирование использованиебазыпланавидоврасчета использованиебыстроговыбора использованиеобщегореквизита использованиеподчинения использованиеполнотекстовогопоиска использованиеразделяемыхданныхобщегореквизита использованиереквизита назначениеиспользованияприложения назначениерасширенияконфигурации направлениепередачи обновлениепредопределенныхданных оперативноепроведение основноепредставлениевидарасчета основноепредставлениевидахарактеристики основноепредставлениезадачи основноепредставлениепланаобмена основноепредставлениесправочника основноепредставлениесчета перемещениеграницыприпроведении периодичностьномерабизнеспроцесса периодичностьномерадокумента периодичностьрегистрарасчета периодичностьрегистрасведений повторноеиспользованиевозвращаемыхзначений полнотекстовыйпоискпривводепостроке принадлежностьобъекта проведение разделениеаутентификацииобщегореквизита разделениеданныхобщегореквизита разделениерасширенийконфигурацииобщегореквизита режимавтонумерацииобъектов режимзаписирегистра режимиспользованиямодальности режимиспользованиясинхронныхвызововрасширенийплатформыивнешнихкомпонент режимповторногоиспользованиясеансов режимполученияданныхвыборапривводепостроке режимсовместимости режимсовместимостиинтерфейса режимуправленияблокировкойданныхпоумолчанию сериикодовпланавидовхарактеристик сериикодовпланасчетов сериикодовсправочника созданиепривводе способвыбора способпоискастрокипривводепостроке способредактирования типданныхтаблицывнешнегоисточникаданных типкодапланавидоврасчета типкодасправочника типмакета типномерабизнеспроцесса типномерадокумента типномеразадачи типформы удалениедвижений \",M=\"важностьпроблемыприменениярасширенияконфигурации вариантинтерфейсаклиентскогоприложения вариантмасштабаформклиентскогоприложения вариантосновногошрифтаклиентскогоприложения вариантстандартногопериода вариантстандартнойдатыначала видграницы видкартинки видотображенияполнотекстовогопоиска видрамки видсравнения видцвета видчисловогозначения видшрифта допустимаядлина допустимыйзнак использованиеbyteordermark использованиеметаданныхполнотекстовогопоиска источникрасширенийконфигурации клавиша кодвозвратадиалога кодировкаxbase кодировкатекста направлениепоиска направлениесортировки обновлениепредопределенныхданных обновлениеприизмененииданных отображениепанелиразделов проверказаполнения режимдиалогавопрос режимзапускаклиентскогоприложения режимокругления режимоткрытияформприложения режимполнотекстовогопоиска скоростьклиентскогосоединения состояниевнешнегоисточникаданных состояниеобновленияконфигурациибазыданных способвыборасертификатаwindows способкодированиястроки статуссообщения типвнешнейкомпоненты типплатформы типповеденияклавишиenter типэлементаинформацииовыполненииобновленияконфигурациибазыданных уровеньизоляциитранзакций хешфункция частидаты\",L=h+f+_+m+g+b+v+E+y+S+C+T+x+w+O+N+R+k+A+D+I+M,P=\"comобъект ftpсоединение httpзапрос httpсервисответ httpсоединение wsопределения wsпрокси xbase анализданных аннотацияxs блокировкаданных буфердвоичныхданных включениеxs выражениекомпоновкиданных генераторслучайныхчисел географическаясхема географическиекоординаты графическаясхема группамоделиxs данныерасшифровкикомпоновкиданных двоичныеданные дендрограмма диаграмма диаграммаганта диалогвыборафайла диалогвыборацвета диалогвыборашрифта диалограсписаниярегламентногозадания диалогредактированиястандартногопериода диапазон документdom документhtml документацияxs доставляемоеуведомление записьdom записьfastinfoset записьhtml записьjson записьxml записьzipфайла записьданных записьтекста записьузловdom запрос защищенноесоединениеopenssl значенияполейрасшифровкикомпоновкиданных извлечениетекста импортxs интернетпочта интернетпочтовоесообщение интернетпочтовыйпрофиль интернетпрокси интернетсоединение информациядляприложенияxs использованиеатрибутаxs использованиесобытияжурналарегистрации источникдоступныхнастроеккомпоновкиданных итераторузловdom картинка квалификаторыдаты квалификаторыдвоичныхданных квалификаторыстроки квалификаторычисла компоновщикмакетакомпоновкиданных компоновщикнастроеккомпоновкиданных конструктормакетаоформлениякомпоновкиданных конструкторнастроеккомпоновкиданных конструкторформатнойстроки линия макеткомпоновкиданных макетобластикомпоновкиданных макетоформлениякомпоновкиданных маскаxs менеджеркриптографии наборсхемxml настройкикомпоновкиданных настройкисериализацииjson обработкакартинок обработкарасшифровкикомпоновкиданных обходдереваdom объявлениеатрибутаxs объявлениенотацииxs объявлениеэлементаxs описаниеиспользованиясобытиядоступжурналарегистрации описаниеиспользованиясобытияотказвдоступежурналарегистрации описаниеобработкирасшифровкикомпоновкиданных описаниепередаваемогофайла описаниетипов определениегруппыатрибутовxs определениегруппымоделиxs определениеограниченияидентичностиxs определениепростоготипаxs определениесоставноготипаxs определениетипадокументаdom определенияxpathxs отборкомпоновкиданных пакетотображаемыхдокументов параметрвыбора параметркомпоновкиданных параметрызаписиjson параметрызаписиxml параметрычтенияxml переопределениеxs планировщик полеанализаданных полекомпоновкиданных построительdom построительзапроса построительотчета построительотчетаанализаданных построительсхемxml поток потоквпамяти почта почтовоесообщение преобразованиеxsl преобразованиекканоническомуxml процессорвыводарезультатакомпоновкиданныхвколлекциюзначений процессорвыводарезультатакомпоновкиданныхвтабличныйдокумент процессоркомпоновкиданных разыменовательпространствименdom рамка расписаниерегламентногозадания расширенноеимяxml результатчтенияданных своднаядиаграмма связьпараметравыбора связьпотипу связьпотипукомпоновкиданных сериализаторxdto сертификатклиентаwindows сертификатклиентафайл сертификаткриптографии сертификатыудостоверяющихцентровwindows сертификатыудостоверяющихцентровфайл сжатиеданных системнаяинформация сообщениепользователю сочетаниеклавиш сравнениезначений стандартнаядатаначала стандартныйпериод схемаxml схемакомпоновкиданных табличныйдокумент текстовыйдокумент тестируемоеприложение типданныхxml уникальныйидентификатор фабрикаxdto файл файловыйпоток фасетдлиныxs фасетколичестваразрядовдробнойчастиxs фасетмаксимальноговключающегозначенияxs фасетмаксимальногоисключающегозначенияxs фасетмаксимальнойдлиныxs фасетминимальноговключающегозначенияxs фасетминимальногоисключающегозначенияxs фасетминимальнойдлиныxs фасетобразцаxs фасетобщегоколичестваразрядовxs фасетперечисленияxs фасетпробельныхсимволовxs фильтрузловdom форматированнаястрока форматированныйдокумент фрагментxs хешированиеданных хранилищезначения цвет чтениеfastinfoset чтениеhtml чтениеjson чтениеxml чтениеzipфайла чтениеданных чтениетекста чтениеузловdom шрифт элементрезультатакомпоновкиданных \",F=\"comsafearray деревозначений массив соответствие списокзначений структура таблицазначений фиксированнаяструктура фиксированноесоответствие фиксированныймассив \",B=P+F,U=\"null истина ложь неопределено\",$=e.inherit(e.NUMBER_MODE),j={className:\"string\",begin:'\"|\\\\|',end:'\"|$',contains:[{begin:'\"\"'}]},G={begin:\"'\",end:\"'\",excludeBegin:!0,excludeEnd:!0,contains:[{className:\"number\",begin:\"\\\\d{4}([\\\\.\\\\\\\\/:-]?\\\\d{2}){0,5}\"}]},q=e.inherit(e.C_LINE_COMMENT_MODE),H={className:\"meta\",begin:\"#|&\",end:\"$\",keywords:{$pattern:t,\"meta-keyword\":r+s},contains:[q]},V={className:\"symbol\",begin:\"~\",end:\";|:\",excludeEnd:!0},z={className:\"function\",variants:[{begin:\"процедура|функция\",end:\"\\\\)\",keywords:\"процедура функция\"},{begin:\"конецпроцедуры|конецфункции\",keywords:\"конецпроцедуры конецфункции\"}],contains:[{begin:\"\\\\(\",end:\"\\\\)\",endsParent:!0,contains:[{className:\"params\",begin:t,end:\",\",excludeEnd:!0,endsWithParent:!0,keywords:{$pattern:t,keyword:\"знач\",literal:U},contains:[$,j,G]},q]},e.inherit(e.TITLE_MODE,{begin:t})]};return{name:\"1C:Enterprise\",case_insensitive:!0,keywords:{$pattern:t,keyword:r,built_in:p,class:L,type:B,literal:U},contains:[H,z,q,V,$,j,G]}}e.exports=n},f751:function(e,t,n){var i=n(\"5ca1\");i(i.S+i.F,\"Object\",{assign:n(\"7333\")})},f761:function(e,t){function n(e){var t=e.COMMENT(\"--\",\"$\");return{name:\"SQL (more)\",aliases:[\"mysql\",\"oracle\"],disableAutodetect:!0,case_insensitive:!0,illegal:/[<>{}*]/,contains:[{beginKeywords:\"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 values with\",end:/;/,endsWithParent:!0,keywords:{$pattern:/[\\w\\.]+/,keyword:\"as 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 all allocate allow alter always analyze ancillary and anti 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 bucket 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 explode 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 foreign 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 hours 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 lateral 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 minutes 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 notnull 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 seconds section securefile security seed segment select self semi 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 tablesample 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 unnest 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 window 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 unknown\",built_in:\"array bigint binary bit blob bool boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text time timestamp tinyint varchar varchar2 varying void\"},contains:[{className:\"string\",begin:\"'\",end:\"'\",contains:[{begin:\"''\"}]},{className:\"string\",begin:'\"',end:'\"',contains:[{begin:'\"\"'}]},{className:\"string\",begin:\"`\",end:\"`\"},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,e.HASH_COMMENT_MODE]},e.C_BLOCK_COMMENT_MODE,t,e.HASH_COMMENT_MODE]}}e.exports=n},f772:function(e,t){e.exports=function(e){return\"object\"===typeof e?null!==e:\"function\"===typeof e}},f851:function(e,t){function n(e){const t=e.COMMENT(\"--\",\"$\"),n=\"[a-zA-Z_][a-zA-Z_0-9$]*\",i=\"\\\\$([a-zA-Z_]?|[a-zA-Z_][a-zA-Z_0-9]*)\\\\$\",r=\"<<\\\\s*\"+n+\"\\\\s*>>\",a=\"ABORT ALTER ANALYZE BEGIN CALL CHECKPOINT|10 CLOSE CLUSTER COMMENT COMMIT COPY CREATE DEALLOCATE DECLARE DELETE DISCARD DO DROP END EXECUTE EXPLAIN FETCH GRANT IMPORT INSERT LISTEN LOAD LOCK MOVE NOTIFY PREPARE REASSIGN|10 REFRESH REINDEX RELEASE RESET REVOKE ROLLBACK SAVEPOINT SECURITY SELECT SET SHOW START TRUNCATE UNLISTEN|10 UPDATE VACUUM|10 VALUES AGGREGATE COLLATION CONVERSION|10 DATABASE DEFAULT PRIVILEGES DOMAIN TRIGGER EXTENSION FOREIGN WRAPPER|10 TABLE FUNCTION GROUP LANGUAGE LARGE OBJECT MATERIALIZED VIEW OPERATOR CLASS FAMILY POLICY PUBLICATION|10 ROLE RULE SCHEMA SEQUENCE SERVER STATISTICS SUBSCRIPTION SYSTEM TABLESPACE CONFIGURATION DICTIONARY PARSER TEMPLATE TYPE USER MAPPING PREPARED ACCESS METHOD CAST AS TRANSFORM TRANSACTION OWNED TO INTO SESSION AUTHORIZATION INDEX PROCEDURE ASSERTION ALL ANALYSE AND ANY ARRAY ASC ASYMMETRIC|10 BOTH CASE CHECK COLLATE COLUMN CONCURRENTLY|10 CONSTRAINT CROSS DEFERRABLE RANGE DESC DISTINCT ELSE EXCEPT FOR FREEZE|10 FROM FULL HAVING ILIKE IN INITIALLY INNER INTERSECT IS ISNULL JOIN LATERAL LEADING LIKE LIMIT NATURAL NOT NOTNULL NULL OFFSET ON ONLY OR ORDER OUTER OVERLAPS PLACING PRIMARY REFERENCES RETURNING SIMILAR SOME SYMMETRIC TABLESAMPLE THEN TRAILING UNION UNIQUE USING VARIADIC|10 VERBOSE WHEN WHERE WINDOW WITH BY RETURNS INOUT OUT SETOF|10 IF STRICT CURRENT CONTINUE OWNER LOCATION OVER PARTITION WITHIN BETWEEN ESCAPE EXTERNAL INVOKER DEFINER WORK RENAME VERSION CONNECTION CONNECT TABLES TEMP TEMPORARY FUNCTIONS SEQUENCES TYPES SCHEMAS OPTION CASCADE RESTRICT ADD ADMIN EXISTS VALID VALIDATE ENABLE DISABLE REPLICA|10 ALWAYS PASSING COLUMNS PATH REF VALUE OVERRIDING IMMUTABLE STABLE VOLATILE BEFORE AFTER EACH ROW PROCEDURAL ROUTINE NO HANDLER VALIDATOR OPTIONS STORAGE OIDS|10 WITHOUT INHERIT DEPENDS CALLED INPUT LEAKPROOF|10 COST ROWS NOWAIT SEARCH UNTIL ENCRYPTED|10 PASSWORD CONFLICT|10 INSTEAD INHERITS CHARACTERISTICS WRITE CURSOR ALSO STATEMENT SHARE EXCLUSIVE INLINE ISOLATION REPEATABLE READ COMMITTED SERIALIZABLE UNCOMMITTED LOCAL GLOBAL SQL PROCEDURES RECURSIVE SNAPSHOT ROLLUP CUBE TRUSTED|10 INCLUDE FOLLOWING PRECEDING UNBOUNDED RANGE GROUPS UNENCRYPTED|10 SYSID FORMAT DELIMITER HEADER QUOTE ENCODING FILTER OFF FORCE_QUOTE FORCE_NOT_NULL FORCE_NULL COSTS BUFFERS TIMING SUMMARY DISABLE_PAGE_SKIPPING RESTART CYCLE GENERATED IDENTITY DEFERRED IMMEDIATE LEVEL LOGGED UNLOGGED OF NOTHING NONE EXCLUDE ATTRIBUTE USAGE ROUTINES TRUE FALSE NAN INFINITY \",o=\"SUPERUSER NOSUPERUSER CREATEDB NOCREATEDB CREATEROLE NOCREATEROLE INHERIT NOINHERIT LOGIN NOLOGIN REPLICATION NOREPLICATION BYPASSRLS NOBYPASSRLS \",s=\"ALIAS BEGIN CONSTANT DECLARE END EXCEPTION RETURN PERFORM|10 RAISE GET DIAGNOSTICS STACKED|10 FOREACH LOOP ELSIF EXIT WHILE REVERSE SLICE DEBUG LOG INFO NOTICE WARNING ASSERT OPEN \",l=\"BIGINT INT8 BIGSERIAL SERIAL8 BIT VARYING VARBIT BOOLEAN BOOL BOX BYTEA CHARACTER CHAR VARCHAR CIDR CIRCLE DATE DOUBLE PRECISION FLOAT8 FLOAT INET INTEGER INT INT4 INTERVAL JSON JSONB LINE LSEG|10 MACADDR MACADDR8 MONEY NUMERIC DEC DECIMAL PATH POINT POLYGON REAL FLOAT4 SMALLINT INT2 SMALLSERIAL|10 SERIAL2|10 SERIAL|10 SERIAL4|10 TEXT TIME ZONE TIMETZ|10 TIMESTAMP TIMESTAMPTZ|10 TSQUERY|10 TSVECTOR|10 TXID_SNAPSHOT|10 UUID XML NATIONAL NCHAR INT4RANGE|10 INT8RANGE|10 NUMRANGE|10 TSRANGE|10 TSTZRANGE|10 DATERANGE|10 ANYELEMENT ANYARRAY ANYNONARRAY ANYENUM ANYRANGE CSTRING INTERNAL RECORD PG_DDL_COMMAND VOID UNKNOWN OPAQUE REFCURSOR NAME OID REGPROC|10 REGPROCEDURE|10 REGOPER|10 REGOPERATOR|10 REGCLASS|10 REGTYPE|10 REGROLE|10 REGNAMESPACE|10 REGCONFIG|10 REGDICTIONARY|10 \",c=l.trim().split(\" \").map((function(e){return e.split(\"|\")[0]})).join(\"|\"),u=\"CURRENT_TIME CURRENT_TIMESTAMP CURRENT_USER CURRENT_CATALOG|10 CURRENT_DATE LOCALTIME LOCALTIMESTAMP CURRENT_ROLE|10 CURRENT_SCHEMA|10 SESSION_USER PUBLIC \",d=\"FOUND NEW OLD TG_NAME|10 TG_WHEN|10 TG_LEVEL|10 TG_OP|10 TG_RELID|10 TG_RELNAME|10 TG_TABLE_NAME|10 TG_TABLE_SCHEMA|10 TG_NARGS|10 TG_ARGV|10 TG_EVENT|10 TG_TAG|10 ROW_COUNT RESULT_OID|10 PG_CONTEXT|10 RETURNED_SQLSTATE COLUMN_NAME CONSTRAINT_NAME PG_DATATYPE_NAME|10 MESSAGE_TEXT TABLE_NAME SCHEMA_NAME PG_EXCEPTION_DETAIL|10 PG_EXCEPTION_HINT|10 PG_EXCEPTION_CONTEXT|10 \",p=\"SQLSTATE SQLERRM|10 SUCCESSFUL_COMPLETION WARNING DYNAMIC_RESULT_SETS_RETURNED IMPLICIT_ZERO_BIT_PADDING NULL_VALUE_ELIMINATED_IN_SET_FUNCTION PRIVILEGE_NOT_GRANTED PRIVILEGE_NOT_REVOKED STRING_DATA_RIGHT_TRUNCATION DEPRECATED_FEATURE NO_DATA NO_ADDITIONAL_DYNAMIC_RESULT_SETS_RETURNED SQL_STATEMENT_NOT_YET_COMPLETE CONNECTION_EXCEPTION CONNECTION_DOES_NOT_EXIST CONNECTION_FAILURE SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION SQLSERVER_REJECTED_ESTABLISHMENT_OF_SQLCONNECTION TRANSACTION_RESOLUTION_UNKNOWN PROTOCOL_VIOLATION TRIGGERED_ACTION_EXCEPTION FEATURE_NOT_SUPPORTED INVALID_TRANSACTION_INITIATION LOCATOR_EXCEPTION INVALID_LOCATOR_SPECIFICATION INVALID_GRANTOR INVALID_GRANT_OPERATION INVALID_ROLE_SPECIFICATION DIAGNOSTICS_EXCEPTION STACKED_DIAGNOSTICS_ACCESSED_WITHOUT_ACTIVE_HANDLER CASE_NOT_FOUND CARDINALITY_VIOLATION DATA_EXCEPTION ARRAY_SUBSCRIPT_ERROR CHARACTER_NOT_IN_REPERTOIRE DATETIME_FIELD_OVERFLOW DIVISION_BY_ZERO ERROR_IN_ASSIGNMENT ESCAPE_CHARACTER_CONFLICT INDICATOR_OVERFLOW INTERVAL_FIELD_OVERFLOW INVALID_ARGUMENT_FOR_LOGARITHM INVALID_ARGUMENT_FOR_NTILE_FUNCTION INVALID_ARGUMENT_FOR_NTH_VALUE_FUNCTION INVALID_ARGUMENT_FOR_POWER_FUNCTION INVALID_ARGUMENT_FOR_WIDTH_BUCKET_FUNCTION INVALID_CHARACTER_VALUE_FOR_CAST INVALID_DATETIME_FORMAT INVALID_ESCAPE_CHARACTER INVALID_ESCAPE_OCTET INVALID_ESCAPE_SEQUENCE NONSTANDARD_USE_OF_ESCAPE_CHARACTER INVALID_INDICATOR_PARAMETER_VALUE INVALID_PARAMETER_VALUE INVALID_REGULAR_EXPRESSION INVALID_ROW_COUNT_IN_LIMIT_CLAUSE INVALID_ROW_COUNT_IN_RESULT_OFFSET_CLAUSE INVALID_TABLESAMPLE_ARGUMENT INVALID_TABLESAMPLE_REPEAT INVALID_TIME_ZONE_DISPLACEMENT_VALUE INVALID_USE_OF_ESCAPE_CHARACTER MOST_SPECIFIC_TYPE_MISMATCH NULL_VALUE_NOT_ALLOWED NULL_VALUE_NO_INDICATOR_PARAMETER NUMERIC_VALUE_OUT_OF_RANGE SEQUENCE_GENERATOR_LIMIT_EXCEEDED STRING_DATA_LENGTH_MISMATCH STRING_DATA_RIGHT_TRUNCATION SUBSTRING_ERROR TRIM_ERROR UNTERMINATED_C_STRING ZERO_LENGTH_CHARACTER_STRING FLOATING_POINT_EXCEPTION INVALID_TEXT_REPRESENTATION INVALID_BINARY_REPRESENTATION BAD_COPY_FILE_FORMAT UNTRANSLATABLE_CHARACTER NOT_AN_XML_DOCUMENT INVALID_XML_DOCUMENT INVALID_XML_CONTENT INVALID_XML_COMMENT INVALID_XML_PROCESSING_INSTRUCTION INTEGRITY_CONSTRAINT_VIOLATION RESTRICT_VIOLATION NOT_NULL_VIOLATION FOREIGN_KEY_VIOLATION UNIQUE_VIOLATION CHECK_VIOLATION EXCLUSION_VIOLATION INVALID_CURSOR_STATE INVALID_TRANSACTION_STATE ACTIVE_SQL_TRANSACTION BRANCH_TRANSACTION_ALREADY_ACTIVE HELD_CURSOR_REQUIRES_SAME_ISOLATION_LEVEL INAPPROPRIATE_ACCESS_MODE_FOR_BRANCH_TRANSACTION INAPPROPRIATE_ISOLATION_LEVEL_FOR_BRANCH_TRANSACTION NO_ACTIVE_SQL_TRANSACTION_FOR_BRANCH_TRANSACTION READ_ONLY_SQL_TRANSACTION SCHEMA_AND_DATA_STATEMENT_MIXING_NOT_SUPPORTED NO_ACTIVE_SQL_TRANSACTION IN_FAILED_SQL_TRANSACTION IDLE_IN_TRANSACTION_SESSION_TIMEOUT INVALID_SQL_STATEMENT_NAME TRIGGERED_DATA_CHANGE_VIOLATION INVALID_AUTHORIZATION_SPECIFICATION INVALID_PASSWORD DEPENDENT_PRIVILEGE_DESCRIPTORS_STILL_EXIST DEPENDENT_OBJECTS_STILL_EXIST INVALID_TRANSACTION_TERMINATION SQL_ROUTINE_EXCEPTION FUNCTION_EXECUTED_NO_RETURN_STATEMENT MODIFYING_SQL_DATA_NOT_PERMITTED PROHIBITED_SQL_STATEMENT_ATTEMPTED READING_SQL_DATA_NOT_PERMITTED INVALID_CURSOR_NAME EXTERNAL_ROUTINE_EXCEPTION CONTAINING_SQL_NOT_PERMITTED MODIFYING_SQL_DATA_NOT_PERMITTED PROHIBITED_SQL_STATEMENT_ATTEMPTED READING_SQL_DATA_NOT_PERMITTED EXTERNAL_ROUTINE_INVOCATION_EXCEPTION INVALID_SQLSTATE_RETURNED NULL_VALUE_NOT_ALLOWED TRIGGER_PROTOCOL_VIOLATED SRF_PROTOCOL_VIOLATED EVENT_TRIGGER_PROTOCOL_VIOLATED SAVEPOINT_EXCEPTION INVALID_SAVEPOINT_SPECIFICATION INVALID_CATALOG_NAME INVALID_SCHEMA_NAME TRANSACTION_ROLLBACK TRANSACTION_INTEGRITY_CONSTRAINT_VIOLATION SERIALIZATION_FAILURE STATEMENT_COMPLETION_UNKNOWN DEADLOCK_DETECTED SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION SYNTAX_ERROR INSUFFICIENT_PRIVILEGE CANNOT_COERCE GROUPING_ERROR WINDOWING_ERROR INVALID_RECURSION INVALID_FOREIGN_KEY INVALID_NAME NAME_TOO_LONG RESERVED_NAME DATATYPE_MISMATCH INDETERMINATE_DATATYPE COLLATION_MISMATCH INDETERMINATE_COLLATION WRONG_OBJECT_TYPE GENERATED_ALWAYS UNDEFINED_COLUMN UNDEFINED_FUNCTION UNDEFINED_TABLE UNDEFINED_PARAMETER UNDEFINED_OBJECT DUPLICATE_COLUMN DUPLICATE_CURSOR DUPLICATE_DATABASE DUPLICATE_FUNCTION DUPLICATE_PREPARED_STATEMENT DUPLICATE_SCHEMA DUPLICATE_TABLE DUPLICATE_ALIAS DUPLICATE_OBJECT AMBIGUOUS_COLUMN AMBIGUOUS_FUNCTION AMBIGUOUS_PARAMETER AMBIGUOUS_ALIAS INVALID_COLUMN_REFERENCE INVALID_COLUMN_DEFINITION INVALID_CURSOR_DEFINITION INVALID_DATABASE_DEFINITION INVALID_FUNCTION_DEFINITION INVALID_PREPARED_STATEMENT_DEFINITION INVALID_SCHEMA_DEFINITION INVALID_TABLE_DEFINITION INVALID_OBJECT_DEFINITION WITH_CHECK_OPTION_VIOLATION INSUFFICIENT_RESOURCES DISK_FULL OUT_OF_MEMORY TOO_MANY_CONNECTIONS CONFIGURATION_LIMIT_EXCEEDED PROGRAM_LIMIT_EXCEEDED STATEMENT_TOO_COMPLEX TOO_MANY_COLUMNS TOO_MANY_ARGUMENTS OBJECT_NOT_IN_PREREQUISITE_STATE OBJECT_IN_USE CANT_CHANGE_RUNTIME_PARAM LOCK_NOT_AVAILABLE OPERATOR_INTERVENTION QUERY_CANCELED ADMIN_SHUTDOWN CRASH_SHUTDOWN CANNOT_CONNECT_NOW DATABASE_DROPPED SYSTEM_ERROR IO_ERROR UNDEFINED_FILE DUPLICATE_FILE SNAPSHOT_TOO_OLD CONFIG_FILE_ERROR LOCK_FILE_EXISTS FDW_ERROR FDW_COLUMN_NAME_NOT_FOUND FDW_DYNAMIC_PARAMETER_VALUE_NEEDED FDW_FUNCTION_SEQUENCE_ERROR FDW_INCONSISTENT_DESCRIPTOR_INFORMATION FDW_INVALID_ATTRIBUTE_VALUE FDW_INVALID_COLUMN_NAME FDW_INVALID_COLUMN_NUMBER FDW_INVALID_DATA_TYPE FDW_INVALID_DATA_TYPE_DESCRIPTORS FDW_INVALID_DESCRIPTOR_FIELD_IDENTIFIER FDW_INVALID_HANDLE FDW_INVALID_OPTION_INDEX FDW_INVALID_OPTION_NAME FDW_INVALID_STRING_LENGTH_OR_BUFFER_LENGTH FDW_INVALID_STRING_FORMAT FDW_INVALID_USE_OF_NULL_POINTER FDW_TOO_MANY_HANDLES FDW_OUT_OF_MEMORY FDW_NO_SCHEMAS FDW_OPTION_NAME_NOT_FOUND FDW_REPLY_HANDLE FDW_SCHEMA_NOT_FOUND FDW_TABLE_NOT_FOUND FDW_UNABLE_TO_CREATE_EXECUTION FDW_UNABLE_TO_CREATE_REPLY FDW_UNABLE_TO_ESTABLISH_CONNECTION PLPGSQL_ERROR RAISE_EXCEPTION NO_DATA_FOUND TOO_MANY_ROWS ASSERT_FAILURE INTERNAL_ERROR DATA_CORRUPTED INDEX_CORRUPTED \",h=\"ARRAY_AGG AVG BIT_AND BIT_OR BOOL_AND BOOL_OR COUNT EVERY JSON_AGG JSONB_AGG JSON_OBJECT_AGG JSONB_OBJECT_AGG MAX MIN MODE STRING_AGG SUM XMLAGG CORR COVAR_POP COVAR_SAMP REGR_AVGX REGR_AVGY REGR_COUNT REGR_INTERCEPT REGR_R2 REGR_SLOPE REGR_SXX REGR_SXY REGR_SYY STDDEV STDDEV_POP STDDEV_SAMP VARIANCE VAR_POP VAR_SAMP PERCENTILE_CONT PERCENTILE_DISC ROW_NUMBER RANK DENSE_RANK PERCENT_RANK CUME_DIST NTILE LAG LEAD FIRST_VALUE LAST_VALUE NTH_VALUE NUM_NONNULLS NUM_NULLS ABS CBRT CEIL CEILING DEGREES DIV EXP FLOOR LN LOG MOD PI POWER RADIANS ROUND SCALE SIGN SQRT TRUNC WIDTH_BUCKET RANDOM SETSEED ACOS ACOSD ASIN ASIND ATAN ATAND ATAN2 ATAN2D COS COSD COT COTD SIN SIND TAN TAND BIT_LENGTH CHAR_LENGTH CHARACTER_LENGTH LOWER OCTET_LENGTH OVERLAY POSITION SUBSTRING TREAT TRIM UPPER ASCII BTRIM CHR CONCAT CONCAT_WS CONVERT CONVERT_FROM CONVERT_TO DECODE ENCODE INITCAP LEFT LENGTH LPAD LTRIM MD5 PARSE_IDENT PG_CLIENT_ENCODING QUOTE_IDENT|10 QUOTE_LITERAL|10 QUOTE_NULLABLE|10 REGEXP_MATCH REGEXP_MATCHES REGEXP_REPLACE REGEXP_SPLIT_TO_ARRAY REGEXP_SPLIT_TO_TABLE REPEAT REPLACE REVERSE RIGHT RPAD RTRIM SPLIT_PART STRPOS SUBSTR TO_ASCII TO_HEX TRANSLATE OCTET_LENGTH GET_BIT GET_BYTE SET_BIT SET_BYTE TO_CHAR TO_DATE TO_NUMBER TO_TIMESTAMP AGE CLOCK_TIMESTAMP|10 DATE_PART DATE_TRUNC ISFINITE JUSTIFY_DAYS JUSTIFY_HOURS JUSTIFY_INTERVAL MAKE_DATE MAKE_INTERVAL|10 MAKE_TIME MAKE_TIMESTAMP|10 MAKE_TIMESTAMPTZ|10 NOW STATEMENT_TIMESTAMP|10 TIMEOFDAY TRANSACTION_TIMESTAMP|10 ENUM_FIRST ENUM_LAST ENUM_RANGE AREA CENTER DIAMETER HEIGHT ISCLOSED ISOPEN NPOINTS PCLOSE POPEN RADIUS WIDTH BOX BOUND_BOX CIRCLE LINE LSEG PATH POLYGON ABBREV BROADCAST HOST HOSTMASK MASKLEN NETMASK NETWORK SET_MASKLEN TEXT INET_SAME_FAMILY INET_MERGE MACADDR8_SET7BIT ARRAY_TO_TSVECTOR GET_CURRENT_TS_CONFIG NUMNODE PLAINTO_TSQUERY PHRASETO_TSQUERY WEBSEARCH_TO_TSQUERY QUERYTREE SETWEIGHT STRIP TO_TSQUERY TO_TSVECTOR JSON_TO_TSVECTOR JSONB_TO_TSVECTOR TS_DELETE TS_FILTER TS_HEADLINE TS_RANK TS_RANK_CD TS_REWRITE TSQUERY_PHRASE TSVECTOR_TO_ARRAY TSVECTOR_UPDATE_TRIGGER TSVECTOR_UPDATE_TRIGGER_COLUMN XMLCOMMENT XMLCONCAT XMLELEMENT XMLFOREST XMLPI XMLROOT XMLEXISTS XML_IS_WELL_FORMED XML_IS_WELL_FORMED_DOCUMENT XML_IS_WELL_FORMED_CONTENT XPATH XPATH_EXISTS XMLTABLE XMLNAMESPACES TABLE_TO_XML TABLE_TO_XMLSCHEMA TABLE_TO_XML_AND_XMLSCHEMA QUERY_TO_XML QUERY_TO_XMLSCHEMA QUERY_TO_XML_AND_XMLSCHEMA CURSOR_TO_XML CURSOR_TO_XMLSCHEMA SCHEMA_TO_XML SCHEMA_TO_XMLSCHEMA SCHEMA_TO_XML_AND_XMLSCHEMA DATABASE_TO_XML DATABASE_TO_XMLSCHEMA DATABASE_TO_XML_AND_XMLSCHEMA XMLATTRIBUTES TO_JSON TO_JSONB ARRAY_TO_JSON ROW_TO_JSON JSON_BUILD_ARRAY JSONB_BUILD_ARRAY JSON_BUILD_OBJECT JSONB_BUILD_OBJECT JSON_OBJECT JSONB_OBJECT JSON_ARRAY_LENGTH JSONB_ARRAY_LENGTH JSON_EACH JSONB_EACH JSON_EACH_TEXT JSONB_EACH_TEXT JSON_EXTRACT_PATH JSONB_EXTRACT_PATH JSON_OBJECT_KEYS JSONB_OBJECT_KEYS JSON_POPULATE_RECORD JSONB_POPULATE_RECORD JSON_POPULATE_RECORDSET JSONB_POPULATE_RECORDSET JSON_ARRAY_ELEMENTS JSONB_ARRAY_ELEMENTS JSON_ARRAY_ELEMENTS_TEXT JSONB_ARRAY_ELEMENTS_TEXT JSON_TYPEOF JSONB_TYPEOF JSON_TO_RECORD JSONB_TO_RECORD JSON_TO_RECORDSET JSONB_TO_RECORDSET JSON_STRIP_NULLS JSONB_STRIP_NULLS JSONB_SET JSONB_INSERT JSONB_PRETTY CURRVAL LASTVAL NEXTVAL SETVAL COALESCE NULLIF GREATEST LEAST ARRAY_APPEND ARRAY_CAT ARRAY_NDIMS ARRAY_DIMS ARRAY_FILL ARRAY_LENGTH ARRAY_LOWER ARRAY_POSITION ARRAY_POSITIONS ARRAY_PREPEND ARRAY_REMOVE ARRAY_REPLACE ARRAY_TO_STRING ARRAY_UPPER CARDINALITY STRING_TO_ARRAY UNNEST ISEMPTY LOWER_INC UPPER_INC LOWER_INF UPPER_INF RANGE_MERGE GENERATE_SERIES GENERATE_SUBSCRIPTS CURRENT_DATABASE CURRENT_QUERY CURRENT_SCHEMA|10 CURRENT_SCHEMAS|10 INET_CLIENT_ADDR INET_CLIENT_PORT INET_SERVER_ADDR INET_SERVER_PORT ROW_SECURITY_ACTIVE FORMAT_TYPE TO_REGCLASS TO_REGPROC TO_REGPROCEDURE TO_REGOPER TO_REGOPERATOR TO_REGTYPE TO_REGNAMESPACE TO_REGROLE COL_DESCRIPTION OBJ_DESCRIPTION SHOBJ_DESCRIPTION TXID_CURRENT TXID_CURRENT_IF_ASSIGNED TXID_CURRENT_SNAPSHOT TXID_SNAPSHOT_XIP TXID_SNAPSHOT_XMAX TXID_SNAPSHOT_XMIN TXID_VISIBLE_IN_SNAPSHOT TXID_STATUS CURRENT_SETTING SET_CONFIG BRIN_SUMMARIZE_NEW_VALUES BRIN_SUMMARIZE_RANGE BRIN_DESUMMARIZE_RANGE GIN_CLEAN_PENDING_LIST SUPPRESS_REDUNDANT_UPDATES_TRIGGER LO_FROM_BYTEA LO_PUT LO_GET LO_CREAT LO_CREATE LO_UNLINK LO_IMPORT LO_EXPORT LOREAD LOWRITE GROUPING CAST \",f=h.trim().split(\" \").map((function(e){return e.split(\"|\")[0]})).join(\"|\");return{name:\"PostgreSQL\",aliases:[\"postgres\",\"postgresql\"],case_insensitive:!0,keywords:{keyword:a+s+o,built_in:u+d+p},illegal:/:==|\\W\\s*\\(\\*|(^|\\s)\\$[a-z]|\\{\\{|[a-z]:\\s*$|\\.\\.\\.|TO:|DO:/,contains:[{className:\"keyword\",variants:[{begin:/\\bTEXT\\s*SEARCH\\b/},{begin:/\\b(PRIMARY|FOREIGN|FOR(\\s+NO)?)\\s+KEY\\b/},{begin:/\\bPARALLEL\\s+(UNSAFE|RESTRICTED|SAFE)\\b/},{begin:/\\bSTORAGE\\s+(PLAIN|EXTERNAL|EXTENDED|MAIN)\\b/},{begin:/\\bMATCH\\s+(FULL|PARTIAL|SIMPLE)\\b/},{begin:/\\bNULLS\\s+(FIRST|LAST)\\b/},{begin:/\\bEVENT\\s+TRIGGER\\b/},{begin:/\\b(MAPPING|OR)\\s+REPLACE\\b/},{begin:/\\b(FROM|TO)\\s+(PROGRAM|STDIN|STDOUT)\\b/},{begin:/\\b(SHARE|EXCLUSIVE)\\s+MODE\\b/},{begin:/\\b(LEFT|RIGHT)\\s+(OUTER\\s+)?JOIN\\b/},{begin:/\\b(FETCH|MOVE)\\s+(NEXT|PRIOR|FIRST|LAST|ABSOLUTE|RELATIVE|FORWARD|BACKWARD)\\b/},{begin:/\\bPRESERVE\\s+ROWS\\b/},{begin:/\\bDISCARD\\s+PLANS\\b/},{begin:/\\bREFERENCING\\s+(OLD|NEW)\\b/},{begin:/\\bSKIP\\s+LOCKED\\b/},{begin:/\\bGROUPING\\s+SETS\\b/},{begin:/\\b(BINARY|INSENSITIVE|SCROLL|NO\\s+SCROLL)\\s+(CURSOR|FOR)\\b/},{begin:/\\b(WITH|WITHOUT)\\s+HOLD\\b/},{begin:/\\bWITH\\s+(CASCADED|LOCAL)\\s+CHECK\\s+OPTION\\b/},{begin:/\\bEXCLUDE\\s+(TIES|NO\\s+OTHERS)\\b/},{begin:/\\bFORMAT\\s+(TEXT|XML|JSON|YAML)\\b/},{begin:/\\bSET\\s+((SESSION|LOCAL)\\s+)?NAMES\\b/},{begin:/\\bIS\\s+(NOT\\s+)?UNKNOWN\\b/},{begin:/\\bSECURITY\\s+LABEL\\b/},{begin:/\\bSTANDALONE\\s+(YES|NO|NO\\s+VALUE)\\b/},{begin:/\\bWITH\\s+(NO\\s+)?DATA\\b/},{begin:/\\b(FOREIGN|SET)\\s+DATA\\b/},{begin:/\\bSET\\s+(CATALOG|CONSTRAINTS)\\b/},{begin:/\\b(WITH|FOR)\\s+ORDINALITY\\b/},{begin:/\\bIS\\s+(NOT\\s+)?DOCUMENT\\b/},{begin:/\\bXML\\s+OPTION\\s+(DOCUMENT|CONTENT)\\b/},{begin:/\\b(STRIP|PRESERVE)\\s+WHITESPACE\\b/},{begin:/\\bNO\\s+(ACTION|MAXVALUE|MINVALUE)\\b/},{begin:/\\bPARTITION\\s+BY\\s+(RANGE|LIST|HASH)\\b/},{begin:/\\bAT\\s+TIME\\s+ZONE\\b/},{begin:/\\bGRANTED\\s+BY\\b/},{begin:/\\bRETURN\\s+(QUERY|NEXT)\\b/},{begin:/\\b(ATTACH|DETACH)\\s+PARTITION\\b/},{begin:/\\bFORCE\\s+ROW\\s+LEVEL\\s+SECURITY\\b/},{begin:/\\b(INCLUDING|EXCLUDING)\\s+(COMMENTS|CONSTRAINTS|DEFAULTS|IDENTITY|INDEXES|STATISTICS|STORAGE|ALL)\\b/},{begin:/\\bAS\\s+(ASSIGNMENT|IMPLICIT|PERMISSIVE|RESTRICTIVE|ENUM|RANGE)\\b/}]},{begin:/\\b(FORMAT|FAMILY|VERSION)\\s*\\(/},{begin:/\\bINCLUDE\\s*\\(/,keywords:\"INCLUDE\"},{begin:/\\bRANGE(?!\\s*(BETWEEN|UNBOUNDED|CURRENT|[-0-9]+))/},{begin:/\\b(VERSION|OWNER|TEMPLATE|TABLESPACE|CONNECTION\\s+LIMIT|PROCEDURE|RESTRICT|JOIN|PARSER|COPY|START|END|COLLATION|INPUT|ANALYZE|STORAGE|LIKE|DEFAULT|DELIMITER|ENCODING|COLUMN|CONSTRAINT|TABLE|SCHEMA)\\s*=/},{begin:/\\b(PG_\\w+?|HAS_[A-Z_]+_PRIVILEGE)\\b/,relevance:10},{begin:/\\bEXTRACT\\s*\\(/,end:/\\bFROM\\b/,returnEnd:!0,keywords:{type:\"CENTURY DAY DECADE DOW DOY EPOCH HOUR ISODOW ISOYEAR MICROSECONDS MILLENNIUM MILLISECONDS MINUTE MONTH QUARTER SECOND TIMEZONE TIMEZONE_HOUR TIMEZONE_MINUTE WEEK YEAR\"}},{begin:/\\b(XMLELEMENT|XMLPI)\\s*\\(\\s*NAME/,keywords:{keyword:\"NAME\"}},{begin:/\\b(XMLPARSE|XMLSERIALIZE)\\s*\\(\\s*(DOCUMENT|CONTENT)/,keywords:{keyword:\"DOCUMENT CONTENT\"}},{beginKeywords:\"CACHE INCREMENT MAXVALUE MINVALUE\",end:e.C_NUMBER_RE,returnEnd:!0,keywords:\"BY CACHE INCREMENT MAXVALUE MINVALUE\"},{className:\"type\",begin:/\\b(WITH|WITHOUT)\\s+TIME\\s+ZONE\\b/},{className:\"type\",begin:/\\bINTERVAL\\s+(YEAR|MONTH|DAY|HOUR|MINUTE|SECOND)(\\s+TO\\s+(MONTH|HOUR|MINUTE|SECOND))?\\b/},{begin:/\\bRETURNS\\s+(LANGUAGE_HANDLER|TRIGGER|EVENT_TRIGGER|FDW_HANDLER|INDEX_AM_HANDLER|TSM_HANDLER)\\b/,keywords:{keyword:\"RETURNS\",type:\"LANGUAGE_HANDLER TRIGGER EVENT_TRIGGER FDW_HANDLER INDEX_AM_HANDLER TSM_HANDLER\"}},{begin:\"\\\\b(\"+f+\")\\\\s*\\\\(\"},{begin:\"\\\\.(\"+c+\")\\\\b\"},{begin:\"\\\\b(\"+c+\")\\\\s+PATH\\\\b\",keywords:{keyword:\"PATH\",type:l.replace(\"PATH \",\"\")}},{className:\"type\",begin:\"\\\\b(\"+c+\")\\\\b\"},{className:\"string\",begin:\"'\",end:\"'\",contains:[{begin:\"''\"}]},{className:\"string\",begin:\"(e|E|u&|U&)'\",end:\"'\",contains:[{begin:\"\\\\\\\\.\"}],relevance:10},e.END_SAME_AS_BEGIN({begin:i,end:i,contains:[{subLanguage:[\"pgsql\",\"perl\",\"python\",\"tcl\",\"r\",\"lua\",\"java\",\"php\",\"ruby\",\"bash\",\"scheme\",\"xml\",\"json\"],endsWithParent:!0}]}),{begin:'\"',end:'\"',contains:[{begin:'\"\"'}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,{className:\"meta\",variants:[{begin:\"%(ROW)?TYPE\",relevance:10},{begin:\"\\\\$\\\\d+\"},{begin:\"^#\\\\w\",end:\"$\"}]},{className:\"symbol\",begin:r,relevance:10}]}}e.exports=n},f893:function(e,t,n){e.exports={default:n(\"f921\"),__esModule:!0}},f921:function(e,t,n){n(\"014b\"),n(\"c207\"),n(\"69d3\"),n(\"765d\"),e.exports=n(\"584a\").Symbol},f9f0:function(e,t){function n(e){return e?\"string\"===typeof e?e:e.source:null}function i(...e){const t=e.map(e=>n(e)).join(\"\");return t}function r(e){const t=/[a-zA-Z_$][a-zA-Z0-9_$]*/,n=/([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)/,r={className:\"rest_arg\",begin:/[.]{3}/,end:t,relevance:10};return{name:\"ActionScript\",aliases:[\"as\"],keywords:{keyword:\"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with\",literal:\"true false null undefined\"},contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,{className:\"class\",beginKeywords:\"package\",end:/\\{/,contains:[e.TITLE_MODE]},{className:\"class\",beginKeywords:\"class interface\",end:/\\{/,excludeEnd:!0,contains:[{beginKeywords:\"extends implements\"},e.TITLE_MODE]},{className:\"meta\",beginKeywords:\"import include\",end:/;/,keywords:{\"meta-keyword\":\"import include\"}},{className:\"function\",beginKeywords:\"function\",end:/[{;]/,excludeEnd:!0,illegal:/\\S/,contains:[e.TITLE_MODE,{className:\"params\",begin:/\\(/,end:/\\)/,contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,r]},{begin:i(/:\\s*/,n)}]},e.METHOD_GUARD],illegal:/#/}}e.exports=r},fa5b:function(e,t,n){e.exports=n(\"5537\")(\"native-function-to-string\",Function.toString)},fab2:function(e,t,n){var i=n(\"7726\").document;e.exports=i&&i.documentElement}}]);"
  },
  {
    "path": "releases.md",
    "content": "### 本次版本发布流程\n\n###前端需要打包到后台代码\n\n> 执行命令\n\n```shell script\n# 执行数据库迁移命令\n$ bin/gerent migrate:migrate --force\n\n```\n"
  },
  {
    "path": "restart.sh",
    "content": "bin/server stop\n\nsleep 3\n\nbin/server start &\n"
  },
  {
    "path": "route/admin.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n$route = irouter();\n\n$route->middleware([\\W7\\App\\Middleware\\AppAuthMiddleware::class, \\W7\\App\\Middleware\\CheckAuthMiddleware::class])->group(['prefix' => '/admin'], function ($route) {\n\t//管理文档列表\n\t$route->post('/document/all', 'Admin\\DocumentController@all');\n\t$route->post('/document/all-by-uid', 'Admin\\DocumentController@getAllByUid');\n\t$route->middleware(\\W7\\App\\Middleware\\BackendDocumentPermissionMiddleware::class)->group(['prefix' => '/document'], function ($route) {\n\t\t//文档管理设置\n\t\t$route->post('/detail', 'Admin\\DocumentController@detail');\n\t\t$route->post('/operator', 'Admin\\DocumentController@operator');\n\t\t$route->post('/update', 'Admin\\DocumentController@update');\n\t\t$route->post('/delete', 'Admin\\DocumentController@delete');\n\t\t$route->post('/create', 'Admin\\DocumentController@create');\n\t\t$route->post('/change-founder', 'Admin\\DocumentController@changeDocumentFounder');\n\t\t//反馈建议\n\t\t$route->post('/new-feedback', 'Admin\\DocumentController@checkNewFeed');\n\t\t$route->post('/feedback-list', 'Admin\\FeedbackController@getList');\n\t\t$route->post('/feedback-detail','Admin\\FeedbackController@detail');\n\t});\n\n\t//api文档内容管理-公共\n\t$route->middleware(\\W7\\App\\Middleware\\BackendDocumentPermissionMiddleware::class)->group(['prefix' => '/document/chapterapi'], function ($route) {\n\t\t$route->get('/getApiLabel', 'Admin\\Document\\ChapterApiController@getApiLabel');\n\t\t//修改接口 data 数据\n\t\t$route->post('/setApiData', 'Admin\\Document\\ChapterApiDataController@setData');\n\t});\n\t//文档内容管理\n\t$route->middleware(\\W7\\App\\Middleware\\BackendDocumentPermissionMiddleware::class)->group(['prefix' => '/chapter'], function ($route) {\n\t\t//文档管理设置\n\t\t$route->post('/detail', 'Admin\\ChapterController@detail');\n\t\t$route->post('/create', 'Admin\\ChapterController@create');\n\t\t$route->post('/update', 'Admin\\ChapterController@update');\n\t\t$route->post('/content', 'Admin\\ChapterController@content');\n\t\t$route->post('/save', 'Admin\\ChapterController@save');\n\t\t$route->post('/delete', 'Admin\\ChapterController@delete');\n\t\t$route->post('/search', 'Admin\\ChapterController@search');\n\t\t$route->post('/sort', 'Admin\\ChapterController@sort');\n\t\t$route->post('/default-show', 'Admin\\ChapterController@defaultShow');\n\t\t$route->post('/copy', 'Admin\\ChapterController@copy');\n\t\t$route->post('/import', 'Admin\\ChapterController@import');\n\t});\n\n\t$route->middleware(\\W7\\App\\Middleware\\BackendDocumentPermissionMiddleware::class)->group(['prefix' => '/operate-log'], function ($route) {\n\t\t$route->post('/get-user-read-log', 'Admin\\UserOperateLogController@getUserReaderLog');\n\t\t$route->post('/get-by-document', 'Admin\\UserOperateLogController@getByDocument');\n\t\t$route->post('/delete-by-id', 'Admin\\UserOperateLogController@deleteById');\n\t});\n\n\t$route->group(['prefix' => '/share'], function ($route) {\n\t\t$route->post('/all', 'Admin\\UserShareController@all');\n\t\t$route->post('/url', 'Admin\\UserShareController@shareUrl');\n\t});\n\n\t$route->group(['prefix' => '/user'], function ($route) {\n\t\t//文档管理设置\n\t\t$route->post('/all', 'Admin\\UserController@all');\n\t\t$route->post('/search', 'Admin\\UserController@search');\n\t\t$route->post('/add', 'Admin\\UserController@add');\n\t\t$route->post('/detail-by-id', 'Admin\\UserController@detailById');\n\t\t$route->post('/update-by-id', 'Admin\\UserController@updateById');\n\t\t$route->post('/update-self', 'Admin\\UserController@updateSelf');\n\t\t$route->post('/delete-by-ids', 'Admin\\UserController@deleteByIds');\n\t\t$route->post('/batch-update-permission', 'Admin\\UserController@batchUpdateDocPermissionByUid');\n\t});\n\n\t$route->middleware(\\W7\\App\\Middleware\\BackendDocumentPermissionMiddleware::class)->group(['prefix' => '/star'], function ($route) {\n\t\t//文档管理设置\n\t\t$route->post('/all', 'Admin\\StarController@all');\n\t\t$route->post('/add', 'Admin\\StarController@add');\n\t\t$route->post('/delete', 'Admin\\StarController@delete');\n\t});\n\n\t$route->middleware(\\W7\\App\\Middleware\\BackendDocumentPermissionMiddleware::class)->group(['prefix' => '/third-party-login'], function ($route) {\n\t\t//文档管理设置\n\t\t$route->post('/all', 'Admin\\ThirdPartyLoginController@all');\n\t\t$route->post('/add', 'Admin\\ThirdPartyLoginController@add');\n\t\t$route->post('/detail', 'Admin\\ThirdPartyLoginController@getById');\n\t\t$route->post('/update', 'Admin\\ThirdPartyLoginController@updateById');\n\t\t$route->post('/delete', 'Admin\\ThirdPartyLoginController@deleteById');\n\t\t$route->post('/set-default-channel', 'Admin\\ThirdPartyLoginController@setDefaultLoginChannel');\n\t\t$route->post('/get-default-channel', 'Admin\\ThirdPartyLoginController@getDefaultLoginChannel');\n\t});\n\n\t$route->middleware(\\W7\\App\\Middleware\\BackendDocumentPermissionMiddleware::class)->group(['prefix' => '/menu'], function ($route) {\n\t\t//文档管理设置\n\t\t$route->post('/all', 'Admin\\MenuSettingController@all');\n\t\t$route->post('/add', 'Admin\\MenuSettingController@add');\n\t\t$route->post('/detail', 'Admin\\MenuSettingController@getById');\n\t\t$route->post('/update', 'Admin\\MenuSettingController@updateById');\n\t\t$route->post('/delete', 'Admin\\MenuSettingController@deleteById');\n\t\t$route->post('/set-theme', 'Admin\\MenuSettingController@setTheme');\n\t\t$route->post('/get-theme', 'Admin\\MenuSettingController@getTheme');\n\t});\n\n\t$route->middleware(\\W7\\App\\Middleware\\BackendDocumentPermissionMiddleware::class)->group(['prefix' => '/home'], function ($route) {\n\t\t//首页管理设置\n\t\t$route->get('/list', 'Admin\\DocumentHomeController@getList');\n\t\t$route->post('/add', 'Admin\\DocumentHomeController@addHomeData');\n\t\t$route->all('/edit', 'Admin\\DocumentHomeController@editHomeData');\n\t\t$route->post('/delete', 'Admin\\DocumentHomeController@delHomeData');\n\t\t$route->get('/get-type', 'Admin\\DocumentHomeController@getType');\n\t\t$route->post('/search-doc', 'Admin\\DocumentHomeController@queryDocument');\n\t\t$route->get('/get-set', 'Admin\\HomepageSettingController@getHomePageSet');\n\t\t$route->post('/set-open', 'Admin\\HomepageSettingController@setOpenHome');\n\t\t$route->post('/set-banner', 'Admin\\HomepageSettingController@setHomeBanner');\n\t\t$route->post('/set-title', 'Admin\\HomepageSettingController@setHomeTtile');\n\n\t});\n\n\n\t$route->middleware(\\W7\\App\\Middleware\\CheckFounderMiddleware::class)->group([], function ($route) {\n\t\t$route->post('/setting/cos', 'Admin\\SettingController@cos');\n\t\t$route->post('/setting/save', 'Admin\\SettingController@save');\n\t\t$route->get('/setting/config', 'Admin\\SettingController@config');\n\t});\n\n\t//图片上传\n\t$route->post('/upload/image', 'Admin\\UploadController@image');\n});\n\n//获取请求数据 结构\nirouter()->get('/admin/document/chapterapi/getData', 'Admin\\Document\\ChapterApiDataController@getData');\n"
  },
  {
    "path": "route/common.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nuse W7\\App;\nuse function GuzzleHttp\\Psr7\\build_query;\n\n$route = irouter();\n\n$route->any('/oauth/login', function () {\n\t$request = \\W7\\Facade\\Context::getRequest();\n\t$query = $request->getQueryParams();\n\n\treturn \\W7\\Facade\\Context::getResponse()->redirect(ienv('API_HOST') . 'login?' . build_query($query));\n});\n\n//获取验证码\n$route->post('/common/verifycode/image', 'Common\\VerifyCodeController@image');\n\n//登录退出\n$route->post('/common/auth/login', 'Common\\AuthController@login');\n$route->post('/common/auth/method', 'Common\\AuthController@method');\n\n$route->get('/common/auth/getlogouturl', 'Common\\AuthController@getlogouturl');\n$route->get('/common/auth/logout', 'Common\\AuthController@logout');\n$route->post('/common/auth/logout', 'Common\\AuthController@logout');\n$route->middleware(\\W7\\App\\Middleware\\CheckAuthMiddleware::class)\n\t->post('/common/auth/user', 'Common\\AuthController@user');\n$route->middleware(\\W7\\App\\Middleware\\CheckAuthMiddleware::class)\n\t->post('/common/auth/unbind', 'Common\\AuthController@unbind'); //解绑\n\n$route->post('/common/auth/third-party-login', 'Common\\AuthController@thirdPartyLogin');\n$route->post('/common/auth/changeThirdPartyUser', 'Common\\AuthController@changeThirdPartyUser');\n$route->post('/common/auth/bindThirdPartyUser', 'Common\\AuthController@bindThirdPartyUser');\n$route->post('/common/auth/ThirdPartyUserCacheIn', 'Common\\AuthController@ThirdPartyUserCacheIn');\n$route->post('/common/auth/third-party-login-bind', 'Common\\AuthController@thirdPartyLoginBind');\n$route->post('/common/auth/default-login-url', 'Common\\AuthController@defaultLoginUrl');\n\n$route->post('/menu/setting', 'Common\\MenuController@setting');\n//上传图片\n$route->post('/common/upload/image', 'Admin\\UploadController@image');\n\n//\n$route->get('/user/info', 'Common\\UserController@info');\n$route->post('/user/update', 'Common\\UserController@update');\n$route->get('/user/operate', 'Common\\UserController@operate');\n"
  },
  {
    "path": "route/document.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\n$route = irouter();\n\n$route->middleware(\\W7\\App\\Middleware\\FrontendDocumentPermissionMiddleware::class)->group(['prefix' => '/document'], function ($route) {\n\t$route->post('/detail', 'Document\\DocumentController@detail');\n\t$route->post('/chapter/list', 'Document\\ChapterController@catalog');\n\t$route->post('/chapter/detail', 'Document\\ChapterController@detail');\n\t$route->post('/chapter/search', 'Document\\ChapterController@search');\n\t$route->post('/chapter/ruleDemo', 'Document\\ChapterController@ruleDemo');\n\t$route->post('/feedback/add', 'Document\\FeedbackController@add');\n\t$route->get('/home', 'Document\\DocumentHomeController@getDocumentHome');\n\t$route->post('/home/search', 'Document\\DocumentHomeController@search');\n\t$route->get('/home/check', 'Document\\DocumentHomeController@checkHome');\n\t$route->get('/home/search-hot', 'Document\\DocumentHomeController@getSearchHot');\n});\n$route->middleware(\\W7\\App\\Middleware\\CorsApiMiddleware::class)->group(['prefix' => '/document'], function ($route) {\n\t$route->post('/chapter/record', 'Document\\ChapterController@record');\n\t$route->all('/mockApiReponse/{id}/{router:[\\w/]+}', 'Document\\MockApiReponseController@index');\n});\n\n"
  },
  {
    "path": "route/install.php",
    "content": "<?php\n\n/**\n * WeEngine Document System\n *\n * (c) We7Team 2019 <https://www.w7.cc>\n *\n * This is not a free software\n * Using it under the license terms\n * visited https://www.w7.cc for more details\n */\n\nirouter()->post('/install/systemDetection', 'Install\\IndexController@systemDetection');\nirouter()->post('/install/install', 'Install\\IndexController@install');\nirouter()->post('/install/config', 'Install\\IndexController@config');\n"
  },
  {
    "path": "tests/PoolTest.php",
    "content": "<?php\n/**\n * @author donknap\n * @date 19-4-15 下午5:02\n */\n\nnamespace W7\\Tests;\n\n\nclass PoolTest extends TestCase {\n\n\tpublic function setUp() : void {\n\t\tparent::setUp();\n\n\t\t$this->assertTrue(iconfig()->getUserAppConfig('pool')['database']['default']['enable'], 'Open the database connection pool configuration');\n\n\t\t$databaseConfig = iconfig()->getUserAppConfig('database')['default'] ?? [];\n\t\t$this->assertNotEmpty($databaseConfig['host'], 'Valid default database config');\n\t\t$this->assertNotEmpty($databaseConfig['database'], 'Valid default database config');\n\t\t$this->assertNotEmpty($databaseConfig['username'], 'Valid default database config');\n\t\t$this->assertNotEmpty($databaseConfig['password'], 'Valid default database config');\n\t}\n\n\tpublic function testDbPool() {\n\t\t$this->assertInstanceOf(\\PDO::class, idb()->getPdo(), 'Unable to connect to the database');\n\n\t\t$tables = idb()->select(\"SHOW TABLES;\");\n\t\t$tables = idb()->select(\"SHOW TABLES;\");\n\n\n\t\tprint_r($tables);\n\t}\n}"
  },
  {
    "path": "tools/build.sh",
    "content": "#!/bin/sh\n\necho \"Build W7 Document System.\"\n\ndate=$(date \"+%Y%m%d%H%M%S\")\n\nmkdir ./w7-document\ncd ./w7-document\ngit clone https://gitee.com/we7coreteam/document-apiserver.git .\ncomposer install --no-dev  && composer clearcache\nrm -rf composer.* .* LICENSE ./tools ./tests\n\ncd ../\nzip -r ./w7-document-$date.zip ./w7-document\n\nrm -rf ./w7-document"
  },
  {
    "path": "tools/pre-commit",
    "content": "#!/bin/sh\n#\n# An example hook script to verify what is about to be committed.\n# Called by \"git commit\" with no arguments.  The hook should\n# exit with non-zero status after issuing an appropriate message if\n# it wants to stop the commit.\n#\n# To enable this hook, rename this file to \"pre-commit\".\n#\n# .git/hooks/pre-commit\n\necho \"php-cs-fixer pre commit hook start\"\n\nPHP_CS_FIXER=\"vendor/bin/php-cs-fixer\"\nPHP_CS_CONFIG=\".php_cs\"\nCHANGED_FILES=$(git diff --cached --name-only --diff-filter=ACM -- '*.php')\n\necho $CHANGED_FILES\n\nif [ -n \"$CHANGED_FILES\" ]; then\n\techo \"111\"\n    $PHP_CS_FIXER --config=.php_cs --verbose fix $CHANGED_FILES;\n    git add $CHANGED_FILES;\nfi\n\necho \"php-cs-fixer pre commit hook finish\""
  }
]